diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-05-21 23:42:15 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-06-01 12:58:49 -0400 |
commit | a610d6e672d6d3723e8da257ad4a8a288a8f2f89 (patch) | |
tree | 2fac6ce7f72756771f4f87583205cc402589dcad /arch/cris/arch-v32 | |
parent | 5754f412a3f107cbcd93ee125bef296f2a07539b (diff) |
pull clearing RESTORE_SIGMASK into block_sigmask()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/cris/arch-v32')
-rw-r--r-- | arch/cris/arch-v32/kernel/signal.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/arch/cris/arch-v32/kernel/signal.c b/arch/cris/arch-v32/kernel/signal.c index d52276ddae4b..e0431328b7cd 100644 --- a/arch/cris/arch-v32/kernel/signal.c +++ b/arch/cris/arch-v32/kernel/signal.c | |||
@@ -434,7 +434,7 @@ give_sigsegv: | |||
434 | } | 434 | } |
435 | 435 | ||
436 | /* Invoke a signal handler to, well, handle the signal. */ | 436 | /* Invoke a signal handler to, well, handle the signal. */ |
437 | static inline int | 437 | static inline void |
438 | handle_signal(int canrestart, unsigned long sig, | 438 | handle_signal(int canrestart, unsigned long sig, |
439 | siginfo_t *info, struct k_sigaction *ka, | 439 | siginfo_t *info, struct k_sigaction *ka, |
440 | struct pt_regs * regs) | 440 | struct pt_regs * regs) |
@@ -491,8 +491,6 @@ handle_signal(int canrestart, unsigned long sig, | |||
491 | 491 | ||
492 | if (ret == 0) | 492 | if (ret == 0) |
493 | block_sigmask(ka, sig); | 493 | block_sigmask(ka, sig); |
494 | |||
495 | return ret; | ||
496 | } | 494 | } |
497 | 495 | ||
498 | /* | 496 | /* |
@@ -525,16 +523,7 @@ do_signal(int canrestart, struct pt_regs *regs) | |||
525 | 523 | ||
526 | if (signr > 0) { | 524 | if (signr > 0) { |
527 | /* Whee! Actually deliver the signal. */ | 525 | /* Whee! Actually deliver the signal. */ |
528 | if (handle_signal(canrestart, signr, &info, &ka, | 526 | handle_signal(canrestart, signr, &info, &ka, regs); |
529 | regs)) { | ||
530 | /* a signal was successfully delivered; the saved | ||
531 | * sigmask will have been stored in the signal frame, | ||
532 | * and will be restored by sigreturn, so we can simply | ||
533 | * clear the TIF_RESTORE_SIGMASK flag */ | ||
534 | if (test_thread_flag(TIF_RESTORE_SIGMASK)) | ||
535 | clear_thread_flag(TIF_RESTORE_SIGMASK); | ||
536 | } | ||
537 | |||
538 | return; | 527 | return; |
539 | } | 528 | } |
540 | 529 | ||