* [PATCH net v2] selftests: net: fix rps_default_mask with >32 CPUs
@ 2024-01-20 21:02 Jakub Kicinski
2024-01-21 20:34 ` Simon Horman
0 siblings, 1 reply; 3+ messages in thread
From: Jakub Kicinski @ 2024-01-20 21:02 UTC (permalink / raw)
To: davem
Cc: netdev, edumazet, pabeni, Jakub Kicinski, shuah, horms,
linux-kselftest
If there is more than 32 cpus the bitmask will start to contain
commas, leading to:
./rps_default_mask.sh: line 36: [: 00000000,00000000: integer expression expected
Remove the commas, bash doesn't interpret leading zeroes as oct
so that should be good enough.
Fixes: c12e0d5f267d ("self-tests: introduce self-tests for RPS default mask")
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
---
v2:
- remove all commas
v1: https://lore.kernel.org/all/20240119151248.3476897-1-kuba@kernel.org/
CC: shuah@kernel.org
CC: horms@kernel.org
CC: linux-kselftest@vger.kernel.org
---
tools/testing/selftests/net/rps_default_mask.sh | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tools/testing/selftests/net/rps_default_mask.sh b/tools/testing/selftests/net/rps_default_mask.sh
index a26c5624429f..4729e7026a73 100755
--- a/tools/testing/selftests/net/rps_default_mask.sh
+++ b/tools/testing/selftests/net/rps_default_mask.sh
@@ -33,6 +33,10 @@ chk_rps() {
rps_mask=$($cmd /sys/class/net/$dev_name/queues/rx-0/rps_cpus)
printf "%-60s" "$msg"
+
+ # In case there is more than 32 CPUs we need to remove commas from masks
+ rps_mask=${rps_mask//,}
+ expected_rps_mask=${expected_rps_mask//,}
if [ $rps_mask -eq $expected_rps_mask ]; then
echo "[ ok ]"
else
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH net v2] selftests: net: fix rps_default_mask with >32 CPUs
2024-01-20 21:02 [PATCH net v2] selftests: net: fix rps_default_mask with >32 CPUs Jakub Kicinski
@ 2024-01-21 20:34 ` Simon Horman
2024-01-21 20:37 ` Simon Horman
0 siblings, 1 reply; 3+ messages in thread
From: Simon Horman @ 2024-01-21 20:34 UTC (permalink / raw)
To: Jakub Kicinski; +Cc: davem, netdev, edumazet, pabeni, shuah, linux-kselftest
On Sat, Jan 20, 2024 at 01:02:56PM -0800, Jakub Kicinski wrote:
> If there is more than 32 cpus the bitmask will start to contain
> commas, leading to:
>
> ./rps_default_mask.sh: line 36: [: 00000000,00000000: integer expression expected
>
> Remove the commas, bash doesn't interpret leading zeroes as oct
> so that should be good enough.
>
> Fixes: c12e0d5f267d ("self-tests: introduce self-tests for RPS default mask")
> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
> ---
> v2:
> - remove all commas
> v1: https://lore.kernel.org/all/20240119151248.3476897-1-kuba@kernel.org/
Thanks,
this version looks good to me.
Reviewed-by: Simon Horman <horms@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net v2] selftests: net: fix rps_default_mask with >32 CPUs
2024-01-21 20:34 ` Simon Horman
@ 2024-01-21 20:37 ` Simon Horman
0 siblings, 0 replies; 3+ messages in thread
From: Simon Horman @ 2024-01-21 20:37 UTC (permalink / raw)
To: Jakub Kicinski; +Cc: davem, netdev, edumazet, pabeni, shuah, linux-kselftest
On Sun, Jan 21, 2024 at 08:34:38PM +0000, Simon Horman wrote:
> On Sat, Jan 20, 2024 at 01:02:56PM -0800, Jakub Kicinski wrote:
> > If there is more than 32 cpus the bitmask will start to contain
> > commas, leading to:
> >
> > ./rps_default_mask.sh: line 36: [: 00000000,00000000: integer expression expected
> >
> > Remove the commas, bash doesn't interpret leading zeroes as oct
> > so that should be good enough.
> >
> > Fixes: c12e0d5f267d ("self-tests: introduce self-tests for RPS default mask")
> > Signed-off-by: Jakub Kicinski <kuba@kernel.org>
> > ---
> > v2:
> > - remove all commas
> > v1: https://lore.kernel.org/all/20240119151248.3476897-1-kuba@kernel.org/
>
> Thanks,
>
> this version looks good to me.
>
> Reviewed-by: Simon Horman <horms@kernel.org>
Sorry, I may have been a bit hasty there.
When using bash the change seems to work just fine.
But when exercising this with dash I get:
sh: 10: Bad substitution
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-01-21 20:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-20 21:02 [PATCH net v2] selftests: net: fix rps_default_mask with >32 CPUs Jakub Kicinski
2024-01-21 20:34 ` Simon Horman
2024-01-21 20:37 ` Simon Horman
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).