mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 02:50:49 +09:00
watchdog: diag288_wdt: fix __diag288() inline assembly
commit 32e40f9506 upstream.
The DIAG 288 statement consumes an EBCDIC string the address of which is
passed in a register. Use a "memory" clobber to tell the compiler that
memory is accessed within the inline assembly.
Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com>
Reviewed-by: Heiko Carstens <hca@linux.ibm.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
5bcdcf437d
commit
192fd121d0
@@ -86,7 +86,7 @@ static int __diag288(unsigned int func, unsigned int timeout,
|
|||||||
"1:\n"
|
"1:\n"
|
||||||
EX_TABLE(0b, 1b)
|
EX_TABLE(0b, 1b)
|
||||||
: "+d" (err) : "d"(__func), "d"(__timeout),
|
: "+d" (err) : "d"(__func), "d"(__timeout),
|
||||||
"d"(__action), "d"(__len) : "1", "cc");
|
"d"(__action), "d"(__len) : "1", "cc", "memory");
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user