Increase the maximum supported burst size for the bnxt vector mode PMD from 32 to 64.
Reviewed-by: Kalesh Anakkur Purayil <[email protected]> Reviewed-by: Ajit Kumar Khaparde <[email protected]> Signed-off-by: Lance Richardson <[email protected]> --- drivers/net/bnxt/bnxt_rxtx_vec_common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/bnxt/bnxt_rxtx_vec_common.h b/drivers/net/bnxt/bnxt_rxtx_vec_common.h index 2f28759d06..fc2a12272b 100644 --- a/drivers/net/bnxt/bnxt_rxtx_vec_common.h +++ b/drivers/net/bnxt/bnxt_rxtx_vec_common.h @@ -9,8 +9,8 @@ #include "bnxt_rxq.h" #include "bnxt_rxr.h" -#define RTE_BNXT_MAX_RX_BURST 32U -#define RTE_BNXT_MAX_TX_BURST 32U +#define RTE_BNXT_MAX_RX_BURST 64U +#define RTE_BNXT_MAX_TX_BURST 64U #define RTE_BNXT_DESCS_PER_LOOP 4U #define TX_BD_FLAGS_CMPL ((1 << TX_BD_LONG_FLAGS_BD_CNT_SFT) | \ -- 2.25.1

