We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bced76a commit f7e6746Copy full SHA for f7e6746
fs/proc/stat.c
@@ -77,6 +77,8 @@ static int show_stat(struct seq_file *p, void *v)
77
steal += kcpustat_cpu(i).cpustat[CPUTIME_STEAL];
78
guest += kcpustat_cpu(i).cpustat[CPUTIME_GUEST];
79
guest_nice += kcpustat_cpu(i).cpustat[CPUTIME_GUEST_NICE];
80
+ sum += kstat_cpu_irqs_sum(i);
81
+ sum += arch_irq_stat_cpu(i);
82
83
for (j = 0; j < NR_SOFTIRQS; j++) {
84
unsigned int softirq_stat = kstat_softirqs_cpu(j, i);
0 commit comments