Lines Matching refs:stats0
1412 struct net_device_stats *nstats, *stats0, *stats1; in ravb_get_stats() local
1415 stats0 = &priv->stats[RAVB_BE]; in ravb_get_stats()
1430 nstats->rx_packets = stats0->rx_packets + stats1->rx_packets; in ravb_get_stats()
1431 nstats->tx_packets = stats0->tx_packets + stats1->tx_packets; in ravb_get_stats()
1432 nstats->rx_bytes = stats0->rx_bytes + stats1->rx_bytes; in ravb_get_stats()
1433 nstats->tx_bytes = stats0->tx_bytes + stats1->tx_bytes; in ravb_get_stats()
1434 nstats->multicast = stats0->multicast + stats1->multicast; in ravb_get_stats()
1435 nstats->rx_errors = stats0->rx_errors + stats1->rx_errors; in ravb_get_stats()
1436 nstats->rx_crc_errors = stats0->rx_crc_errors + stats1->rx_crc_errors; in ravb_get_stats()
1438 stats0->rx_frame_errors + stats1->rx_frame_errors; in ravb_get_stats()
1440 stats0->rx_length_errors + stats1->rx_length_errors; in ravb_get_stats()
1442 stats0->rx_missed_errors + stats1->rx_missed_errors; in ravb_get_stats()
1444 stats0->rx_over_errors + stats1->rx_over_errors; in ravb_get_stats()