[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20080904114738.GA29738@basil.nowhere.org>
Date: Thu, 4 Sep 2008 13:47:38 +0200
From: Andi Kleen <andi@...stfloor.org>
To: x86@...nel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] Capitalize function call interrupts consistently
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@...ux.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);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists