]> git.baikalelectronics.ru Git - kernel.git/commitdiff
net: Convert can_pernet_ops
authorKirill Tkhai <ktkhai@virtuozzo.com>
Mon, 19 Mar 2018 11:39:05 +0000 (14:39 +0300)
committerDavid S. Miller <davem@davemloft.net>
Thu, 22 Mar 2018 15:11:29 +0000 (11:11 -0400)
These pernet_operations create and destroy /proc entries
and cancel per-net timer.

Also, there are unneed iterations over empty list of net
devices, since all net devices must be already moved
to init_net or unregistered by default_device_ops. This
already was mentioned here:

https://marc.info/?l=linux-can&m=150169589119335&w=2

So, it looks safe to make them async.

Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/can/af_can.c

index 6da324550eec0ac2f17440d050a9b43c6e6b14b0..e899970398a127f11a789fdf3a600a1150c1a0c5 100644 (file)
@@ -954,6 +954,7 @@ static struct notifier_block can_netdev_notifier __read_mostly = {
 static struct pernet_operations can_pernet_ops __read_mostly = {
        .init = can_pernet_init,
        .exit = can_pernet_exit,
+       .async = true,
 };
 
 static __init int can_init(void)