mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 01:40:53 +07:00
[PATCH] s390: Add missing memory constraint to stcrw()
Add missing memory constraint to stcrw() inline assembly. Signed-off-by: Peter Oberparleiter <peter.oberparleiter@de.ibm.com> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
b1969fa46d
commit
46d0d2c811
@ -90,15 +90,16 @@ struct crw {
|
||||
|
||||
static inline int stcrw(struct crw *pcrw )
|
||||
{
|
||||
int ccode;
|
||||
int ccode;
|
||||
|
||||
__asm__ __volatile__(
|
||||
"STCRW 0(%1)\n\t"
|
||||
"IPM %0\n\t"
|
||||
"SRL %0,28\n\t"
|
||||
: "=d" (ccode) : "a" (pcrw)
|
||||
: "cc", "1" );
|
||||
return ccode;
|
||||
__asm__ __volatile__(
|
||||
"stcrw 0(%2)\n\t"
|
||||
"ipm %0\n\t"
|
||||
"srl %0,28\n\t"
|
||||
: "=d" (ccode), "=m" (*pcrw)
|
||||
: "a" (pcrw)
|
||||
: "cc" );
|
||||
return ccode;
|
||||
}
|
||||
|
||||
#endif /* __s390mach */
|
||||
|
Loading…
Reference in New Issue
Block a user