From: Andrew Morton Cc: Oleg Nesterov Cc: Roland McGrath Cc: Matthew Wilcox Signed-off-by: Andrew Morton --- kernel/exit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/exit.c~wait_task_stopped-simplify-and-fix-races-with-sigcont-sigkill-untrace-fix kernel/exit.c --- a/kernel/exit.c~wait_task_stopped-simplify-and-fix-races-with-sigcont-sigkill-untrace-fix +++ a/kernel/exit.c @@ -1358,7 +1358,7 @@ static int wait_task_stopped(struct task exit_code = 0; spin_lock_irq(&p->sighand->siglock); - if (unlikely(!is_task_stopped_or_traced(p))) + if (unlikely(!task_is_stopped_or_traced(p))) goto unlock_sig; if (delayed_group_leader && !(p->ptrace & PT_PTRACED) && _