netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH bpf] selftests/bpf: remove sockmap_ktls disconnect_after_delete test
@ 2025-04-15 16:33 Ihor Solodrai
  2025-04-15 16:53 ` Jiayuan Chen
  0 siblings, 1 reply; 7+ messages in thread
From: Ihor Solodrai @ 2025-04-15 16:33 UTC (permalink / raw)
  To: ast, andrii, daniel, eddyz87
  Cc: bpf, netdev, kuba, jiayuan.chen, pabeni, mykolal, kernel-team

"sockmap_ktls disconnect_after_delete" test has been failing on BPF CI
after recent merges from netdev:
* https://github.com/kernel-patches/bpf/actions/runs/14458537639
* https://github.com/kernel-patches/bpf/actions/runs/14457178732

It happens because disconnect has been disabled for TLS [1], and it
renders the test case invalid. Remove it from the suite.

[1] https://lore.kernel.org/netdev/20250404180334.3224206-1-kuba@kernel.org/

Signed-off-by: Ihor Solodrai <ihor.solodrai@linux.dev>
---
 .../selftests/bpf/prog_tests/sockmap_ktls.c   | 68 -------------------
 1 file changed, 68 deletions(-)

diff --git a/tools/testing/selftests/bpf/prog_tests/sockmap_ktls.c b/tools/testing/selftests/bpf/prog_tests/sockmap_ktls.c
index 2d0796314862..47c0701e0938 100644
--- a/tools/testing/selftests/bpf/prog_tests/sockmap_ktls.c
+++ b/tools/testing/selftests/bpf/prog_tests/sockmap_ktls.c
@@ -10,72 +10,6 @@
 #define MAX_TEST_NAME 80
 #define TCP_ULP 31
 
-static int tcp_server(int family)
-{
-	int err, s;
-
-	s = socket(family, SOCK_STREAM, 0);
-	if (!ASSERT_GE(s, 0, "socket"))
-		return -1;
-
-	err = listen(s, SOMAXCONN);
-	if (!ASSERT_OK(err, "listen"))
-		return -1;
-
-	return s;
-}
-
-static int disconnect(int fd)
-{
-	struct sockaddr unspec = { AF_UNSPEC };
-
-	return connect(fd, &unspec, sizeof(unspec));
-}
-
-/* Disconnect (unhash) a kTLS socket after removing it from sockmap. */
-static void test_sockmap_ktls_disconnect_after_delete(int family, int map)
-{
-	struct sockaddr_storage addr = {0};
-	socklen_t len = sizeof(addr);
-	int err, cli, srv, zero = 0;
-
-	srv = tcp_server(family);
-	if (srv == -1)
-		return;
-
-	err = getsockname(srv, (struct sockaddr *)&addr, &len);
-	if (!ASSERT_OK(err, "getsockopt"))
-		goto close_srv;
-
-	cli = socket(family, SOCK_STREAM, 0);
-	if (!ASSERT_GE(cli, 0, "socket"))
-		goto close_srv;
-
-	err = connect(cli, (struct sockaddr *)&addr, len);
-	if (!ASSERT_OK(err, "connect"))
-		goto close_cli;
-
-	err = bpf_map_update_elem(map, &zero, &cli, 0);
-	if (!ASSERT_OK(err, "bpf_map_update_elem"))
-		goto close_cli;
-
-	err = setsockopt(cli, IPPROTO_TCP, TCP_ULP, "tls", strlen("tls"));
-	if (!ASSERT_OK(err, "setsockopt(TCP_ULP)"))
-		goto close_cli;
-
-	err = bpf_map_delete_elem(map, &zero);
-	if (!ASSERT_OK(err, "bpf_map_delete_elem"))
-		goto close_cli;
-
-	err = disconnect(cli);
-	ASSERT_OK(err, "disconnect");
-
-close_cli:
-	close(cli);
-close_srv:
-	close(srv);
-}
-
 static void test_sockmap_ktls_update_fails_when_sock_has_ulp(int family, int map)
 {
 	struct sockaddr_storage addr = {};
@@ -154,8 +88,6 @@ static void run_tests(int family, enum bpf_map_type map_type)
 	if (!ASSERT_GE(map, 0, "bpf_map_create"))
 		return;
 
-	if (test__start_subtest(fmt_test_name("disconnect_after_delete", family, map_type)))
-		test_sockmap_ktls_disconnect_after_delete(family, map);
 	if (test__start_subtest(fmt_test_name("update_fails_when_sock_has_ulp", family, map_type)))
 		test_sockmap_ktls_update_fails_when_sock_has_ulp(family, map);
 
-- 
2.49.0


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

* Re: [PATCH bpf] selftests/bpf: remove sockmap_ktls disconnect_after_delete test
  2025-04-15 16:33 [PATCH bpf] selftests/bpf: remove sockmap_ktls disconnect_after_delete test Ihor Solodrai
@ 2025-04-15 16:53 ` Jiayuan Chen
  2025-04-15 17:00   ` Ihor Solodrai
  0 siblings, 1 reply; 7+ messages in thread
From: Jiayuan Chen @ 2025-04-15 16:53 UTC (permalink / raw)
  To: Ihor Solodrai, ast, andrii, daniel, eddyz87
  Cc: bpf, netdev, kuba, pabeni, mykolal, kernel-team

April 16, 2025 at 24:33, "Ihor Solodrai" <ihor.solodrai@linux.dev> wrote:
> 
> "sockmap_ktls disconnect_after_delete" test has been failing on BPF CI
> after recent merges from netdev:
> * https://github.com/kernel-patches/bpf/actions/runs/14458537639
> * https://github.com/kernel-patches/bpf/actions/runs/14457178732
> It happens because disconnect has been disabled for TLS [1], and it
> renders the test case invalid. Remove it from the suite.
> [1] https://lore.kernel.org/netdev/20250404180334.3224206-1-kuba@kernel.org/
> Signed-off-by: Ihor Solodrai <ihor.solodrai@linux.dev>

Reviewed-by: Jiayuan Chen <jiayuan.chen@linux.dev>

The original selftest patch used disconnect to re-produce the endless
loop caused by tcp_bpf_unhash, which has already been removed.

I hope this doesn't conflict with bpf-next...

Thanks.

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

* Re: [PATCH bpf] selftests/bpf: remove sockmap_ktls disconnect_after_delete test
  2025-04-15 16:53 ` Jiayuan Chen
