Skip to content

Commit

Permalink
c6x: ->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 85a847f commit 2a3fdc1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions arch/c6x/kernel/signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ asmlinkage int do_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;

/*
* Since we stacked the signal on a dword boundary,
* 'sp' should be dword aligned here. If it's
Expand Down

0 comments on commit 2a3fdc1

Please sign in to comment.