app/testpmd: fix max queue number for Tx offloads
authorChengchang Tang <tangchengchang@huawei.com>
Thu, 22 Apr 2021 07:03:31 +0000 (15:03 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Mon, 26 Apr 2021 14:20:31 +0000 (16:20 +0200)
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: stable@dpdk.org
Signed-off-by: Chengchang Tang <tangchengchang@huawei.com>
Signed-off-by: Min Hu (Connor) <humin29@huawei.com>
Acked-by: Xiaoyun Li <xiaoyun.li@intel.com>
app/test-pmd/cmdline.c

index 12efbc0..0ad27df 100644 (file)
@@ -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;
 }