diff options
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/base.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fs/proc/base.c b/fs/proc/base.c index dfa532730e55..3ad615fb8656 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c | |||
@@ -83,6 +83,9 @@ | |||
83 | #include <linux/pid_namespace.h> | 83 | #include <linux/pid_namespace.h> |
84 | #include <linux/fs_struct.h> | 84 | #include <linux/fs_struct.h> |
85 | #include <linux/slab.h> | 85 | #include <linux/slab.h> |
86 | #ifdef CONFIG_HARDWALL | ||
87 | #include <asm/hardwall.h> | ||
88 | #endif | ||
86 | #include "internal.h" | 89 | #include "internal.h" |
87 | 90 | ||
88 | /* NOTE: | 91 | /* NOTE: |
@@ -2894,6 +2897,9 @@ static const struct pid_entry tgid_base_stuff[] = { | |||
2894 | #ifdef CONFIG_TASK_IO_ACCOUNTING | 2897 | #ifdef CONFIG_TASK_IO_ACCOUNTING |
2895 | INF("io", S_IRUGO, proc_tgid_io_accounting), | 2898 | INF("io", S_IRUGO, proc_tgid_io_accounting), |
2896 | #endif | 2899 | #endif |
2900 | #ifdef CONFIG_HARDWALL | ||
2901 | INF("hardwall", S_IRUGO, proc_pid_hardwall), | ||
2902 | #endif | ||
2897 | }; | 2903 | }; |
2898 | 2904 | ||
2899 | static int proc_tgid_base_readdir(struct file * filp, | 2905 | static int proc_tgid_base_readdir(struct file * filp, |
@@ -3232,6 +3238,9 @@ static const struct pid_entry tid_base_stuff[] = { | |||
3232 | #ifdef CONFIG_TASK_IO_ACCOUNTING | 3238 | #ifdef CONFIG_TASK_IO_ACCOUNTING |
3233 | INF("io", S_IRUGO, proc_tid_io_accounting), | 3239 | INF("io", S_IRUGO, proc_tid_io_accounting), |
3234 | #endif | 3240 | #endif |
3241 | #ifdef CONFIG_HARDWALL | ||
3242 | INF("hardwall", S_IRUGO, proc_pid_hardwall), | ||
3243 | #endif | ||
3235 | }; | 3244 | }; |
3236 | 3245 | ||
3237 | static int proc_tid_base_readdir(struct file * filp, | 3246 | static int proc_tid_base_readdir(struct file * filp, |