ixgbe: remove mac fault counts from Rx errors
authorHarry van Haaren <harry.van.haaren@intel.com>
Mon, 2 Nov 2015 10:56:09 +0000 (10:56 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 2 Nov 2015 23:30:29 +0000 (00:30 +0100)
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>
drivers/net/ixgbe/ixgbe_ethdev.c

index dff0e8d..52c2fdb 100644 (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;