diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-04-22 09:27:28 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-05-21 20:19:31 +0200 |
commit | 3b7d15bde54be81e3edd773724d85d20ae42a4da (patch) | |
tree | 1c4f848ead2edae056c4a9c3e2d119ac1b50ac96 /arch/x86/um/signal.c | |
parent | Linux 3.4 (diff) | |
download | linux-3b7d15bde54be81e3edd773724d85d20ae42a4da.tar.xz linux-3b7d15bde54be81e3edd773724d85d20ae42a4da.zip |
um: ->restart_block.fn needs to be reset on sigreturn
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/x86/um/signal.c')
-rw-r--r-- | arch/x86/um/signal.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/um/signal.c b/arch/x86/um/signal.c index 4883b9546016..72eafa6c6a52 100644 --- a/arch/x86/um/signal.c +++ b/arch/x86/um/signal.c @@ -156,6 +156,9 @@ static int copy_sc_from_user(struct pt_regs *regs, struct sigcontext sc; int err, pid; + /* Always make any pending restarted system calls return -EINTR */ + current_thread_info()->restart_block.fn = do_no_restart_syscall; + err = copy_from_user(&sc, from, sizeof(sc)); if (err) return err; |