aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/perf
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2018-12-12 11:06:53 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2018-12-18 12:23:57 -0300
commit246fbe03edaab9dfa5bd1f0e223c7c960d987982 (patch)
tree90672af7ce2d24e5fcae006fb990f0d82798c122 /tools/perf
parentperf tools: Link libperf-jvmti.so with LDFLAGS variable (diff)
downloadwireguard-linux-246fbe03edaab9dfa5bd1f0e223c7c960d987982.tar.xz
wireguard-linux-246fbe03edaab9dfa5bd1f0e223c7c960d987982.zip
perf trace: Rename set_ev_qualifier_filter to clarify its a tracepoint filter
Rename it to trace__set_ev_qualifier_tp_filter(), as this just sets up tracepoint filters on the raw_syscalls:sys_{enter,exit} tracepoints, and since we're going to do the same for the augmented_raw_syscalls codepath, when used, rename it to clarify. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Wang Nan <wangnan0@huawei.com> Link: https://lkml.kernel.org/n/tip-8bjsul8x7osw7nxjodnyfn14@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/builtin-trace.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/perf/builtin-trace.c b/tools/perf/builtin-trace.c
index a14ee4ed2c9f..76e4fa04d824 100644
--- a/tools/perf/builtin-trace.c
+++ b/tools/perf/builtin-trace.c
@@ -2553,7 +2553,7 @@ out_delete_sys_enter:
goto out;
}
-static int trace__set_ev_qualifier_filter(struct trace *trace)
+static int trace__set_ev_qualifier_tp_filter(struct trace *trace)
{
int err = -1;
struct perf_evsel *sys_exit;
@@ -2578,6 +2578,11 @@ out_enomem:
goto out;
}
+static int trace__set_ev_qualifier_filter(struct trace *trace)
+{
+ return trace__set_ev_qualifier_tp_filter(trace);
+}
+
static int bpf_map__set_filter_pids(struct bpf_map *map __maybe_unused,
size_t npids __maybe_unused, pid_t *pids __maybe_unused)
{