diff options
author | Magnus Karlsson <magnus.karlsson@intel.com> | 2019-11-07 18:47:38 +0100 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2019-11-10 19:30:46 -0800 |
commit | a68977d269dac0c7aa4a6f650b5e9191dd764861 (patch) | |
tree | 416e456da239bdf65e21fce9cb770d54d8573b88 | |
parent | 2e5d72c15f0dc713c203464c5c76eb4ec285f598 (diff) | |
download | linux-a68977d269dac0c7aa4a6f650b5e9191dd764861.tar.gz linux-a68977d269dac0c7aa4a6f650b5e9191dd764861.tar.bz2 linux-a68977d269dac0c7aa4a6f650b5e9191dd764861.zip |
libbpf: Allow for creating Rx or Tx only AF_XDP sockets
The libbpf AF_XDP code is extended to allow for the creation of Rx
only or Tx only sockets. Previously it returned an error if the socket
was not initialized for both Rx and Tx.
Signed-off-by: Magnus Karlsson <magnus.karlsson@intel.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Tested-by: William Tu <u9012063@gmail.com>
Acked-by: Jonathan Lemon <jonathan.lemon@gmail.com>
Link: https://lore.kernel.org/bpf/1573148860-30254-4-git-send-email-magnus.karlsson@intel.com
-rw-r--r-- | tools/lib/bpf/xsk.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/lib/bpf/xsk.c b/tools/lib/bpf/xsk.c index 8ebd810931ab..303ed633417b 100644 --- a/tools/lib/bpf/xsk.c +++ b/tools/lib/bpf/xsk.c @@ -562,7 +562,8 @@ static int xsk_setup_xdp_prog(struct xsk_socket *xsk) } } - err = xsk_set_bpf_maps(xsk); + if (xsk->rx) + err = xsk_set_bpf_maps(xsk); if (err) { xsk_delete_bpf_maps(xsk); close(xsk->prog_fd); @@ -583,7 +584,7 @@ int xsk_socket__create(struct xsk_socket **xsk_ptr, const char *ifname, struct xsk_socket *xsk; int err; - if (!umem || !xsk_ptr || !rx || !tx) + if (!umem || !xsk_ptr || !(rx || tx)) return -EFAULT; xsk = calloc(1, sizeof(*xsk)); |