diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2012-11-28 21:44:15 -0500 |
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-11-28 21:44:15 -0500 |
| commit | a2b6dfaef0dc04143e8b50bdd2de16877cd69629 (patch) | |
| tree | 88e5add418352d39c53930613962bc8dd252be04 | |
| parent | Merge branch 'arch-unicore32' into no-rebases (diff) | |
| parent | tile: compat rt_sigreturn gets too enthusiastic about sigaltstack errors (diff) | |
| download | linux-a2b6dfaef0dc04143e8b50bdd2de16877cd69629.tar.gz linux-a2b6dfaef0dc04143e8b50bdd2de16877cd69629.zip | |
Merge branch 'arch-tile' into no-rebases
| -rw-r--r-- | arch/tile/kernel/compat_signal.c | 2 |
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; |
