Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8a4d4c8d authored by Michael Chan's avatar Michael Chan Committed by David S. Miller
Browse files

bnxt_en: Exclude rx_drop_pkts hw counter from the stack's rx_dropped counter.



This hardware counter is misleading as it counts dropped packets that
don't match the hardware filters for unicast/broadcast/multicast.  We
will still report this counter in ethtool -S for diagnostics purposes.

Signed-off-by: default avatarMichael Chan <mchan@broadcom.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 74608fc9
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -4819,8 +4819,6 @@ bnxt_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)

		stats->multicast += le64_to_cpu(hw_stats->rx_mcast_pkts);

		stats->rx_dropped += le64_to_cpu(hw_stats->rx_drop_pkts);

		stats->tx_dropped += le64_to_cpu(hw_stats->tx_drop_pkts);
	}