diff options
Diffstat (limited to 'fs/proc/array.c')
| -rw-r--r-- | fs/proc/array.c | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/fs/proc/array.c b/fs/proc/array.c index 1bd2077187fd..656e401794de 100644 --- a/fs/proc/array.c +++ b/fs/proc/array.c | |||
| @@ -140,24 +140,15 @@ static const char * const task_state_array[] = { | |||
| 140 | "t (tracing stop)", /* 8 */ | 140 | "t (tracing stop)", /* 8 */ |
| 141 | "Z (zombie)", /* 16 */ | 141 | "Z (zombie)", /* 16 */ |
| 142 | "X (dead)", /* 32 */ | 142 | "X (dead)", /* 32 */ |
| 143 | "x (dead)", /* 64 */ | ||
| 144 | "K (wakekill)", /* 128 */ | ||
| 145 | "W (waking)", /* 256 */ | ||
| 146 | "P (parked)", /* 512 */ | ||
| 147 | }; | 143 | }; |
| 148 | 144 | ||
| 149 | static inline const char *get_task_state(struct task_struct *tsk) | 145 | static inline const char *get_task_state(struct task_struct *tsk) |
| 150 | { | 146 | { |
| 151 | unsigned int state = (tsk->state & TASK_REPORT) | tsk->exit_state; | 147 | unsigned int state = (tsk->state | tsk->exit_state) & TASK_REPORT; |
| 152 | const char * const *p = &task_state_array[0]; | ||
| 153 | 148 | ||
| 154 | BUILD_BUG_ON(1 + ilog2(TASK_STATE_MAX) != ARRAY_SIZE(task_state_array)); | 149 | BUILD_BUG_ON(1 + ilog2(TASK_REPORT) != ARRAY_SIZE(task_state_array)-1); |
| 155 | 150 | ||
| 156 | while (state) { | 151 | return task_state_array[fls(state)]; |
| 157 | p++; | ||
| 158 | state >>= 1; | ||
| 159 | } | ||
| 160 | return *p; | ||
| 161 | } | 152 | } |
| 162 | 153 | ||
| 163 | static inline void task_state(struct seq_file *m, struct pid_namespace *ns, | 154 | static inline void task_state(struct seq_file *m, struct pid_namespace *ns, |
| @@ -453,8 +444,7 @@ static int do_task_stat(struct seq_file *m, struct pid_namespace *ns, | |||
| 453 | min_flt += t->min_flt; | 444 | min_flt += t->min_flt; |
| 454 | maj_flt += t->maj_flt; | 445 | maj_flt += t->maj_flt; |
| 455 | gtime += task_gtime(t); | 446 | gtime += task_gtime(t); |
| 456 | t = next_thread(t); | 447 | } while_each_thread(task, t); |
| 457 | } while (t != task); | ||
| 458 | 448 | ||
| 459 | min_flt += sig->min_flt; | 449 | min_flt += sig->min_flt; |
| 460 | maj_flt += sig->maj_flt; | 450 | maj_flt += sig->maj_flt; |
