====== Checking before the patch ====== ====== Checking the tree with the patch ====== tools/testing/selftests/net/hsr/link_faults.sh is a new file, but not shellcheck compliant New errors added --- /tmp/tmp.i1vVcJ2y8I 2026-01-21 09:22:12.008044616 -0500 +++ /tmp/tmp.45Uuipstza 2026-01-21 09:22:12.536041474 -0500 @@ -45,0 +46,13 @@ + +In link_faults.sh line 40: + ip link add vethA netns "$node1" type veth peer name vethB netns "$node2" + ^----^ SC2154 (warning): node1 is referenced but not assigned (did you mean 'node'?). + ^----^ SC2154 (warning): node2 is referenced but not assigned (did you mean 'node'?). + + +In link_faults.sh line 41: + ip link add vethA netns "$node2" type veth peer name vethB netns "$node3" + ^----^ SC2154 (warning): node3 is referenced but not assigned (did you mean 'node'?). + +For more information: + https://www.shellcheck.net/wiki/SC2154 -- node1 is referenced but not assig...