diff options
-rw-r--r-- | fs/exec.c | 13 | ||||
-rw-r--r-- | kernel/exit.c | 2 | ||||
-rw-r--r-- | kernel/signal.c | 2 |
3 files changed, 14 insertions, 3 deletions
@@ -660,12 +660,23 @@ static int de_thread(struct task_struct *tsk) | |||
660 | struct dentry *proc_dentry1, *proc_dentry2; | 660 | struct dentry *proc_dentry1, *proc_dentry2; |
661 | unsigned long ptrace; | 661 | unsigned long ptrace; |
662 | 662 | ||
663 | leader = current->group_leader; | ||
664 | /* | ||
665 | * If our leader is the child_reaper become | ||
666 | * the child_reaper and resend SIGKILL signal. | ||
667 | */ | ||
668 | if (unlikely(leader == child_reaper)) { | ||
669 | write_lock(&tasklist_lock); | ||
670 | child_reaper = current; | ||
671 | zap_other_threads(current); | ||
672 | write_unlock(&tasklist_lock); | ||
673 | } | ||
674 | |||
663 | /* | 675 | /* |
664 | * Wait for the thread group leader to be a zombie. | 676 | * Wait for the thread group leader to be a zombie. |
665 | * It should already be zombie at this point, most | 677 | * It should already be zombie at this point, most |
666 | * of the time. | 678 | * of the time. |
667 | */ | 679 | */ |
668 | leader = current->group_leader; | ||
669 | while (leader->exit_state != EXIT_ZOMBIE) | 680 | while (leader->exit_state != EXIT_ZOMBIE) |
670 | yield(); | 681 | yield(); |
671 | 682 | ||
diff --git a/kernel/exit.c b/kernel/exit.c index a8c7efc7a681..223a8802b665 100644 --- a/kernel/exit.c +++ b/kernel/exit.c | |||
@@ -807,7 +807,7 @@ fastcall NORET_TYPE void do_exit(long code) | |||
807 | panic("Aiee, killing interrupt handler!"); | 807 | panic("Aiee, killing interrupt handler!"); |
808 | if (unlikely(!tsk->pid)) | 808 | if (unlikely(!tsk->pid)) |
809 | panic("Attempted to kill the idle task!"); | 809 | panic("Attempted to kill the idle task!"); |
810 | if (unlikely(tsk->pid == 1)) | 810 | if (unlikely(tsk == child_reaper)) |
811 | panic("Attempted to kill init!"); | 811 | panic("Attempted to kill init!"); |
812 | 812 | ||
813 | if (unlikely(current->ptrace & PT_TRACE_EXIT)) { | 813 | if (unlikely(current->ptrace & PT_TRACE_EXIT)) { |
diff --git a/kernel/signal.c b/kernel/signal.c index 75f7341b0c39..dc8f91bf9f89 100644 --- a/kernel/signal.c +++ b/kernel/signal.c | |||
@@ -1990,7 +1990,7 @@ relock: | |||
1990 | continue; | 1990 | continue; |
1991 | 1991 | ||
1992 | /* Init gets no signals it doesn't want. */ | 1992 | /* Init gets no signals it doesn't want. */ |
1993 | if (current->pid == 1) | 1993 | if (current == child_reaper) |
1994 | continue; | 1994 | continue; |
1995 | 1995 | ||
1996 | if (sig_kernel_stop(signr)) { | 1996 | if (sig_kernel_stop(signr)) { |