====== Checking before the patch ====== ====== Checking the tree with the patch ====== New warnings added --- /tmp/tmp.XtBHRecRZd 2026-02-26 11:33:34.579145466 -0500 +++ /tmp/tmp.4ZLa82tl8o 2026-02-26 11:33:35.040142205 -0500 @@ -85 +85,22 @@ -In nft_queue.sh line 669: +In nft_queue.sh line 648: + local nprocs=$(nproc) + ^----^ SC2155 (warning): Declare and assign separately to avoid masking return values. + + +In nft_queue.sh line 649: + [ $nprocs -gt 1 ] && nprocs=$((nprocs - 1)) + ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: + [ "$nprocs" -gt 1 ] && nprocs=$((nprocs - 1)) + + +In nft_queue.sh line 651: + dd if=/dev/zero bs="$bs" count="$count" 2>/dev/null | for i in $(seq 1 $nprocs); do + ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: + dd if=/dev/zero bs="$bs" count="$count" 2>/dev/null | for i in $(seq 1 "$nprocs"); do + + +In nft_queue.sh line 674: