ixgbe: account more Rx errors

ierrors only included a base set of error statistics, this patch adds
additional error registers to ierrors.

Signed-off-by: Maryam Tahhan <maryam.tahhan@intel.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
This commit is contained in:
Maryam Tahhan 2015-07-15 14:11:31 +01:00 committed by Thomas Monjalon
parent 5e50ad1c1b
commit f6bf669b99

View File

@ -2045,7 +2045,16 @@ ixgbe_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
hw_stats->ruc +
hw_stats->roc +
total_missed_rx +
hw_stats->illerrc + hw_stats->errbc;
hw_stats->illerrc +
hw_stats->errbc +
hw_stats->xec +
hw_stats->mlfc +
hw_stats->mrfc +
hw_stats->rfc +
hw_stats->rjc +
hw_stats->fccrc +
hw_stats->fclast +
(rxnfgpc - hw_stats->gprc); /* PHY Errors*/
/* Tx Errors */
/*txdgpc: packets that are DMA'ed*/