All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] selftests: net: Add tls config dependency for tls selftests
@ 2022-03-28 13:46 Naresh Kamboju
  2022-03-28 16:10 ` patchwork-bot+netdevbpf
  2022-03-28 20:54 ` Jakub Kicinski
  0 siblings, 2 replies; 4+ messages in thread
From: Naresh Kamboju @ 2022-03-28 13:46 UTC (permalink / raw)
  To: davem
  Cc: pabeni, kuba, shuah, linux-kselftest, netdev, linux-kernel,
	Naresh Kamboju, Linux Kernel Functional Testing

selftest net tls test cases need TLS=m without this the test hangs.
Enabling config TLS solves this problem and runs to complete.
  - CONFIG_TLS=m

Reported-by: Linux Kernel Functional Testing <lkft@linaro.org>
Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
---
 tools/testing/selftests/net/config | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/testing/selftests/net/config b/tools/testing/selftests/net/config
index ead7963b9bf0..cecb921a0dbf 100644
--- a/tools/testing/selftests/net/config
+++ b/tools/testing/selftests/net/config
@@ -43,5 +43,6 @@ CONFIG_NET_ACT_TUNNEL_KEY=m
 CONFIG_NET_ACT_MIRRED=m
 CONFIG_BAREUDP=m
 CONFIG_IPV6_IOAM6_LWTUNNEL=y
+CONFIG_TLS=m
 CONFIG_CRYPTO_SM4=y
 CONFIG_AMT=m
-- 
2.30.2


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

* Re: [PATCH] selftests: net: Add tls config dependency for tls selftests
  2022-03-28 13:46 [PATCH] selftests: net: Add tls config dependency for tls selftests Naresh Kamboju
@ 2022-03-28 16:10 ` patchwork-bot+netdevbpf
  2022-03-28 20:54 ` Jakub Kicinski
  1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-03-28 16:10 UTC (permalink / raw)
  To: Naresh Kamboju
  Cc: davem, pabeni, kuba, shuah, linux-kselftest, netdev, linux-kernel, lkft

Hello:

This patch was applied to bpf/bpf.git (master)
by David S. Miller <davem@davemloft.net>:

On Mon, 28 Mar 2022 19:16:50 +0530 you wrote:
> selftest net tls test cases need TLS=m without this the test hangs.
> Enabling config TLS solves this problem and runs to complete.
>   - CONFIG_TLS=m
> 
> Reported-by: Linux Kernel Functional Testing <lkft@linaro.org>
> Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
> 
> [...]

Here is the summary with links:
  - selftests: net: Add tls config dependency for tls selftests
    https://git.kernel.org/bpf/bpf/c/d9142e1cf3bb

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] 4+ messages in thread

* Re: [PATCH] selftests: net: Add tls config dependency for tls selftests
  2022-03-28 13:46 [PATCH] selftests: net: Add tls config dependency for tls selftests Naresh Kamboju
  2022-03-28 16:10 ` patchwork-bot+netdevbpf
@ 2022-03-28 20:54 ` Jakub Kicinski
  2022-03-29 14:55   ` Naresh Kamboju
  1 sibling, 1 reply; 4+ messages in thread
From: Jakub Kicinski @ 2022-03-28 20:54 UTC (permalink / raw)
  To: Naresh Kamboju
  Cc: davem, pabeni, shuah, linux-kselftest, netdev, linux-kernel,
	Linux Kernel Functional Testing

On Mon, 28 Mar 2022 19:16:50 +0530 Naresh Kamboju wrote:
> selftest net tls test cases need TLS=m without this the test hangs.

The test is supposed to fall back / skip cleanly when TLS is not built.
That's useful to test compatibility with TCP. 

It'd be great if you could reply to questions I asked you on your
report instead of sending out incorrect patches.

> Enabling config TLS solves this problem and runs to complete.
>   - CONFIG_TLS=m
> 
> Reported-by: Linux Kernel Functional Testing <lkft@linaro.org>
> Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>

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

* Re: [PATCH] selftests: net: Add tls config dependency for tls selftests
  2022-03-28 20:54 ` Jakub Kicinski
@ 2022-03-29 14:55   ` Naresh Kamboju
  0 siblings, 0 replies; 4+ messages in thread
From: Naresh Kamboju @ 2022-03-29 14:55 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: davem, pabeni, shuah, linux-kselftest, netdev, linux-kernel,
	Linux Kernel Functional Testing

Hi Jakub

On Tue, 29 Mar 2022 at 02:24, Jakub Kicinski <kuba@kernel.org> wrote:
>
> On Mon, 28 Mar 2022 19:16:50 +0530 Naresh Kamboju wrote:
> > selftest net tls test cases need TLS=m without this the test hangs.
>
> The test is supposed to fall back / skip cleanly when TLS is not built.
> That's useful to test compatibility with TCP.
>
> It'd be great if you could reply to questions I asked you on your
> report instead of sending out incorrect patches.

I have replied to your question on other email thread [1]

- Naresh

[1] https://lore.kernel.org/linux-next/CA+G9fYsjP2+20YLbKTFU-4_v+VLq6MfaagjERL9PWETs+sX8Zg@mail.gmail.com/

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

end of thread, other threads:[~2022-03-29 14:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-28 13:46 [PATCH] selftests: net: Add tls config dependency for tls selftests Naresh Kamboju
2022-03-28 16:10 ` patchwork-bot+netdevbpf
2022-03-28 20:54 ` Jakub Kicinski
2022-03-29 14:55   ` Naresh Kamboju

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.