aboutsummaryrefslogtreecommitdiffstats
path: root/arch/microblaze/kernel/signal.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2012-05-21 23:42:15 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2012-06-01 12:58:49 -0400
commita610d6e672d6d3723e8da257ad4a8a288a8f2f89 (patch)
tree2fac6ce7f72756771f4f87583205cc402589dcad /arch/microblaze/kernel/signal.c
parent5754f412a3f107cbcd93ee125bef296f2a07539b (diff)
pull clearing RESTORE_SIGMASK into block_sigmask()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/microblaze/kernel/signal.c')
-rw-r--r--arch/microblaze/kernel/signal.c17
1 files changed, 3 insertions, 14 deletions
diff --git a/arch/microblaze/kernel/signal.c b/arch/microblaze/kernel/signal.c
index fd2de5718a4e..03641199666e 100644
--- a/arch/microblaze/kernel/signal.c
+++ b/arch/microblaze/kernel/signal.c
@@ -310,7 +310,7 @@ do_restart:
310 * OK, we're invoking a handler 310 * OK, we're invoking a handler
311 */ 311 */
312 312
313static int 313static void
314handle_signal(unsigned long sig, struct k_sigaction *ka, 314handle_signal(unsigned long sig, struct k_sigaction *ka,
315 siginfo_t *info, struct pt_regs *regs) 315 siginfo_t *info, struct pt_regs *regs)
316{ 316{
@@ -324,11 +324,9 @@ handle_signal(unsigned long sig, struct k_sigaction *ka,
324 ret = setup_rt_frame(sig, ka, NULL, oldset, regs); 324 ret = setup_rt_frame(sig, ka, NULL, oldset, regs);
325 325
326 if (ret) 326 if (ret)
327 return ret; 327 return;
328 328
329 block_sigmask(ka, sig); 329 block_sigmask(ka, sig);
330
331 return 0;
332} 330}
333 331
334/* 332/*
@@ -356,16 +354,7 @@ static void do_signal(struct pt_regs *regs, int in_syscall)
356 /* Whee! Actually deliver the signal. */ 354 /* Whee! Actually deliver the signal. */
357 if (in_syscall) 355 if (in_syscall)
358 handle_restart(regs, &ka, 1); 356 handle_restart(regs, &ka, 1);
359 if (!handle_signal(signr, &ka, &info, oldset, regs)) { 357 handle_signal(signr, &ka, &info, regs);
360 /*
361 * A signal was successfully delivered; the saved
362 * sigmask will have been stored in the signal frame,
363 * and will be restored by sigreturn, so we can simply
364 * clear the TS_RESTORE_SIGMASK flag.
365 */
366 current_thread_info()->status &=
367 ~TS_RESTORE_SIGMASK;
368 }
369 return; 358 return;
370 } 359 }
371 360