net: Convert arp_tables_net_ops and ip6_tables_net_ops
authorKirill Tkhai <ktkhai@virtuozzo.com>
Mon, 5 Mar 2018 11:31:00 +0000 (14:31 +0300)
committerDavid S. Miller <davem@davemloft.net>
Mon, 5 Mar 2018 15:48:27 +0000 (10:48 -0500)
These pernet_operations call xt_proto_init() and xt_proto_fini(),
which just register and unregister /proc entries.
They are safe to be marked as async.

Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/netfilter/arp_tables.c
net/ipv6/netfilter/ip6_tables.c

index e3e420f3ba7b2de96be867912695efb3ae2b193c..c36ffce3c81249cceb3ecdf8a2ad8ebd1161e41e 100644 (file)
@@ -1635,6 +1635,7 @@ static void __net_exit arp_tables_net_exit(struct net *net)
 static struct pernet_operations arp_tables_net_ops = {
        .init = arp_tables_net_init,
        .exit = arp_tables_net_exit,
+       .async = true,
 };
 
 static int __init arp_tables_init(void)
index 62358b93bbac5250676a067464c11e4e3d649faa..4de8ac1e5af4a6c4137f04b0757015aa2c10104b 100644 (file)
@@ -1928,6 +1928,7 @@ static void __net_exit ip6_tables_net_exit(struct net *net)
 static struct pernet_operations ip6_tables_net_ops = {
        .init = ip6_tables_net_init,
        .exit = ip6_tables_net_exit,
+       .async = true,
 };
 
 static int __init ip6_tables_init(void)