Lines Matching defs:xdp_sock
45 struct xdp_sock { struct
47 struct sock sk;
48 struct xsk_queue *rx ____cacheline_aligned_in_smp;
49 struct net_device *dev;
50 struct xdp_umem *umem;
51 struct list_head flush_node;
52 struct xsk_buff_pool *pool;
53 u16 queue_id;
54 bool zc;
55 bool sg;
56 enum {
60 } state;
62 struct xsk_queue *tx ____cacheline_aligned_in_smp;
63 struct list_head tx_list;
88 int xsk_generic_rcv(struct xdp_sock *xs, struct xdp_buff *xdp); argument