diff options
author | Björn Töpel <bjorn.topel@intel.com> | 2019-10-01 13:22:49 +0200 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2019-10-03 16:27:03 +0200 |
commit | e55190f26f92927e95aba22b069679311d5379ea (patch) | |
tree | b8869fb3db9211c383d1b8a1ce109a21e8f9b883 /samples | |
parent | a2d074e4c6e81ec9ab359d54f0b88273c738de37 (diff) | |
download | linux-stable-e55190f26f92927e95aba22b069679311d5379ea.tar.gz linux-stable-e55190f26f92927e95aba22b069679311d5379ea.tar.bz2 linux-stable-e55190f26f92927e95aba22b069679311d5379ea.zip |
samples/bpf: Fix build for task_fd_query_user.c
Add missing include for <linux/perf_event.h> which was removed from
perf-sys.h in commit 91854f9a077e ("perf tools: Move everything
related to sys_perf_event_open() to perf-sys.h").
Fixes: 91854f9a077e ("perf tools: Move everything related to sys_perf_event_open() to perf-sys.h")
Reported-by: KP Singh <kpsingh@google.com>
Reported-by: Florent Revest <revest@google.com>
Signed-off-by: Björn Töpel <bjorn.topel@intel.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Tested-by: KP Singh <kpsingh@google.com>
Acked-by: Song Liu <songliubraving@fb.com>
Link: https://lore.kernel.org/bpf/20191001112249.27341-1-bjorn.topel@gmail.com
Diffstat (limited to 'samples')
-rw-r--r-- | samples/bpf/task_fd_query_user.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/samples/bpf/task_fd_query_user.c b/samples/bpf/task_fd_query_user.c index e39938058223..4c31b305e6ef 100644 --- a/samples/bpf/task_fd_query_user.c +++ b/samples/bpf/task_fd_query_user.c @@ -13,6 +13,7 @@ #include <sys/resource.h> #include <sys/types.h> #include <sys/stat.h> +#include <linux/perf_event.h> #include "libbpf.h" #include "bpf_load.h" |