aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/nf_log.c
diff options
context:
space:
mode:
authorKirill Tkhai <ktkhai@virtuozzo.com>2018-02-13 12:27:31 +0300
committerDavid S. Miller <davem@davemloft.net>2018-02-13 10:36:06 -0500
commitc9d8fb91351fe1514731b7f6d24d4decc0028978 (patch)
treebe0fb57ba4cf2e2785d84febec497c9f4a5c8efe /net/netfilter/nf_log.c
parentnet: Convert netfilter_net_ops (diff)
downloadlinux-dev-c9d8fb91351fe1514731b7f6d24d4decc0028978.tar.xz
linux-dev-c9d8fb91351fe1514731b7f6d24d4decc0028978.zip
net: Convert nf_log_net_ops
The pernet_operations would have had a problem in parallel execution with others, if init_net had been able to released. But it's not, and the rest is safe for that. There is memory allocation, which nobody else interested in, and sysctl registration. So, we 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/netfilter/nf_log.c')
-rw-r--r--net/netfilter/nf_log.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/netfilter/nf_log.c b/net/netfilter/nf_log.c
index c2c1b16b7538..1ba3da51050d 100644
--- a/net/netfilter/nf_log.c
+++ b/net/netfilter/nf_log.c
@@ -577,6 +577,7 @@ static void __net_exit nf_log_net_exit(struct net *net)
static struct pernet_operations nf_log_net_ops = {
.init = nf_log_net_init,
.exit = nf_log_net_exit,
+ .async = true,
};
int __init netfilter_log_init(void)