aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/signal.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/signal.c')
-rw-r--r--kernel/signal.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/kernel/signal.c b/kernel/signal.c
index f2fc3a9ea8fc..fc1cb03c241c 100644
--- a/kernel/signal.c
+++ b/kernel/signal.c
@@ -673,8 +673,7 @@ static inline int wants_signal(int sig, struct task_struct *p)
673 return task_curr(p) || !signal_pending(p); 673 return task_curr(p) || !signal_pending(p);
674} 674}
675 675
676static void 676static void complete_signal(int sig, struct task_struct *p, int group)
677__group_complete_signal(int sig, struct task_struct *p)
678{ 677{
679 struct signal_struct *signal = p->signal; 678 struct signal_struct *signal = p->signal;
680 struct task_struct *t; 679 struct task_struct *t;
@@ -687,7 +686,7 @@ __group_complete_signal(int sig, struct task_struct *p)
687 */ 686 */
688 if (wants_signal(sig, p)) 687 if (wants_signal(sig, p))
689 t = p; 688 t = p;
690 else if (thread_group_empty(p)) 689 else if (!group || thread_group_empty(p))
691 /* 690 /*
692 * There is just one thread and it does not need to be woken. 691 * There is just one thread and it does not need to be woken.
693 * It will dequeue unblocked signals before it runs again. 692 * It will dequeue unblocked signals before it runs again.
@@ -871,8 +870,7 @@ specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t)
871 if (ret <= 0) 870 if (ret <= 0)
872 return ret; 871 return ret;
873 872
874 if (!sigismember(&t->blocked, sig)) 873 complete_signal(sig, t, 0);
875 signal_wake_up(t, sig == SIGKILL);
876 return 0; 874 return 0;
877} 875}
878 876
@@ -930,7 +928,7 @@ __group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
930 if (ret <= 0) 928 if (ret <= 0)
931 return ret; 929 return ret;
932 930
933 __group_complete_signal(sig, p); 931 complete_signal(sig, p, 1);
934 return 0; 932 return 0;
935} 933}
936 934
@@ -1309,8 +1307,7 @@ int send_sigqueue(int sig, struct sigqueue *q, struct task_struct *p)
1309 1307
1310 ret = do_send_sigqueue(sig, q, p, 0); 1308 ret = do_send_sigqueue(sig, q, p, 0);
1311 1309
1312 if (!sigismember(&p->blocked, sig)) 1310 complete_signal(sig, p, 0);
1313 signal_wake_up(p, sig == SIGKILL);
1314 1311
1315 unlock_task_sighand(p, &flags); 1312 unlock_task_sighand(p, &flags);
1316out_err: 1313out_err:
@@ -1330,7 +1327,7 @@ send_group_sigqueue(int sig, struct sigqueue *q, struct task_struct *p)
1330 1327
1331 ret = do_send_sigqueue(sig, q, p, 1); 1328 ret = do_send_sigqueue(sig, q, p, 1);
1332 1329
1333 __group_complete_signal(sig, p); 1330 complete_signal(sig, p, 1);
1334 1331
1335 spin_unlock_irqrestore(&p->sighand->siglock, flags); 1332 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1336 1333