blob: 12901dcf57e2bdce9610e8979f1f1d3781e55bc1 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Keika Kobayashid3d64df2009-06-17 16:25:55 -07002#include <linux/init.h>
3#include <linux/kernel_stat.h>
4#include <linux/proc_fs.h>
5#include <linux/seq_file.h>
6
7/*
8 * /proc/softirqs ... display the number of softirqs
9 */
10static int show_softirqs(struct seq_file *p, void *v)
11{
12 int i, j;
13
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080014 seq_puts(p, " ");
Keika Kobayashid3d64df2009-06-17 16:25:55 -070015 for_each_possible_cpu(i)
16 seq_printf(p, "CPU%-8d", i);
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080017 seq_putc(p, '\n');
Keika Kobayashid3d64df2009-06-17 16:25:55 -070018
19 for (i = 0; i < NR_SOFTIRQS; i++) {
Davidlohr Bueso19cd56c2010-10-27 15:34:12 -070020 seq_printf(p, "%12s:", softirq_to_name[i]);
Keika Kobayashid3d64df2009-06-17 16:25:55 -070021 for_each_possible_cpu(j)
22 seq_printf(p, " %10u", kstat_softirqs_cpu(i, j));
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080023 seq_putc(p, '\n');
Keika Kobayashid3d64df2009-06-17 16:25:55 -070024 }
25 return 0;
26}
27
Keika Kobayashid3d64df2009-06-17 16:25:55 -070028static int __init proc_softirqs_init(void)
29{
Christoph Hellwig3f3942a2018-05-15 15:57:23 +020030 proc_create_single("softirqs", 0, NULL, show_softirqs);
Keika Kobayashid3d64df2009-06-17 16:25:55 -070031 return 0;
32}
Paul Gortmakerabaf3782014-01-23 15:55:45 -080033fs_initcall(proc_softirqs_init);