diff options
author | Heiko Carstens <[email protected]> | 2015-07-06 15:02:37 +0200 |
---|---|---|
committer | Martin Schwidefsky <[email protected]> | 2015-07-13 11:02:18 +0200 |
commit | e47994dd44bcb4a77b4152bd0eada585934703c0 (patch) | |
tree | ebc442419f57c51f22336f0aefddfd8c9f4ee5ce | |
parent | f81a49d13b3014c2b7c424628779a8af93f25c04 (diff) |
s390/process: fix sfpc inline assembly
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.
Cc: <[email protected]>
Signed-off-by: Heiko Carstens <[email protected]>
Signed-off-by: Martin Schwidefsky <[email protected]>
-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 dc5edc29b73a..8f587d871b9f 100644 --- a/arch/s390/kernel/process.c +++ b/arch/s390/kernel/process.c @@ -163,7 +163,7 @@ int copy_thread(unsigned long clone_flags, unsigned long new_stackp, asmlinkage void execve_tail(void) { current->thread.fp_regs.fpc = 0; - asm volatile("sfpc %0,%0" : : "d" (0)); + asm volatile("sfpc %0" : : "d" (0)); } /* |