[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20191016153606.2326-4-christian.brauner@ubuntu.com>
Date: Wed, 16 Oct 2019 17:36:05 +0200
From: Christian Brauner <christian.brauner@...ntu.com>
To: oleg@...hat.com, linux-kernel@...r.kernel.org
Cc: aarcange@...hat.com, akpm@...ux-foundation.org,
christian@...lner.me, cyphar@...har.com, elena.reshetova@...el.com,
guro@...com, jannh@...gle.com, ldv@...linux.org,
linux-api@...r.kernel.org, linux-kselftest@...r.kernel.org,
mhocko@...e.com, mingo@...nel.org, peterz@...radead.org,
shuah@...nel.org, tglx@...utronix.de, viro@...iv.linux.org.uk,
Christian Brauner <christian.brauner@...ntu.com>
Subject: [PATCH v2 4/5] exit: use task_alive() in do_wait()
Replace hlist_empty() with the new task_alive() helper which is more
idiomatic, easier to grep for, and unifies how callers perform this check.
Cc: Oleg Nesterov <oleg@...hat.com>
Signed-off-by: Christian Brauner <christian.brauner@...ntu.com>
---
/* v1 */
patch not present
/* v2 */
patch introduced
---
kernel/exit.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/exit.c b/kernel/exit.c
index a46a50d67002..2bb0cbe94bda 100644
--- a/kernel/exit.c
+++ b/kernel/exit.c
@@ -1457,7 +1457,7 @@ static long do_wait(struct wait_opts *wo)
*/
wo->notask_error = -ECHILD;
if ((wo->wo_type < PIDTYPE_MAX) &&
- (!wo->wo_pid || hlist_empty(&wo->wo_pid->tasks[wo->wo_type])))
+ (!wo->wo_pid || !task_alive(wo->wo_pid, wo->wo_type)))
goto notask;
set_current_state(TASK_INTERRUPTIBLE);
--
2.23.0
Powered by blists - more mailing lists