Lines Matching defs:old_stats
11914 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
11920 stats->rx_packets = old_stats->rx_packets +
11925 stats->tx_packets = old_stats->tx_packets +
11930 stats->rx_bytes = old_stats->rx_bytes +
11932 stats->tx_bytes = old_stats->tx_bytes +
11935 stats->rx_errors = old_stats->rx_errors +
11937 stats->tx_errors = old_stats->tx_errors +
11943 stats->multicast = old_stats->multicast +
11945 stats->collisions = old_stats->collisions +
11948 stats->rx_length_errors = old_stats->rx_length_errors +
11952 stats->rx_frame_errors = old_stats->rx_frame_errors +
11954 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
11956 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
11959 stats->rx_crc_errors = old_stats->rx_crc_errors +
11962 stats->rx_missed_errors = old_stats->rx_missed_errors +
11973 rx_dropped = (unsigned long)(old_stats->rx_dropped);
11974 tx_dropped = (unsigned long)(old_stats->tx_dropped);