diff options
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/proc_misc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/proc/proc_misc.c b/fs/proc/proc_misc.c index f133afebed7a..bee251cb87c8 100644 --- a/fs/proc/proc_misc.c +++ b/fs/proc/proc_misc.c | |||
@@ -507,7 +507,8 @@ static int show_stat(struct seq_file *p, void *v) | |||
507 | } | 507 | } |
508 | seq_printf(p, "intr %llu", (unsigned long long)sum); | 508 | seq_printf(p, "intr %llu", (unsigned long long)sum); |
509 | 509 | ||
510 | #if !defined(CONFIG_PPC64) && !defined(CONFIG_ALPHA) && !defined(CONFIG_IA64) | 510 | #ifndef CONFIG_SMP |
511 | /* Touches too many cache lines on SMP setups */ | ||
511 | for (i = 0; i < NR_IRQS; i++) | 512 | for (i = 0; i < NR_IRQS; i++) |
512 | seq_printf(p, " %u", per_irq_sum[i]); | 513 | seq_printf(p, " %u", per_irq_sum[i]); |
513 | #endif | 514 | #endif |