[PATCH mptcp-next] selftests: mptcp: join: no SKIP mark for group checks

Matthieu Baerts (NGI0) posted 1 patch 1 month, 4 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/multipath-tcp/mptcp_net-next tags/patchew/20251211-sft-no-skip-new-cnt-v1-1-6dd6d70f8242@kernel.org
tools/testing/selftests/net/mptcp/mptcp_join.sh | 30 ++++++++++++-------------
1 file changed, 15 insertions(+), 15 deletions(-)
[PATCH mptcp-next] selftests: mptcp: join: no SKIP mark for group checks
Posted by Matthieu Baerts (NGI0) 1 month, 4 weeks ago
When executing the last MPTCP selftests on older kernels, this output is
printed:

  # 001 no JOIN
  #       join Rx                             [SKIP]
  #       join Tx                             [SKIP]
  #       fallback                            [SKIP]

In fact, behind each line, a few counters are checked, and likely not
all of them have been skipped because the they are not available on
these kernels. Instead, "new" and unsupported counters for these groups
are now ignored, and [ OK ] will be printed instead of [SKIP].

Note that on the MPTCP CI, when validating the dev versions, any
unsupported counter will cause the tests to fail. So this is safe not to
print 'SKIP' for these group checks.

Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
---
 tools/testing/selftests/net/mptcp/mptcp_join.sh | 30 ++++++++++++-------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/tools/testing/selftests/net/mptcp/mptcp_join.sh b/tools/testing/selftests/net/mptcp/mptcp_join.sh
index b2e6e548f796..77370b10651a 100755
--- a/tools/testing/selftests/net/mptcp/mptcp_join.sh
+++ b/tools/testing/selftests/net/mptcp/mptcp_join.sh
@@ -1407,7 +1407,7 @@ chk_join_tx_nr()
 
 	count=$(mptcp_lib_get_counter ${ns2} "MPTcpExtMPJoinSynTxCreatSkErr")
 	if [ -z "$count" ]; then
-		rc=${KSFT_SKIP}
+		: # ignore skip
 	elif [ "$count" != "$create" ]; then
 		rc=${KSFT_FAIL}
 		print_check "syn tx create socket error"
@@ -1416,7 +1416,7 @@ chk_join_tx_nr()
 
 	count=$(mptcp_lib_get_counter ${ns2} "MPTcpExtMPJoinSynTxBindErr")
 	if [ -z "$count" ]; then
-		rc=${KSFT_SKIP}
+		: # ignore skip
 	elif [ "$count" != "$bind" ]; then
 		rc=${KSFT_FAIL}
 		print_check "syn tx bind error"
@@ -1425,7 +1425,7 @@ chk_join_tx_nr()
 
 	count=$(mptcp_lib_get_counter ${ns2} "MPTcpExtMPJoinSynTxConnectErr")
 	if [ -z "$count" ]; then
-		rc=${KSFT_SKIP}
+		: # ignore skip
 	elif [ "$count" != "$connect" ]; then
 		rc=${KSFT_FAIL}
 		print_check "syn tx connect error"
@@ -1451,7 +1451,7 @@ chk_fallback_nr()
 
 	count=$(mptcp_lib_get_counter ${!ns} "MPTcpExtInfiniteMapTx")
 	if [ -z "$count" ]; then
-		rc=${KSFT_SKIP}
+		: # ignore skip
 	elif [ "$count" != "$infinite_map_tx" ]; then
 		rc=${KSFT_FAIL}
 		print_check "$ns infinite map tx fallback"
@@ -1460,7 +1460,7 @@ chk_fallback_nr()
 
 	count=$(mptcp_lib_get_counter ${!ns} "MPTcpExtDSSCorruptionFallback")
 	if [ -z "$count" ]; then
-		rc=${KSFT_SKIP}
+		: # ignore skip
 	elif [ "$count" != "$dss_corruption" ]; then
 		rc=${KSFT_FAIL}
 		print_check "$ns dss corruption fallback"
@@ -1469,7 +1469,7 @@ chk_fallback_nr()
 
 	count=$(mptcp_lib_get_counter ${!ns} "MPTcpExtSimultConnectFallback")
 	if [ -z "$count" ]; then
