diff options
author | Matthieu Baerts (NGI0) <matttbe@kernel.org> | 2024-01-31 22:49:48 +0100 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-02-01 18:06:37 +0100 |
commit | 8c86fad2cecdc6bf7283ecd298b4d0555bd8b8aa (patch) | |
tree | 4ceef78ee30d60b25b92d65510308def1977e1d8 /tools/testing/selftests/net/mptcp/config | |
parent | selftests: mptcp: add missing kconfig for NF Filter (diff) | |
download | linux-8c86fad2cecdc6bf7283ecd298b4d0555bd8b8aa.tar.xz linux-8c86fad2cecdc6bf7283ecd298b4d0555bd8b8aa.zip |
selftests: mptcp: add missing kconfig for NF Filter in v6
Since the commit mentioned below, 'mptcp_join' selftests is using
IPTables to add rules to the Filter table for IPv6.
It is then required to have IP6_NF_FILTER KConfig.
This KConfig is usually enabled by default in many defconfig, but we
recently noticed that some CI were running our selftests without them
enabled.
Fixes: 523514ed0a99 ("selftests: mptcp: add ADD_ADDR IPv6 test cases")
Cc: stable@vger.kernel.org
Reviewed-by: Geliang Tang <geliang@kernel.org>
Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
Link: https://lore.kernel.org/r/20240131-upstream-net-20240131-mptcp-ci-issues-v1-3-4c1c11e571ff@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | tools/testing/selftests/net/mptcp/config | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/testing/selftests/net/mptcp/config b/tools/testing/selftests/net/mptcp/config index 2a00bf4acdfa..26fe466f803d 100644 --- a/tools/testing/selftests/net/mptcp/config +++ b/tools/testing/selftests/net/mptcp/config @@ -25,6 +25,7 @@ CONFIG_IP_MULTIPLE_TABLES=y CONFIG_IP_NF_FILTER=m CONFIG_IP_NF_TARGET_REJECT=m CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IP6_NF_FILTER=m CONFIG_NET_ACT_CSUM=m CONFIG_NET_ACT_PEDIT=m CONFIG_NET_CLS_ACT=y |