Lines Matching refs:tstats
1144 const struct pcpu_sw_netstats *tstats; in ieee80211_get_stats64() local
1148 tstats = per_cpu_ptr(dev->tstats, i); in ieee80211_get_stats64()
1151 start = u64_stats_fetch_begin_irq(&tstats->syncp); in ieee80211_get_stats64()
1152 rx_packets = tstats->rx_packets; in ieee80211_get_stats64()
1153 tx_packets = tstats->tx_packets; in ieee80211_get_stats64()
1154 rx_bytes = tstats->rx_bytes; in ieee80211_get_stats64()
1155 tx_bytes = tstats->tx_bytes; in ieee80211_get_stats64()
1156 } while (u64_stats_fetch_retry_irq(&tstats->syncp, start)); in ieee80211_get_stats64()
1210 free_percpu(dev->tstats); in ieee80211_if_free()
1777 ndev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats); in ieee80211_if_add()
1778 if (!ndev->tstats) { in ieee80211_if_add()