]> asedeno.scripts.mit.edu Git - linux.git/commit
Merge branch 'share-umem'
authorAlexei Starovoitov <ast@kernel.org>
Mon, 11 Nov 2019 03:30:46 +0000 (19:30 -0800)
committerAlexei Starovoitov <ast@kernel.org>
Mon, 11 Nov 2019 03:30:51 +0000 (19:30 -0800)
commit0d2ec5b51dc6925f07bff9f1352970d5fc8f297f
tree4dbf28947620f4bc3d3c1f26c5bbf1006823979d
parent472aeb386eda3b73bbd38a2ec8c928708f77d7ee
parent57afa8b0cfa61f35d4175a66e0f0e38ce12a1db5
Merge branch 'share-umem'

Magnus Karlsson says:

====================
This patch set extends libbpf and the xdpsock sample program to
demonstrate the shared umem mode (XDP_SHARED_UMEM) as well as Rx-only
and Tx-only sockets. This in order for users to have an example to use
as a blue print and also so that these modes will be exercised more
frequently.

Note that the user needs to supply an XDP program with the
XDP_SHARED_UMEM mode that distributes the packets over the sockets
according to some policy. There is an example supplied with the
xdpsock program, but there is no default one in libbpf similarly to
when XDP_SHARED_UMEM is not used. The reason for this is that I felt
that supplying one that would work for all users in this mode is
futile. There are just tons of ways to distribute packets, so whatever
I come up with and build into libbpf would be wrong in most cases.

This patch has been applied against commit 30ee348c1267 ("Merge branch 'bpf-libbpf-fixes'")

Structure of the patch set:

Patch 1: Adds shared umem support to libbpf
Patch 2: Shared umem support and example XPD program added to xdpsock sample
Patch 3: Adds Rx-only and Tx-only support to libbpf
Patch 4: Uses Rx-only sockets for rxdrop and Tx-only sockets for txpush in
         the xdpsock sample
Patch 5: Add documentation entries for these two features
====================

Signed-off-by: Alexei Starovoitov <ast@kernel.org>