Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755142AbZCYUqe (ORCPT ); Wed, 25 Mar 2009 16:46:34 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754322AbZCYUqS (ORCPT ); Wed, 25 Mar 2009 16:46:18 -0400 Received: from relay3.ptmail.sapo.pt ([212.55.154.23]:52587 "HELO sapo.pt" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with SMTP id S1753095AbZCYUqQ (ORCPT ); Wed, 25 Mar 2009 16:46:16 -0400 X-AntiVirus: PTMail-AV 0.3-0.92.0 Date: Wed, 25 Mar 2009 20:43:51 +0000 From: Luis Henriques To: Ingo Molnar Cc: linux-kernel@vger.kernel.org Subject: [PATCH -tip] perf_counter: trivial fix on columns alignment Message-ID: <20090325204351.GA4168@hades.domain.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1000 Lines: 28 Corrected columns alignment in /proc/interrupts Signed-off-by: Luis Henriques --- 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 9c27543..5209486 100644 --- a/arch/x86/kernel/irq.c +++ b/arch/x86/kernel/irq.c @@ -63,7 +63,7 @@ static int show_other_interrupts(struct seq_file *p, int prec) for_each_online_cpu(j) seq_printf(p, "%10u ", irq_stats(j)->irq_spurious_count); seq_printf(p, " Spurious interrupts\n"); - seq_printf(p, "CNT: "); + seq_printf(p, "%*s: ", prec, "CNT"); for_each_online_cpu(j) seq_printf(p, "%10u ", irq_stats(j)->apic_perf_irqs); seq_printf(p, " Performance counter interrupts\n"); -- 1.6.2.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/