Lines Matching refs:tstats
1145 const struct pcpu_sw_netstats *tstats; in ieee80211_get_stats64() local
1149 tstats = per_cpu_ptr(dev->tstats, i); in ieee80211_get_stats64()
1152 start = u64_stats_fetch_begin_irq(&tstats->syncp); in ieee80211_get_stats64()
1153 rx_packets = tstats->rx_packets; in ieee80211_get_stats64()
1154 tx_packets = tstats->tx_packets; in ieee80211_get_stats64()
1155 rx_bytes = tstats->rx_bytes; in ieee80211_get_stats64()
1156 tx_bytes = tstats->tx_bytes; in ieee80211_get_stats64()
1157 } while (u64_stats_fetch_retry_irq(&tstats->syncp, start)); in ieee80211_get_stats64()
1212 free_percpu(dev->tstats); in ieee80211_if_free()
1779 ndev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats); in ieee80211_if_add()
1780 if (!ndev->tstats) { in ieee80211_if_add()