MPTCP Linux Development
 help / color / mirror / Atom feed
* [PATCH mptcp-next] selftests: mptcp: update pm_nl_ctl usage header
@ 2022-06-10  5:45 Geliang Tang
  2022-06-10  7:11 ` selftests: mptcp: update pm_nl_ctl usage header: Tests Results MPTCP CI
  2022-06-11  0:09 ` [PATCH mptcp-next] selftests: mptcp: update pm_nl_ctl usage header Mat Martineau
  0 siblings, 2 replies; 5+ messages in thread
From: Geliang Tang @ 2022-06-10  5:45 UTC (permalink / raw)
  To: mptcp; +Cc: Geliang Tang

The usage header of pm_nl_ctl command doesn't match with the context. So
this patch adds the missing userspace PM keywords 'ann', 'rem', 'csf',
'dsf', 'events' and 'listen' in it.

Signed-off-by: Geliang Tang <geliang.tang@suse.com>
---
 tools/testing/selftests/net/mptcp/pm_nl_ctl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/net/mptcp/pm_nl_ctl.c b/tools/testing/selftests/net/mptcp/pm_nl_ctl.c
index 6a2f4b981e1d..4dd87bb9ee91 100644
--- a/tools/testing/selftests/net/mptcp/pm_nl_ctl.c
+++ b/tools/testing/selftests/net/mptcp/pm_nl_ctl.c
@@ -31,7 +31,7 @@
 
 static void syntax(char *argv[])
 {
-	fprintf(stderr, "%s add|get|set|del|flush|dump|accept [<args>]\n", argv[0]);
+	fprintf(stderr, "%s add|ann|rem|csf|dsf|get|set|del|flush|dump|events|listen|accept [<args>]\n", argv[0]);
 	fprintf(stderr, "\tadd [flags signal|subflow|backup|fullmesh] [id <nr>] [dev <name>] <ip>\n");
 	fprintf(stderr, "\tann <local-ip> id <local-id> token <token> [port <local-port>] [dev <name>]\n");
 	fprintf(stderr, "\trem id <local-id> token <token>\n");
-- 
2.35.3


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

* Re: selftests: mptcp: update pm_nl_ctl usage header: Tests Results
  2022-06-10  5:45 [PATCH mptcp-next] selftests: mptcp: update pm_nl_ctl usage header Geliang Tang
@ 2022-06-10  7:11 ` MPTCP CI
  2022-06-11  0:09 ` [PATCH mptcp-next] selftests: mptcp: update pm_nl_ctl usage header Mat Martineau
  1 sibling, 0 replies; 5+ messages in thread
From: MPTCP CI @ 2022-06-10  7:11 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/6017698135015424
  - Summary: https://api.cirrus-ci.com/v1/artifact/task/6017698135015424/summary/summary.txt

- KVM Validation: debug:
  - Unstable: 2 failed test(s): selftest_diag selftest_simult_flows 🔴:
  - Task: https://cirrus-ci.com/task/6246459333935104
  - Summary: https://api.cirrus-ci.com/v1/artifact/task/6246459333935104/summary/summary.txt

Initiator: Patchew Applier
Commits: https://github.com/multipath-tcp/mptcp_net-next/commits/c86f7081c919


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

* Re: [PATCH mptcp-next] selftests: mptcp: update pm_nl_ctl usage header
  2022-06-10  5:45 [PATCH mptcp-next] selftests: mptcp: update pm_nl_ctl usage header Geliang Tang
  2022-06-10  7:11 ` selftests: mptcp: update pm_nl_ctl usage header: Tests Results MPTCP CI
@ 2022-06-11  0:09 ` Mat Martineau
  1 sibling, 0 replies; 5+ messages in thread
From: Mat Martineau @ 2022-06-11  0:09 UTC (permalink / raw)
  To: Geliang Tang; +Cc: mptcp

On Fri, 10 Jun 2022, Geliang Tang wrote:

> The usage header of pm_nl_ctl command doesn't match with the context. So
> this patch adds the missing userspace PM keywords 'ann', 'rem', 'csf',
> 'dsf', 'events' and 'listen' in it.
>
> Signed-off-by: Geliang Tang <geliang.tang@suse.com>

Appreciate the fix to the help text.

Reviewed-by: Mat Martineau <mathew.j.martineau@linux.intel.com>


> ---
> tools/testing/selftests/net/mptcp/pm_nl_ctl.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/testing/selftests/net/mptcp/pm_nl_ctl.c b/tools/testing/selftests/net/mptcp/pm_nl_ctl.c
> index 6a2f4b981e1d..4dd87bb9ee91 100644
> --- a/tools/testing/selftests/net/mptcp/pm_nl_ctl.c
> +++ b/tools/testing/selftests/net/mptcp/pm_nl_ctl.c
> @@ -31,7 +31,7 @@
>
> static void syntax(char *argv[])
> {
> -	fprintf(stderr, "%s add|get|set|del|flush|dump|accept [<args>]\n", argv[0]);
> +	fprintf(stderr, "%s add|ann|rem|csf|dsf|get|set|del|flush|dump|events|listen|accept [<args>]\n", argv[0]);
> 	fprintf(stderr, "\tadd [flags signal|subflow|backup|fullmesh] [id <nr>] [dev <name>] <ip>\n");
> 	fprintf(stderr, "\tann <local-ip> id <local-id> token <token> [port <local-port>] [dev <name>]\n");
> 	fprintf(stderr, "\trem id <local-id> token <token>\n");
> -- 
> 2.35.3
>
>
>

--
Mat Martineau
Intel

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

* Re: selftests: mptcp: update pm_nl_ctl usage header: Tests Results
  2022-06-11 14:54 [PATCH mptcp-next v2 5/5] " Geliang Tang
@ 2022-06-11 16:55 ` MPTCP CI
  0 siblings, 0 replies; 5+ messages in thread
From: MPTCP CI @ 2022-06-11 16:55 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:
  - Critical: 7 Call Trace(s) ❌:
  - Task: https://cirrus-ci.com/task/5443636765655040
  - Summary: https://api.cirrus-ci.com/v1/artifact/task/5443636765655040/summary/summary.txt

- {"code":404,"message":
  - "Can't find artifacts containing file conclusion.txt"}:
  - Task: https://cirrus-ci.com/task/6569536672497664
  - Summary: https://api.cirrus-ci.com/v1/artifact/task/6569536672497664/summary/summary.txt

Initiator: Patchew Applier
Commits: https://github.com/multipath-tcp/mptcp_net-next/commits/663169e99df0


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

* Re: selftests: mptcp: update pm_nl_ctl usage header: Tests Results
  2022-06-16  5:02 [PATCH mptcp-next v3 5/5] selftests: mptcp: update pm_nl_ctl usage header Geliang Tang
@ 2022-06-16  6:32 ` MPTCP CI
  0 siblings, 0 replies; 5+ messages in thread
From: MPTCP CI @ 2022-06-16  6:32 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/6339386420756480
  - Summary: https://api.cirrus-ci.com/v1/artifact/task/6339386420756480/summary/summary.txt

- KVM Validation: debug:
  - Unstable: 2 failed test(s): packetdrill_sockopts selftest_diag 🔴:
  - Task: https://cirrus-ci.com/task/4932011537203200
  - Summary: https://api.cirrus-ci.com/v1/artifact/task/4932011537203200/summary/summary.txt

Initiator: Patchew Applier
Commits: https://github.com/multipath-tcp/mptcp_net-next/commits/d4a1e2c951f3


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

end of thread, other threads:[~2022-06-16  6:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-10  5:45 [PATCH mptcp-next] selftests: mptcp: update pm_nl_ctl usage header Geliang Tang
2022-06-10  7:11 ` selftests: mptcp: update pm_nl_ctl usage header: Tests Results MPTCP CI
2022-06-11  0:09 ` [PATCH mptcp-next] selftests: mptcp: update pm_nl_ctl usage header Mat Martineau
  -- strict thread matches above, loose matches on Subject: below --
2022-06-11 14:54 [PATCH mptcp-next v2 5/5] " Geliang Tang
2022-06-11 16:55 ` selftests: mptcp: update pm_nl_ctl usage header: Tests Results MPTCP CI
2022-06-16  5:02 [PATCH mptcp-next v3 5/5] selftests: mptcp: update pm_nl_ctl usage header Geliang Tang
2022-06-16  6:32 ` selftests: mptcp: update pm_nl_ctl usage header: 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