lkml.org 
[lkml]   [2018]   [Aug]   [30]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 30/43] perf stat: Pass evlist to aggr_update_shadow
    Date
    Passing evlist to aggr_update_shadow,
    to rid of the evsel_list dependency.

    Link: http://lkml.kernel.org/n/tip-4xhx9wz6e4gua5q40dpj235y@git.kernel.org
    Signed-off-by: Jiri Olsa <jolsa@kernel.org>
    ---
    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 f5ac6545af34..2711d8f6e4b8 100644
    --- a/tools/perf/builtin-stat.c
    +++ b/tools/perf/builtin-stat.c
    @@ -1099,7 +1099,8 @@ static void printout(struct perf_stat_config *config, int id, int nr,
    }
    }

    -static void aggr_update_shadow(struct perf_stat_config *config)
    +static void aggr_update_shadow(struct perf_stat_config *config,
    + struct perf_evlist *evlist)
    {
    int cpu, s2, id, s;
    u64 val;
    @@ -1107,7 +1108,7 @@ static void aggr_update_shadow(struct perf_stat_config *config)

    for (s = 0; s < aggr_map->nr; s++) {
    id = aggr_map->map[s];
    - evlist__for_each_entry(evsel_list, counter) {
    + evlist__for_each_entry(evlist, counter) {
    val = 0;
    for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) {
    s2 = aggr_get_id(evsel_list->cpus, cpu);
    @@ -1238,7 +1239,7 @@ static void print_aggr(struct perf_stat_config *config,
    if (!(aggr_map || aggr_get_id))
    return;

    - aggr_update_shadow(config);
    + aggr_update_shadow(config, evlist);

    /*
    * With metric_only everything is on a single line.
    --
    2.17.1
    \
     
     \ /
      Last update: 2018-08-30 08:36    [W:4.024 / U:0.024 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site