Lines Matching refs:stats64
75 struct pcpu_sw_netstats __percpu *stats64;
112 struct pcpu_sw_netstats *stats64 = this_cpu_ptr(priv->stats64);
114 u64_stats_update_begin(&stats64->syncp);
115 stats64->tx_packets++;
116 stats64->tx_bytes += len;
117 u64_stats_update_end(&stats64->syncp);
131 dev_fetch_sw_netstats(stats, priv->stats64);
228 struct pcpu_sw_netstats *stats64;
231 stats64 = this_cpu_ptr(priv->stats64);
232 u64_stats_update_begin(&stats64->syncp);
233 stats64->rx_packets++;
234 stats64->rx_bytes += pkt_len;
235 u64_stats_update_end(&stats64->syncp);
260 priv->stats64 = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
261 if (!priv->stats64) {
296 free_percpu(priv->stats64);