diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-04-29 15:57:01 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-05-05 16:35:30 -0300 |
commit | 6ec17b4e2592a328b08e888d107e31cfd69d6abb (patch) | |
tree | 0862a0029e626a95eb4e64403b017d2cc8591aea /tools/perf/tests | |
parent | 30f7c59124bb0ad42f74956613fc244bc4064840 (diff) | |
download | linux-6ec17b4e2592a328b08e888d107e31cfd69d6abb.tar.gz linux-6ec17b4e2592a328b08e888d107e31cfd69d6abb.tar.bz2 linux-6ec17b4e2592a328b08e888d107e31cfd69d6abb.zip |
perf evsel: Rename perf_evsel__config*() to evsel__config*()
As they are all 'struct evsel' methods, not part of tools/lib/perf/, aka
libperf, to whom the perf_ prefix belongs.
Cc: Adrian Hunter <adrian.hunter@intel.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/tests')
-rw-r--r-- | tools/perf/tests/openat-syscall-tp-fields.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/tests/openat-syscall-tp-fields.c b/tools/perf/tests/openat-syscall-tp-fields.c index c6b2d7aab608..a77492bcb4bc 100644 --- a/tools/perf/tests/openat-syscall-tp-fields.c +++ b/tools/perf/tests/openat-syscall-tp-fields.c @@ -60,7 +60,7 @@ int test__syscall_openat_tp_fields(struct test *test __maybe_unused, int subtest goto out_delete_evlist; } - perf_evsel__config(evsel, &opts, NULL); + evsel__config(evsel, &opts, NULL); perf_thread_map__set_pid(evlist->core.threads, 0, getpid()); |