Lines Matching refs:netstats
114 struct pcpu_sw_netstats __percpu *netstats; member
135 struct pcpu_sw_netstats *netstats = this_cpu_ptr(priv->netstats); in hfi1_ipoib_update_rx_netstats() local
137 u64_stats_update_begin(&netstats->syncp); in hfi1_ipoib_update_rx_netstats()
138 netstats->rx_packets += packets; in hfi1_ipoib_update_rx_netstats()
139 netstats->rx_bytes += bytes; in hfi1_ipoib_update_rx_netstats()
140 u64_stats_update_end(&netstats->syncp); in hfi1_ipoib_update_rx_netstats()
148 struct pcpu_sw_netstats *netstats = this_cpu_ptr(priv->netstats); in hfi1_ipoib_update_tx_netstats() local
150 u64_stats_update_begin(&netstats->syncp); in hfi1_ipoib_update_tx_netstats()
151 netstats->tx_packets += packets; in hfi1_ipoib_update_tx_netstats()
152 netstats->tx_bytes += bytes; in hfi1_ipoib_update_tx_netstats()
153 u64_stats_update_end(&netstats->syncp); in hfi1_ipoib_update_tx_netstats()