Commit ef9b122f authored by Al Viro's avatar Al Viro

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

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 2a3fdc11
......@@ -294,6 +294,9 @@ asmlinkage int sys_rt_sigreturn(void)
struct rt_sigframe __user *frame;
sigset_t blocked;
/* Always make any pending restarted system calls return -EINTR */
current_thread_info()->restart_block.fn = do_no_restart_syscall;
frame = (struct rt_sigframe __user *)pt_psp(regs);
if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
goto badframe;
......
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