aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/net_namespace.c
diff options
context:
space:
mode:
authorKirill Tkhai <ktkhai@virtuozzo.com>2018-02-13 12:27:51 +0300
committerDavid S. Miller <davem@davemloft.net>2018-02-13 10:36:06 -0500
commitff291d005a988aaa7d73daf44c3d04585e9f0637 (patch)
tree276b94523a3e6334be0f6331de2ecb38368600f9 /net/core/net_namespace.c
parentnet: Convert net_inuse_ops (diff)
downloadlinux-dev-ff291d005a988aaa7d73daf44c3d04585e9f0637.tar.xz
linux-dev-ff291d005a988aaa7d73daf44c3d04585e9f0637.zip
net: Convert net_defaults_ops
net_defaults_ops introduce only net_defaults_init_net method, and it acts on net::core::sysctl_somaxconn, which is not interesting for the rest of pernet_subsys and pernet_device lists. Then, make them async. Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com> Acked-by: Andrei Vagin <avagin@virtuozzo.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/net_namespace.c')
-rw-r--r--net/core/net_namespace.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/core/net_namespace.c b/net/core/net_namespace.c
index e21c564c8c00..bcab9a938d6f 100644
--- a/net/core/net_namespace.c
+++ b/net/core/net_namespace.c
@@ -340,6 +340,7 @@ static int __net_init net_defaults_init_net(struct net *net)
static struct pernet_operations net_defaults_ops = {
.init = net_defaults_init_net,
+ .async = true,
};
static __init int net_defaults_init(void)