1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* AF_XDP internal functions
3 * Copyright(c) 2018 Intel Corporation.
6 #ifndef _LINUX_XDP_SOCK_H
7 #define _LINUX_XDP_SOCK_H
9 #include <linux/workqueue.h>
10 #include <linux/if_xdp.h>
11 #include <linux/mutex.h>
12 #include <linux/spinlock.h>
27 struct user_struct *user;
33 struct list_head xsk_dma_list;
34 struct work_struct work;
39 spinlock_t lock; /* Synchronize map updates */
40 struct xdp_sock __rcu *xsk_map[];
44 /* struct sock must be the first member of struct xdp_sock */
46 struct xsk_queue *rx ____cacheline_aligned_in_smp;
47 struct net_device *dev;
48 struct xdp_umem *umem;
49 struct list_head flush_node;
50 struct xsk_buff_pool *pool;
59 struct xsk_queue *tx ____cacheline_aligned_in_smp;
60 struct list_head tx_list;
61 /* Protects generic receive. */
68 struct list_head map_list;
69 /* Protects map_list */
70 spinlock_t map_list_lock;
71 /* Protects multiple processes in the control path */
73 struct xsk_queue *fq_tmp; /* Only as tmp storage before bind */
74 struct xsk_queue *cq_tmp; /* Only as tmp storage before bind */
77 #ifdef CONFIG_XDP_SOCKETS
79 int xsk_generic_rcv(struct xdp_sock *xs, struct xdp_buff *xdp);
80 int __xsk_map_redirect(struct xdp_sock *xs, struct xdp_buff *xdp);
81 void __xsk_map_flush(void);
85 static inline int xsk_generic_rcv(struct xdp_sock *xs, struct xdp_buff *xdp)
90 static inline int __xsk_map_redirect(struct xdp_sock *xs, struct xdp_buff *xdp)
95 static inline void __xsk_map_flush(void)
99 #endif /* CONFIG_XDP_SOCKETS */
101 #endif /* _LINUX_XDP_SOCK_H */