aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/scall32-o32.S
diff options
context:
space:
mode:
authorAl Viro <viro@ftp.linux.org.uk>2010-09-28 13:50:47 -0400
committerRalf Baechle <ralf@linux-mips.org>2010-10-18 11:59:03 -0400
commit5b89c0044e048842245193b200b61e5f998abd9a (patch)
treed2908dcdfaf8903b6af5d5731f5ec2a87fc50b67 /arch/mips/kernel/scall32-o32.S
parent8f5a00eb422ed86e77bb8f67e08b9fe6d30f679a (diff)
MIPS: Fix error values in case of bad_stack
We want EFAULT, not -<syscall number> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Cc: linux-kernel@vger.kernel.org Cc: linux-arch@vger.kernel.org Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/1699/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/scall32-o32.S')
-rw-r--r--arch/mips/kernel/scall32-o32.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/scall32-o32.S b/arch/mips/kernel/scall32-o32.S
index 73a061e85531..84b41797fae1 100644
--- a/arch/mips/kernel/scall32-o32.S
+++ b/arch/mips/kernel/scall32-o32.S
@@ -169,7 +169,7 @@ stackargs:
169 * We probably should handle this case a bit more drastic. 169 * We probably should handle this case a bit more drastic.
170 */ 170 */
171bad_stack: 171bad_stack:
172 negu v0 # error 172 li v0, EFAULT
173 sw v0, PT_R2(sp) 173 sw v0, PT_R2(sp)
174 li t0, 1 # set error flag 174 li t0, 1 # set error flag
175 sw t0, PT_R7(sp) 175 sw t0, PT_R7(sp)