Skip to content

Commit b436069

Browse files
oleg-nesterovtorvalds
authored andcommitted
wait: use EXIT_TRACE only if thread_group_leader(zombie)
wait_task_zombie() always uses EXIT_TRACE/ptrace_unlink() if ptrace_reparented(). This is suboptimal and a bit confusing: we do not need do_notify_parent(p) if !thread_group_leader(p) and in this case we also do not need ptrace_unlink(), we can rely on ptrace_release_task(). Change wait_task_zombie() to check thread_group_leader() along with ptrace_reparented() and simplify the final p->exit_state transition. Signed-off-by: Oleg Nesterov <oleg@redhat.com> Tested-by: Michal Schmidt <mschmidt@redhat.com> Cc: Jan Kratochvil <jan.kratochvil@redhat.com> Cc: Al Viro <viro@ZenIV.linux.org.uk> Cc: Lennart Poettering <lpoetter@redhat.com> Cc: Roland McGrath <roland@hack.frob.com> Cc: Tejun Heo <tj@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent abd50b3 commit b436069

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

kernel/exit.c

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1040,7 +1040,7 @@ static int wait_task_zombie(struct wait_opts *wo, struct task_struct *p)
10401040
/*
10411041
* Move the task's state to DEAD/TRACE, only one thread can do this.
10421042
*/
1043-
state = traced ? EXIT_TRACE : EXIT_DEAD;
1043+
state = traced && thread_group_leader(p) ? EXIT_TRACE : EXIT_DEAD;
10441044
if (cmpxchg(&p->exit_state, EXIT_ZOMBIE, state) != EXIT_ZOMBIE)
10451045
return 0;
10461046
/*
@@ -1140,18 +1140,15 @@ static int wait_task_zombie(struct wait_opts *wo, struct task_struct *p)
11401140
if (!retval)
11411141
retval = pid;
11421142

1143-
if (traced) {
1143+
if (state == EXIT_TRACE) {
11441144
write_lock_irq(&tasklist_lock);
11451145
/* We dropped tasklist, ptracer could die and untrace */
11461146
ptrace_unlink(p);
1147-
/*
1148-
* If this is not a sub-thread, notify the parent.
1149-
* If parent wants a zombie, don't release it now.
1150-
*/
1151-
state = EXIT_DEAD;
1152-
if (thread_group_leader(p) &&
1153-
!do_notify_parent(p, p->exit_signal))
1154-
state = EXIT_ZOMBIE;
1147+
1148+
/* If parent wants a zombie, don't release it now */
1149+
state = EXIT_ZOMBIE;
1150+
if (do_notify_parent(p, p->exit_signal))
1151+
state = EXIT_DEAD;
11551152
p->exit_state = state;
11561153
write_unlock_irq(&tasklist_lock);
11571154
}

0 commit comments

Comments
 (0)