diff options
| author | 2020-11-30 09:38:02 -0300 | |
|---|---|---|
| committer | 2020-11-30 09:38:02 -0300 | |
| commit | 24bf91a7540bc0d14c389dd4f612eea57c06dc93 (patch) | |
| tree | 7a6cae2a43ebc93220a547d29d109e8d2a713c51 /tools/perf/builtin-record.c | |
| parent | perf evlist: Use the right prefix for 'struct evlist' 'toggle' methods (diff) | |
| download | linux-dev-24bf91a7540bc0d14c389dd4f612eea57c06dc93.tar.xz linux-dev-24bf91a7540bc0d14c389dd4f612eea57c06dc93.zip | |
perf evlist: Use the right prefix for 'struct evlist' 'filter' methods
perf_evlist__ is for 'struct perf_evlist' methods, in tools/lib/perf/,
go on completing this split.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-record.c')
| -rw-r--r-- | tools/perf/builtin-record.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c index d0e3dd57c108..d53396421a02 100644 --- a/tools/perf/builtin-record.c +++ b/tools/perf/builtin-record.c @@ -946,7 +946,7 @@ try_again: "even with a suitable vmlinux or kallsyms file.\n\n"); } - if (perf_evlist__apply_filters(evlist, &pos)) { + if (evlist__apply_filters(evlist, &pos)) { pr_err("failed to set filter \"%s\" on event %s with %d (%s)\n", pos->filter, evsel__name(pos), errno, str_error_r(errno, msg, sizeof(msg))); |
