Symbol: xdp_buff_xsk
drivers/net/ethernet/intel/libeth/xsk.c
133
const struct xdp_buff_xsk *xsk;
include/net/libeth/xdp.h
31
(IS_ALIGNED(sizeof(struct xdp_buff_xsk), 16) ? 16 : \
include/net/libeth/xdp.h
32
IS_ALIGNED(sizeof(struct xdp_buff_xsk), 8) ? 8 : \
include/net/libeth/xdp.h
58
offsetof(struct xdp_buff_xsk, xdp.data));
include/net/libeth/xdp.h
60
offsetof(struct xdp_buff_xsk, cb));
include/net/libeth/xdp.h
61
static_assert(IS_ALIGNED(sizeof(struct xdp_buff_xsk),
include/net/libeth/xdp.h
96
static_assert(offsetofend(struct xdp_buff_xsk, cb) >= \
include/net/xdp_sock_drv.h
122
struct xdp_buff_xsk *xskb = container_of(xdp, struct xdp_buff_xsk, xdp);
include/net/xdp_sock_drv.h
124
struct xdp_buff_xsk *pos, *tmp;
include/net/xdp_sock_drv.h
143
struct xdp_buff_xsk *frag;
include/net/xdp_sock_drv.h
150
frag = container_of(xdp, struct xdp_buff_xsk, xdp);
include/net/xdp_sock_drv.h
158
struct xdp_buff_xsk *xskb = container_of(first, struct xdp_buff_xsk, xdp);
include/net/xdp_sock_drv.h
160
struct xdp_buff_xsk *frag;
include/net/xdp_sock_drv.h
163
struct xdp_buff_xsk, list_node);
include/net/xdp_sock_drv.h
174
struct xdp_buff_xsk *xskb = container_of(xdp, struct xdp_buff_xsk, xdp);
include/net/xdp_sock_drv.h
181
struct xdp_buff_xsk *xskb = container_of(first, struct xdp_buff_xsk, xdp);
include/net/xdp_sock_drv.h
182
struct xdp_buff_xsk *frag;
include/net/xdp_sock_drv.h
184
frag = list_first_entry(&xskb->pool->xskb_list, struct xdp_buff_xsk,
include/net/xdp_sock_drv.h
191
struct xdp_buff_xsk *xskb = container_of(first, struct xdp_buff_xsk, xdp);
include/net/xdp_sock_drv.h
192
struct xdp_buff_xsk *frag;
include/net/xdp_sock_drv.h
194
frag = list_last_entry(&xskb->pool->xskb_list, struct xdp_buff_xsk,
include/net/xdp_sock_drv.h
270
struct xdp_buff_xsk *xskb = container_of(xdp, struct xdp_buff_xsk, xdp);
include/net/xdp_sock_drv.h
87
struct xdp_buff_xsk *xskb = container_of(xdp, struct xdp_buff_xsk, xdp);
include/net/xdp_sock_drv.h
94
struct xdp_buff_xsk *xskb = container_of(xdp, struct xdp_buff_xsk, xdp);
include/net/xsk_buff_pool.h
119
void xp_free(struct xdp_buff_xsk *xskb);
include/net/xsk_buff_pool.h
121
static inline void xp_init_xskb_addr(struct xdp_buff_xsk *xskb, struct xsk_buff_pool *pool,
include/net/xsk_buff_pool.h
127
static inline void xp_init_xskb_dma(struct xdp_buff_xsk *xskb, struct xsk_buff_pool *pool,
include/net/xsk_buff_pool.h
154
static inline dma_addr_t xp_get_dma(struct xdp_buff_xsk *xskb)
include/net/xsk_buff_pool.h
159
static inline dma_addr_t xp_get_frame_dma(struct xdp_buff_xsk *xskb)
include/net/xsk_buff_pool.h
164
static inline void xp_dma_sync_for_cpu(struct xdp_buff_xsk *xskb)
include/net/xsk_buff_pool.h
227
static inline void xp_release(struct xdp_buff_xsk *xskb)
include/net/xsk_buff_pool.h
233
static inline u64 xp_get_handle(struct xdp_buff_xsk *xskb,
include/net/xsk_buff_pool.h
34
#define XSK_CHECK_PRIV_TYPE(t) BUILD_BUG_ON(sizeof(t) > offsetofend(struct xdp_buff_xsk, cb))
include/net/xsk_buff_pool.h
70
struct xdp_buff_xsk *heads;
include/net/xsk_buff_pool.h
93
struct xdp_buff_xsk *free_heads[];
net/xdp/xsk.c
146
static int __xsk_rcv_zc(struct xdp_sock *xs, struct xdp_buff_xsk *xskb, u32 len,
net/xdp/xsk.c
165
struct xdp_buff_xsk *xskb = container_of(xdp, struct xdp_buff_xsk, xdp);
net/xdp/xsk.c
167
struct xdp_buff_xsk *pos, *tmp;
net/xdp/xsk.c
245
struct xdp_buff_xsk *xskb;
net/xdp/xsk.c
262
xskb = container_of(xsk_xdp, struct xdp_buff_xsk, xdp);
net/xdp/xsk.c
300
xskb = container_of(xsk_xdp, struct xdp_buff_xsk, xdp);
net/xdp/xsk_buff_pool.c
131
struct xdp_buff_xsk *xskb = &pool->heads[i];
net/xdp/xsk_buff_pool.c
414
struct xdp_buff_xsk *xskb = &pool->heads[i];
net/xdp/xsk_buff_pool.c
502
static struct xdp_buff_xsk *xp_get_xskb(struct xsk_buff_pool *pool, u64 addr)
net/xdp/xsk_buff_pool.c
504
struct xdp_buff_xsk *xskb;
net/xdp/xsk_buff_pool.c
518
static struct xdp_buff_xsk *__xp_alloc(struct xsk_buff_pool *pool)
net/xdp/xsk_buff_pool.c
520
struct xdp_buff_xsk *xskb;
net/xdp/xsk_buff_pool.c
551
struct xdp_buff_xsk *xskb;
net/xdp/xsk_buff_pool.c
559
xskb = list_first_entry(&pool->free_list, struct xdp_buff_xsk,
net/xdp/xsk_buff_pool.c
57
struct xdp_buff_xsk *xskb;
net/xdp/xsk_buff_pool.c
587
struct xdp_buff_xsk *xskb;
net/xdp/xsk_buff_pool.c
613
struct xdp_buff_xsk *xskb;
net/xdp/xsk_buff_pool.c
620
xskb = list_first_entry(&pool->free_list, struct xdp_buff_xsk, list_node);
net/xdp/xsk_buff_pool.c
689
void xp_free(struct xdp_buff_xsk *xskb)