diff options
author | David S. Miller <davem@davemloft.net> | 2018-02-19 14:19:12 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-02-19 14:19:12 -0500 |
commit | cc35b396788814f31d9507fc2454ef4b5c5e7178 (patch) | |
tree | eaa4d70b40d123a430d6379e13a8af8734fb1766 /net/ipv6/tcp_ipv6.c | |
parent | 3021efb440d02bf5b952b6d151c7ffee9bdd49fe (diff) | |
parent | da349fad8045cc44cd9b1752b0e2d943df62cabf (diff) | |
download | linux-cc35b396788814f31d9507fc2454ef4b5c5e7178.tar.gz linux-cc35b396788814f31d9507fc2454ef4b5c5e7178.tar.bz2 linux-cc35b396788814f31d9507fc2454ef4b5c5e7178.zip |
Merge branch 'pernet_ops-conversions-part-2'
Kirill Tkhai says:
====================
Converting pernet_operations (part #2)
This patchset continues to review and to convert pernet_operations
to async. There are mostly ipv6, also some regular used netfilter
pernet_operations are involved. One more converted is cfg80211_pernet_ops.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/tcp_ipv6.c')
-rw-r--r-- | net/ipv6/tcp_ipv6.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index 883df0ad5bfe..5425d7b100ee 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c @@ -2007,6 +2007,7 @@ static struct pernet_operations tcpv6_net_ops = { .init = tcpv6_net_init, .exit = tcpv6_net_exit, .exit_batch = tcpv6_net_exit_batch, + .async = true, }; int __init tcpv6_init(void) |