diff options
author | Kirill Tkhai <ktkhai@virtuozzo.com> | 2018-02-26 16:02:27 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-02-27 11:01:38 -0500 |
commit | 989d9812b7cabbda2e82f47e52dbc48ed4e40ce5 (patch) | |
tree | 066ca28e85904bc9d82a351723acd50e0f989602 /net/ipv6 | |
parent | 5ecc29550add41a0f077b07840501d7a3abfc9db (diff) | |
download | linux-989d9812b7cabbda2e82f47e52dbc48ed4e40ce5.tar.gz linux-989d9812b7cabbda2e82f47e52dbc48ed4e40ce5.tar.bz2 linux-989d9812b7cabbda2e82f47e52dbc48ed4e40ce5.zip |
net: Convert sit_net_ops
These pernet_operations are similar to ip6_tnl_net_ops. Exit method
unregisters all net sit devices, and it looks like another
pernet_operations are not interested in foreign net sit list.
Init method registers netdevice. So, it's possible to mark them async.
Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/sit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c index 3a1775a62973..182db078f01e 100644 --- a/net/ipv6/sit.c +++ b/net/ipv6/sit.c @@ -1878,6 +1878,7 @@ static struct pernet_operations sit_net_ops = { .exit_batch = sit_exit_batch_net, .id = &sit_net_id, .size = sizeof(struct sit_net), + .async = true, }; static void __exit sit_cleanup(void) |