From 97d7b92772603602fed376b6bcf50d55721c659e Mon Sep 17 00:00:00 2001 From: Joyce Kong Date: Sun, 5 Sep 2021 21:13:53 -0500 Subject: [PATCH] ethdev: fix typo in Rx queue setup API comment Fix a typo that mb_pool was misspelt as mp_pool. Fixes: 4ff702b5dfa9 ("ethdev: introduce Rx buffer split") Cc: stable@dpdk.org Signed-off-by: Joyce Kong Reviewed-by: Ruifeng Wang Acked-by: Ferruh Yigit --- lib/ethdev/rte_ethdev.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ethdev/rte_ethdev.h b/lib/ethdev/rte_ethdev.h index 1b9f383e3e..2925845517 100644 --- a/lib/ethdev/rte_ethdev.h +++ b/lib/ethdev/rte_ethdev.h @@ -2190,7 +2190,7 @@ rte_eth_dev_is_removed(uint16_t port_id); * The configuration structure also contains the pointer to the array * of the receiving buffer segment descriptions, see rx_seg and rx_nseg * fields, this extended configuration might be used by split offloads like - * RTE_ETH_RX_OFFLOAD_BUFFER_SPLIT. If mp_pool is not NULL, + * RTE_ETH_RX_OFFLOAD_BUFFER_SPLIT. If mb_pool is not NULL, * the extended configuration fields must be set to NULL and zero. * @param mb_pool * The pointer to the memory pool from which to allocate *rte_mbuf* network -- 2.20.1