From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752833AbdAZP3P (ORCPT ); Thu, 26 Jan 2017 10:29:15 -0500 Received: from terminus.zytor.com ([65.50.211.136]:47574 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752033AbdAZP3N (ORCPT ); Thu, 26 Jan 2017 10:29:13 -0500 Date: Thu, 26 Jan 2017 07:27:36 -0800 From: tip-bot for Jiri Olsa Message-ID: Cc: dzickus@redhat.com, jolsa@kernel.org, a.p.zijlstra@chello.nl, acme@redhat.com, namhyung@kernel.org, hpa@zytor.com, jmario@redhat.com, mingo@kernel.org, dsahern@gmail.com, tglx@linutronix.de, linux-kernel@vger.kernel.org Reply-To: jmario@redhat.com, mingo@kernel.org, dsahern@gmail.com, linux-kernel@vger.kernel.org, tglx@linutronix.de, dzickus@redhat.com, jolsa@kernel.org, a.p.zijlstra@chello.nl, acme@redhat.com, namhyung@kernel.org, hpa@zytor.com In-Reply-To: <1484904032-11040-5-git-send-email-jolsa@kernel.org> References: <1484904032-11040-5-git-send-email-jolsa@kernel.org> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf c2c report: Coalesce by default only by pid,iaddr Git-Commit-ID: 190bacca16d0627dce1d4ceb873f041ebbaef69a 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: 190bacca16d0627dce1d4ceb873f041ebbaef69a Gitweb: http://git.kernel.org/tip/190bacca16d0627dce1d4ceb873f041ebbaef69a Author: Jiri Olsa AuthorDate: Fri, 20 Jan 2017 10:20:32 +0100 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 20 Jan 2017 16:52:56 -0300 perf c2c report: Coalesce by default only by pid,iaddr It seems to be the most used argument for -c option so far. In the beginning when you want to have the overall process report, so it makes sense to make it the default one. Signed-off-by: Jiri Olsa Cc: David Ahern Cc: Don Zickus Cc: Joe Mario Cc: Namhyung Kim Cc: Peter Zijlstra Link: http://lkml.kernel.org/r/1484904032-11040-5-git-send-email-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/Documentation/perf-c2c.txt | 2 +- tools/perf/builtin-c2c.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/perf/Documentation/perf-c2c.txt b/tools/perf/Documentation/perf-c2c.txt index 3f06730..2da07e5 100644 --- a/tools/perf/Documentation/perf-c2c.txt +++ b/tools/perf/Documentation/perf-c2c.txt @@ -248,7 +248,7 @@ output fields set for caheline offsets output: Code address, Code symbol, Shared Object, Source line dso - coalesced by shared object -By default the coalescing is setup with 'pid,tid,iaddr'. +By default the coalescing is setup with 'pid,iaddr'. STDIO OUTPUT ------------ diff --git a/tools/perf/builtin-c2c.c b/tools/perf/builtin-c2c.c index 616cb14..e2b2172 100644 --- a/tools/perf/builtin-c2c.c +++ b/tools/perf/builtin-c2c.c @@ -58,7 +58,7 @@ struct c2c_hist_entry { struct hist_entry he; }; -static char const *coalesce_default = "pid,tid,iaddr"; +static char const *coalesce_default = "pid,iaddr"; struct perf_c2c { struct perf_tool tool;