aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kernel/fork.c2
-rw-r--r--kernel/signal.c9
2 files changed, 10 insertions, 1 deletions
diff --git a/kernel/fork.c b/kernel/fork.c
index d7eb727eb535..adbea16ec649 100644
--- a/kernel/fork.c
+++ b/kernel/fork.c
@@ -841,6 +841,8 @@ static int copy_signal(unsigned long clone_flags, struct task_struct *tsk)
841 atomic_set(&sig->live, 1); 841 atomic_set(&sig->live, 1);
842 init_waitqueue_head(&sig->wait_chldexit); 842 init_waitqueue_head(&sig->wait_chldexit);
843 sig->flags = 0; 843 sig->flags = 0;
844 if (clone_flags & CLONE_NEWPID)
845 sig->flags |= SIGNAL_UNKILLABLE;
844 sig->group_exit_code = 0; 846 sig->group_exit_code = 0;
845 sig->group_exit_task = NULL; 847 sig->group_exit_task = NULL;
846 sig->group_stop_count = 0; 848 sig->group_stop_count = 0;
diff --git a/kernel/signal.c b/kernel/signal.c
index fb19aae2363b..ba3da25f0eea 100644
--- a/kernel/signal.c
+++ b/kernel/signal.c
@@ -1870,9 +1870,16 @@ relock:
1870 1870
1871 /* 1871 /*
1872 * Global init gets no signals it doesn't want. 1872 * Global init gets no signals it doesn't want.
1873 * Container-init gets no signals it doesn't want from same
1874 * container.
1875 *
1876 * Note that if global/container-init sees a sig_kernel_only()
1877 * signal here, the signal must have been generated internally
1878 * or must have come from an ancestor namespace. In either
1879 * case, the signal cannot be dropped.
1873 */ 1880 */
1874 if (unlikely(signal->flags & SIGNAL_UNKILLABLE) && 1881 if (unlikely(signal->flags & SIGNAL_UNKILLABLE) &&
1875 !signal_group_exit(signal)) 1882 !sig_kernel_only(signr))
1876 continue; 1883 continue;
1877 1884
1878 if (sig_kernel_stop(signr)) { 1885 if (sig_kernel_stop(signr)) {