net/i40evf: fix reporting of imissed packets
Missed packets on RX were erroneously being assigned to the ierrors struct member. Change it to be assigned to imissed. Fixes: 4861cde46116 ("i40e: new poll mode driver") Cc: stable@dpdk.org Signed-off-by: Tom Crugnale <tcrugnale@sandvine.com> Acked-by: Jingjing Wu <jingjing.wu@intel.com>
This commit is contained in:
parent
e06bad05dc
commit
bbb2b5d9fe
@ -980,7 +980,7 @@ i40evf_get_statistics(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
|
||||
pstats->rx_broadcast;
|
||||
stats->opackets = pstats->tx_broadcast + pstats->tx_multicast +
|
||||
pstats->tx_unicast;
|
||||
stats->ierrors = pstats->rx_discards;
|
||||
stats->imissed = pstats->rx_discards;
|
||||
stats->oerrors = pstats->tx_errors + pstats->tx_discards;
|
||||
stats->ibytes = pstats->rx_bytes;
|
||||
stats->obytes = pstats->tx_bytes;
|
||||
|
Loading…
x
Reference in New Issue
Block a user