summaryrefslogtreecommitdiffstats
path: root/arch/tile/kernel
diff options
context:
space:
mode:
authorAl Viro2012-11-29 03:44:15 +0100
committerAl Viro2012-11-29 03:44:15 +0100
commita2b6dfaef0dc04143e8b50bdd2de16877cd69629 (patch)
tree88e5add418352d39c53930613962bc8dd252be04 /arch/tile/kernel
parentMerge branch 'arch-unicore32' into no-rebases (diff)
parenttile: compat rt_sigreturn gets too enthusiastic about sigaltstack errors (diff)
downloadkernel-qcow2-linux-a2b6dfaef0dc04143e8b50bdd2de16877cd69629.tar.gz
kernel-qcow2-linux-a2b6dfaef0dc04143e8b50bdd2de16877cd69629.tar.xz
kernel-qcow2-linux-a2b6dfaef0dc04143e8b50bdd2de16877cd69629.zip
Merge branch 'arch-tile' into no-rebases
Diffstat (limited to 'arch/tile/kernel')
-rw-r--r--arch/tile/kernel/compat_signal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/tile/kernel/compat_signal.c b/arch/tile/kernel/compat_signal.c
index 210a9bbae963..2e4cc69224a6 100644
--- a/arch/tile/kernel/compat_signal.c
+++ b/arch/tile/kernel/compat_signal.c
@@ -248,7 +248,7 @@ long compat_sys_rt_sigreturn(void)
if (restore_sigcontext(regs, &frame->uc.uc_mcontext))
goto badframe;
- if (compat_sys_sigaltstack(&frame->uc.uc_stack, NULL) != 0)
+ if (compat_sys_sigaltstack(&frame->uc.uc_stack, NULL) == -EFAULT)
goto badframe;
return 0;