mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-14 04:41:26 +00:00
do_wait: remove one "else if" branch
Minor cleanup. We can remove one "else if" branch. Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru> Cc: Roland McGrath <roland@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
f10db6277d
commit
0a76fe8e50
@ -1590,8 +1590,6 @@ repeat:
|
|||||||
goto repeat;
|
goto repeat;
|
||||||
if (retval != 0) /* He released the lock. */
|
if (retval != 0) /* He released the lock. */
|
||||||
goto end;
|
goto end;
|
||||||
} else if (p->exit_state == EXIT_DEAD) {
|
|
||||||
continue;
|
|
||||||
} else if (p->exit_state == EXIT_ZOMBIE) {
|
} else if (p->exit_state == EXIT_ZOMBIE) {
|
||||||
/*
|
/*
|
||||||
* Eligible but we cannot release it yet:
|
* Eligible but we cannot release it yet:
|
||||||
@ -1606,7 +1604,7 @@ repeat:
|
|||||||
/* He released the lock. */
|
/* He released the lock. */
|
||||||
if (retval != 0)
|
if (retval != 0)
|
||||||
goto end;
|
goto end;
|
||||||
} else {
|
} else if (p->exit_state != EXIT_DEAD) {
|
||||||
check_continued:
|
check_continued:
|
||||||
/*
|
/*
|
||||||
* It's running now, so it might later
|
* It's running now, so it might later
|
||||||
|
Loading…
Reference in New Issue
Block a user