mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-22 20:43:56 +08:00
net/mlx5e: xsk: Split out WQE allocation for legacy XSK RQ
Allocation of XSK frames on legacy RQ may be made more efficient with a specialized routine that relies on certain assumptions, such as there is only one fragment, allocation units (XSK frames) are not shared among multiple packets. It reduces the number of branches both in the XSK code and in the regular RQ, because with this approach there is only a single check whether it's an XSK or regular RQ. Signed-off-by: Maxim Mikityanskiy <maximmi@nvidia.com> Reviewed-by: Tariq Toukan <tariqt@nvidia.com> Signed-off-by: Saeed Mahameed <saeedm@nvidia.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
0b48223237
commit
a2e5ba242c
@ -8,6 +8,32 @@
|
||||
|
||||
/* RX data path */
|
||||
|
||||
int mlx5e_xsk_alloc_rx_wqes(struct mlx5e_rq *rq, u16 ix, int wqe_bulk)
|
||||
{
|
||||
struct mlx5_wq_cyc *wq = &rq->wqe.wq;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < wqe_bulk; i++) {
|
||||
int j = mlx5_wq_cyc_ctr2ix(wq, ix + i);
|
||||
struct mlx5e_wqe_frag_info *frag;
|
||||
struct mlx5e_rx_wqe_cyc *wqe;
|
||||
dma_addr_t addr;
|
||||
|
||||
wqe = mlx5_wq_cyc_get_wqe(wq, j);
|
||||
/* Assumes log_num_frags == 0. */
|
||||
frag = &rq->wqe.frags[j];
|
||||
|
||||
frag->au->xsk = xsk_buff_alloc(rq->xsk_pool);
|
||||
if (unlikely(!frag->au->xsk))
|
||||
return i;
|
||||
|
||||
addr = xsk_buff_xdp_get_frame_dma(frag->au->xsk);
|
||||
wqe->data[0].addr = cpu_to_be64(addr + rq->buff.headroom);
|
||||
}
|
||||
|
||||
return wqe_bulk;
|
||||
}
|
||||
|
||||
static struct sk_buff *mlx5e_xsk_construct_skb(struct mlx5e_rq *rq, void *data,
|
||||
u32 cqe_bcnt)
|
||||
{
|
||||
|
@ -9,6 +9,7 @@
|
||||
|
||||
/* RX data path */
|
||||
|
||||
int mlx5e_xsk_alloc_rx_wqes(struct mlx5e_rq *rq, u16 ix, int wqe_bulk);
|
||||
struct sk_buff *mlx5e_xsk_skb_from_cqe_mpwrq_linear(struct mlx5e_rq *rq,
|
||||
struct mlx5e_mpw_info *wi,
|
||||
u16 cqe_bcnt,
|
||||
|
@ -359,7 +359,7 @@ static inline int mlx5e_get_rx_frag(struct mlx5e_rq *rq,
|
||||
* offset) should just use the new one without replenishing again
|
||||
* by themselves.
|
||||
*/
|
||||
err = mlx5e_page_alloc(rq, frag->au);
|
||||
err = mlx5e_page_alloc_pool(rq, frag->au);
|
||||
|
||||
return err;
|
||||
}
|
||||
@ -393,8 +393,7 @@ static int mlx5e_alloc_rx_wqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe_cyc *wqe,
|
||||
goto free_frags;
|
||||
|
||||
headroom = i == 0 ? rq->buff.headroom : 0;
|
||||
addr = rq->xsk_pool ? xsk_buff_xdp_get_frame_dma(frag->au->xsk) :
|
||||
page_pool_get_dma_addr(frag->au->page);
|
||||
addr = page_pool_get_dma_addr(frag->au->page);
|
||||
wqe->data[i].addr = cpu_to_be64(addr + frag->offset + headroom);
|
||||
}
|
||||
|
||||
@ -826,7 +825,11 @@ INDIRECT_CALLABLE_SCOPE bool mlx5e_post_rx_wqes(struct mlx5e_rq *rq)
|
||||
*/
|
||||
wqe_bulk -= (head + wqe_bulk) & rq->wqe.info.wqe_index_mask;
|
||||
|
||||
if (!rq->xsk_pool)
|
||||
count = mlx5e_alloc_rx_wqes(rq, head, wqe_bulk);
|
||||
else
|
||||
count = mlx5e_xsk_alloc_rx_wqes(rq, head, wqe_bulk);
|
||||
|
||||
mlx5_wq_cyc_push_n(wq, count);
|
||||
if (unlikely(count != wqe_bulk)) {
|
||||
rq->stats->buff_alloc_err++;
|
||||
|
Loading…
Reference in New Issue
Block a user