diff options
author | Oleg Nesterov <oleg@redhat.com> | 2009-04-02 19:58:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-02 22:04:59 -0400 |
commit | 0a967a044a777e8b9c739120927114ddc0094298 (patch) | |
tree | aa1abba4c643e0f502623870045a4c978db5683b /kernel/exit.c | |
parent | 4576145c1ecdaaea9ef8976a48335206aa1ebf91 (diff) |
reparent_thread: don't call kill_orphaned_pgrp() if task_detached()
If task_detached(p) == T, then either
a) p is not the main thread, we will find the group leader on the
->children list.
or
b) p is the group leader but its ->exit_state = EXIT_DEAD. This
can only happen when the last sub-thread has died, but in that case
that thread has already called kill_orphaned_pgrp() from
exit_notify().
In both cases kill_orphaned_pgrp() looks bogus.
Move the task_detached() check up and simplify the code, this is also
right from the "common sense" pov: we should do nothing with the detached
childs, except move them to the new parent's ->children list.
Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Cc: Roland McGrath <roland@redhat.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/exit.c')
-rw-r--r-- | kernel/exit.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/exit.c b/kernel/exit.c index 576eae233b53..405e6877168b 100644 --- a/kernel/exit.c +++ b/kernel/exit.c | |||
@@ -818,6 +818,8 @@ static void reparent_thread(struct task_struct *p, struct task_struct *father) | |||
818 | 818 | ||
819 | list_move_tail(&p->sibling, &p->real_parent->children); | 819 | list_move_tail(&p->sibling, &p->real_parent->children); |
820 | 820 | ||
821 | if (task_detached(p)) | ||
822 | return; | ||
821 | /* If this is a threaded reparent there is no need to | 823 | /* If this is a threaded reparent there is no need to |
822 | * notify anyone anything has happened. | 824 | * notify anyone anything has happened. |
823 | */ | 825 | */ |
@@ -825,15 +827,13 @@ static void reparent_thread(struct task_struct *p, struct task_struct *father) | |||
825 | return; | 827 | return; |
826 | 828 | ||
827 | /* We don't want people slaying init. */ | 829 | /* We don't want people slaying init. */ |
828 | if (!task_detached(p)) | 830 | p->exit_signal = SIGCHLD; |
829 | p->exit_signal = SIGCHLD; | ||
830 | 831 | ||
831 | /* If we'd notified the old parent about this child's death, | 832 | /* If we'd notified the old parent about this child's death, |
832 | * also notify the new parent. | 833 | * also notify the new parent. |
833 | */ | 834 | */ |
834 | if (!ptrace_reparented(p) && | 835 | if (!ptrace_reparented(p) && |
835 | p->exit_state == EXIT_ZOMBIE && | 836 | p->exit_state == EXIT_ZOMBIE && thread_group_empty(p)) |
836 | !task_detached(p) && thread_group_empty(p)) | ||
837 | do_notify_parent(p, p->exit_signal); | 837 | do_notify_parent(p, p->exit_signal); |
838 | 838 | ||
839 | kill_orphaned_pgrp(p, father); | 839 | kill_orphaned_pgrp(p, father); |