Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757165Ab0BLQVH (ORCPT ); Fri, 12 Feb 2010 11:21:07 -0500 Received: from landau.phys.spbu.ru ([195.19.235.38]:45201 "EHLO landau.phys.spbu.ru" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757140Ab0BLQVE (ORCPT ); Fri, 12 Feb 2010 11:21:04 -0500 Date: Fri, 12 Feb 2010 19:20:59 +0300 From: Kirill Smelkov To: acme@redhat.com, mingo@redhat.com, mingo@elte.hu Cc: linux-kernel@vger.kernel.org, hpa@zytor.com, efault@gmx.de, tglx@linutronix.de, linux-tip-commits@vger.kernel.org Subject: Re: [tip:perf/core] perf top: Fix annotate for userspace Message-ID: <20100212162059.GA30041@landau.phys.spbu.ru> References: <1265550376-12665-1-git-send-email-acme@infradead.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Organization: St.Petersburg State University User-Agent: Mutt/1.5.6i Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3267 Lines: 93 On Sun, Feb 07, 2010 at 04:33:40PM +0000, tip-bot for Kirill Smelkov wrote: > Commit-ID: ee11b90b12eb1ec25e1044bac861e90bfd19ec9e > Gitweb: http://git.kernel.org/tip/ee11b90b12eb1ec25e1044bac861e90bfd19ec9e > Author: Kirill Smelkov > AuthorDate: Sun, 7 Feb 2010 11:46:15 -0200 > Committer: Ingo Molnar > CommitDate: Sun, 7 Feb 2010 17:30:20 +0100 > > perf top: Fix annotate for userspace [...] Arnaldo, Ingo, thanks for finally applying it ( though shouldn't, AuthorDate be ``Fri, 8 Jan 2010 15:23:08 +0300'', just like in my post for this patch http://marc.info/?l=linux-kernel&m=126295508002536&w=2 ?) ---- Also, could you please apply one last cosmetic patch from my original series http://marc.info/?l=linux-kernel&m=126295502702502&w=2 That would logically complete my holiday journey to perf land. For convenience I'm providing this one last patch here (applies to tip/master cleanly). Thanks beforehand, Kirill From: Kirill Smelkov Subject: [PATCH 2/6] perf top: align help text on keys Date: Fri, 8 Jan 2010 15:23:05 +0300 Mapped keys: [d] display refresh delay. (2) [e] display entries (lines). (46) [f] profile display filter (count). (5) [F] annotate display filter (percent). (5%) [s] annotate symbol. (NULL) [S] stop annotation. [K] hide kernel_symbols symbols. (no) [U] hide user symbols. (no) [z] toggle sample zeroing. (0) [qQ] quit. instead of Mapped keys: [d] display refresh delay. (2) [e] display entries (lines). (46) [f] profile display filter (count). (5) [F] annotate display filter (percent). (5%) [s] annotate symbol. (NULL) [S] stop annotation. [K] hide kernel_symbols symbols. (no) [U] hide user symbols. (no) [z] toggle sample zeroing. (0) [qQ] quit. Signed-off-by: Kirill Smelkov --- tools/perf/builtin-top.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c index 9c7de93..9dc8070 100644 --- a/tools/perf/builtin-top.c +++ b/tools/perf/builtin-top.c @@ -704,7 +704,7 @@ static void print_mapped_keys(void) fprintf(stdout, "\t[w] toggle display weighted/count[E]r. \t(%d)\n", display_weighted ? 1 : 0); fprintf(stdout, - "\t[K] hide kernel_symbols symbols. \t(%s)\n", + "\t[K] hide kernel_symbols symbols. \t(%s)\n", hide_kernel_symbols ? "yes" : "no"); fprintf(stdout, "\t[U] hide user symbols. \t(%s)\n", -- 1.6.6.79.gd514e.dirty -- 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/