-		rc=${KSFT_SKIP}
+		: # ignore skip
 	elif [ "$count" != "$simult_conn" ]; then
 		rc=${KSFT_FAIL}
 		print_check "$ns simult conn fallback"
@@ -1478,7 +1478,7 @@ chk_fallback_nr()
 
 	count=$(mptcp_lib_get_counter ${!ns} "MPTcpExtMPCapableFallbackACK")
 	if [ -z "$count" ]; then
-		rc=${KSFT_SKIP}
+		: # ignore skip
 	elif [ "$count" != "$mpc_passive" ]; then
 		rc=${KSFT_FAIL}
 		print_check "$ns mpc passive fallback"
@@ -1487,7 +1487,7 @@ chk_fallback_nr()
 
 	count=$(mptcp_lib_get_counter ${!ns} "MPTcpExtMPCapableFallbackSYNACK")
 	if [ -z "$count" ]; then
-		rc=${KSFT_SKIP}
+		: # ignore skip
 	elif [ "$count" != "$mpc_active" ]; then
 		rc=${KSFT_FAIL}
 		print_check "$ns mpc active fallback"
@@ -1496,7 +1496,7 @@ chk_fallback_nr()
 
 	count=$(mptcp_lib_get_counter ${!ns} "MPTcpExtMPCapableDataFallback")
 	if [ -z "$count" ]; then
-		rc=${KSFT_SKIP}
+		: # ignore skip
 	elif [ "$count" != "$mpc_data" ]; then
 		rc=${KSFT_FAIL}
 		print_check "$ns mpc data fallback"
@@ -1505,7 +1505,7 @@ chk_fallback_nr()
 
 	count=$(mptcp_lib_get_counter ${!ns} "MPTcpExtMD5SigFallback")
 	if [ -z "$count" ]; then
-		rc=${KSFT_SKIP}
+		: # ignore skip
 	elif [ "$count" != "$md5_sig" ]; then
 		rc=${KSFT_FAIL}
 		print_check "$ns MD5 Sig fallback"
@@ -1514,7 +1514,7 @@ chk_fallback_nr()
 
 	count=$(mptcp_lib_get_counter ${!ns} "MPTcpExtDssFallback")
 	if [ -z "$count" ]; then
-		rc=${KSFT_SKIP}
+		: # ignore skip
 	elif [ "$count" != "$dss" ]; then
 		rc=${KSFT_FAIL}
 		print_check "$ns dss fallback"
@@ -1590,7 +1590,7 @@ chk_join_nr()
 
 	count=$(mptcp_lib_get_counter ${ns2} "MPTcpExtMPJoinSynAckHMacFailure")
 	if [ -z "$count" ]; then
-		rc=${KSFT_SKIP}
+		: # ignore skip
 	elif [ "$count" != "0" ]; then
 		rc=${KSFT_FAIL}
 		print_check "synack HMAC"
@@ -1599,7 +1599,7 @@ chk_join_nr()
 
 	count=$(mptcp_lib_get_counter ${ns1} "MPTcpExtMPJoinAckRx")
 	if [ -z "$count" ]; then
-		rc=${KSFT_SKIP}
+		: # ignore skip
 	elif [ "$count" != "$ack_nr" ]; then
 		rc=${KSFT_FAIL}
 		print_check "ack rx"
@@ -1608,7 +1608,7 @@ chk_join_nr()
 
 	count=$(mptcp_lib_get_counter ${ns1} "MPTcpExtMPJoinAckHMacFailure")
 	if [ -z "$count" ]; then
-		rc=${KSFT_SKIP}
+		: # ignore skip
 	elif [ "$count" != "0" ]; then
 		rc=${KSFT_FAIL}
 		print_check "ack HMAC"
@@ -1617,7 +1617,7 @@ chk_join_nr()
 
 	count=$(mptcp_lib_get_counter ${ns1} "MPTcpExtMPJoinRejected")
 	if [ -z "$count" ]; then
-		rc=${KSFT_SKIP}
+		: # ignore skip
 	elif [ "$count" != "$syn_rej" ]; then
 		rc=${KSFT_FAIL}
 		print_check "syn rejected"

---
base-commit: ff3fd5f60460ba1ba338bfff405f13001e7131b8
change-id: 20251211-sft-no-skip-new-cnt-40ad3fc1dcc8

