treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / samples / bpf / xdpsock_kern.c
blob05430484375c1d488df40f670e0b88b632bed017
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/bpf.h>
3 #include <bpf/bpf_helpers.h>
4 #include "xdpsock.h"
6 /* This XDP program is only needed for the XDP_SHARED_UMEM mode.
7 * If you do not use this mode, libbpf can supply an XDP program for you.
8 */
10 struct {
11 __uint(type, BPF_MAP_TYPE_XSKMAP);
12 __uint(max_entries, MAX_SOCKS);
13 __uint(key_size, sizeof(int));
14 __uint(value_size, sizeof(int));
15 } xsks_map SEC(".maps");
17 static unsigned int rr;
19 SEC("xdp_sock") int xdp_sock_prog(struct xdp_md *ctx)
21 rr = (rr + 1) & (MAX_SOCKS - 1);
23 return bpf_redirect_map(&xsks_map, rr, XDP_DROP);