diff options
author | Oleg Nesterov <oleg@tv-sign.ru> | 2008-02-06 01:37:06 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-06 10:41:04 -0800 |
commit | 0a76fe8e50ee93a9d4a1badb1ec995852a6bcaf1 (patch) | |
tree | 57a6a1b8bdb101a1ac5fd54971bfe172de949da0 /kernel/exit.c | |
parent | f10db6277dfd6dffb80b2182a256d35adb3134bc (diff) | |
download | linux-0a76fe8e50ee93a9d4a1badb1ec995852a6bcaf1.tar.gz linux-0a76fe8e50ee93a9d4a1badb1ec995852a6bcaf1.tar.bz2 linux-0a76fe8e50ee93a9d4a1badb1ec995852a6bcaf1.zip |
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>
Diffstat (limited to 'kernel/exit.c')
-rw-r--r-- | kernel/exit.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kernel/exit.c b/kernel/exit.c index 9d3d0f0b27d9..eb9934a82fc1 100644 --- a/kernel/exit.c +++ b/kernel/exit.c @@ -1590,8 +1590,6 @@ repeat: goto repeat; if (retval != 0) /* He released the lock. */ goto end; - } else if (p->exit_state == EXIT_DEAD) { - continue; } else if (p->exit_state == EXIT_ZOMBIE) { /* * Eligible but we cannot release it yet: @@ -1606,7 +1604,7 @@ repeat: /* He released the lock. */ if (retval != 0) goto end; - } else { + } else if (p->exit_state != EXIT_DEAD) { check_continued: /* * It's running now, so it might later |