Best regards,
-- 
Matthieu Baerts (NGI0) <matttbe@kernel.org>
Re: [PATCH mptcp-next] selftests: mptcp: join: no SKIP mark for group checks
Posted by Geliang Tang 1 month, 1 week ago
Hi Matt,

Thanks for this patch.

On Thu, 2025-12-11 at 19:09 +0100, Matthieu Baerts (NGI0) wrote:
> When executing the last MPTCP selftests on older kernels, this output
> is
> printed:
> 
>   # 001 no JOIN
>   #       join Rx                             [SKIP]
>   #       join Tx                             [SKIP]
>   #       fallback                            [SKIP]
> 
> In fact, behind each line, a few counters are checked, and likely not
> all of them have been skipped because the they are not available on
> these kernels. Instead, "new" and unsupported counters for these
> groups
> are now ignored, and [ OK ] will be printed instead of [SKIP].
> 
> Note that on the MPTCP CI, when validating the dev versions, any
> unsupported counter will cause the tests to fail. So this is safe not
> to
> print 'SKIP' for these group checks.
> 
> Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
> ---
>  tools/testing/selftests/net/mptcp/mptcp_join.sh | 30 ++++++++++++---
> ----------
>  1 file changed, 15 insertions(+), 15 deletions(-)
> 
> diff --git a/tools/testing/selftests/net/mptcp/mptcp_join.sh
> b/tools/testing/selftests/net/mptcp/mptcp_join.sh
> index b2e6e548f796..77370b10651a 100755
> --- a/tools/testing/selftests/net/mptcp/mptcp_join.sh
> +++ b/tools/testing/selftests/net/mptcp/mptcp_join.sh
> @@ -1407,7 +1407,7 @@ chk_join_tx_nr()
>  
>  	count=$(mptcp_lib_get_counter ${ns2}
> "MPTcpExtMPJoinSynTxCreatSkErr")
>  	if [ -z "$count" ]; then
> -		rc=${KSFT_SKIP}
> +		: # ignore skip
>  	elif [ "$count" != "$create" ]; then

In that case, wouldn't it be better to remove 'if [ -z "$count" ];
then' and directly check with 'if [ "$count" != "$create" ]; then'?

Thanks,
-Geliang

