diff options
author | Kirill Tkhai <ktkhai@virtuozzo.com> | 2018-03-07 12:41:23 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-03-08 12:36:45 -0500 |
commit | 1fd2c55705aebac31bf8f759c0750dc3c796cf47 (patch) | |
tree | a89e3cf50856ac2b9bbaab8f5bebe61f17b968a5 /net | |
parent | e8a95ad46378162f22c9293bde276d7c4030f31e (diff) | |
download | linux-1fd2c55705aebac31bf8f759c0750dc3c796cf47.tar.bz2 |
net: Convet ipv6_net_ops
These pernet_operations are similar to ipv4_net_ops.
They are safe to be async.
Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c b/net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c index 663827ee3cf8..ba54bb3bd1e4 100644 --- a/net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c +++ b/net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c @@ -401,6 +401,7 @@ static struct pernet_operations ipv6_net_ops = { .exit = ipv6_net_exit, .id = &conntrack6_net_id, .size = sizeof(struct conntrack6_net), + .async = true, }; static int __init nf_conntrack_l3proto_ipv6_init(void) |