]> www.infradead.org Git - users/jedix/linux-maple.git/commit
netfilter: nf_log: don't zap all loggers on unregister
authorFlorian Westphal <fw@strlen.de>
Wed, 9 Sep 2015 00:57:21 +0000 (02:57 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 22 Oct 2015 21:43:18 +0000 (14:43 -0700)
commita365025b053c37cfe27d16a4cf32e971cde3b41d
treeb38fe4c43d926352e762067ce885dce29bec3c2a
parent146560ee780bd92bda069ec7bf685ea4369ed4a3
netfilter: nf_log: don't zap all loggers on unregister

commit 205ee117d4dc4a11ac3bd9638bb9b2e839f4de9a upstream.

like nf_log_unset, nf_log_unregister must not reset the list of loggers.
Otherwise, a call to nf_log_unregister() will render loggers of other nf
protocols unusable:

iptables -A INPUT -j LOG
modprobe nf_log_arp ; rmmod nf_log_arp
iptables -A INPUT -j LOG
iptables: No chain/target/match by that name

Fixes: 30e0c6a6be ("netfilter: nf_log: prepare net namespace support for loggers")
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/netfilter/nf_log.c