[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240201170937.3549878-4-edumazet@google.com>
Date: Thu, 1 Feb 2024 17:09:24 +0000
From: Eric Dumazet <edumazet@...gle.com>
To: "David S . Miller" <davem@...emloft.net>, Jakub Kicinski <kuba@...nel.org>,
Paolo Abeni <pabeni@...hat.com>
Cc: netdev@...r.kernel.org, eric.dumazet@...il.com,
Eric Dumazet <edumazet@...gle.com>
Subject: [PATCH net-next 03/16] net: convert default_device_exit_batch() to
exit_batch_rtnl method
exit_batch_rtnl() is called while RTNL is held,
and devices to be unregistered can be queued in the dev_kill_list.
This saves one rtnl_lock()/rtnl_unlock() pair,
and one unregister_netdevice_many() call.
Signed-off-by: Eric Dumazet <edumazet@...gle.com>
---
net/core/dev.c | 13 +++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/net/core/dev.c b/net/core/dev.c
index b53b9c94de4008aa7e808d58618675425aff0f4c..86107a9c9dd09d5590578923018be56065fbd58c 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -11596,7 +11596,8 @@ static void __net_exit default_device_exit_net(struct net *net)
}
}
-static void __net_exit default_device_exit_batch(struct list_head *net_list)
+static void __net_exit default_device_exit_batch_rtnl(struct list_head *net_list,
+ struct list_head *dev_kill_list)
{
/* At exit all network devices most be removed from a network
* namespace. Do this in the reverse order of registration.
@@ -11605,9 +11606,7 @@ static void __net_exit default_device_exit_batch(struct list_head *net_list)
*/
struct net_device *dev;
struct net *net;
- LIST_HEAD(dev_kill_list);
- rtnl_lock();
list_for_each_entry(net, net_list, exit_list) {
default_device_exit_net(net);
cond_resched();
@@ -11616,17 +11615,15 @@ static void __net_exit default_device_exit_batch(struct list_head *net_list)
list_for_each_entry(net, net_list, exit_list) {
for_each_netdev_reverse(net, dev) {
if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
- dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
+ dev->rtnl_link_ops->dellink(dev, dev_kill_list);
else
- unregister_netdevice_queue(dev, &dev_kill_list);
+ unregister_netdevice_queue(dev, dev_kill_list);
}
}
- unregister_netdevice_many(&dev_kill_list);
- rtnl_unlock();
}
static struct pernet_operations __net_initdata default_device_ops = {
- .exit_batch = default_device_exit_batch,
+ .exit_batch_rtnl = default_device_exit_batch_rtnl,
};
static void __init net_dev_struct_check(void)
--
2.43.0.429.g432eaa2c6b-goog
Powered by blists - more mailing lists