mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
abaf3787ac
PROC_FS is a bool, so this code is either present or absent. It will never be modular, so using module_init as an alias for __initcall is rather misleading. Fix this up now, so that we can relocate module_init from init.h into module.h in the future. If we don't do this, we'd have to add module.h to obviously non-modular code, and that would be ugly at best. Note that direct use of __initcall is discouraged, vs. one of the priority categorized subgroups. As __initcall gets mapped onto device_initcall, our use of fs_initcall (which makes sense for fs code) will thus change these registrations from level 6-device to level 5-fs (i.e. slightly earlier). However no observable impact of that small difference has been observed during testing, or is expected. Also note that this change uncovers a missing semicolon bug in the registration of vmcore_init as an initcall. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
44 lines
993 B
C
44 lines
993 B
C
#include <linux/init.h>
|
|
#include <linux/kernel_stat.h>
|
|
#include <linux/proc_fs.h>
|
|
#include <linux/seq_file.h>
|
|
|
|
/*
|
|
* /proc/softirqs ... display the number of softirqs
|
|
*/
|
|
static int show_softirqs(struct seq_file *p, void *v)
|
|
{
|
|
int i, j;
|
|
|
|
seq_puts(p, " ");
|
|
for_each_possible_cpu(i)
|
|
seq_printf(p, "CPU%-8d", i);
|
|
seq_putc(p, '\n');
|
|
|
|
for (i = 0; i < NR_SOFTIRQS; i++) {
|
|
seq_printf(p, "%12s:", softirq_to_name[i]);
|
|
for_each_possible_cpu(j)
|
|
seq_printf(p, " %10u", kstat_softirqs_cpu(i, j));
|
|
seq_putc(p, '\n');
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int softirqs_open(struct inode *inode, struct file *file)
|
|
{
|
|
return single_open(file, show_softirqs, NULL);
|
|
}
|
|
|
|
static const struct file_operations proc_softirqs_operations = {
|
|
.open = softirqs_open,
|
|
.read = seq_read,
|
|
.llseek = seq_lseek,
|
|
.release = single_release,
|
|
};
|
|
|
|
static int __init proc_softirqs_init(void)
|
|
{
|
|
proc_create("softirqs", 0, NULL, &proc_softirqs_operations);
|
|
return 0;
|
|
}
|
|
fs_initcall(proc_softirqs_init);
|