Contributors: 12
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Keika Kobayashi |
92 |
57.86% |
1 |
5.56% |
Alexey Dobriyan |
26 |
16.35% |
3 |
16.67% |
Linus Torvalds (pre-git) |
19 |
11.95% |
4 |
22.22% |
Andrew Morton |
7 |
4.40% |
2 |
11.11% |
Linus Torvalds |
3 |
1.89% |
1 |
5.56% |
David Howells |
3 |
1.89% |
1 |
5.56% |
Davidlohr Bueso A |
2 |
1.26% |
1 |
5.56% |
Christoph Hellwig |
2 |
1.26% |
1 |
5.56% |
Yinghai Lu |
2 |
1.26% |
1 |
5.56% |
Kamezawa Hiroyuki |
1 |
0.63% |
1 |
5.56% |
Paul Gortmaker |
1 |
0.63% |
1 |
5.56% |
Greg Kroah-Hartman |
1 |
0.63% |
1 |
5.56% |
Total |
159 |
|
18 |
|
// SPDX-License-Identifier: GPL-2.0
#include <linux/init.h>
#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
*/
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 __init proc_softirqs_init(void)
{
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);