[06/15] perf stat: Remove metric_only argument in print_counter_aggrdata()
Commit Message
It already passes the stat_config argument, then it can find the value in the
config. No need to pass it separately.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
---
tools/perf/util/stat-display.c | 17 ++++++-----------
1 file changed, 6 insertions(+), 11 deletions(-)
Comments
On Wed, Nov 23, 2022 at 10:02 AM Namhyung Kim <namhyung@kernel.org> wrote:
>
> It already passes the stat_config argument, then it can find the value in the
> config. No need to pass it separately.
>
> Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Ian Rogers <irogers@google.com>
Thanks,
Ian
> ---
> tools/perf/util/stat-display.c | 17 ++++++-----------
> 1 file changed, 6 insertions(+), 11 deletions(-)
>
> diff --git a/tools/perf/util/stat-display.c b/tools/perf/util/stat-display.c
> index deed6ccf072f..b8432c0a0ec3 100644
> --- a/tools/perf/util/stat-display.c
> +++ b/tools/perf/util/stat-display.c
> @@ -804,7 +804,7 @@ static void uniquify_counter(struct perf_stat_config *config, struct evsel *coun
>
> static void print_counter_aggrdata(struct perf_stat_config *config,
> struct evsel *counter, int s,
> - char *prefix, bool metric_only)
> + char *prefix)
> {
> FILE *output = config->output;
> u64 ena, run, val;
> @@ -813,6 +813,7 @@ static void print_counter_aggrdata(struct perf_stat_config *config,
> struct perf_stat_aggr *aggr = &ps->aggr[s];
> struct aggr_cpu_id id = config->aggr_map->map[s];
> double avg = aggr->counts.val;
> + bool metric_only = config->metric_only;
>
> if (counter->supported && aggr->nr == 0)
> return;
> @@ -875,7 +876,6 @@ static void print_aggr(struct perf_stat_config *config,
> struct evlist *evlist,
> char *prefix)
> {
> - bool metric_only = config->metric_only;
> struct evsel *counter;
> int s;
>
> @@ -893,8 +893,7 @@ static void print_aggr(struct perf_stat_config *config,
> if (counter->merged_stat)
> continue;
>
> - print_counter_aggrdata(config, counter, s, prefix,
> - metric_only);
> + print_counter_aggrdata(config, counter, s, prefix);
> }
> print_metric_end(config);
> }
> @@ -904,7 +903,6 @@ static void print_aggr_cgroup(struct perf_stat_config *config,
> struct evlist *evlist,
> char *prefix)
> {
> - bool metric_only = config->metric_only;
> struct evsel *counter, *evsel;
> struct cgroup *cgrp = NULL;
> int s;
> @@ -928,8 +926,7 @@ static void print_aggr_cgroup(struct perf_stat_config *config,
> if (counter->cgrp != cgrp)
> continue;
>
> - print_counter_aggrdata(config, counter, s, prefix,
> - metric_only);
> + print_counter_aggrdata(config, counter, s, prefix);
> }
> print_metric_end(config);
> }
> @@ -939,7 +936,6 @@ static void print_aggr_cgroup(struct perf_stat_config *config,
> static void print_counter(struct perf_stat_config *config,
> struct evsel *counter, char *prefix)
> {
> - bool metric_only = config->metric_only;
> int s;
>
> /* AGGR_THREAD doesn't have config->aggr_get_id */
> @@ -950,8 +946,7 @@ static void print_counter(struct perf_stat_config *config,
> return;
>
> for (s = 0; s < config->aggr_map->nr; s++) {
> - print_counter_aggrdata(config, counter, s, prefix,
> - metric_only);
> + print_counter_aggrdata(config, counter, s, prefix);
> }
> }
>
> @@ -1339,7 +1334,7 @@ static void print_percore(struct perf_stat_config *config,
> if (found)
> continue;
>
> - print_counter_aggrdata(config, counter, s, prefix, metric_only);
> + print_counter_aggrdata(config, counter, s, prefix);
>
> core_map->map[c++] = core_id;
> }
> --
> 2.38.1.584.g0f3c55d4c2-goog
>
@@ -804,7 +804,7 @@ static void uniquify_counter(struct perf_stat_config *config, struct evsel *coun
static void print_counter_aggrdata(struct perf_stat_config *config,
struct evsel *counter, int s,
- char *prefix, bool metric_only)
+ char *prefix)
{
FILE *output = config->output;
u64 ena, run, val;
@@ -813,6 +813,7 @@ static void print_counter_aggrdata(struct perf_stat_config *config,
struct perf_stat_aggr *aggr = &ps->aggr[s];
struct aggr_cpu_id id = config->aggr_map->map[s];
double avg = aggr->counts.val;
+ bool metric_only = config->metric_only;
if (counter->supported && aggr->nr == 0)
return;
@@ -875,7 +876,6 @@ static void print_aggr(struct perf_stat_config *config,
struct evlist *evlist,
char *prefix)
{
- bool metric_only = config->metric_only;
struct evsel *counter;
int s;
@@ -893,8 +893,7 @@ static void print_aggr(struct perf_stat_config *config,
if (counter->merged_stat)
continue;
- print_counter_aggrdata(config, counter, s, prefix,
- metric_only);
+ print_counter_aggrdata(config, counter, s, prefix);
}
print_metric_end(config);
}
@@ -904,7 +903,6 @@ static void print_aggr_cgroup(struct perf_stat_config *config,
struct evlist *evlist,
char *prefix)
{
- bool metric_only = config->metric_only;
struct evsel *counter, *evsel;
struct cgroup *cgrp = NULL;
int s;
@@ -928,8 +926,7 @@ static void print_aggr_cgroup(struct perf_stat_config *config,
if (counter->cgrp != cgrp)
continue;
- print_counter_aggrdata(config, counter, s, prefix,
- metric_only);
+ print_counter_aggrdata(config, counter, s, prefix);
}
print_metric_end(config);
}
@@ -939,7 +936,6 @@ static void print_aggr_cgroup(struct perf_stat_config *config,
static void print_counter(struct perf_stat_config *config,
struct evsel *counter, char *prefix)
{
- bool metric_only = config->metric_only;
int s;
/* AGGR_THREAD doesn't have config->aggr_get_id */
@@ -950,8 +946,7 @@ static void print_counter(struct perf_stat_config *config,
return;
for (s = 0; s < config->aggr_map->nr; s++) {
- print_counter_aggrdata(config, counter, s, prefix,
- metric_only);
+ print_counter_aggrdata(config, counter, s, prefix);
}
}
@@ -1339,7 +1334,7 @@ static void print_percore(struct perf_stat_config *config,
if (found)
continue;
- print_counter_aggrdata(config, counter, s, prefix, metric_only);
+ print_counter_aggrdata(config, counter, s, prefix);
core_map->map[c++] = core_id;
}