Skip to content

Commit

Permalink
xtensa: ->restart_block.fn needs to be reset on rt_sigreturn
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed May 22, 2012
1 parent f2ccfb3 commit 188f677
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions arch/xtensa/kernel/signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,9 @@ asmlinkage long xtensa_rt_sigreturn(long a0, long a1, long a2, long a3,
sigset_t set;
int ret;

/* Always make any pending restarted system calls return -EINTR */
current_thread_info()->restart_block.fn = do_no_restart_syscall;

if (regs->depc > 64)
panic("rt_sigreturn in double exception!\n");

Expand Down

0 comments on commit 188f677

Please sign in to comment.