From: Kirill Tkhai Date: Tue, 13 Mar 2018 10:37:11 +0000 (+0300) Subject: net: Convert tipc_net_ops X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=afbbc374ab1281f2e5c18278a62a47fb906f0fa4;p=linux.git net: Convert tipc_net_ops TIPC looks concentrated in itself, and other pernet_operations seem not touching its entities. tipc_net_ops look pernet-divided, and they should be safe to be executed in parallel for several net the same time. Signed-off-by: Kirill Tkhai Signed-off-by: David S. Miller --- diff --git a/net/tipc/core.c b/net/tipc/core.c index 0b982d048fb9b..04fd91bb11d7d 100644 --- a/net/tipc/core.c +++ b/net/tipc/core.c @@ -105,6 +105,7 @@ static struct pernet_operations tipc_net_ops = { .exit = tipc_exit_net, .id = &tipc_net_id, .size = sizeof(struct tipc_net), + .async = true, }; static int __init tipc_init(void)