diff options
author | Magnus Karlsson <magnus.karlsson@intel.com> | 2019-02-21 10:21:27 +0100 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2019-02-25 23:21:42 +0100 |
commit | 248c7f9c0e215fcfd847bd3a41cf0160a2359e1a (patch) | |
tree | b15e2e5fd8bc2adf29c1061bd224031cc7e37215 /samples/bpf/Makefile | |
parent | 1cad078842396f0047a796694b6130fc096d97e2 (diff) | |
download | linux-248c7f9c0e215fcfd847bd3a41cf0160a2359e1a.tar.gz linux-248c7f9c0e215fcfd847bd3a41cf0160a2359e1a.tar.bz2 linux-248c7f9c0e215fcfd847bd3a41cf0160a2359e1a.zip |
samples/bpf: convert xdpsock to use libbpf for AF_XDP access
This commit converts the xdpsock sample application to use the AF_XDP
functions present in libbpf. This cuts down the size of it by nearly
300 lines of code.
The default ring sizes plus the batch size has been increased and the
size of the umem area has decreased. This so that the sample application
will provide higher throughput. Note also that the shared umem code
has been removed from the sample as this is not supported by libbpf
at this point in time.
Tested-by: Björn Töpel <bjorn.topel@intel.com>
Signed-off-by: Magnus Karlsson <magnus.karlsson@intel.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'samples/bpf/Makefile')
-rw-r--r-- | samples/bpf/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/samples/bpf/Makefile b/samples/bpf/Makefile index a0ef7eddd0b3..a333e258f319 100644 --- a/samples/bpf/Makefile +++ b/samples/bpf/Makefile @@ -163,7 +163,6 @@ always += xdp2skb_meta_kern.o always += syscall_tp_kern.o always += cpustat_kern.o always += xdp_adjust_tail_kern.o -always += xdpsock_kern.o always += xdp_fwd_kern.o always += task_fd_query_kern.o always += xdp_sample_pkts_kern.o |