From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965790AbcBDMnh (ORCPT ); Thu, 4 Feb 2016 07:43:37 -0500 Received: from terminus.zytor.com ([198.137.202.10]:41967 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754377AbcBDMnd (ORCPT ); Thu, 4 Feb 2016 07:43:33 -0500 Date: Thu, 4 Feb 2016 04:42:24 -0800 From: tip-bot for Namhyung Kim Message-ID: Cc: dsahern@gmail.com, hpa@zytor.com, namhyung@kernel.org, andi@firstfloor.org, acme@redhat.com, linux-kernel@vger.kernel.org, wangnan0@huawei.com, eranian@google.com, jolsa@kernel.org, tglx@linutronix.de, peterz@infradead.org, mingo@kernel.org Reply-To: andi@firstfloor.org, linux-kernel@vger.kernel.org, acme@redhat.com, dsahern@gmail.com, namhyung@kernel.org, hpa@zytor.com, mingo@kernel.org, wangnan0@huawei.com, tglx@linutronix.de, peterz@infradead.org, eranian@google.com, jolsa@kernel.org In-Reply-To: <1454508683-5735-1-git-send-email-namhyung@kernel.org> References: <1454508683-5735-1-git-send-email-namhyung@kernel.org> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf report: Update documentation of --sort option Git-Commit-ID: c6f5f6b662719ded53700deefec7dbc4227c9778 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: c6f5f6b662719ded53700deefec7dbc4227c9778 Gitweb: http://git.kernel.org/tip/c6f5f6b662719ded53700deefec7dbc4227c9778 Author: Namhyung Kim AuthorDate: Wed, 3 Feb 2016 23:11:20 +0900 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 3 Feb 2016 12:24:21 -0300 perf report: Update documentation of --sort option The description of the memory sort key (used by --mem-mode) was misplaced. Move it under the --sort option so that it can be referenced properly. Signed-off-by: Namhyung Kim Cc: Andi Kleen Cc: David Ahern Cc: Jiri Olsa Cc: Peter Zijlstra Cc: Stephane Eranian Cc: Wang Nan Link: http://lkml.kernel.org/r/1454508683-5735-1-git-send-email-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/Documentation/perf-report.txt | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/tools/perf/Documentation/perf-report.txt b/tools/perf/Documentation/perf-report.txt index 8a301f6..1cb8fac 100644 --- a/tools/perf/Documentation/perf-report.txt +++ b/tools/perf/Documentation/perf-report.txt @@ -117,6 +117,22 @@ OPTIONS And default sort keys are changed to comm, dso_from, symbol_from, dso_to and symbol_to, see '--branch-stack'. + If the --mem-mode option is used, the following sort keys are also available + (incompatible with --branch-stack): + symbol_daddr, dso_daddr, locked, tlb, mem, snoop, dcacheline. + + - symbol_daddr: name of data symbol being executed on at the time of sample + - dso_daddr: name of library or module containing the data being executed + on at the time of the sample + - locked: whether the bus was locked at the time of the sample + - tlb: type of tlb access for the data at the time of the sample + - mem: type of memory access for the data at the time of the sample + - snoop: type of snoop (if any) for the data at the time of the sample + - dcacheline: the cacheline the data address is on at the time of the sample + + And the default sort keys are changed to local_weight, mem, sym, dso, + symbol_daddr, dso_daddr, snoop, tlb, locked, see '--mem-mode'. + If the data file has tracepoint event(s), following (dynamic) sort keys are also available: trace, trace_fields, [.][/raw] @@ -151,22 +167,6 @@ OPTIONS By default, every sort keys not specified in -F will be appended automatically. - If --mem-mode option is used, following sort keys are also available - (incompatible with --branch-stack): - symbol_daddr, dso_daddr, locked, tlb, mem, snoop, dcacheline. - - - symbol_daddr: name of data symbol being executed on at the time of sample - - dso_daddr: name of library or module containing the data being executed - on at the time of sample - - locked: whether the bus was locked at the time of sample - - tlb: type of tlb access for the data at the time of sample - - mem: type of memory access for the data at the time of sample - - snoop: type of snoop (if any) for the data at the time of sample - - dcacheline: the cacheline the data address is on at the time of sample - - And default sort keys are changed to local_weight, mem, sym, dso, - symbol_daddr, dso_daddr, snoop, tlb, locked, see '--mem-mode'. - -p:: --parent=:: A regex filter to identify parent. The parent is a caller of this