aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/nf_log.c
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2017-04-25 10:24:03 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2017-05-01 11:19:07 +0200
commitc83fa19603bdaeef17b815713dbbe3230c8a34ee (patch)
tree49a16567ef8b98dcf448ea4adf391c3097ccbdab /net/netfilter/nf_log.c
parentnetfilter: batch synchronize_net calls during hook unregister (diff)
downloadlinux-dev-c83fa19603bdaeef17b815713dbbe3230c8a34ee.tar.xz
linux-dev-c83fa19603bdaeef17b815713dbbe3230c8a34ee.zip
netfilter: nf_log: don't call synchronize_rcu in nf_log_unset
nf_log_unregister() (which is what gets called in the logger backends module exit paths) does a (required, module is removed) synchronize_rcu(). But nf_log_unset() is only called from pernet exit handlers. It doesn't free any memory so there appears to be no need to call synchronize_rcu. v2: Liping Zhang points out that nf_log_unregister() needs to be called after pernet unregister, else rmmod would become unsafe. Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter/nf_log.c')
-rw-r--r--net/netfilter/nf_log.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/net/netfilter/nf_log.c b/net/netfilter/nf_log.c
index cc32727e3f32..8bb152a7cca4 100644
--- a/net/netfilter/nf_log.c
+++ b/net/netfilter/nf_log.c
@@ -71,7 +71,6 @@ void nf_log_unset(struct net *net, const struct nf_logger *logger)
RCU_INIT_POINTER(net->nf.nf_loggers[i], NULL);
}
mutex_unlock(&nf_log_mutex);
- synchronize_rcu();
}
EXPORT_SYMBOL(nf_log_unset);