diff options
author | Kirill Tkhai <ktkhai@virtuozzo.com> | 2018-02-19 11:49:10 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-02-19 22:19:10 +0300 |
commit | 509114112d0b71997dbe58d4f2976eeddf8eacc4 (patch) | |
tree | b64f9240365a9977f1118b48bad4afcab62e03e6 /net/ipv6/proc.c | |
parent | 1a2e93329dd413585798c122aac0607093b2d379 (diff) | |
download | linux-509114112d0b71997dbe58d4f2976eeddf8eacc4.tar.xz |
net: Convert raw6_net_ops, udplite6_net_ops, ipv6_proc_ops, if6_proc_net_ops and ip6_route_net_late_ops
These pernet_operations create and destroy /proc entries
and safely may be converted and safely may be mark as async.
Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/proc.c')
-rw-r--r-- | net/ipv6/proc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/proc.c b/net/ipv6/proc.c index b67814242f78..b8858c546f41 100644 --- a/net/ipv6/proc.c +++ b/net/ipv6/proc.c @@ -343,6 +343,7 @@ static void __net_exit ipv6_proc_exit_net(struct net *net) static struct pernet_operations ipv6_proc_ops = { .init = ipv6_proc_init_net, .exit = ipv6_proc_exit_net, + .async = true, }; int __init ipv6_misc_proc_init(void) |