aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/bridge/br_device.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bridge/br_device.c b/net/bridge/br_device.c
index f4be1bbfef26..333484537600 100644
--- a/net/bridge/br_device.c
+++ b/net/bridge/br_device.c
@@ -127,9 +127,9 @@ static struct rtnl_link_stats64 *br_get_stats64(struct net_device *dev,
127 const struct br_cpu_netstats *bstats 127 const struct br_cpu_netstats *bstats
128 = per_cpu_ptr(br->stats, cpu); 128 = per_cpu_ptr(br->stats, cpu);
129 do { 129 do {
130 start = u64_stats_fetch_begin(&bstats->syncp); 130 start = u64_stats_fetch_begin_bh(&bstats->syncp);
131 memcpy(&tmp, bstats, sizeof(tmp)); 131 memcpy(&tmp, bstats, sizeof(tmp));
132 } while (u64_stats_fetch_retry(&bstats->syncp, start)); 132 } while (u64_stats_fetch_retry_bh(&bstats->syncp, start));
133 sum.tx_bytes += tmp.tx_bytes; 133 sum.tx_bytes += tmp.tx_bytes;
134 sum.tx_packets += tmp.tx_packets; 134 sum.tx_packets += tmp.tx_packets;
135 sum.rx_bytes += tmp.rx_bytes; 135 sum.rx_bytes += tmp.rx_bytes;