ShellCheck - shell script analysis tool version: 0.10.0 license: GNU General Public License, version 3 website: https://www.shellcheck.net Redirect to /tmp/tmp.KWJYqqgIJ7 and /tmp/tmp.9upyOsizL0 Tree base: 08207f42d3ff ("Merge branch 'ionic-cleanups' into main") Now at: 26b30f051554 ("page_pool: import Jesper's page_pool benchmark") ====== Checking before the patch ====== ====== Checking the tree with the patch ====== Checking tools/testing/selftests/net/bench/test_bench_page_pool.sh - fa1c5872f014c0c69381d98a121f092edf6af40f596f1ec10d37d3922936af75 In test_bench_page_pool.sh line 19: echo ${result} | grep -o -E "no-softirq-page_pool01 Per elem: ([0-9]+) cycles\(tsc\) ([0-9]+\.[0-9]+) ns" ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: echo "${result}" | grep -o -E "no-softirq-page_pool01 Per elem: ([0-9]+) cycles\(tsc\) ([0-9]+\.[0-9]+) ns" In test_bench_page_pool.sh line 23: echo ${result} | grep -o -E "no-softirq-page_pool02 Per elem: ([0-9]+) cycles\(tsc\) ([0-9]+\.[0-9]+) ns" ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: echo "${result}" | grep -o -E "no-softirq-page_pool02 Per elem: ([0-9]+) cycles\(tsc\) ([0-9]+\.[0-9]+) ns" In test_bench_page_pool.sh line 27: echo ${result} | grep -o -E "no-softirq-page_pool03 Per elem: ([0-9]+) cycles\(tsc\) ([0-9]+\.[0-9]+) ns" ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: echo "${result}" | grep -o -E "no-softirq-page_pool03 Per elem: ([0-9]+) cycles\(tsc\) ([0-9]+\.[0-9]+) ns" For more information: https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...