Lines Matching defs:rx_stats
471 struct rhine_stats rx_stats;
930 u64_stats_init(&rp->rx_stats.syncp);
2126 u64_stats_update_begin(&rp->rx_stats.syncp);
2127 rp->rx_stats.bytes += pkt_len;
2128 rp->rx_stats.packets++;
2129 u64_stats_update_end(&rp->rx_stats.syncp);
2220 start = u64_stats_fetch_begin(&rp->rx_stats.syncp);
2221 stats->rx_packets = rp->rx_stats.packets;
2222 stats->rx_bytes = rp->rx_stats.bytes;
2223 } while (u64_stats_fetch_retry(&rp->rx_stats.syncp, start));