@ 2025-04-15 17:00   ` Ihor Solodrai
  2025-04-15 17:05     ` Alexei Starovoitov
  0 siblings, 1 reply; 7+ messages in thread
From: Ihor Solodrai @ 2025-04-15 17:00 UTC (permalink / raw)
  To: Jiayuan Chen, ast, andrii, daniel, eddyz87
  Cc: bpf, netdev, kuba, pabeni, mykolal, kernel-team

On 4/15/25 9:53 AM, Jiayuan Chen wrote:
> April 16, 2025 at 24:33, "Ihor Solodrai" <ihor.solodrai@linux.dev> wrote:
>>
>> "sockmap_ktls disconnect_after_delete" test has been failing on BPF CI
>> after recent merges from netdev:
>> * https://github.com/kernel-patches/bpf/actions/runs/14458537639
>> * https://github.com/kernel-patches/bpf/actions/runs/14457178732
>> It happens because disconnect has been disabled for TLS [1], and it
>> renders the test case invalid. Remove it from the suite.
>> [1] https://lore.kernel.org/netdev/20250404180334.3224206-1-kuba@kernel.org/
>> Signed-off-by: Ihor Solodrai <ihor.solodrai@linux.dev>
>
> Reviewed-by: Jiayuan Chen <jiayuan.chen@linux.dev>
>
> The original selftest patch used disconnect to re-produce the endless
> loop caused by tcp_bpf_unhash, which has already been removed.
>
> I hope this doesn't conflict with bpf-next...

I just tried applying to bpf-next, and it does indeed have a
conflict... Although kdiff3 merged it automatically.

What's the right way to resolve this? Send for bpf-next?


From 21ecc409c7e78e52cbb27296b039c13860ace7fa Mon Sep 17 00:00:00 2001
From: Ihor Solodrai <ihor.solodrai@linux.dev>
Date: Tue, 15 Apr 2025 09:22:50 -0700
Subject: [PATCH] selftests/bpf: remove sockmap_ktls disconnect_after_delete
 test

