diff options
author | Yonghong Song | 2018-04-28 22:28:13 -0700 |
---|---|---|
committer | Alexei Starovoitov | 2018-04-29 08:45:54 -0700 |
commit | 28dbf861deacb0321604bf1c5e1ccc34dd215669 (patch) | |
tree | ae98045b9d24ea60e1034b08200d74e762dde8bb /samples/bpf/spintest_user.c | |
parent | de2ff05f48afcde816ff4edb217417f62f624ab5 (diff) |
samples/bpf: move common-purpose trace functions to selftests
There is no functionality change in this patch. The common-purpose
trace functions, including perf_event polling and ksym lookup,
are moved from trace_output_user.c and bpf_load.c to
selftests/bpf/trace_helpers.c so that these function can
be reused later in selftests.
Acked-by: Alexei Starovoitov <ast@fb.com>
Signed-off-by: Yonghong Song <yhs@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'samples/bpf/spintest_user.c')
-rw-r--r-- | samples/bpf/spintest_user.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/samples/bpf/spintest_user.c b/samples/bpf/spintest_user.c index 3d736219a31c..8d3e9cfa1909 100644 --- a/samples/bpf/spintest_user.c +++ b/samples/bpf/spintest_user.c @@ -7,6 +7,7 @@ #include <sys/resource.h> #include "libbpf.h" #include "bpf_load.h" +#include "trace_helpers.h" int main(int ac, char **argv) { |