From: David Marchand Date: Fri, 26 Jul 2019 10:21:21 +0000 (+0200) Subject: net/af_xdp: remove unused Tx counter X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=6c54c874d5ed6f8c643112fe6cd757e617826571;p=dpdk.git net/af_xdp: remove unused Tx counter This Tx counter is now unused. Fixes: 10edf857fde4 ("net/af_xdp: make reserve/submit peek/release consistent") Cc: stable@dpdk.org Signed-off-by: David Marchand Reviewed-by: Xiaolong Ye --- diff --git a/drivers/net/af_xdp/rte_eth_af_xdp.c b/drivers/net/af_xdp/rte_eth_af_xdp.c index 33352e10a7..41ed5b2af4 100644 --- a/drivers/net/af_xdp/rte_eth_af_xdp.c +++ b/drivers/net/af_xdp/rte_eth_af_xdp.c @@ -97,7 +97,6 @@ struct pkt_rx_queue { struct tx_stats { uint64_t tx_pkts; - uint64_t err_pkts; uint64_t tx_bytes; }; @@ -456,7 +455,6 @@ eth_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats) stats->imissed += xdp_stats.rx_dropped; stats->opackets += stats->q_opackets[i]; - stats->oerrors += txq->stats.err_pkts; stats->obytes += stats->q_obytes[i]; }