mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 01:24:47 +01:00
xsk: introduce helper to determine rxq->frag_size
rxq->frag_size is basically a step between consecutive strictly aligned
frames. In ZC mode, chunk size fits exactly, but if chunks are unaligned,
there is no safe way to determine accessible space to grow tailroom.
Report frag_size to be zero, if chunks are unaligned, chunk_size otherwise.
Fixes: 24ea50127e ("xsk: support mbuf on ZC RX")
Reviewed-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com>
Signed-off-by: Larysa Zaremba <larysa.zaremba@intel.com>
Link: https://patch.msgid.link/20260305111253.2317394-3-larysa.zaremba@intel.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
88b6b7f7b2
commit
16394d8053
1 changed files with 10 additions and 0 deletions
|
|
@ -51,6 +51,11 @@ static inline u32 xsk_pool_get_rx_frame_size(struct xsk_buff_pool *pool)
|
|||
return xsk_pool_get_chunk_size(pool) - xsk_pool_get_headroom(pool);
|
||||
}
|
||||
|
||||
static inline u32 xsk_pool_get_rx_frag_step(struct xsk_buff_pool *pool)
|
||||
{
|
||||
return pool->unaligned ? 0 : xsk_pool_get_chunk_size(pool);
|
||||
}
|
||||
|
||||
static inline void xsk_pool_set_rxq_info(struct xsk_buff_pool *pool,
|
||||
struct xdp_rxq_info *rxq)
|
||||
{
|
||||
|
|
@ -337,6 +342,11 @@ static inline u32 xsk_pool_get_rx_frame_size(struct xsk_buff_pool *pool)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static inline u32 xsk_pool_get_rx_frag_step(struct xsk_buff_pool *pool)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline void xsk_pool_set_rxq_info(struct xsk_buff_pool *pool,
|
||||
struct xdp_rxq_info *rxq)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue