diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-04-11 17:15:29 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-04-11 21:18:20 -0400 |
commit | e68ae9cf7d734e669bc0a981b4154f70d29b5059 (patch) | |
tree | ac9880166ffa3ca0745811c6c60b1089d0f94ebd /tools/perf/tests/code-reading.c | |
parent | 44621819ddc9d5d0bfd0b0616c6cf33c94189b67 (diff) |
perf evsel: Do not use globals in config()
Instead receive a callchain_param pointer to configure callchain
aspects, not doing so if NULL is passed.
This will allow fine grained control over which evsels in an evlist
gets callchains enabled.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Milian Wolff <milian.wolff@kdab.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-2mupip6khc92mh5x4nw9to82@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/tests/code-reading.c')
-rw-r--r-- | tools/perf/tests/code-reading.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/tests/code-reading.c b/tools/perf/tests/code-reading.c index abd3f0ec0c0b..68a69a195545 100644 --- a/tools/perf/tests/code-reading.c +++ b/tools/perf/tests/code-reading.c | |||
@@ -532,7 +532,7 @@ static int do_test_code_reading(bool try_kcore) | |||
532 | goto out_put; | 532 | goto out_put; |
533 | } | 533 | } |
534 | 534 | ||
535 | perf_evlist__config(evlist, &opts); | 535 | perf_evlist__config(evlist, &opts, NULL); |
536 | 536 | ||
537 | evsel = perf_evlist__first(evlist); | 537 | evsel = perf_evlist__first(evlist); |
538 | 538 | ||