>  		rc=${KSFT_FAIL}
>  		print_check "syn tx create socket error"
> @@ -1416,7 +1416,7 @@ chk_join_tx_nr()
>  
>  	count=$(mptcp_lib_get_counter ${ns2}
> "MPTcpExtMPJoinSynTxBindErr")
>  	if [ -z "$count" ]; then
> -		rc=${KSFT_SKIP}
> +		: # ignore skip
>  	elif [ "$count" != "$bind" ]; then
>  		rc=${KSFT_FAIL}
>  		print_check "syn tx bind error"
> @@ -1425,7 +1425,7 @@ chk_join_tx_nr()
>  
>  	count=$(mptcp_lib_get_counter ${ns2}
> "MPTcpExtMPJoinSynTxConnectErr")
>  	if [ -z "$count" ]; then
> -		rc=${KSFT_SKIP}
> +		: # ignore skip
>  	elif [ "$count" != "$connect" ]; then
>  		rc=${KSFT_FAIL}
>  		print_check "syn tx connect error"
> @@ -1451,7 +1451,7 @@ chk_fallback_nr()
>  
>  	count=$(mptcp_lib_get_counter ${!ns}
> "MPTcpExtInfiniteMapTx")
>  	if [ -z "$count" ]; then
> -		rc=${KSFT_SKIP}
> +		: # ignore skip
>  	elif [ "$count" != "$infinite_map_tx" ]; then
>  		rc=${KSFT_FAIL}
>  		print_check "$ns infinite map tx fallback"
> @@ -1460,7 +1460,7 @@ chk_fallback_nr()
>  
>  	count=$(mptcp_lib_get_counter ${!ns}
> "MPTcpExtDSSCorruptionFallback")
>  	if [ -z "$count" ]; then
> -		rc=${KSFT_SKIP}
> +		: # ignore skip
>  	elif [ "$count" != "$dss_corruption" ]; then
>  		rc=${KSFT_FAIL}
>  		print_check "$ns dss corruption fallback"
> @@ -1469,7 +1469,7 @@ chk_fallback_nr()
>  
>  	count=$(mptcp_lib_get_counter ${!ns}
> "MPTcpExtSimultConnectFallback")
>  	if [ -z "$count" ]; then
> -		rc=${KSFT_SKIP}
> +		: # ignore skip
>  	elif [ "$count" != "$simult_conn" ]; then
>  		rc=${KSFT_FAIL}
>  		print_check "$ns simult conn fallback"
> @@ -1478,7 +1478,7 @@ chk_fallback_nr()
>  
>  	count=$(mptcp_lib_get_counter ${!ns}
> "MPTcpExtMPCapableFallbackACK")
>  	if [ -z "$count" ]; then
> -		rc=${KSFT_SKIP}
> +		: # ignore skip
>  	elif [ "$count" != "$mpc_passive" ]; then
>  		rc=${KSFT_FAIL}
>  		print_check "$ns mpc passive fallback"
> @@ -1487,7 +1487,7 @@ chk_fallback_nr()
>  
>  	count=$(mptcp_lib_get_counter ${!ns}
> "MPTcpExtMPCapableFallbackSYNACK")
>  	if [ -z "$count" ]; then
> -		rc=${KSFT_SKIP}
> +		: # ignore skip
>  	elif [ "$count" != "$mpc_active" ]; then
>  		rc=${KSFT_FAIL}
>  		print_check "$ns mpc active fallback"
> @@ -1496,7 +1496,7 @@ chk_fallback_nr()
>  
>  	count=$(mptcp_lib_get_counter ${!ns}
> "MPTcpExtMPCapableDataFallback")
>  	if [ -z "$count" ]; then
> -		rc=${KSFT_SKIP}
> +		: # ignore skip
>  	elif [ "$count" != "$mpc_data" ]; then
>  		rc=${KSFT_FAIL}
>  		print_check "$ns mpc data fallback"
> @@ -1505,7 +1505,7 @@ chk_fallback_nr()
>  
>  	count=$(mptcp_lib_get_counter ${!ns}
> "MPTcpExtMD5SigFallback")
>  	if [ -z "$count" ]; then
> -		rc=${KSFT_SKIP}
> +		: # ignore skip
>  	elif [ "$count" != "$md5_sig" ]; then
>  		rc=${KSFT_FAIL}
>  		print_check "$ns MD5 Sig fallback"
> @@ -1514,7 +1514,7 @@ chk_fallback_nr()
>  
>  	count=$(mptcp_lib_get_counter ${!ns} "MPTcpExtDssFallback")
>  	if [ -z "$count" ]; then
> -		rc=${KSFT_SKIP}
> +		: # ignore skip
>  	elif [ "$count" != "$dss" ]; then
>  		rc=${KSFT_FAIL}
>  		print_check "$ns dss fallback"
> @@ -1590,7 +1590,7 @@ chk_join_nr()
>  
>  	count=$(mptcp_lib_get_counter ${ns2}
> "MPTcpExtMPJoinSynAckHMacFailure")
>  	if [ -z "$count" ]; then
> -		rc=${KSFT_SKIP}
> +		: # ignore skip
>  	elif [ "$count" != "0" ]; then
>  		rc=${KSFT_FAIL}
>  		print_check "synack HMAC"
> @@ -1599,7 +1599,7 @@ chk_join_nr()
>  
>  	count=$(mptcp_lib_get_counter ${ns1} "MPTcpExtMPJoinAckRx")
>  	if [ -z "$count" ]; then
> -		rc=${KSFT_SKIP}
> +		: # ignore skip
>  	elif [ "$count" != "$ack_nr" ]; then
>  		rc=${KSFT_FAIL}
>  		print_check "ack rx"
> @@ -1608,7 +1608,7 @@ chk_join_nr()
>  
>  	count=$(mptcp_lib_get_counter ${ns1}
> "MPTcpExtMPJoinAckHMacFailure")
>  	if [ -z "$count" ]; then
> -		rc=${KSFT_SKIP}
> +		: # ignore skip
>  	elif [ "$count" != "0" ]; then
>  		rc=${KSFT_FAIL}
>  		print_check "ack HMAC"
> @@ -1617,7 +1617,7 @@ chk_join_nr()
>  
>  	count=$(mptcp_lib_get_counter ${ns1}
> "MPTcpExtMPJoinRejected")
>  	if [ -z "$count" ]; then
> -		rc=${KSFT_SKIP}
> +		: # ignore skip
>  	elif [ "$count" != "$syn_rej" ]; then
>  		rc=${KSFT_FAIL}
>  		print_check "syn rejected"
> 
> ---
> base-commit: ff3fd5f60460ba1ba338bfff405f13001e7131b8
> change-id: 20251211-sft-no-skip-new-cnt-40ad3fc1dcc8
> 
> Best regards,
Re: [PATCH mptcp-next] selftests: mptcp: join: no SKIP mark for group checks
Posted by Matthieu Baerts 1 week, 6 days ago
Hi Geliang,

