diff --git a/[refs] b/[refs] index fa2221364fa6..b272eb28501a 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 533475d3d48eb839be2b57f6b020150abae91063 +refs/heads/master: d015baebba44613ef59ddffeae2114fa4ede7104 diff --git a/trunk/kernel/futex.c b/trunk/kernel/futex.c index d4633c588f33..b9b8aea5389e 100644 --- a/trunk/kernel/futex.c +++ b/trunk/kernel/futex.c @@ -397,7 +397,7 @@ static struct task_struct * futex_find_get_task(pid_t pid) p = NULL; goto out_unlock; } - if (p->state == EXIT_ZOMBIE || p->exit_state == EXIT_ZOMBIE) { + if (p->exit_state != 0) { p = NULL; goto out_unlock; }