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:
parent
5e50ad1c1b
commit
f6bf669b99
@ -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*/
|
||||
|
Loading…
Reference in New Issue
Block a user