* [PATCH] Capitalize function call interrupts consistently
@ 2008-09-04 11:47 Andi Kleen
2008-09-04 17:53 ` H. Peter Anvin
0 siblings, 1 reply; 2+ messages in thread
From: Andi Kleen @ 2008-09-04 11:47 UTC (permalink / raw)
To: x86, linux-kernel
Capitalize function call interrupts consistently
All other descriptions in /proc/interrupts are capitalized except
for "function call interrupts". Capitalize it too for consistency.
While that's technically a published ABI I think the risk of anyone
relying on that text to stay the same is negligible.
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Index: linux-2.6.27-rc4-misc/arch/x86/kernel/irq_32.c
===================================================================
--- linux-2.6.27-rc4-misc.orig/arch/x86/kernel/irq_32.c
+++ linux-2.6.27-rc4-misc/arch/x86/kernel/irq_32.c
@@ -325,7 +325,7 @@ skip:
for_each_online_cpu(j)
seq_printf(p, "%10u ",
per_cpu(irq_stat,j).irq_call_count);
- seq_printf(p, " function call interrupts\n");
+ seq_printf(p, " Function call interrupts\n");
seq_printf(p, "TLB: ");
for_each_online_cpu(j)
seq_printf(p, "%10u ",
Index: linux-2.6.27-rc4-misc/arch/x86/kernel/irq_64.c
===================================================================
--- linux-2.6.27-rc4-misc.orig/arch/x86/kernel/irq_64.c
+++ linux-2.6.27-rc4-misc/arch/x86/kernel/irq_64.c
@@ -129,7 +129,7 @@ skip:
seq_printf(p, "CAL: ");
for_each_online_cpu(j)
seq_printf(p, "%10u ", cpu_pda(j)->irq_call_count);
- seq_printf(p, " function call interrupts\n");
+ seq_printf(p, " Function call interrupts\n");
seq_printf(p, "TLB: ");
for_each_online_cpu(j)
seq_printf(p, "%10u ", cpu_pda(j)->irq_tlb_count);
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-09-04 17:53 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-04 11:47 [PATCH] Capitalize function call interrupts consistently Andi Kleen
2008-09-04 17:53 ` H. Peter Anvin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox