projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d38b04
)
[PATCH] disable per cpu intr in /proc/stat
author
[email protected]
<
[email protected]
>
Fri, 3 Feb 2006 11:04:24 +0000
(
03:04
-0800)
committer
Linus Torvalds
<
[email protected]
>
Fri, 3 Feb 2006 16:32:07 +0000
(08:32 -0800)
Don't compute and display the per-irq sums on ia64 either, too much
overhead for mostly useless figures.
Cc: Olaf Hering <
[email protected]
>
Acked-by: "Luck, Tony" <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
fs/proc/proc_misc.c
patch
|
blob
|
history
diff --git
a/fs/proc/proc_misc.c
b/fs/proc/proc_misc.c
index 8f8014285a349c14f547c8e3d92d47cc9a6ff4b7..1d24fead51a6385d9e2ce69c9e7353ade88c039a 100644
(file)
--- a/
fs/proc/proc_misc.c
+++ b/
fs/proc/proc_misc.c
@@
-548,7
+548,7
@@
static int show_stat(struct seq_file *p, void *v)
}
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