Lines Matching defs:old_stats
11934 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
11940 stats->rx_packets = old_stats->rx_packets +
11945 stats->tx_packets = old_stats->tx_packets +
11950 stats->rx_bytes = old_stats->rx_bytes +
11952 stats->tx_bytes = old_stats->tx_bytes +
11955 stats->rx_errors = old_stats->rx_errors +
11957 stats->tx_errors = old_stats->tx_errors +
11963 stats->multicast = old_stats->multicast +
11965 stats->collisions = old_stats->collisions +
11968 stats->rx_length_errors = old_stats->rx_length_errors +
11972 stats->rx_frame_errors = old_stats->rx_frame_errors +
11974 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
11976 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
11979 stats->rx_crc_errors = old_stats->rx_crc_errors +
11982 stats->rx_missed_errors = old_stats->rx_missed_errors +
11993 rx_dropped = (unsigned long)(old_stats->rx_dropped);
11994 tx_dropped = (unsigned long)(old_stats->tx_dropped);