From: Matthew Wilcox Date: Thu, 6 Dec 2007 16:03:36 +0000 (-0500) Subject: proc/array.c: Use TASK_REPORT X-Git-Tag: v2.6.25-rc1~1125^2~18 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=1587e2b1880632d959db6ac9e79cb1d99a73c656;p=linux-2.6-omap-h63xx.git proc/array.c: Use TASK_REPORT Signed-off-by: Matthew Wilcox --- diff --git a/fs/proc/array.c b/fs/proc/array.c index 65c62e1bfd6..5be663e5dad 100644 --- a/fs/proc/array.c +++ b/fs/proc/array.c @@ -141,12 +141,7 @@ static const char *task_state_array[] = { static inline const char *get_task_state(struct task_struct *tsk) { - unsigned int state = (tsk->state & (TASK_RUNNING | - TASK_INTERRUPTIBLE | - TASK_UNINTERRUPTIBLE | - TASK_STOPPED | - TASK_TRACED)) | - tsk->exit_state; + unsigned int state = (tsk->state & TASK_REPORT) | tsk->exit_state; const char **p = &task_state_array[0]; while (state) {