diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2022-08-04 19:26:29 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-08-05 18:50:15 -0700 |
commit | b06ada6df9cf785099c142d96cb8a337ff46adf7 (patch) | |
tree | 01e48177d86d66687a9c8a690924786f2791b868 /net/netfilter/Kconfig | |
parent | fe9e420defabd0f3b13239dd135d261fbeeb67ae (diff) |
netfilter: flowtable: fix incorrect Kconfig dependencies
Remove default to 'y', this infrastructure is not fundamental for the
flowtable operational.
Add a missing dependency on CONFIG_NF_FLOW_TABLE.
Reported-by: Linus Torvalds <torvalds@linux-foundation.org>
Fixes: b038177636f8 ("netfilter: nf_flow_table: count pending offload workqueue tasks")
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/netfilter/Kconfig')
-rw-r--r-- | net/netfilter/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig index df6abbfe0079..22f15ebf6045 100644 --- a/net/netfilter/Kconfig +++ b/net/netfilter/Kconfig @@ -736,9 +736,8 @@ config NF_FLOW_TABLE config NF_FLOW_TABLE_PROCFS bool "Supply flow table statistics in procfs" - default y + depends on NF_FLOW_TABLE depends on PROC_FS - depends on SYSCTL help This option enables for the flow table offload statistics to be shown in procfs under net/netfilter/nf_flowtable. |