소스 검색

proc/array.c: Use TASK_REPORT

Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
Matthew Wilcox 17 년 전
부모
커밋
1587e2b188
1개의 변경된 파일1개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 6
      fs/proc/array.c

+ 1 - 6
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)
 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];
 	const char **p = &task_state_array[0];
 
 
 	while (state) {
 	while (state) {