Thank you for the review! (and sorry for the late reply)

On 28/12/2025 04:06, Geliang Tang wrote:
> Hi Matt,
> 
> Thanks for this patch.
> 
> On Thu, 2025-12-11 at 19:09 +0100, Matthieu Baerts (NGI0) wrote:
>> When executing the last MPTCP selftests on older kernels, this output
>> is
>> printed:
>>
>>   # 001 no JOIN
>>   #       join Rx                             [SKIP]
>>   #       join Tx                             [SKIP]
>>   #       fallback                            [SKIP]
>>
>> In fact, behind each line, a few counters are checked, and likely not
>> all of them have been skipped because the they are not available on
>> these kernels. Instead, "new" and unsupported counters for these
>> groups
>> are now ignored, and [ OK ] will be printed instead of [SKIP].
>>
>> Note that on the MPTCP CI, when validating the dev versions, any
>> unsupported counter will cause the tests to fail. So this is safe not
>> to
>> print 'SKIP' for these group checks.
>>
>> Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
>> ---
>>  tools/testing/selftests/net/mptcp/mptcp_join.sh | 30 ++++++++++++---
>> ----------
>>  1 file changed, 15 insertions(+), 15 deletions(-)
>>
>> diff --git a/tools/testing/selftests/net/mptcp/mptcp_join.sh
>> b/tools/test[ -z "$count" ]ing/selftests/net/mptcp/mptcp_join.sh
>> index b2e6e548f796..77370b10651a 100755
>> --- a/tools/testing/selftests/net/mptcp/mptcp_join.sh
>> +++ b/tools/testing/selftests/net/mptcp/mptcp_join.sh
>> @@ -1407,7 +1407,7 @@ chk_join_tx_nr()
>>  
>>  	count=$(mptcp_lib_get_counter ${ns2}
>> "MPTcpExtMPJoinSynTxCreatSkErr")
>>  	if [ -z "$count" ]; then
>> -		rc=${KSFT_SKIP}
>> +		: # ignore skip
>>  	elif [ "$count" != "$create" ]; then
> 
> In that case, wouldn't it be better to remove 'if [ -z "$count" ];
> then' and directly check with 'if [ "$count" != "$create" ]; then'?

No, we cannot: if $count is empty, then "$count" != "$create", and the
test will be marked as failed instead of being ignored.

We could have:

  if [ -n "$count" ] && [ "$count" != "$create" ]

But I think it is clearer to have an explicit comment for this special
case than multiple conditions. WDYT?

Cheers,
Matt
-- 
Sponsored by the NGI0 Core fund.

Re: [PATCH mptcp-next] selftests: mptcp: join: no SKIP mark for group checks
Posted by Geliang Tang 1 week, 6 days ago
Hi Matt,

