diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-05-26 19:25:51 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-26 20:12:36 -0400 |
commit | e130aa70f438855b4a0e13a5249951da001798d4 (patch) | |
tree | 12d661a9779bc764d4af89e1c8da4d190ba0db84 /fs/proc | |
parent | 0a8cb8e34149251ad1f280fe099a4f971554639a (diff) |
proc: constify status array
No need for this local array to be writable, so mark it const.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/array.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/proc/array.c b/fs/proc/array.c index 5e4f776b0917..9b45ee84fbcc 100644 --- a/fs/proc/array.c +++ b/fs/proc/array.c | |||
@@ -131,7 +131,7 @@ static inline void task_name(struct seq_file *m, struct task_struct *p) | |||
131 | * you can test for combinations of others with | 131 | * you can test for combinations of others with |
132 | * simple bit tests. | 132 | * simple bit tests. |
133 | */ | 133 | */ |
134 | static const char *task_state_array[] = { | 134 | static const char * const task_state_array[] = { |
135 | "R (running)", /* 0 */ | 135 | "R (running)", /* 0 */ |
136 | "S (sleeping)", /* 1 */ | 136 | "S (sleeping)", /* 1 */ |
137 | "D (disk sleep)", /* 2 */ | 137 | "D (disk sleep)", /* 2 */ |
@@ -147,7 +147,7 @@ static const char *task_state_array[] = { | |||
147 | static inline const char *get_task_state(struct task_struct *tsk) | 147 | static inline const char *get_task_state(struct task_struct *tsk) |
148 | { | 148 | { |
149 | unsigned int state = (tsk->state & TASK_REPORT) | tsk->exit_state; | 149 | unsigned int state = (tsk->state & TASK_REPORT) | tsk->exit_state; |
150 | const char **p = &task_state_array[0]; | 150 | const char * const *p = &task_state_array[0]; |
151 | 151 | ||
152 | BUILD_BUG_ON(1 + ilog2(TASK_STATE_MAX) != ARRAY_SIZE(task_state_array)); | 152 | BUILD_BUG_ON(1 + ilog2(TASK_STATE_MAX) != ARRAY_SIZE(task_state_array)); |
153 | 153 | ||