All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net] selftests: tcp_ao: add a config file
@ 2024-01-24 19:25 Jakub Kicinski
  2024-01-24 20:01 ` Dmitry Safonov
  2024-01-26  0:00 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Jakub Kicinski @ 2024-01-24 19:25 UTC (permalink / raw)
  To: davem
  Cc: netdev, edumazet, pabeni, Jakub Kicinski, shuah, 0x7f454c46,
	linux-kselftest

Still a bit unclear whether each directory should have its own
config file, but assuming they should lets add one for tcp_ao.

The following tests still fail with this config in place:
 - rst_ipv4,
 - rst_ipv6,
 - bench-lookups_ipv6.
other 21 pass.

Fixes: d11301f65977 ("selftests/net: Add TCP-AO ICMPs accept test")
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
---
CC: shuah@kernel.org
CC: 0x7f454c46@gmail.com
CC: linux-kselftest@vger.kernel.org
---
 tools/testing/selftests/net/tcp_ao/config | 10 ++++++++++
 1 file changed, 10 insertions(+)
 create mode 100644 tools/testing/selftests/net/tcp_ao/config

diff --git a/tools/testing/selftests/net/tcp_ao/config b/tools/testing/selftests/net/tcp_ao/config
new file mode 100644
index 000000000000..d3277a9de987
--- /dev/null
+++ b/tools/testing/selftests/net/tcp_ao/config
@@ -0,0 +1,10 @@
+CONFIG_CRYPTO_HMAC=y
+CONFIG_CRYPTO_RMD160=y
+CONFIG_CRYPTO_SHA1=y
+CONFIG_IPV6_MULTIPLE_TABLES=y
+CONFIG_IPV6=y
+CONFIG_NET_L3_MASTER_DEV=y
+CONFIG_NET_VRF=y
+CONFIG_TCP_AO=y
+CONFIG_TCP_MD5SIG=y
+CONFIG_VETH=m
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH net] selftests: tcp_ao: add a config file
  2024-01-24 19:25 [PATCH net] selftests: tcp_ao: add a config file Jakub Kicinski
@ 2024-01-24 20:01 ` Dmitry Safonov
  2024-01-26  0:00 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Dmitry Safonov @ 2024-01-24 20:01 UTC (permalink / raw)
  To: Jakub Kicinski, davem; +Cc: netdev, edumazet, pabeni, shuah, linux-kselftest

On 1/24/24 19:25, Jakub Kicinski wrote:
> Still a bit unclear whether each directory should have its own
> config file, but assuming they should lets add one for tcp_ao.
> 
> The following tests still fail with this config in place:
>  - rst_ipv4,
>  - rst_ipv6,
>  - bench-lookups_ipv6.
> other 21 pass.
> 
> Fixes: d11301f65977 ("selftests/net: Add TCP-AO ICMPs accept test")
> Signed-off-by: Jakub Kicinski <kuba@kernel.org>

Reviewed-by: Dmitry Safonov <0x7f454c46@gmail.com>

Thanks again!

> ---
> CC: shuah@kernel.org
> CC: 0x7f454c46@gmail.com
> CC: linux-kselftest@vger.kernel.org
> ---
>  tools/testing/selftests/net/tcp_ao/config | 10 ++++++++++
>  1 file changed, 10 insertions(+)
>  create mode 100644 tools/testing/selftests/net/tcp_ao/config
> 
> diff --git a/tools/testing/selftests/net/tcp_ao/config b/tools/testing/selftests/net/tcp_ao/config
> new file mode 100644
> index 000000000000..d3277a9de987
> --- /dev/null
> +++ b/tools/testing/selftests/net/tcp_ao/config
> @@ -0,0 +1,10 @@
> +CONFIG_CRYPTO_HMAC=y
> +CONFIG_CRYPTO_RMD160=y
> +CONFIG_CRYPTO_SHA1=y
> +CONFIG_IPV6_MULTIPLE_TABLES=y
> +CONFIG_IPV6=y
> +CONFIG_NET_L3_MASTER_DEV=y
> +CONFIG_NET_VRF=y
> +CONFIG_TCP_AO=y
> +CONFIG_TCP_MD5SIG=y
> +CONFIG_VETH=m

Thanks,
           Dmitry


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH net] selftests: tcp_ao: add a config file
  2024-01-24 19:25 [PATCH net] selftests: tcp_ao: add a config file Jakub Kicinski
  2024-01-24 20:01 ` Dmitry Safonov
@ 2024-01-26  0:00 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-01-26  0:00 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: davem, netdev, edumazet, pabeni, shuah, 0x7f454c46, linux-kselftest

Hello:

This patch was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Wed, 24 Jan 2024 11:25:50 -0800 you wrote:
> Still a bit unclear whether each directory should have its own
> config file, but assuming they should lets add one for tcp_ao.
> 
> The following tests still fail with this config in place:
>  - rst_ipv4,
>  - rst_ipv6,
>  - bench-lookups_ipv6.
> other 21 pass.
> 
> [...]

Here is the summary with links:
  - [net] selftests: tcp_ao: add a config file
    https://git.kernel.org/netdev/net/c/b64787840080

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-01-26  0:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-24 19:25 [PATCH net] selftests: tcp_ao: add a config file Jakub Kicinski
2024-01-24 20:01 ` Dmitry Safonov
2024-01-26  0:00 ` patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.