From: Chengchang Tang <[email protected]>

When txq offload is configured, max rxq is used as the max queue. This
patch fixes it.

Fixes: 74453ac9ef67 ("app/testpmd: fix queue offload configuration")
Cc: [email protected]

Signed-off-by: Chengchang Tang <[email protected]>
Signed-off-by: Min Hu (Connor) <[email protected]>
---
 app/test-pmd/cmdline.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c
index f0fa6e8..1cb1027 100644
--- a/app/test-pmd/cmdline.c
+++ b/app/test-pmd/cmdline.c
@@ -4666,7 +4666,7 @@ cmd_config_queue_tx_offloads(struct rte_port *port)
        int k;
 
        /* Apply queue tx offloads configuration */
-       for (k = 0; k < port->dev_info.max_rx_queues; k++)
+       for (k = 0; k < port->dev_info.max_tx_queues; k++)
                port->tx_conf[k].offloads =
                        port->dev_conf.txmode.offloads;
 }
-- 
2.7.4

Reply via email to