Lines Matching refs:stats0
1638 struct net_device_stats *nstats, *stats0, *stats1;
1641 stats0 = &priv->stats[RAVB_BE];
1649 nstats->rx_packets = stats0->rx_packets + stats1->rx_packets;
1650 nstats->tx_packets = stats0->tx_packets + stats1->tx_packets;
1651 nstats->rx_bytes = stats0->rx_bytes + stats1->rx_bytes;
1652 nstats->tx_bytes = stats0->tx_bytes + stats1->tx_bytes;
1653 nstats->multicast = stats0->multicast + stats1->multicast;
1654 nstats->rx_errors = stats0->rx_errors + stats1->rx_errors;
1655 nstats->rx_crc_errors = stats0->rx_crc_errors + stats1->rx_crc_errors;
1657 stats0->rx_frame_errors + stats1->rx_frame_errors;
1659 stats0->rx_length_errors + stats1->rx_length_errors;
1661 stats0->rx_missed_errors + stats1->rx_missed_errors;
1663 stats0->rx_over_errors + stats1->rx_over_errors;