On 2022/9/23 18:02, Pattan, Reshma wrote:
-----Original Message-----
From: Dongdong Liu <liudongdo...@huawei.com>
Subject: [PATCH v3 5/7] app/procinfo: add dump of Rx/Tx burst mode
Signed-off-by: Jie Hai <haij...@huawei.com>
Signed-off-by: Dongdong Liu <liudongdo...@huawei.com>
---
+ if (rte_eth_rx_burst_mode_get(i, j, &mode) == 0)
+ printf(" burst mode : %s%s",
+ mode.info,
+ mode.flags &
RTE_ETH_BURST_FLAG_PER_QUEUE ?
+ " (per queue)" : "");
Small question: What if mode is not per queue that does that mean is it per
port?
Yes, I think it is.
Acked-by: Reshma Pattan <reshma.pat...@intel.com>
.