diff mbox series

[nf-next,4/7] netfilter: flowtable: prefer plain nf_ct_refresh for setting initial timeout

Message ID 20240924194419.29936-5-fw@strlen.de
State New
Headers show
Series netfilter: rework conntrack/flowtable interaction | expand

Commit Message

Florian Westphal Sept. 24, 2024, 7:44 p.m. UTC
This allows to remove the nf_ct_offload_timeout helper in followup
patches.

Its safe to use in the add case, but not on teardown.

Signed-off-by: Florian Westphal <fw@strlen.de>
---
 net/netfilter/nf_flow_table_core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/net/netfilter/nf_flow_table_core.c b/net/netfilter/nf_flow_table_core.c
index bdde469bbbd1..4569917dbe0a 100644
--- a/net/netfilter/nf_flow_table_core.c
+++ b/net/netfilter/nf_flow_table_core.c
@@ -304,7 +304,7 @@  int flow_offload_add(struct nf_flowtable *flow_table, struct flow_offload *flow)
 		return err;
 	}
 
-	nf_ct_offload_timeout(flow->ct);
+	nf_ct_refresh(flow->ct, NF_CT_DAY);
 
 	if (nf_flowtable_hw_offload(flow_table)) {
 		__set_bit(NF_FLOW_HW, &flow->flags);