====== Checking before the patch ====== ====== Checking the tree with the patch ====== tools/testing/selftests/net/big_tcp_tunnels.sh is a new file, but not shellcheck compliant New errors added --- /tmp/tmp.wYz3r90RaO 2026-02-26 16:45:57.032448900 -0500 +++ /tmp/tmp.ATPlhfuT1a 2026-02-26 16:45:57.199447597 -0500 @@ -0,0 +1,7 @@ + +In big_tcp_tunnels.sh line 41: + ip netns exec "$SERVER_NS" netserver 2>&1 >/dev/null + ^--^ SC2069 (warning): To redirect stdout+stderr, 2>&1 must be last (or use '{ cmd > file; } 2>&1' to clarify). + +For more information: + https://www.shellcheck.net/wiki/SC2069 -- To redirect stdout+stderr, 2>&1 m...