* [PATCH mptcp-next] Squash to "selftests: bpf: add MPTCP test base"
@ 2022-03-31 8:14 Geliang Tang
2022-03-31 9:45 ` Squash to "selftests: bpf: add MPTCP test base": Tests Results MPTCP CI
2022-03-31 13:26 ` [PATCH mptcp-next] Squash to "selftests: bpf: add MPTCP test base" Matthieu Baerts
0 siblings, 2 replies; 4+ messages in thread
From: Geliang Tang @ 2022-03-31 8:14 UTC (permalink / raw)
To: mptcp; +Cc: Geliang Tang
Update newly added files in MAINTAINERS.
Signed-off-by: Geliang Tang <geliang.tang@suse.com>
---
MAINTAINERS | 2 ++
1 file changed, 2 insertions(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index d91f6c6e3d3b..778cbf7c5a3b 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -13745,6 +13745,8 @@ F: include/net/mptcp.h
F: include/trace/events/mptcp.h
F: include/uapi/linux/mptcp.h
F: net/mptcp/
+F: tools/testing/selftests/bpf/progs/mptcp_sock.c
+F: tools/testing/selftests/bpf/prog_tests/mptcp.c
F: tools/testing/selftests/net/mptcp/
NETWORKING [TCP]
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: Squash to "selftests: bpf: add MPTCP test base": Tests Results
2022-03-31 8:14 [PATCH mptcp-next] Squash to "selftests: bpf: add MPTCP test base" Geliang Tang
@ 2022-03-31 9:45 ` MPTCP CI
2022-03-31 13:26 ` [PATCH mptcp-next] Squash to "selftests: bpf: add MPTCP test base" Matthieu Baerts
1 sibling, 0 replies; 4+ messages in thread
From: MPTCP CI @ 2022-03-31 9:45 UTC (permalink / raw)
To: Geliang Tang; +Cc: mptcp
Hi Geliang,
Thank you for your modifications, that's great!
Our CI did some validations and here is its report:
- KVM Validation: normal:
- Success! ✅:
- Task: https://cirrus-ci.com/task/5976582060769280
- Summary: https://api.cirrus-ci.com/v1/artifact/task/5976582060769280/summary/summary.txt
- KVM Validation: debug:
- Unstable: 1 failed test(s): selftest_mptcp_join 🔴:
- Task: https://cirrus-ci.com/task/5413632107347968
- Summary: https://api.cirrus-ci.com/v1/artifact/task/5413632107347968/summary/summary.txt
Initiator: Patchew Applier
Commits: https://github.com/multipath-tcp/mptcp_net-next/commits/4a7e6dd72b59
Please note that despite all the efforts that have been already done to have a
stable tests suite when executed on a public CI like here, it is possible some
reported issues are not due to your modifications. Still, do not hesitate to
help us improve that ;-)
Cheers,
MPTCP GH Action bot
Bot operated by Matthieu Baerts (Tessares)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH mptcp-next] Squash to "selftests: bpf: add MPTCP test base"
2022-03-31 8:14 [PATCH mptcp-next] Squash to "selftests: bpf: add MPTCP test base" Geliang Tang
2022-03-31 9:45 ` Squash to "selftests: bpf: add MPTCP test base": Tests Results MPTCP CI
@ 2022-03-31 13:26 ` Matthieu Baerts
1 sibling, 0 replies; 4+ messages in thread
From: Matthieu Baerts @ 2022-03-31 13:26 UTC (permalink / raw)
To: Geliang Tang, mptcp
Hi Geliang,
On 31/03/2022 10:14, Geliang Tang wrote:
> Update newly added files in MAINTAINERS.
>
> Signed-off-by: Geliang Tang <geliang.tang@suse.com>
> ---
> MAINTAINERS | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index d91f6c6e3d3b..778cbf7c5a3b 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -13745,6 +13745,8 @@ F: include/net/mptcp.h
> F: include/trace/events/mptcp.h
> F: include/uapi/linux/mptcp.h
> F: net/mptcp/
> +F: tools/testing/selftests/bpf/progs/mptcp_sock.c
> +F: tools/testing/selftests/bpf/prog_tests/mptcp.c
Thank you for the patch. I applied it a bit differently:
tools/testing/selftests/bpf/*/*mptcp*.c
See commit 4a7ea84d46b3 ("MAINTAINERS: add MPTCP-specific BPF files"),
being published soon.
Cheers,
Matt
--
Tessares | Belgium | Hybrid Access Solutions
www.tessares.net
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH mptcp-next] Squash to "selftests: bpf: add MPTCP test base"
@ 2022-04-27 1:28 Geliang Tang
2022-04-27 2:58 ` Squash to "selftests: bpf: add MPTCP test base": Tests Results MPTCP CI
0 siblings, 1 reply; 4+ messages in thread
From: Geliang Tang @ 2022-04-27 1:28 UTC (permalink / raw)
To: mptcp; +Cc: Geliang Tang
Add CONFIG_IKCONFIG and CONFIG_IKCONFIG_PROC as Mat suggested.
Signed-off-by: Geliang Tang <geliang.tang@suse.com>
---
tools/testing/selftests/bpf/config | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tools/testing/selftests/bpf/config b/tools/testing/selftests/bpf/config
index fe0d3ad6ecd8..f3391d0abe58 100644
--- a/tools/testing/selftests/bpf/config
+++ b/tools/testing/selftests/bpf/config
@@ -54,3 +54,5 @@ CONFIG_NF_DEFRAG_IPV6=y
CONFIG_NF_CONNTRACK=y
CONFIG_USERFAULTFD=y
CONFIG_MPTCP=y
+CONFIG_IKCONFIG=y
+CONFIG_IKCONFIG_PROC=y
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-04-27 2:58 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-31 8:14 [PATCH mptcp-next] Squash to "selftests: bpf: add MPTCP test base" Geliang Tang
2022-03-31 9:45 ` Squash to "selftests: bpf: add MPTCP test base": Tests Results MPTCP CI
2022-03-31 13:26 ` [PATCH mptcp-next] Squash to "selftests: bpf: add MPTCP test base" Matthieu Baerts
-- strict thread matches above, loose matches on Subject: below --
2022-04-27 1:28 Geliang Tang
2022-04-27 2:58 ` Squash to "selftests: bpf: add MPTCP test base": Tests Results MPTCP CI
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox