diff options
author | John W. Linville <linville@tuxdriver.com> | 2005-09-13 01:43:18 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-09-13 01:43:18 +0400 |
commit | 4f63b877726135b19ae73108acf9e0ebb4323dda (patch) | |
tree | 3b250d2896fa2aa0a47114c553f7910cc4b9d0ff /drivers/net | |
parent | b88a762b6062f06d431af0045de4854a758646c0 (diff) | |
download | linux-4f63b877726135b19ae73108acf9e0ebb4323dda.tar.xz |
[TG3]: Do not count non-error frames dropped by the hardware as rx_errors.
Instead, count them as part of rx_missed_errors.
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/tg3.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index dc57352e5a97..8da555416858 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c @@ -6893,8 +6893,7 @@ static struct net_device_stats *tg3_get_stats(struct net_device *dev) get_stat64(&hw_stats->tx_octets); stats->rx_errors = old_stats->rx_errors + - get_stat64(&hw_stats->rx_errors) + - get_stat64(&hw_stats->rx_discards); + get_stat64(&hw_stats->rx_errors); stats->tx_errors = old_stats->tx_errors + get_stat64(&hw_stats->tx_errors) + get_stat64(&hw_stats->tx_mac_errors) + @@ -6922,6 +6921,9 @@ static struct net_device_stats *tg3_get_stats(struct net_device *dev) stats->rx_crc_errors = old_stats->rx_crc_errors + calc_crc_errors(tp); + stats->rx_missed_errors = old_stats->rx_missed_errors + + get_stat64(&hw_stats->rx_discards); + return stats; } |