aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/nft_ct.c
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2022-03-02 22:02:55 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2022-03-20 00:29:35 +0100
commit31d0bb9763efad30377505f3467f958d1ebe1e3d (patch)
treee43f7338e973e03070ea0d988183841be3180175 /net/netfilter/nft_ct.c
parent2cfadb761d3d0219412fd8150faea60c7e863833 (diff)
downloadlinux-31d0bb9763efad30377505f3467f958d1ebe1e3d.tar.gz
netfilter: conntrack: Add and use nf_ct_set_auto_assign_helper_warned()
The function sets the pernet boolean to avoid the spurious warning from nf_ct_lookup_helper() when assigning conntrack helpers via nftables. Fixes: 1a64edf54f55 ("netfilter: nft_ct: add helper set support") Signed-off-by: Phil Sutter <phil@nwl.cc> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter/nft_ct.c')
-rw-r--r--net/netfilter/nft_ct.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/netfilter/nft_ct.c b/net/netfilter/nft_ct.c
index 5adf8bb628a80e..9c7472af9e4a13 100644
--- a/net/netfilter/nft_ct.c
+++ b/net/netfilter/nft_ct.c
@@ -1041,6 +1041,9 @@ static int nft_ct_helper_obj_init(const struct nft_ctx *ctx,
if (err < 0)
goto err_put_helper;
+ /* Avoid the bogus warning, helper will be assigned after CT init */
+ nf_ct_set_auto_assign_helper_warned(ctx->net);
+
return 0;
err_put_helper: