summaryrefslogtreecommitdiffstats
path: root/samples/bpf/Makefile
diff options
context:
space:
mode:
authorJakub Kicinski2019-02-28 04:04:13 +0100
committerDaniel Borkmann2019-03-01 00:53:45 +0100
commit1a9b268c90286cae99051353cb7dfb53ffd82676 (patch)
tree13672d85bbaeeab4e52a7b0d47199f53f43cc1b7 /samples/bpf/Makefile
parenttools: libbpf: add a correctly named define for map iteration (diff)
downloadkernel-qcow2-linux-1a9b268c90286cae99051353cb7dfb53ffd82676.tar.gz
kernel-qcow2-linux-1a9b268c90286cae99051353cb7dfb53ffd82676.tar.xz
kernel-qcow2-linux-1a9b268c90286cae99051353cb7dfb53ffd82676.zip
samples: bpf: use libbpf where easy
Some samples don't really need the magic of bpf_load, switch them to libbpf. v2: - specify program types. Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com> Reviewed-by: Quentin Monnet <quentin.monnet@netronome.com> Acked-by: Andrii Nakryiko <andriin@fb.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'samples/bpf/Makefile')
-rw-r--r--samples/bpf/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/samples/bpf/Makefile b/samples/bpf/Makefile
index 4dd98100678e..0c62ac39c697 100644
--- a/samples/bpf/Makefile
+++ b/samples/bpf/Makefile
@@ -59,9 +59,9 @@ LIBBPF = $(TOOLS_PATH)/lib/bpf/libbpf.a
CGROUP_HELPERS := ../../tools/testing/selftests/bpf/cgroup_helpers.o
TRACE_HELPERS := ../../tools/testing/selftests/bpf/trace_helpers.o
-fds_example-objs := bpf_load.o fds_example.o
-sockex1-objs := bpf_load.o sockex1_user.o
-sockex2-objs := bpf_load.o sockex2_user.o
+fds_example-objs := fds_example.o
+sockex1-objs := sockex1_user.o
+sockex2-objs := sockex2_user.o
sockex3-objs := bpf_load.o sockex3_user.o
tracex1-objs := bpf_load.o tracex1_user.o
tracex2-objs := bpf_load.o tracex2_user.o