net: remove stale mentions of dev_base_lock in comments
authorEric Dumazet <edumazet@google.com>
Tue, 13 Feb 2024 06:32:41 +0000 (06:32 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 14 Feb 2024 11:20:13 +0000 (11:20 +0000)
Change comments incorrectly mentioning dev_base_lock.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Documentation/networking/netdevices.rst
drivers/net/ethernet/cisco/enic/enic_main.c
drivers/net/ethernet/nvidia/forcedeth.c
drivers/net/ethernet/sfc/efx_common.c
drivers/net/ethernet/sfc/falcon/efx.c
drivers/net/ethernet/sfc/siena/efx_common.c

index 9e4cccb..c247691 100644 (file)
@@ -252,8 +252,8 @@ ndo_eth_ioctl:
        Context: process
 
 ndo_get_stats:
-       Synchronization: rtnl_lock() semaphore, dev_base_lock rwlock, or RCU.
-       Context: atomic (can't sleep under rwlock or RCU)
+       Synchronization: rtnl_lock() semaphore, or RCU.
+       Context: atomic (can't sleep under RCU)
 
 ndo_start_xmit:
        Synchronization: __netif_tx_lock spinlock.
index 37bd38d..d266a87 100644 (file)
@@ -872,7 +872,7 @@ error:
        return NETDEV_TX_OK;
 }
 
-/* dev_base_lock rwlock held, nominally process context */
+/* rcu_read_lock potentially held, nominally process context */
 static void enic_get_stats(struct net_device *netdev,
                           struct rtnl_link_stats64 *net_stats)
 {
index 7a549b8..31f896c 100644 (file)
@@ -1761,7 +1761,7 @@ static void nv_get_stats(int cpu, struct fe_priv *np,
 /*
  * nv_get_stats64: dev->ndo_get_stats64 function
  * Get latest stats value from the nic.
- * Called with read_lock(&dev_base_lock) held for read -
+ * Called with rcu_read_lock() held -
  * only synchronized against unregister_netdevice.
  */
 static void
@@ -3090,7 +3090,7 @@ static void set_bufsize(struct net_device *dev)
 
 /*
  * nv_change_mtu: dev->change_mtu function
- * Called with dev_base_lock held for read.
+ * Called with RTNL held for read.
  */
 static int nv_change_mtu(struct net_device *dev, int new_mtu)
 {
index 175bd9c..551f890 100644 (file)
@@ -595,7 +595,7 @@ void efx_stop_all(struct efx_nic *efx)
        efx_stop_datapath(efx);
 }
 
-/* Context: process, dev_base_lock or RTNL held, non-blocking. */
+/* Context: process, rcu_read_lock or RTNL held, non-blocking. */
 void efx_net_stats(struct net_device *net_dev, struct rtnl_link_stats64 *stats)
 {
        struct efx_nic *efx = efx_netdev_priv(net_dev);
index e001f27..1cb32ae 100644 (file)
@@ -2085,7 +2085,7 @@ int ef4_net_stop(struct net_device *net_dev)
        return 0;
 }
 
-/* Context: process, dev_base_lock or RTNL held, non-blocking. */
+/* Context: process, rcu_read_lock or RTNL held, non-blocking. */
 static void ef4_net_stats(struct net_device *net_dev,
                          struct rtnl_link_stats64 *stats)
 {
index e4b294b..88e5bc3 100644 (file)
@@ -605,7 +605,7 @@ static size_t efx_siena_update_stats_atomic(struct efx_nic *efx, u64 *full_stats
        return efx->type->update_stats(efx, full_stats, core_stats);
 }
 
-/* Context: process, dev_base_lock or RTNL held, non-blocking. */
+/* Context: process, rcu_read_lock or RTNL held, non-blocking. */
 void efx_siena_net_stats(struct net_device *net_dev,
                         struct rtnl_link_stats64 *stats)
 {