app/testpmd: enable burst stats for noisy VNF mode
authorPhil Yang <phil.yang@arm.com>
Tue, 14 Jul 2020 21:51:07 +0000 (16:51 -0500)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 18 Sep 2020 16:55:08 +0000 (18:55 +0200)
Add burst stats for noisy VNF mode.

Fixes: 3c156061b938 ("app/testpmd: add noisy neighbour forwarding mode")
Cc: stable@dpdk.org
Signed-off-by: Dharmik Thakkar <dharmik.thakkar@arm.com>
Signed-off-by: Phil Yang <phil.yang@arm.com>
Reviewed-by: Honnappa Nagarahalli <honnappa.nagarahalli@arm.com>
Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
app/test-pmd/noisy_vnf.c

index 58c4ee9..382a4c2 100644 (file)
@@ -154,6 +154,7 @@ pkt_burst_noisy_vnf(struct fwd_stream *fs)
 
        nb_rx = rte_eth_rx_burst(fs->rx_port, fs->rx_queue,
                        pkts_burst, nb_pkt_per_burst);
+       inc_rx_burst_stats(fs, nb_rx);
        if (unlikely(nb_rx == 0))
                goto flush;
        fs->rx_packets += nb_rx;
@@ -164,6 +165,7 @@ pkt_burst_noisy_vnf(struct fwd_stream *fs)
                                pkts_burst, nb_rx);
                if (unlikely(nb_tx < nb_rx) && fs->retry_enabled)
                        nb_tx += do_retry(nb_rx, nb_tx, pkts_burst, fs);
+               inc_tx_burst_stats(fs, nb_tx);
                fs->tx_packets += nb_tx;
                fs->fwd_dropped += drop_pkts(pkts_burst, nb_rx, nb_tx);
                return;
@@ -187,6 +189,7 @@ pkt_burst_noisy_vnf(struct fwd_stream *fs)
                                        nb_deqd);
                        if (unlikely(nb_tx < nb_rx) && fs->retry_enabled)
                                nb_tx += do_retry(nb_rx, nb_tx, tmp_pkts, fs);
+                       inc_tx_burst_stats(fs, nb_tx);
                        fs->fwd_dropped += drop_pkts(tmp_pkts, nb_deqd, nb_tx);
                }
        }
@@ -211,6 +214,7 @@ flush:
                                         tmp_pkts, nb_deqd);
                if (unlikely(sent < nb_deqd) && fs->retry_enabled)
                        nb_tx += do_retry(nb_rx, nb_tx, tmp_pkts, fs);
+               inc_tx_burst_stats(fs, nb_tx);
                fs->fwd_dropped += drop_pkts(tmp_pkts, nb_deqd, sent);
                ncf->prev_time = rte_get_timer_cycles();
        }