#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); ;'> <option value='emaclite-cleanup'>emaclite-cleanup</option> <option value='master' selected='selected'>master</option> <option value='nds-private-remove'>nds-private-remove</option> <option value='packet-loop-back'>packet-loop-back</option> <option value='packet-rx-pump-back'>packet-rx-pump-back</option> </select> <input type='submit' value='switch'/></form></td></tr> <tr><td class='sub'>net-next plumbings</td><td class='sub right'>Tobias Klauser</td></tr></table> <table class='tabs'><tr><td> <a href='/cgit.cgi/linux/net-next.git/'>summary</a><a href='/cgit.cgi/linux/net-next.git/refs/?id=5e17da634a21b1200853fe82ba67d6571f2beabe'>refs</a><a class='active' href='/cgit.cgi/linux/net-next.git/log/net/ipv6/xfrm6_state.c'>log</a><a href='/cgit.cgi/linux/net-next.git/tree/net/ipv6/xfrm6_state.c?id=5e17da634a21b1200853fe82ba67d6571f2beabe'>tree</a><a href='/cgit.cgi/linux/net-next.git/commit/net/ipv6/xfrm6_state.c?id=5e17da634a21b1200853fe82ba67d6571f2beabe'>commit</a><a href='/cgit.cgi/linux/net-next.git/diff/net/ipv6/xfrm6_state.c?id=5e17da634a21b1200853fe82ba67d6571f2beabe'>diff</a></td><td class='form'><form class='right' method='get' action='/cgit.cgi/linux/net-next.git/log/net/ipv6/xfrm6_state.c'> <input type='hidden' name='id' value='5e17da634a21b1200853fe82ba67d6571f2beabe'/><select name='qt'> <option value='grep'>log msg</option> <option value='author'>author</option> <option value='committer'>committer</option> <option value='range'>range</option> </select> <input class='txt' type='search' size='10' name='q' value=''/> <input type='submit' value='search'/> </form> </td></tr></table> <div class='path'>path: <a href='/cgit.cgi/linux/net-next.git/log/?id=5e17da634a21b1200853fe82ba67d6571f2beabe'>root</a>/<a href='/cgit.cgi/linux/net-next.git/log/net?id=5e17da634a21b1200853fe82ba67d6571f2beabe'>net</a>/<a href='/cgit.cgi/linux/net-next.git/log/net/ipv6?id=5e17da634a21b1200853fe82ba67d6571f2beabe'>ipv6</a>/<a href='/cgit.cgi/linux/net-next.git/log/net/ipv6/xfrm6_state.c?id=5e17da634a21b1200853fe82ba67d6571f2beabe'>xfrm6_state.c</a></div><div class='content'><table class='list nowrap'><tr class='nohover'><th class='left'>Age</th><th class='left'>Commit message (<a href='/cgit.cgi/linux/net-next.git/log/net/ipv6/xfrm6_state.c?id=5e17da634a21b1200853fe82ba67d6571f2beabe&showmsg=1'>Expand</a>)</th><th class='left'>Author</th><th class='left'>Files</th><th class='left'>Lines</th></tr>