diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2014-08-08 17:21:52 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-08 18:57:23 -0400 |
commit | d962c144839b231d7a787f9d2503f2d1171e2310 (patch) | |
tree | 7c8f3b371ca0f275d9b0a16abf9c4ebffdb5b10f /fs/proc/base.c | |
parent | 19aadc98d6a242e84c4a9e7cfac3d5140b885348 (diff) |
proc: convert /proc/$PID/hardwall to seq_file interface
Signed-off-by: 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/base.c')
-rw-r--r-- | fs/proc/base.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/proc/base.c b/fs/proc/base.c index 089373e12d7c..be41e8bed3ab 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c | |||
@@ -2636,7 +2636,7 @@ static const struct pid_entry tgid_base_stuff[] = { | |||
2636 | ONE("io", S_IRUSR, proc_tgid_io_accounting), | 2636 | ONE("io", S_IRUSR, proc_tgid_io_accounting), |
2637 | #endif | 2637 | #endif |
2638 | #ifdef CONFIG_HARDWALL | 2638 | #ifdef CONFIG_HARDWALL |
2639 | INF("hardwall", S_IRUGO, proc_pid_hardwall), | 2639 | ONE("hardwall", S_IRUGO, proc_pid_hardwall), |
2640 | #endif | 2640 | #endif |
2641 | #ifdef CONFIG_USER_NS | 2641 | #ifdef CONFIG_USER_NS |
2642 | REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations), | 2642 | REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations), |
@@ -2971,7 +2971,7 @@ static const struct pid_entry tid_base_stuff[] = { | |||
2971 | ONE("io", S_IRUSR, proc_tid_io_accounting), | 2971 | ONE("io", S_IRUSR, proc_tid_io_accounting), |
2972 | #endif | 2972 | #endif |
2973 | #ifdef CONFIG_HARDWALL | 2973 | #ifdef CONFIG_HARDWALL |
2974 | INF("hardwall", S_IRUGO, proc_pid_hardwall), | 2974 | ONE("hardwall", S_IRUGO, proc_pid_hardwall), |
2975 | #endif | 2975 | #endif |
2976 | #ifdef CONFIG_USER_NS | 2976 | #ifdef CONFIG_USER_NS |
2977 | REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations), | 2977 | REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations), |