app/testpmd: fix Tx retry in flowgen engine
authorZhihong Wang <wangzhihong.wzh@bytedance.com>
Fri, 13 Aug 2021 08:05:45 +0000 (16:05 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Tue, 24 Aug 2021 16:54:18 +0000 (18:54 +0200)
Fix tx_pkt number in tx retry logic.

Fixes: bf56fce1fb45 ("app/testpmd: add retry option")
Cc: stable@dpdk.org
Signed-off-by: Zhihong Wang <wangzhihong.wzh@bytedance.com>
Acked-by: Xiaoyun Li <xiaoyun.li@intel.com>
app/test-pmd/flowgen.c

index 3bf6e1c..f2e6255 100644 (file)
@@ -192,12 +192,12 @@ pkt_burst_flow_gen(struct fwd_stream *fs)
        /*
         * Retry if necessary
         */
-       if (unlikely(nb_tx < nb_rx) && fs->retry_enabled) {
+       if (unlikely(nb_tx < nb_pkt) && fs->retry_enabled) {
                retry = 0;
-               while (nb_tx < nb_rx && retry++ < burst_tx_retry_num) {
+               while (nb_tx < nb_pkt && retry++ < burst_tx_retry_num) {
                        rte_delay_us(burst_tx_delay_time);
                        nb_tx += rte_eth_tx_burst(fs->tx_port, fs->tx_queue,
-                                       &pkts_burst[nb_tx], nb_rx - nb_tx);
+                                       &pkts_burst[nb_tx], nb_pkt - nb_tx);
                }
        }
        fs->tx_packets += nb_tx;