diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-10-18 07:43:27 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-11-29 03:49:04 +0100 |
commit | b960f303448969c6cb76b4df9291e9e6213e2b9f (patch) | |
tree | bfb606dd0cb16673e61213ab4472933e67f39857 /arch/alpha/kernel/entry.S | |
parent | alpha: simplify fork and friends (diff) | |
download | linux-b960f303448969c6cb76b4df9291e9e6213e2b9f.tar.xz linux-b960f303448969c6cb76b4df9291e9e6213e2b9f.zip |
alpha: don't pass useless arguments to do_{,rt_},sigreturn()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/alpha/kernel/entry.S')
-rw-r--r-- | arch/alpha/kernel/entry.S | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/alpha/kernel/entry.S b/arch/alpha/kernel/entry.S index cc6d34e9e2ea..c245de65c61b 100644 --- a/arch/alpha/kernel/entry.S +++ b/arch/alpha/kernel/entry.S @@ -658,8 +658,6 @@ sys_sigreturn: .prologue 0 lda $9, ret_from_straced cmpult $26, $9, $9 - mov $sp, $17 - lda $18, -SWITCH_STACK_SIZE($sp) lda $sp, -SWITCH_STACK_SIZE($sp) jsr $26, do_sigreturn bne $9, 1f @@ -675,8 +673,6 @@ sys_rt_sigreturn: .prologue 0 lda $9, ret_from_straced cmpult $26, $9, $9 - mov $sp, $17 - lda $18, -SWITCH_STACK_SIZE($sp) lda $sp, -SWITCH_STACK_SIZE($sp) jsr $26, do_rt_sigreturn bne $9, 1f |