diff options
author | Alexey Dobriyan | 2022-09-20 20:35:23 +0300 |
---|---|---|
committer | Andrew Morton | 2022-10-03 14:21:45 -0700 |
commit | ef1d61781bc6708ccc4a21262cc80a7dad952e04 (patch) | |
tree | 8718e18c0d48dcd197f78ab1924ac7d21cab0ac5 /fs/proc/softirqs.c | |
parent | da6f79164e98de4ab3f2fdeea4875207fe282014 (diff) |
proc: mark more files as permanent
Mark
/proc/devices
/proc/kpagecount
/proc/kpageflags
/proc/kpagecgroup
/proc/loadavg
/proc/meminfo
/proc/softirqs
/proc/uptime
/proc/version
as permanent /proc entries, saving alloc/free and some list/spinlock ops
per use.
These files are never removed by the kernel so it is OK to mark them.
Link: https://lkml.kernel.org/r/Yyn527DzDMa+r0Yj@localhost.localdomain
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'fs/proc/softirqs.c')
-rw-r--r-- | fs/proc/softirqs.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/fs/proc/softirqs.c b/fs/proc/softirqs.c index 12901dcf57e2..f4616083faef 100644 --- a/fs/proc/softirqs.c +++ b/fs/proc/softirqs.c @@ -3,6 +3,7 @@ #include <linux/kernel_stat.h> #include <linux/proc_fs.h> #include <linux/seq_file.h> +#include "internal.h" /* * /proc/softirqs ... display the number of softirqs @@ -27,7 +28,10 @@ static int show_softirqs(struct seq_file *p, void *v) static int __init proc_softirqs_init(void) { - proc_create_single("softirqs", 0, NULL, show_softirqs); + struct proc_dir_entry *pde; + + pde = proc_create_single("softirqs", 0, NULL, show_softirqs); + pde_make_permanent(pde); return 0; } fs_initcall(proc_softirqs_init); |