Re: [PATCH net v3] selftests: net: fix rps_default_mask with >32 CPUs

2024-01-24 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (main) by Jakub Kicinski : On Mon, 22 Jan 2024 11:58:15 -0800 you wrote: > If there is more than 32 cpus the bitmask will start to contain > commas, leading to: > > ./rps_default_mask.sh: line 36: [: ,: integer expression > expecte

Re: [PATCH net v3] selftests: net: fix rps_default_mask with >32 CPUs

2024-01-24 Thread Simon Horman
On Mon, Jan 22, 2024 at 11:58:15AM -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: [: ,: integer expression > expected > > Remove the commas, bash doesn't interpret leading ze

[PATCH net v3] selftests: net: fix rps_default_mask with >32 CPUs

2024-01-22 Thread Jakub Kicinski
If there is more than 32 cpus the bitmask will start to contain commas, leading to: ./rps_default_mask.sh: line 36: [: ,: integer expression expected Remove the commas, bash doesn't interpret leading zeroes as oct so that should be good enough. Switch to bash, Simon reports that