From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754528AbbFAXAy (ORCPT ); Mon, 1 Jun 2015 19:00:54 -0400 Received: from mx1.redhat.com ([209.132.183.28]:42646 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754492AbbFAXAq (ORCPT ); Mon, 1 Jun 2015 19:00:46 -0400 From: Jiri Olsa To: Arnaldo Carvalho de Melo Cc: lkml , Peter Zijlstra , Paul Mackerras , David Ahern , Namhyung Kim , Ingo Molnar , Andi Kleen , Stephane Eranian Subject: [PATCH 8/9] perf stat: Add aggr_mode argument to print_shadow_stats function Date: Tue, 2 Jun 2015 01:00:02 +0200 Message-Id: <1433199603-20082-9-git-send-email-jolsa@kernel.org> In-Reply-To: <1433199603-20082-1-git-send-email-jolsa@kernel.org> References: <1433199603-20082-1-git-send-email-jolsa@kernel.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org As preparation for moving shadow counters code into its own object. Link: http://lkml.kernel.org/n/tip-kdgryri2kahing584g5is35b@git.kernel.org Signed-off-by: Jiri Olsa --- 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 2e8f24ebc776..697cec32aa9e 100644 --- a/tools/perf/builtin-stat.c +++ b/tools/perf/builtin-stat.c @@ -1061,7 +1061,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); @@ -1080,7 +1081,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); } @@ -1233,7 +1234,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) -- 1.9.3