diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2015-07-06 16:02:37 +0300 |
---|---|---|
committer | Ben Hutchings <ben@decadent.org.uk> | 2015-08-12 17:33:21 +0300 |
commit | b411a8a3b44d76e782ba4bc6893068f3f590fe8a (patch) | |
tree | 3883aebb02b5e407b6cd09c981ecc3f9b9108ff0 /arch | |
parent | 755a47431bd5deb3ecadc1f0c944c74569b590b6 (diff) | |
download | linux-b411a8a3b44d76e782ba4bc6893068f3f590fe8a.tar.xz |
s390/process: fix sfpc inline assembly
commit e47994dd44bcb4a77b4152bd0eada585934703c0 upstream.
The sfpc inline assembly within execve_tail() may incorrectly set bits
28-31 of the sfpc instruction to a value which is not zero.
These bits however are currently unused and therefore should be zero
so we won't get surprised if these bits will be used in the future.
Therefore remove the second operand from the inline assembly.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
[bwh: Backported to 3.2: adjust context]
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/s390/kernel/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kernel/process.c b/arch/s390/kernel/process.c index 53088e208427..2ba12263f8d4 100644 --- a/arch/s390/kernel/process.c +++ b/arch/s390/kernel/process.c @@ -250,7 +250,7 @@ asmlinkage void execve_tail(void) { current->thread.fp_regs.fpc = 0; if (MACHINE_HAS_IEEE) - asm volatile("sfpc %0,%0" : : "d" (0)); + asm volatile("sfpc %0" : : "d" (0)); } /* |