"sockmap_ktls disconnect_after_delete" test has been failing on BPF CI
after recent merges from netdev:
* https://github.com/kernel-patches/bpf/actions/runs/14458537639
* https://github.com/kernel-patches/bpf/actions/runs/14457178732

It happens because disconnect has been disabled for TLS [1], and it
renders the test case invalid. Remove it from the suite.

[1] https://lore.kernel.org/netdev/20250404180334.3224206-1-kuba@kernel.org/

Signed-off-by: Ihor Solodrai <ihor.solodrai@linux.dev>
---
 .../selftests/bpf/prog_tests/sockmap_ktls.c   | 68 -------------------
 1 file changed, 68 deletions(-)

diff --git a/tools/testing/selftests/bpf/prog_tests/sockmap_ktls.c b/tools/testing/selftests/bpf/prog_tests/sockmap_ktls.c
index 49b85c1c7552..3044f54b16d6 100644
--- a/tools/testing/selftests/bpf/prog_tests/sockmap_ktls.c
+++ b/tools/testing/selftests/bpf/prog_tests/sockmap_ktls.c
@@ -61,72 +61,6 @@ static int create_ktls_pairs(int family, int sotype, int *c, int *p)
 	return 0;
 }
 
-static int tcp_server(int family)
-{
-	int err, s;
-
-	s = socket(family, SOCK_STREAM, 0);
-	if (!ASSERT_GE(s, 0, "socket"))
-		return -1;
-
-	err = listen(s, SOMAXCONN);
-	if (!ASSERT_OK(err, "listen"))
-		return -1;
-
-	return s;
-}
-
-static int disconnect(int fd)
-{
-	struct sockaddr unspec = { AF_UNSPEC };
-
-	return connect(fd, &unspec, sizeof(unspec));
-}
-
-/* Disconnect (unhash) a kTLS socket after removing it from sockmap. */
-static void test_sockmap_ktls_disconnect_after_delete(int family, int map)
-{
-	struct sockaddr_storage addr = {0};
-	socklen_t len = sizeof(addr);
-	int err, cli, srv, zero = 0;
-
-	srv = tcp_server(family);
-	if (srv == -1)
-		return;
-
-	err = getsockname(srv, (struct sockaddr *)&addr, &len);
-	if (!ASSERT_OK(err, "getsockopt"))
-		goto close_srv;
-
-	cli = socket(family, SOCK_STREAM, 0);
-	if (!ASSERT_GE(cli, 0, "socket"))
-		goto close_srv;
-
-	err = connect(cli, (struct sockaddr *)&addr, len);
-	if (!ASSERT_OK(err, "connect"))
-		goto close_cli;
-
-	err = bpf_map_update_elem(map, &zero, &cli, 0);
-	if (!ASSERT_OK(err, "bpf_map_update_elem"))
-		goto close_cli;
-
-	err = setsockopt(cli, IPPROTO_TCP, TCP_ULP, "tls", strlen("tls"));
-	if (!ASSERT_OK(err, "setsockopt(TCP_ULP)"))
-		goto close_cli;
-
-	err = bpf_map_delete_elem(map, &zero);
-	if (!ASSERT_OK(err, "bpf_map_delete_elem"))
-		goto close_cli;
-
-	err = disconnect(cli);
-	ASSERT_OK(err, "disconnect");
-
-close_cli:
-	close(cli);
-close_srv:
-	close(srv);
-}
-
 static void test_sockmap_ktls_update_fails_when_sock_has_ulp(int family, int map)
 {
 	struct sockaddr_storage addr = {};
@@ -314,8 +248,6 @@ static void run_tests(int family, enum bpf_map_type map_type)
 	if (!ASSERT_GE(map, 0, "bpf_map_create"))
 		return;
 
-	if (test__start_subtest(fmt_test_name("disconnect_after_delete", family, map_type)))
-		test_sockmap_ktls_disconnect_after_delete(family, map);
 	if (test__start_subtest(fmt_test_name("update_fails_when_sock_has_ulp", family, map_type)))
 		test_sockmap_ktls_update_fails_when_sock_has_ulp(family, map);
 
-- 
2.49.0


>
> Thanks.

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

* Re: [PATCH bpf] selftests/bpf: remove sockmap_ktls disconnect_after_delete test
  2025-04-15 17:00   ` Ihor Solodrai
@ 2025-04-15 17:05     ` Alexei Starovoitov
  2025-04-15 17:37       ` Ihor Solodrai
  0 siblings, 1 reply; 7+ messages in thread
From: Alexei Starovoitov @ 2025-04-15 17:05 UTC (permalink / raw)
  To: Ihor Solodrai
  Cc: Jiayuan Chen, Alexei Starovoitov, Andrii Nakryiko,
	Daniel Borkmann, Eduard, bpf, Network Development, Jakub Kicinski,
	Paolo Abeni, Mykola Lysenko, Kernel Team

On Tue, Apr 15, 2025 at 10:01 AM Ihor Solodrai <ihor.solodrai@linux.dev> wrote:
>
> On 4/15/25 9:53 AM, Jiayuan Chen wrote:
> > April 16, 2025 at 24:33, "Ihor Solodrai" <ihor.solodrai@linux.dev> wrote:
> >>
> >> "sockmap_ktls disconnect_after_delete" test has been failing on BPF CI
> >> after recent merges from netdev:
> >> * https://github.com/kernel-patches/bpf/actions/runs/14458537639
> >> * https://github.com/kernel-patches/bpf/actions/runs/14457178732
> >> It happens because disconnect has been disabled for TLS [1], and it
> >> renders the test case invalid. Remove it from the suite.
> >> [1] https://lore.kernel.org/netdev/20250404180334.3224206-1-kuba@kernel.org/
> >> Signed-off-by: Ihor Solodrai <ihor.solodrai@linux.dev>
> >
> > Reviewed-by: Jiayuan Chen <jiayuan.chen@linux.dev>
> >
> > The original selftest patch used disconnect to re-produce the endless
> > loop caused by tcp_bpf_unhash, which has already been removed.
> >
> > I hope this doesn't conflict with bpf-next...
>
> I just tried applying to bpf-next, and it does indeed have a
> conflict... Although kdiff3 merged it automatically.
>
> What's the right way to resolve this? Send for bpf-next?

What commit in bpf-next does it conflict with ?

In general, avoiding merge conflicts is preferred.

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

* Re: [PATCH bpf] selftests/bpf: remove sockmap_ktls disconnect_after_delete test
  2025-04-15 17:05     ` Alexei Starovoitov
@ 2025-04-15 17:37       ` Ihor Solodrai
  2025-04-16  1:10         ` Jiayuan Chen
  0 siblings, 1 reply; 7+ messages in thread
From: Ihor Solodrai @ 2025-04-15 17:37 UTC (permalink / raw)
  To: Alexei Starovoitov
  Cc: Jiayuan Chen, Alexei Starovoitov, Andrii Nakryiko,
	Daniel Borkmann, Eduard, bpf, Network Development, Jakub Kicinski,
	Paolo Abeni, Mykola Lysenko, Kernel Team

On 4/15/25 10:05 AM, Alexei Starovoitov wrote:
> On Tue, Apr 15, 2025 at 10:01 AM Ihor Solodrai <ihor.solodrai@linux.dev> wrote:
>>
>> On 4/15/25 9:53 AM, Jiayuan Chen wrote:
>>> April 16, 2025 at 24:33, "Ihor Solodrai" <ihor.solodrai@linux.dev> wrote:
>>>>
>>>> "sockmap_ktls disconnect_after_delete" test has been failing on BPF CI
>>>> after recent merges from netdev:
>>>> * https://github.com/kernel-patches/bpf/actions/runs/14458537639
>>>> * https://github.com/kernel-patches/bpf/actions/runs/14457178732
>>>> It happens because disconnect has been disabled for TLS [1], and it
>>>> renders the test case invalid. Remove it from the suite.
>>>> [1] https://lore.kernel.org/netdev/20250404180334.3224206-1-kuba@kernel.org/
>>>> Signed-off-by: Ihor Solodrai <ihor.solodrai@linux.dev>
>>>
>>> Reviewed-by: Jiayuan Chen <jiayuan.chen@linux.dev>
>>>
>>> The original selftest patch used disconnect to re-produce the endless
>>> loop caused by tcp_bpf_unhash, which has already been removed.
>>>
>>> I hope this doesn't conflict with bpf-next...
>>
>> I just tried applying to bpf-next, and it does indeed have a
>> conflict... Although kdiff3 merged it automatically.
>>
>> What's the right way to resolve this? Send for bpf-next?
>
> What commit in bpf-next does it conflict with ?
>
> In general, avoiding merge conflicts is preferred.

https://web.git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git/commit/?id=05ebde1bcb50a71cd56d8edd3008f53a781146e9
https://lore.kernel.org/bpf/20250219052015.274405-1-jiayuan.chen@linux.dev/

It adds tests in the same file. The code to delete simply moved.

I think we can avoid conflict by applying 05ebde1bcb50 to bpf first,
if that's an option (it might depend on other changes, idk).
Then the version of the patch for bpf-next would apply to both trees.

If not, then apply only to bpf-next, and disable the test on CI?

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

* Re: [PATCH bpf] selftests/bpf: remove sockmap_ktls disconnect_after_delete test
  2025-04-15 17:37       ` Ihor Solodrai
@ 2025-04-16  1:10         ` Jiayuan Chen
  2025-04-16  1:43           ` Alexei Starovoitov
  0 siblings, 1 reply; 7+ messages in thread
From: Jiayuan Chen @ 2025-04-16  1:10 UTC (permalink / raw)
  To: Ihor Solodrai, Alexei Starovoitov
  Cc: Alexei Starovoitov, Andrii Nakryiko, Daniel  Borkmann, Eduard,
	bpf, Network Development, Jakub Kicinski, Paolo Abeni,
	Mykola Lysenko, Kernel Team

April 16, 2025 at 01:37, "Ihor Solodrai" <ihor.solodrai@linux.dev> wrote:



> 
> On 4/15/25 10:05 AM, Alexei Starovoitov wrote:
> 
> > 
> > On Tue, Apr 15, 2025 at 10:01 AM Ihor Solodrai <ihor.solodrai@linux.dev> wrote:
> > 
> > > 
> > > On 4/15/25 9:53 AM, Jiayuan Chen wrote:
> > > 
> > 
> >  April 16, 2025 at 24:33, "Ihor Solodrai" <ihor.solodrai@linux.dev> wrote:
> > 
> >  "sockmap_ktls disconnect_after_delete" test has been failing on BPF CI
> > 
> >  after recent merges from netdev:
> > 
> >  * https://github.com/kernel-patches/bpf/actions/runs/14458537639
> > 
> >  * https://github.com/kernel-patches/bpf/actions/runs/14457178732
> > 
> >  It happens because disconnect has been disabled for TLS [1], and it
> > 
> >  renders the test case invalid. Remove it from the suite.
> > 
> >  [1] https://lore.kernel.org/netdev/20250404180334.3224206-1-kuba@kernel.org/
> > 
> >  Signed-off-by: Ihor Solodrai <ihor.solodrai@linux.dev>
> > 
> >  Reviewed-by: Jiayuan Chen <jiayuan.chen@linux.dev>
> > 
> >  The original selftest patch used disconnect to re-produce the endless
> >  loop caused by tcp_bpf_unhash, which has already been removed.
> >  I hope this doesn't conflict with bpf-next...
> > 
> > > 
> > > I just tried applying to bpf-next, and it does indeed have a
> > >  conflict... Although kdiff3 merged it automatically.
> > >  What's the right way to resolve this? Send for bpf-next?
> > > 
> >  What commit in bpf-next does it conflict with ?
> >  In general, avoiding merge conflicts is preferred.
> > 
> https://web.git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git/commit/?id=05ebde1bcb50a71cd56d8edd3008f53a781146e9
> https://lore.kernel.org/bpf/20250219052015.274405-1-jiayuan.chen@linux.dev/
> It adds tests in the same file. The code to delete simply moved.
> I think we can avoid conflict by applying 05ebde1bcb50 to bpf first,
> if that's an option (it might depend on other changes, idk).
> Then the version of the patch for bpf-next would apply to both trees.
> If not, then apply only to bpf-next, and disable the test on CI?
>


I'm not sure whether we can cherry-pick the commit to bpf branch.

I believe it would be more convenient for the maintainer to merge the
patch that only removes 'ASSERT_OK(err, "disconnect");', as this change
will not introduce conflicts with the bpf-next branch.
Once the bpf branch is merged into bpf-next, you can then remove the
entire function in the bpf-next branch.

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

* Re: [PATCH bpf] selftests/bpf: remove sockmap_ktls disconnect_after_delete test
  2025-04-16  1:10         ` Jiayuan Chen
@ 2025-04-16  1:43           ` Alexei Starovoitov
  0 siblings, 0 replies; 7+ messages in thread
From: Alexei Starovoitov @ 2025-04-16  1:43 UTC (permalink / raw)
  To: Jiayuan Chen
  Cc: Ihor Solodrai, Alexei Starovoitov, Andrii Nakryiko,
	Daniel Borkmann, Eduard, bpf, Network Development, Jakub Kicinski,
	Paolo Abeni, Mykola Lysenko, Kernel Team

On Tue, Apr 15, 2025 at 6:10 PM Jiayuan Chen <jiayuan.chen@linux.dev> wrote:
>
> April 16, 2025 at 01:37, "Ihor Solodrai" <ihor.solodrai@linux.dev> wrote:
>
>
>
> >
> > On 4/15/25 10:05 AM, Alexei Starovoitov wrote:
> >
> > >
> > > On Tue, Apr 15, 2025 at 10:01 AM Ihor Solodrai <ihor.solodrai@linux.dev> wrote:
> > >
> > > >
> > > > On 4/15/25 9:53 AM, Jiayuan Chen wrote:
> > > >
> > >
> > >  April 16, 2025 at 24:33, "Ihor Solodrai" <ihor.solodrai@linux.dev> wrote:
> > >
> > >  "sockmap_ktls disconnect_after_delete" test has been failing on BPF CI
> > >
> > >  after recent merges from netdev:
> > >
> > >  * https://github.com/kernel-patches/bpf/actions/runs/14458537639
> > >
> > >  * https://github.com/kernel-patches/bpf/actions/runs/14457178732
> > >
> > >  It happens because disconnect has been disabled for TLS [1], and it
> > >
> > >  renders the test case invalid. Remove it from the suite.
> > >
> > >  [1] https://lore.kernel.org/netdev/20250404180334.3224206-1-kuba@kernel.org/
> > >
> > >  Signed-off-by: Ihor Solodrai <ihor.solodrai@linux.dev>
> > >
> > >  Reviewed-by: Jiayuan Chen <jiayuan.chen@linux.dev>
> > >
> > >  The original selftest patch used disconnect to re-produce the endless
> > >  loop caused by tcp_bpf_unhash, which has already been removed.
> > >  I hope this doesn't conflict with bpf-next...
> > >
> > > >
> > > > I just tried applying to bpf-next, and it does indeed have a
> > > >  conflict... Although kdiff3 merged it automatically.
> > > >  What's the right way to resolve this? Send for bpf-next?
> > > >
> > >  What commit in bpf-next does it conflict with ?
> > >  In general, avoiding merge conflicts is preferred.
> > >
> > https://web.git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git/commit/?id=05ebde1bcb50a71cd56d8edd3008f53a781146e9
> > https://lore.kernel.org/bpf/20250219052015.274405-1-jiayuan.chen@linux.dev/
> > It adds tests in the same file. The code to delete simply moved.
> > I think we can avoid conflict by applying 05ebde1bcb50 to bpf first,
> > if that's an option (it might depend on other changes, idk).
> > Then the version of the patch for bpf-next would apply to both trees.
> > If not, then apply only to bpf-next, and disable the test on CI?
> >
>
>
> I'm not sure whether we can cherry-pick the commit to bpf branch.
>
> I believe it would be more convenient for the maintainer to merge the
> patch that only removes 'ASSERT_OK(err, "disconnect");', as this change
> will not introduce conflicts with the bpf-next branch.
> Once the bpf branch is merged into bpf-next, you can then remove the
> entire function in the bpf-next branch.

Let's do that. Pls prepare such single-liner against bpf tree.

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

end of thread, other threads:[~2025-04-16  1:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-15 16:33 [PATCH bpf] selftests/bpf: remove sockmap_ktls disconnect_after_delete test Ihor Solodrai
2025-04-15 16:53 ` Jiayuan Chen
2025-04-15 17:00   ` Ihor Solodrai
2025-04-15 17:05     ` Alexei Starovoitov
2025-04-15 17:37       ` Ihor Solodrai
2025-04-16  1:10         ` Jiayuan Chen
2025-04-16  1:43           ` Alexei Starovoitov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).