From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933166AbbFIJxB (ORCPT ); Tue, 9 Jun 2015 05:53:01 -0400 Received: from terminus.zytor.com ([198.137.202.10]:49627 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932767AbbFIJwf (ORCPT ); Tue, 9 Jun 2015 05:52:35 -0400 Date: Tue, 9 Jun 2015 02:51:13 -0700 From: tip-bot for Jiri Olsa Message-ID: Cc: jolsa@kernel.org, ak@linux.intel.com, hpa@zytor.com, acme@redhat.com, tglx@linutronix.de, eranian@google.com, mingo@kernel.org, a.p.zijlstra@chello.nl, dsahern@gmail.com, linux-kernel@vger.kernel.org, namhyung@kernel.org Reply-To: jolsa@kernel.org, ak@linux.intel.com, hpa@zytor.com, tglx@linutronix.de, acme@redhat.com, a.p.zijlstra@chello.nl, mingo@kernel.org, eranian@google.com, linux-kernel@vger.kernel.org, namhyung@kernel.org, dsahern@gmail.com In-Reply-To: <1433341559-31848-9-git-send-email-jolsa@kernel.org> References: <1433341559-31848-9-git-send-email-jolsa@kernel.org> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf stat: Add aggr_mode argument to print_shadow_stats function Git-Commit-ID: 7a23f57c89cec0e6d3189d420d992902d4465ff4 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: 7a23f57c89cec0e6d3189d420d992902d4465ff4 Gitweb: http://git.kernel.org/tip/7a23f57c89cec0e6d3189d420d992902d4465ff4 Author: Jiri Olsa AuthorDate: Wed, 3 Jun 2015 16:25:58 +0200 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 8 Jun 2015 10:30:31 -0300 perf stat: Add aggr_mode argument to print_shadow_stats function As preparation for moving shadow counters code into its own object. Signed-off-by: Jiri Olsa Cc: Andi Kleen Cc: David Ahern Cc: Namhyung Kim Cc: Peter Zijlstra Cc: Stephane Eranian Link: http://lkml.kernel.org/r/1433341559-31848-9-git-send-email-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/builtin-stat.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c index 14a75dd..50918dc 100644 --- a/tools/perf/builtin-stat.c +++ b/tools/perf/builtin-stat.c @@ -1059,7 +1059,8 @@ static void print_ll_cache_misses(FILE *out, int cpu, fprintf(out, " of all LL-cache hits "); } -static void print_shadow_stats(FILE *out, struct perf_evsel *evsel, double avg, int cpu) +static void print_shadow_stats(FILE *out, struct perf_evsel *evsel, + double avg, int cpu, enum aggr_mode aggr) { double total, ratio = 0.0, total2; int ctx = evsel_context(evsel); @@ -1078,7 +1079,7 @@ static void print_shadow_stats(FILE *out, struct perf_evsel *evsel, double avg, if (total && avg) { ratio = total / avg; fprintf(out, "\n"); - if (aggr_mode == AGGR_NONE) + if (aggr == AGGR_NONE) fprintf(out, " "); fprintf(out, " # %5.2f stalled cycles per insn", ratio); } @@ -1229,7 +1230,7 @@ static void abs_printout(int id, int nr, struct perf_evsel *evsel, double avg) if (csv_output || interval) return; - print_shadow_stats(output, evsel, avg, cpu); + print_shadow_stats(output, evsel, avg, cpu, aggr_mode); } static void print_aggr(char *prefix)