diff options
author | Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com> | 2007-10-31 07:06:13 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2007-11-06 18:40:52 -0500 |
commit | ddd6fc7923fbcfbb53f9431cbc981b1c12636e14 (patch) | |
tree | 5ceffe9caec95763ee7543f33808b1f0bf844f26 /arch | |
parent | 1f3b6045f783ee394076ad6dba2d72ecaaecd243 (diff) |
[IA64] Clean up /proc/interrupts output
Clean up /proc/interrupts output on the system that has 10 or more
CPUs.
Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/ia64/kernel/irq.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/ia64/kernel/irq.c b/arch/ia64/kernel/irq.c index 44be1c952b7c..6dee579f205f 100644 --- a/arch/ia64/kernel/irq.c +++ b/arch/ia64/kernel/irq.c | |||
@@ -61,9 +61,11 @@ int show_interrupts(struct seq_file *p, void *v) | |||
61 | unsigned long flags; | 61 | unsigned long flags; |
62 | 62 | ||
63 | if (i == 0) { | 63 | if (i == 0) { |
64 | seq_printf(p, " "); | 64 | char cpuname[16]; |
65 | seq_printf(p, " "); | ||
65 | for_each_online_cpu(j) { | 66 | for_each_online_cpu(j) { |
66 | seq_printf(p, "CPU%d ",j); | 67 | snprintf(cpuname, 10, "CPU%d", j); |
68 | seq_printf(p, "%10s ", cpuname); | ||
67 | } | 69 | } |
68 | seq_putc(p, '\n'); | 70 | seq_putc(p, '\n'); |
69 | } | 71 | } |