diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2014-08-09 01:21:52 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-09 02:57:23 +0400 |
commit | d962c144839b231d7a787f9d2503f2d1171e2310 (patch) | |
tree | 7c8f3b371ca0f275d9b0a16abf9c4ebffdb5b10f /fs | |
parent | 19aadc98d6a242e84c4a9e7cfac3d5140b885348 (diff) | |
download | linux-d962c144839b231d7a787f9d2503f2d1171e2310.tar.xz |
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')
-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[] = { ONE("io", S_IRUSR, proc_tgid_io_accounting), #endif #ifdef CONFIG_HARDWALL - INF("hardwall", S_IRUGO, proc_pid_hardwall), + ONE("hardwall", S_IRUGO, proc_pid_hardwall), #endif #ifdef CONFIG_USER_NS REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations), @@ -2971,7 +2971,7 @@ static const struct pid_entry tid_base_stuff[] = { ONE("io", S_IRUSR, proc_tid_io_accounting), #endif #ifdef CONFIG_HARDWALL - INF("hardwall", S_IRUGO, proc_pid_hardwall), + ONE("hardwall", S_IRUGO, proc_pid_hardwall), #endif #ifdef CONFIG_USER_NS REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations), |