net/szedata2: fix RxQ errors stat
authorDavid Marchand <david.marchand@redhat.com>
Mon, 4 Mar 2019 11:18:34 +0000 (12:18 +0100)
committerFerruh Yigit <ferruh.yigit@intel.com>
Thu, 6 Jun 2019 11:21:20 +0000 (20:21 +0900)
Transmit errors must not be reported in q_errors[] which is for
reception.

Fixes: abef3dd62e7a ("szedata2: add new poll mode driver")
Cc: stable@dpdk.org
Signed-off-by: David Marchand <david.marchand@redhat.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
drivers/net/szedata2/rte_eth_szedata2.c

index 99de9f4..c1ea6fc 100644 (file)
@@ -1093,7 +1093,6 @@ eth_stats_get(struct rte_eth_dev *dev,
                if (i < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
                        stats->q_opackets[i] = txq->tx_pkts;
                        stats->q_obytes[i] = txq->tx_bytes;
-                       stats->q_errors[i] = txq->err_pkts;
                }
                tx_total += txq->tx_pkts;
                tx_total_bytes += txq->tx_bytes;