Message ID | 20220209023043.3469254-1-eric.dumazet@gmail.com (mailing list archive) |
---|---|
State | Awaiting Upstream |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net] netfilter: xt_socket: fix a typo in socket_mt_destroy() | expand |
Eric Dumazet <eric.dumazet@gmail.com> wrote: > From: Eric Dumazet <edumazet@google.com> > > Calling nf_defrag_ipv4_disable() instead of nf_defrag_ipv6_disable() > was probably not the intent. Indeed, thanks for catching this. Reviewed-by: Florian Westphal <fw@strlen.de>
On Wed, Feb 09, 2022 at 10:29:07AM +0100, Florian Westphal wrote: > Eric Dumazet <eric.dumazet@gmail.com> wrote: > > From: Eric Dumazet <edumazet@google.com> > > > > Calling nf_defrag_ipv4_disable() instead of nf_defrag_ipv6_disable() > > was probably not the intent. > > Indeed, thanks for catching this. > > Reviewed-by: Florian Westphal <fw@strlen.de> Applied, thanks
diff --git a/net/netfilter/xt_socket.c b/net/netfilter/xt_socket.c index 5e6459e1160553c0a563a38b5060815e88998b4d..662e5eb1cc39e544191b3aab388c3762674d9251 100644 --- a/net/netfilter/xt_socket.c +++ b/net/netfilter/xt_socket.c @@ -221,7 +221,7 @@ static void socket_mt_destroy(const struct xt_mtdtor_param *par) if (par->family == NFPROTO_IPV4) nf_defrag_ipv4_disable(par->net); else if (par->family == NFPROTO_IPV6) - nf_defrag_ipv4_disable(par->net); + nf_defrag_ipv6_disable(par->net); } static struct xt_match socket_mt_reg[] __read_mostly = {