diff options
author | Yinghai Lu <yhlu.kernel@gmail.com> | 2008-09-24 22:04:36 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-16 10:53:12 -0400 |
commit | 7564676813780e0ba4dacf95338202cb72d2172d (patch) | |
tree | f540b5896823a279c96910f10a5dcf00f673f02d /arch/x86/kernel/irq_32.c | |
parent | aac3f2b6f6e88827432c4050ac73552f24b19de1 (diff) |
x86: irq no should not use hex in /proc/interrupts
Arjan van de Ven noticed that we changed IRQ numbers from decimal
to hex in /proc/interrupts - that can break user-space utilities
like irqbalanced.
Reported-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/irq_32.c')
-rw-r--r-- | arch/x86/kernel/irq_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/irq_32.c b/arch/x86/kernel/irq_32.c index b2e1082cf5ad..001772ffc918 100644 --- a/arch/x86/kernel/irq_32.c +++ b/arch/x86/kernel/irq_32.c | |||
@@ -307,7 +307,7 @@ int show_interrupts(struct seq_file *p, void *v) | |||
307 | action = desc->action; | 307 | action = desc->action; |
308 | if (!action && !any_count) | 308 | if (!action && !any_count) |
309 | goto skip; | 309 | goto skip; |
310 | seq_printf(p, "%#x: ",i); | 310 | seq_printf(p, "%3d: ", i); |
311 | #ifndef CONFIG_SMP | 311 | #ifndef CONFIG_SMP |
312 | seq_printf(p, "%10u ", kstat_irqs(i)); | 312 | seq_printf(p, "%10u ", kstat_irqs(i)); |
313 | #else | 313 | #else |