====== Checking before the patch ====== ====== Checking the tree with the patch ====== tools/testing/selftests/bpf/benchs/run_bench_xdp_lb.sh is a new file, but not shellcheck compliant New errors added --- /tmp/tmp.cHRoxhLKJN 2026-04-20 08:57:43.002026920 -0400 +++ /tmp/tmp.85OLiFlQeb 2026-04-20 08:57:43.151025735 -0400 @@ -0,0 +1,23 @@ + +In run_bench_xdp_lb.sh line 4: +source ./benchs/run_common.sh + ^--------------------^ SC1091 (info): Not following: ./benchs/run_common.sh: openBinaryFile: does not exist (No such file or directory) + + +In run_bench_xdp_lb.sh line 19: + printf "$HDR" "$1" "n" "p50" "stddev" "CV" "min" "p90" "p99" "max" + ^----^ SC2059 (info): Don't use variables in the printf format string. Use printf '..%s..' "$foo". + + +In run_bench_xdp_lb.sh line 38: + printf "$ROW" "$sc" "ERR" "-" "-" "-" "-" "-" "-" "-" + ^----^ SC2059 (info): Don't use variables in the printf format string. Use printf '..%s..' "$foo". + + +In run_bench_xdp_lb.sh line 42: + printf "$ROW" "$sc" \ + ^----^ SC2059 (info): Don't use variables in the printf format string. Use printf '..%s..' "$foo". + +For more information: + https://www.shellcheck.net/wiki/SC1091 -- Not following: ./benchs/run_commo... + https://www.shellcheck.net/wiki/SC2059 -- Don't use variables in the printf...