====== Checking before the patch ====== ====== Checking the tree with the patch ====== New warnings added --- /tmp/tmp.P9Id9LOKUD 2025-10-21 22:14:19.768629013 -0700 +++ /tmp/tmp.YIvq9HdpT8 2025-10-21 22:14:20.321623504 -0700 @@ -17 +17,10 @@ -In vmtest.sh line 226: +In vmtest.sh line 154: + ${ns_exec} ssh -q -o UserKnownHostsFile=/dev/null -p ${SSH_HOST_PORT} localhost $* + ^-- SC2048 (warning): Use "$@" (with quotes) to prevent whitespace problems. + ^-- SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: + ${ns_exec} ssh -q -o UserKnownHostsFile=/dev/null -p ${SSH_HOST_PORT} localhost "$*" + + +In vmtest.sh line 237: @@ -25 +34 @@ -In vmtest.sh line 232: +In vmtest.sh line 243: @@ -30 +39 @@ -In vmtest.sh line 236: +In vmtest.sh line 247: @@ -38 +47 @@ -In vmtest.sh line 281: +In vmtest.sh line 298: @@ -46 +55 @@ -In vmtest.sh line 371: +In vmtest.sh line 404: @@ -51 +60 @@ -In vmtest.sh line 379: +In vmtest.sh line 412: @@ -56 +65 @@ -In vmtest.sh line 384: +In vmtest.sh line 417: @@ -64 +73 @@ -In vmtest.sh line 392: +In vmtest.sh line 425: @@ -72 +81 @@ -In vmtest.sh line 418: +In vmtest.sh line 457: @@ -80 +89 @@ -In vmtest.sh line 426: +In vmtest.sh line 465: @@ -88 +97 @@ -In vmtest.sh line 457: +In vmtest.sh line 496: @@ -93 +102 @@ -In vmtest.sh line 460: +In vmtest.sh line 499: @@ -98 +107 @@ -In vmtest.sh line 461: +In vmtest.sh line 500: @@ -103 +112 @@ -In vmtest.sh line 560: +In vmtest.sh line 602: @@ -108,3 +117,3 @@ -In vmtest.sh line 572: - vm_oops_cnt_after=$(vm_ssh -- dmesg | grep -i 'Oops' | wc -l) - ^------------^ SC2126 (style): Consider using 'grep -c' instead of 'grep|wc -l'. +In vmtest.sh line 614: + vm_oops_cnt_after=$(vm_ssh "init_ns" -- dmesg | grep -i 'Oops' | wc -l) + ^------------^ SC2126 (style): Consider using 'grep -c' instead of 'grep|wc -l'. @@ -115 +124 @@ - https://www.shellcheck.net/wiki/SC2120 -- log_guest references arguments, b... + https://www.shellcheck.net/wiki/SC2048 -- Use "$@" (with quotes) to prevent...