ixgbe: remove mac fault counts from Rx errors

This patch removes the mac local fault count and
mac remote fault count from rx errors. The mac
fault count registers count faults, not packets,
and hence should not be added to packet counters.

Signed-off-by: Harry van Haaren <harry.van.haaren@intel.com>
This commit is contained in:
Harry van Haaren 2015-11-02 10:56:09 +00:00 committed by Thomas Monjalon
parent 76d4c652e0
commit 48dd1a82a6

View File

@ -2477,8 +2477,6 @@ ixgbe_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
hw_stats->illerrc +
hw_stats->errbc +
hw_stats->xec +
hw_stats->mlfc +
hw_stats->mrfc +
hw_stats->rfc +
hw_stats->fccrc +
hw_stats->fclast;