diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-04-18 10:35:03 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-04-18 11:17:09 -0300 |
commit | acf2abbd0b7fcc6325e9690a8a32ee924c827f70 (patch) | |
tree | 1fded8baf53d28ddd4e4076af33920fcf78593e7 /tools/perf/util/evsel.h | |
parent | ccd62a896ffe3dbd60f3b7570a2b74e4fe030ed6 (diff) | |
download | linux-stable-acf2abbd0b7fcc6325e9690a8a32ee924c827f70.tar.gz linux-stable-acf2abbd0b7fcc6325e9690a8a32ee924c827f70.tar.bz2 linux-stable-acf2abbd0b7fcc6325e9690a8a32ee924c827f70.zip |
perf evsel: Add missign class prefix to has_branch_stack method
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-5i07ivw1yjsweb7gztr255jd@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/evsel.h')
-rw-r--r-- | tools/perf/util/evsel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/evsel.h b/tools/perf/util/evsel.h index b993218744d4..8a644fef452c 100644 --- a/tools/perf/util/evsel.h +++ b/tools/perf/util/evsel.h @@ -420,7 +420,7 @@ for ((_evsel) = list_entry((_leader)->node.next, struct perf_evsel, node); \ (_evsel) && (_evsel)->leader == (_leader); \ (_evsel) = list_entry((_evsel)->node.next, struct perf_evsel, node)) -static inline bool has_branch_callstack(struct perf_evsel *evsel) +static inline bool perf_evsel__has_branch_callstack(const struct perf_evsel *evsel) { return evsel->attr.branch_sample_type & PERF_SAMPLE_BRANCH_CALL_STACK; } |