Lines Matching defs:xdp_sock
43 struct xdp_sock { struct
45 struct sock sk;
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;
51 u16 queue_id;
52 bool zc;
53 enum {
57 } state;
59 struct xsk_queue *tx ____cacheline_aligned_in_smp;
83 int xsk_generic_rcv(struct xdp_sock *xs, struct xdp_buff *xdp); argument