net/mlx5: fix threshold for mbuf replenishment in MPRQ
authorAlexander Kozyrev <akozyrev@nvidia.com>
Tue, 13 Jul 2021 15:21:12 +0000 (18:21 +0300)
committerRaslan Darawsheh <rasland@nvidia.com>
Thu, 15 Jul 2021 14:22:27 +0000 (16:22 +0200)
commitacc87479535cdf02cd63d32a0618bd3874531eb4
treed6df6b1e14c85b9d63e0e54f720cacc535461de6
parent0ed93c13449c0dfc41d957ae809aeceb70d001a3
net/mlx5: fix threshold for mbuf replenishment in MPRQ

The replenishment scheme for the vectorized MPRQ Rx burst aims
to improve the cache locality by allocating new mbufs only when
there are almost no mbufs left: one burst gap between allocated
and consumed indexes.

This gap is not big enough to accommodate a corner case when we
have a very aggressive CQE compression with multiple regular CQEs
at the beginning and 64 zipped CQEs at the end.

Need to keep in mind this case and extend the replenishment
threshold by MLX5_VPMD_RX_MAX_BURST (64) to avoid mbuf overflow.

Fixes: 5fc2e5c27d6 ("net/mlx5: fix mbuf overflow in vectorized MPRQ")
Cc: stable@dpdk.org
Signed-off-by: Alexander Kozyrev <akozyrev@nvidia.com>
Acked-by: Viacheslav Ovsiienko <viacheslavo@nvidia.com>
drivers/net/mlx5/mlx5_rxtx_vec.c