Commit 446cdd13 authored by Al Viro's avatar Al Viro

avr32: ->restart_block.fn needs to be reset on rt_sigreturn

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 188f677f
......@@ -77,6 +77,9 @@ asmlinkage int sys_rt_sigreturn(struct pt_regs *regs)
struct rt_sigframe __user *frame;
sigset_t set;
/* Always make any pending restarted system calls return -EINTR */
current_thread_info()->restart_block.fn = do_no_restart_syscall;
frame = (struct rt_sigframe __user *)regs->sp;
pr_debug("SIG return: frame = %p\n", frame);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment