Lines Matching defs:rx_stats
589 struct rtl8139_stats rx_stats;
797 u64_stats_init(&tp->rx_stats.syncp);
2050 u64_stats_update_begin(&tp->rx_stats.syncp);
2051 tp->rx_stats.packets++;
2052 tp->rx_stats.bytes += pkt_size;
2053 u64_stats_update_end(&tp->rx_stats.syncp);
2534 start = u64_stats_fetch_begin_irq(&tp->rx_stats.syncp);
2535 stats->rx_packets = tp->rx_stats.packets;
2536 stats->rx_bytes = tp->rx_stats.bytes;
2537 } while (u64_stats_fetch_retry_irq(&tp->rx_stats.syncp, start));