On Mon, 2026-01-26 at 19:42 +0100, Matthieu Baerts wrote:
> Hi Geliang,
> 
> Thank you for the review! (and sorry for the late reply)
> 
> On 28/12/2025 04:06, Geliang Tang wrote:
> > Hi Matt,
> > 
> > Thanks for this patch.
> > 
> > On Thu, 2025-12-11 at 19:09 +0100, Matthieu Baerts (NGI0) wrote:
> > > When executing the last MPTCP selftests on older kernels, this
> > > output
> > > is
> > > printed:
> > > 
> > >   # 001 no JOIN
> > >   #       join Rx                             [SKIP]
> > >   #       join Tx                             [SKIP]
> > >   #       fallback                            [SKIP]
> > > 
> > > In fact, behind each line, a few counters are checked, and likely
> > > not
> > > all of them have been skipped because the they are not available
> > > on
> > > these kernels. Instead, "new" and unsupported counters for these
> > > groups
> > > are now ignored, and [ OK ] will be printed instead of [SKIP].
> > > 
> > > Note that on the MPTCP CI, when validating the dev versions, any
> > > unsupported counter will cause the tests to fail. So this is safe
> > > not
> > > to
> > > print 'SKIP' for these group checks.
> > > 
> > > Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
> > > ---
> > >  tools/testing/selftests/net/mptcp/mptcp_join.sh | 30
> > > ++++++++++++---
> > > ----------
> > >  1 file changed, 15 insertions(+), 15 deletions(-)
> > > 
> > > diff --git a/tools/testing/selftests/net/mptcp/mptcp_join.sh
> > > b/tools/test[ -z "$count" ]ing/selftests/net/mptcp/mptcp_join.sh
> > > index b2e6e548f796..77370b10651a 100755
> > > --- a/tools/testing/selftests/net/mptcp/mptcp_join.sh
> > > +++ b/tools/testing/selftests/net/mptcp/mptcp_join.sh
> > > @@ -1407,7 +1407,7 @@ chk_join_tx_nr()
> > >  
> > >  	count=$(mptcp_lib_get_counter ${ns2}
> > > "MPTcpExtMPJoinSynTxCreatSkErr")
> > >  	if [ -z "$count" ]; then
> > > -		rc=${KSFT_SKIP}
> > > +		: # ignore skip
> > >  	elif [ "$count" != "$create" ]; then
> > 
> > In that case, wouldn't it be better to remove 'if [ -z "$count" ];
> > then' and directly check with 'if [ "$count" != "$create" ]; then'?
> 
> No, we cannot: if $count is empty, then "$count" != "$create", and
> the
> test will be marked as failed instead of being ignored.
> 
> We could have:
> 
>   if [ -n "$count" ] && [ "$count" != "$create" ]
> 
> But I think it is clearer to have an explicit comment for this
> special
> case than multiple conditions. WDYT?

Thanks for the explanation.

This patch looks good to me.

Reviewed-by: Geliang Tang <geliang@kernel.org>

-Geliang

> 
> Cheers,
> Matt
Re: [PATCH mptcp-next] selftests: mptcp: join: no SKIP mark for group checks
Posted by Matthieu Baerts 1 week, 5 days ago
Hi Geliang,

On 27/01/2026 07:54, Geliang Tang wrote:
> Thanks for the explanation.
> 
> This patch looks good to me.

Thank you for the review.

Now in our tree:

New patches for t/upstream:
- 63c83cd4d42f: selftests: mptcp: join: no SKIP mark for group checks
- Results: 7db9a30f8664..cd96e4ab92c2 (export)

Tests are now in progress:

- export:
https://github.com/multipath-tcp/mptcp_net-next/commit/0ad06206f9d3a1a2ad955b58a9425598eb9b3196/checks

Cheers,
Matt
-- 
Sponsored by the NGI0 Core fund.
Re: [PATCH mptcp-next] selftests: mptcp: join: no SKIP mark for group checks
Posted by MPTCP CI 1 month, 4 weeks ago
Hi Matthieu,

Thank you for your modifications, that's great!

Our CI did some validations and here is its report:

- KVM Validation: normal (except selftest_mptcp_join): Unstable: 1 failed test(s): selftest_simult_flows 🔴
- KVM Validation: normal (only selftest_mptcp_join): Success! ✅
- KVM Validation: debug (except selftest_mptcp_join): Success! ✅
- KVM Validation: debug (only selftest_mptcp_join): Success! ✅
- KVM Validation: btf-normal (only bpftest_all): Success! ✅
- KVM Validation: btf-debug (only bpftest_all): Success! ✅
- Task: https://github.com/multipath-tcp/mptcp_net-next/actions/runs/20143199844

Initiator: Patchew Applier
Commits: https://github.com/multipath-tcp/mptcp_net-next/commits/54a9be79c85b
Patchwork: https://patchwork.kernel.org/project/mptcp/list/?series=1032407


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-normal

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 (NGI0 Core)