aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
authorKirill Tkhai <ktkhai@virtuozzo.com>2018-02-26 16:02:27 +0300
committerDavid S. Miller <davem@davemloft.net>2018-02-27 11:01:38 -0500
commit989d9812b7cabbda2e82f47e52dbc48ed4e40ce5 (patch)
tree066ca28e85904bc9d82a351723acd50e0f989602 /net/ipv6
parentnet: Convert vti6_net_ops (diff)
downloadlinux-dev-989d9812b7cabbda2e82f47e52dbc48ed4e40ce5.tar.xz
linux-dev-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.c1
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)