]> git.baikalelectronics.ru Git - kernel.git/commit
netfilter: conntrack: fix udp offload timeout sysctl
authorVolodymyr Mytnyk <volodymyr.mytnyk@plvision.eu>
Wed, 27 Apr 2022 11:09:00 +0000 (14:09 +0300)
committerPablo Neira Ayuso <pablo@netfilter.org>
Wed, 27 Apr 2022 13:48:49 +0000 (15:48 +0200)
commit978449926b03ced3465effb766333890d3093a9b
treed5f51a3fecc0638719ec787ca40256d18a84c2a1
parentfb3c6136fc517bb7c9d709473b51db97a65a2e19
netfilter: conntrack: fix udp offload timeout sysctl

`nf_flowtable_udp_timeout` sysctl option is available only
if CONFIG_NFT_FLOW_OFFLOAD enabled. But infra for this flow
offload UDP timeout was added under CONFIG_NF_FLOW_TABLE
config option. So, if you have CONFIG_NFT_FLOW_OFFLOAD
disabled and CONFIG_NF_FLOW_TABLE enabled, the
`nf_flowtable_udp_timeout` is not present in sysfs.
Please note, that TCP flow offload timeout sysctl option
is present even CONFIG_NFT_FLOW_OFFLOAD is disabled.

I suppose it was a typo in commit that adds UDP flow offload
timeout and CONFIG_NF_FLOW_TABLE should be used instead.

Fixes: 160e84ba51e1 ("netfilter: conntrack: Introduce udp offload timeout configuration")
Signed-off-by: Volodymyr Mytnyk <volodymyr.mytnyk@plvision.eu>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/nf_conntrack_standalone.c