samples/bpf: sample application and documentation for AF_XDP sockets
authorMagnus Karlsson <magnus.karlsson@intel.com>
Wed, 2 May 2018 11:01:36 +0000 (13:01 +0200)
committerAlexei Starovoitov <ast@kernel.org>
Thu, 3 May 2018 22:55:25 +0000 (15:55 -0700)
commitb4b8faa1ded7a3bb34db374c692a51cea29f9080
tree5632a9676aa3bbe9d0b72d61d55cb92619d7d7d7
parentaf75d9e02d08dc55ce6a1e42e485465c630d7349
samples/bpf: sample application and documentation for AF_XDP sockets

This is a sample application for AF_XDP sockets. The application
supports three different modes of operation: rxdrop, txonly and l2fwd.

To show-case a simple round-robin load-balancing between a set of
sockets in an xskmap, set the RR_LB compile time define option to 1 in
"xdpsock.h".

v2: The entries variable was calculated twice in {umem,xq}_nb_avail.

Co-authored-by: Björn Töpel <bjorn.topel@intel.com>
Signed-off-by: Björn Töpel <bjorn.topel@intel.com>
Signed-off-by: Magnus Karlsson <magnus.karlsson@intel.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Documentation/networking/af_xdp.rst [new file with mode: 0644]
Documentation/networking/index.rst
samples/bpf/Makefile
samples/bpf/xdpsock.h [new file with mode: 0644]
samples/bpf/xdpsock_kern.c [new file with mode: 0644]
samples/bpf/xdpsock_user.c [new file with mode: 0644]