From: Kirill Tkhai Date: Thu, 22 Mar 2018 18:34:46 +0000 (+0300) Subject: net: Convert udp_sysctl_ops X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=fc18999ed2a217f249e9880363b28a89c839737e;p=linux.git net: Convert udp_sysctl_ops These pernet_operations just initialize udp4 defaults. Signed-off-by: Kirill Tkhai Signed-off-by: David S. Miller --- diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index 908fc02fb4f83..c6dc019bc64b5 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c @@ -2842,7 +2842,8 @@ static int __net_init udp_sysctl_init(struct net *net) } static struct pernet_operations __net_initdata udp_sysctl_ops = { - .init = udp_sysctl_init, + .init = udp_sysctl_init, + .async = true, }; void __init udp_init(void)