aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/proc/proc_misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/proc_misc.c b/fs/proc/proc_misc.c
index a2173a2a5625..aa069acf61a0 100644
--- a/fs/proc/proc_misc.c
+++ b/fs/proc/proc_misc.c
@@ -532,7 +532,7 @@ static int show_stat(struct seq_file *p, void *v)
532 steal = cputime64_add(steal, kstat_cpu(i).cpustat.steal); 532 steal = cputime64_add(steal, kstat_cpu(i).cpustat.steal);
533 guest = cputime64_add(guest, kstat_cpu(i).cpustat.guest); 533 guest = cputime64_add(guest, kstat_cpu(i).cpustat.guest);
534 for (j = 0; j < nr_irqs; j++) { 534 for (j = 0; j < nr_irqs; j++) {
535 unsigned int temp = kstat_cpu(i).irqs[j]; 535 unsigned int temp = kstat_irqs_cpu(j, i);
536 sum += temp; 536 sum += temp;
537 per_irq_sum[j] += temp; 537 per_irq_sum[j] += temp;
538 } 538 }