Merge branch 'for-linus-for-3.6-rc1' of git://git.linaro.org/people/mszyprowski/linux...
[deliverable/linux.git] / drivers / net / loopback.c
index 32eb94ece6c1b258497f9b12334c680729f48dc7..e2a06fd996d51409ed711fb360105d7f423f27a8 100644 (file)
@@ -107,10 +107,10 @@ static struct rtnl_link_stats64 *loopback_get_stats64(struct net_device *dev,
 
                lb_stats = per_cpu_ptr(dev->lstats, i);
                do {
-                       start = u64_stats_fetch_begin(&lb_stats->syncp);
+                       start = u64_stats_fetch_begin_bh(&lb_stats->syncp);
                        tbytes = lb_stats->bytes;
                        tpackets = lb_stats->packets;
-               } while (u64_stats_fetch_retry(&lb_stats->syncp, start));
+               } while (u64_stats_fetch_retry_bh(&lb_stats->syncp, start));
                bytes   += tbytes;
                packets += tpackets;
        }
This page took 0.02761 seconds and 5 git commands to generate.