* [PATCH mptcp-next] Squash-to: "selftests: mptcp: mptfo Initiator/Listener"
@ 2022-11-11 10:17 Paolo Abeni
2022-11-11 11:55 ` Squash-to: "selftests: mptcp: mptfo Initiator/Listener": Tests Results MPTCP CI
0 siblings, 1 reply; 3+ messages in thread
From: Paolo Abeni @ 2022-11-11 10:17 UTC (permalink / raw)
To: mptcp; +Cc: Dmytro Shytyi
We need to cope with multiple iteration of the remote peer address
selection loop
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
---
tools/testing/selftests/net/mptcp/mptcp_connect.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/tools/testing/selftests/net/mptcp/mptcp_connect.c b/tools/testing/selftests/net/mptcp/mptcp_connect.c
index 134e569cd75a..8635619ab1fd 100644
--- a/tools/testing/selftests/net/mptcp/mptcp_connect.c
+++ b/tools/testing/selftests/net/mptcp/mptcp_connect.c
@@ -375,13 +375,12 @@ static int sock_connect_mptcp(const char * const remoteaddr,
set_mark(sock, cfg_mark);
if (cfg_sockopt_types.mptfo) {
- winfo->len = read(infd, winfo->buf, sizeof(winfo->buf));
+ if (!winfo->len)
+ winfo->len = read(infd, winfo->buf, sizeof(winfo->buf));
syn_copied = sendto(sock, winfo->buf, winfo->len, MSG_FASTOPEN,
a->ai_addr, a->ai_addrlen);
- if (syn_copied < 0)
- perror("sendto");
- if (syn_copied) {
+ if (syn_copied >= 0) {
winfo->off = syn_copied;
winfo->len -= syn_copied;
*peer = a;
--
2.38.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: Squash-to: "selftests: mptcp: mptfo Initiator/Listener": Tests Results
2022-11-11 10:17 [PATCH mptcp-next] Squash-to: "selftests: mptcp: mptfo Initiator/Listener" Paolo Abeni
@ 2022-11-11 11:55 ` MPTCP CI
0 siblings, 0 replies; 3+ messages in thread
From: MPTCP CI @ 2022-11-11 11:55 UTC (permalink / raw)
To: Paolo Abeni; +Cc: mptcp
Hi Paolo,
Thank you for your modifications, that's great!
Our CI did some validations and here is its report:
- KVM Validation: normal:
- Unstable: 1 failed test(s): mptcp_connect_mmap 🔴:
- Task: https://cirrus-ci.com/task/5533446215303168
- Summary: https://api.cirrus-ci.com/v1/artifact/task/5533446215303168/summary/summary.txt
- KVM Validation: debug:
- Unstable: 1 failed test(s): mptcp_connect_mmap 🔴:
- Task: https://cirrus-ci.com/task/6659346122145792
- Summary: https://api.cirrus-ci.com/v1/artifact/task/6659346122145792/summary/summary.txt
Initiator: Patchew Applier
Commits: https://github.com/multipath-tcp/mptcp_net-next/commits/d2547fcc926f
If there are some issues, you can reproduce them using the same environment as
the one used by the CI thanks to a docker image, e.g.:
$ cd [kernel source code]
$ docker run -v "${PWD}:${PWD}:rw" -w "${PWD}" --privileged --rm -it \
--pull always mptcp/mptcp-upstream-virtme-docker:latest \
auto-debug
For more details:
https://github.com/multipath-tcp/mptcp-upstream-virtme-docker
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] 3+ messages in thread
* Re: Squash-to: "selftests: mptcp: mptfo Initiator/Listener": Tests Results
2022-11-14 16:46 [PATCH mptcp-next 5/5] Squash-to: "selftests: mptcp: mptfo Initiator/Listener" Matthieu Baerts
@ 2022-11-14 18:23 ` MPTCP CI
0 siblings, 0 replies; 3+ messages in thread
From: MPTCP CI @ 2022-11-14 18:23 UTC (permalink / raw)
To: Matthieu Baerts; +Cc: mptcp
Hi Matthieu,
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/5358371401367552
- Summary: https://api.cirrus-ci.com/v1/artifact/task/5358371401367552/summary/summary.txt
- KVM Validation: debug:
- Unstable: 1 failed test(s): selftest_mptcp_connect 🔴:
- Task: https://cirrus-ci.com/task/6505649375281152
- Summary: https://api.cirrus-ci.com/v1/artifact/task/6505649375281152/summary/summary.txt
Initiator: Patchew Applier
Commits: https://github.com/multipath-tcp/mptcp_net-next/commits/55019258a7ff
If there are some issues, you can reproduce them using the same environment as
the one used by the CI thanks to a docker image, e.g.:
$ cd [kernel source code]
$ docker run -v "${PWD}:${PWD}:rw" -w "${PWD}" --privileged --rm -it \
--pull always mptcp/mptcp-upstream-virtme-docker:latest \
auto-debug
For more details:
https://github.com/multipath-tcp/mptcp-upstream-virtme-docker
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] 3+ messages in thread
end of thread, other threads:[~2022-11-14 18:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-11 10:17 [PATCH mptcp-next] Squash-to: "selftests: mptcp: mptfo Initiator/Listener" Paolo Abeni
2022-11-11 11:55 ` Squash-to: "selftests: mptcp: mptfo Initiator/Listener": Tests Results MPTCP CI
-- strict thread matches above, loose matches on Subject: below --
2022-11-14 16:46 [PATCH mptcp-next 5/5] Squash-to: "selftests: mptcp: mptfo Initiator/Listener" Matthieu Baerts
2022-11-14 18:23 ` Squash-to: "selftests: mptcp: mptfo Initiator/Listener": 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