blob: 62604be9f58d61ef6b9c4cf5b8f787e214d8dc78 [file] [log] [blame]
Keika Kobayashid3d64df2009-06-17 16:25:55 -07001#include <linux/init.h>
2#include <linux/kernel_stat.h>
3#include <linux/proc_fs.h>
4#include <linux/seq_file.h>
5
6/*
7 * /proc/softirqs ... display the number of softirqs
8 */
9static int show_softirqs(struct seq_file *p, void *v)
10{
11 int i, j;
12
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080013 seq_puts(p, " ");
Keika Kobayashid3d64df2009-06-17 16:25:55 -070014 for_each_possible_cpu(i)
15 seq_printf(p, "CPU%-8d", i);
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080016 seq_putc(p, '\n');
Keika Kobayashid3d64df2009-06-17 16:25:55 -070017
18 for (i = 0; i < NR_SOFTIRQS; i++) {
Davidlohr Bueso19cd56c2010-10-27 15:34:12 -070019 seq_printf(p, "%12s:", softirq_to_name[i]);
Keika Kobayashid3d64df2009-06-17 16:25:55 -070020 for_each_possible_cpu(j)
21 seq_printf(p, " %10u", kstat_softirqs_cpu(i, j));
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080022 seq_putc(p, '\n');
Keika Kobayashid3d64df2009-06-17 16:25:55 -070023 }
24 return 0;
25}
26
27static int softirqs_open(struct inode *inode, struct file *file)
28{
29 return single_open(file, show_softirqs, NULL);
30}
31
32static const struct file_operations proc_softirqs_operations = {
33 .open = softirqs_open,
34 .read = seq_read,
35 .llseek = seq_lseek,
36 .release = single_release,
37};
38
39static int __init proc_softirqs_init(void)
40{
41 proc_create("softirqs", 0, NULL, &proc_softirqs_operations);
42 return 0;
43}
44module_init(proc_softirqs_init);