[PATCH] mempool/cnxk: fix bug in batch alloc issue failure path
Jerin Jacob
jerinjacobk at gmail.com
Fri Feb 11 08:24:57 CET 2022
On Thu, Feb 10, 2022 at 5:19 PM Ashwin Sekhar T K <asekhar at marvell.com> wrote:
>
> Fix bug in batch alloc issue failure path.
Please specify what is the bug and what is the fix.
>
> Fixes: 91531e63f4 ("mempool/cnxk: add cn10k batch dequeue")
>
> Signed-off-by: Ashwin Sekhar T K <asekhar at marvell.com>
> ---
> drivers/mempool/cnxk/cn10k_mempool_ops.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mempool/cnxk/cn10k_mempool_ops.c b/drivers/mempool/cnxk/cn10k_mempool_ops.c
> index 4c669b878f..6ebbf91de5 100644
> --- a/drivers/mempool/cnxk/cn10k_mempool_ops.c
> +++ b/drivers/mempool/cnxk/cn10k_mempool_ops.c
> @@ -202,7 +202,7 @@ cn10k_mempool_deq(struct rte_mempool *mp, void **obj_table, unsigned int n)
> BATCH_ALLOC_SZ, 0, 1);
> /* If issue fails, try falling back to default alloc */
> if (unlikely(rc))
> - return cn10k_mempool_enq(mp, obj_table, n);
> + return cnxk_mempool_deq(mp, obj_table, n);
> mem->status = BATCH_ALLOC_OP_ISSUED;
> }
>
> --
> 2.32.0
>
More information about the dev
mailing list