]> Git Repo - J-linux.git/blobdiff - drivers/net/ipvlan/ipvlan_main.c
Merge tag 'amd-drm-next-6.5-2023-06-09' of https://gitlab.freedesktop.org/agd5f/linux...
[J-linux.git] / drivers / net / ipvlan / ipvlan_main.c
index 796a38f9d7b24b87d4bc9b40f823c5c06880ad8c..b15dd9a3ad540d4a9455aecbd6a3d9481eb8077e 100644 (file)
@@ -301,13 +301,13 @@ static void ipvlan_get_stats64(struct net_device *dev,
                for_each_possible_cpu(idx) {
                        pcptr = per_cpu_ptr(ipvlan->pcpu_stats, idx);
                        do {
-                               strt= u64_stats_fetch_begin_irq(&pcptr->syncp);
+                               strt = u64_stats_fetch_begin(&pcptr->syncp);
                                rx_pkts = u64_stats_read(&pcptr->rx_pkts);
                                rx_bytes = u64_stats_read(&pcptr->rx_bytes);
                                rx_mcast = u64_stats_read(&pcptr->rx_mcast);
                                tx_pkts = u64_stats_read(&pcptr->tx_pkts);
                                tx_bytes = u64_stats_read(&pcptr->tx_bytes);
-                       } while (u64_stats_fetch_retry_irq(&pcptr->syncp,
+                       } while (u64_stats_fetch_retry(&pcptr->syncp,
                                                           strt));
 
                        s->rx_packets += rx_pkts;
This page took 0.043727 seconds and 4 git commands to generate.