]> Git Repo - linux.git/commitdiff
perf evlist: Add backpointer for perf_env to evlist
authorKan Liang <[email protected]>
Fri, 28 Aug 2015 09:48:05 +0000 (05:48 -0400)
committerArnaldo Carvalho de Melo <[email protected]>
Fri, 28 Aug 2015 17:54:14 +0000 (14:54 -0300)
Add backpointer to perf_env in evlist, so we can easily access env when
processing something where we have a evsel or evlist.

Suggested-by: Arnaldo Carvalho de Melo <[email protected]>
Signed-off-by: Kan Liang <[email protected]>
Cc: Adrian Hunter <[email protected]>
Cc: Andi Kleen <[email protected]>
Cc: Andy Lutomirski <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Mark Rutland <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Stephane Eranian <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/perf/util/evlist.h
tools/perf/util/header.c

index 436e358300b17d7deec6253b54679d7330d17206..b39a6198f4ac00ae4c30cdfe659667cc84db7780 100644 (file)
@@ -56,6 +56,7 @@ struct perf_evlist {
        struct cpu_map    *cpus;
        struct perf_evsel *selected;
        struct events_stats stats;
+       struct perf_env *env;
 };
 
 struct perf_evsel_str_handler {
index 179b2bdd157dac0adc33faf62fbe85c3853aa19f..41814547da159a14ac00eca8c774f3a46ae20558 100644 (file)
@@ -2514,6 +2514,7 @@ int perf_session__read_header(struct perf_session *session)
        if (session->evlist == NULL)
                return -ENOMEM;
 
+       session->evlist->env = &header->env;
        if (perf_data_file__is_pipe(file))
                return perf_header__read_pipe(session);
 
This page took 0.061809 seconds and 4 git commands to generate.