From: Don't compute and display the per-irq sums on ia64 either, too much overhead for mostly useless figures. Cc: Olaf Hering Acked-by: "Luck, Tony" Signed-off-by: Andrew Morton --- fs/proc/proc_misc.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN fs/proc/proc_misc.c~disable-per-cpu-intr-in-proc-stat fs/proc/proc_misc.c --- devel/fs/proc/proc_misc.c~disable-per-cpu-intr-in-proc-stat 2006-01-23 00:01:05.000000000 -0800 +++ devel-akpm/fs/proc/proc_misc.c 2006-01-23 00:01:05.000000000 -0800 @@ -548,7 +548,7 @@ static int show_stat(struct seq_file *p, } seq_printf(p, "intr %llu", (unsigned long long)sum); -#if !defined(CONFIG_PPC64) && !defined(CONFIG_ALPHA) +#if !defined(CONFIG_PPC64) && !defined(CONFIG_ALPHA) && !defined(CONFIG_IA64) for (i = 0; i < NR_IRQS; i++) seq_printf(p, " %u", kstat_irqs(i)); #endif _