[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-59d138120d18930ba9a5466662d45a2bd2223455@git.kernel.org>
Date: Wed, 8 Apr 2009 16:10:24 GMT
From: Hidetoshi Seto <seto.hidetoshi@...fujitsu.com>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, hpa@...or.com, mingo@...hat.com,
jbeulich@...ell.com, seto.hidetoshi@...fujitsu.com,
tglx@...utronix.de, mingo@...e.hu
Subject: [tip:x86/urgent] x86: smarten /proc/interrupts output for new counters
Commit-ID: 59d138120d18930ba9a5466662d45a2bd2223455
Gitweb: http://git.kernel.org/tip/59d138120d18930ba9a5466662d45a2bd2223455
Author: Hidetoshi Seto <seto.hidetoshi@...fujitsu.com>
AuthorDate: Wed, 25 Mar 2009 10:50:34 +0900
Committer: Ingo Molnar <mingo@...e.hu>
CommitDate: Wed, 8 Apr 2009 18:06:07 +0200
x86: smarten /proc/interrupts output for new counters
Now /proc/interrupts of tip tree has new counters:
PLT: Platform interrupts
Format change of output, as like that by commit:
commit 7a81d9a7da03d2f27840d659f97ef140d032f609
x86: smarten /proc/interrupts output
should be applied to these new counters too.
Signed-off-by: Hidetoshi Seto <seto.hidetoshi@...fujitsu.com>
Cc: Jan Beulich <jbeulich@...ell.com>
LKML-Reference: <49C98DEA.8060208@...fujitsu.com>
Signed-off-by: Ingo Molnar <mingo@...e.hu>
---
arch/x86/kernel/irq.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/x86/kernel/irq.c b/arch/x86/kernel/irq.c
index 3aaf7b9..c3fe010 100644
--- a/arch/x86/kernel/irq.c
+++ b/arch/x86/kernel/irq.c
@@ -65,7 +65,7 @@ static int show_other_interrupts(struct seq_file *p, int prec)
seq_printf(p, " Spurious interrupts\n");
#endif
if (generic_interrupt_extension) {
- seq_printf(p, "PLT: ");
+ seq_printf(p, "%*s: ", prec, "PLT");
for_each_online_cpu(j)
seq_printf(p, "%10u ", irq_stats(j)->generic_irqs);
seq_printf(p, " Platform interrupts\n");
--
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