[PATCH] skge: multicast statistics fix
Fix count of multicast packets. Signed-off-by: Stephen Hemminger <shemminger@osdl.org> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
5a01144717
commit
4c180fc424
1 changed files with 1 additions and 1 deletions
|
@ -357,7 +357,7 @@ static struct net_device_stats *skge_get_stats(struct net_device *dev)
|
|||
skge->net_stats.rx_bytes = data[1];
|
||||
skge->net_stats.tx_packets = data[2] + data[4] + data[6];
|
||||
skge->net_stats.rx_packets = data[3] + data[5] + data[7];
|
||||
skge->net_stats.multicast = data[5] + data[7];
|
||||
skge->net_stats.multicast = data[3] + data[5];
|
||||
skge->net_stats.collisions = data[10];
|
||||
skge->net_stats.tx_aborted_errors = data[12];
|
||||
|
||||
|
|
Loading…
Reference in a new issue