ShellCheck - shell script analysis tool version: 0.11.0 license: GNU General Public License, version 3 website: https://www.shellcheck.net Redirect to /tmp/tmp.wz0vyH3sNp and /tmp/tmp.4fXEuzOY3t Tree base: 3e51d5b68a87 ("geneve: use GRO hint option in the RX path") Now at: 8e04593a8ed0 ("selftests: net: tests for add double tunneling GRO/GSO") ====== Checking before the patch ====== ====== Checking the tree with the patch ====== Checking tools/testing/selftests/net/double_udp_encap.sh - 50379923693874982c625fa985479e812ae9045af0ea3ca2b6dffbf78639c11f In double_udp_encap.sh line 85: create_ns() { ^-- SC2329 (info): This function is never invoked. Check usage (or ignored if invoked indirectly). In double_udp_encap.sh line 137: if [ $FAMILY = "4" ]; then ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: if [ "$FAMILY" = "4" ]; then In double_udp_encap.sh line 176: create_ns_gso() { ^-- SC2329 (info): This function is never invoked. Check usage (or ignored if invoked indirectly). In double_udp_encap.sh line 192: create_ns_gso_gro() { ^-- SC2329 (info): This function is never invoked. Check usage (or ignored if invoked indirectly). In double_udp_encap.sh line 198: run_test() { ^-- SC2329 (info): This function is never invoked. Check usage (or ignored if invoked indirectly). In double_udp_encap.sh line 216: if [ $FAMILY = "6" ]; then ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: if [ "$FAMILY" = "6" ]; then In double_udp_encap.sh line 303: run_tests() { ^-- SC2329 (info): This function is never invoked. Check usage (or ignored if invoked indirectly). In double_udp_encap.sh line 308: if [ $FAMILY = 6 ]; then ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: if [ "$FAMILY" = 6 ]; then In double_udp_encap.sh line 331: [ $FAMILY = "4" ] || continue ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: [ "$FAMILY" = "4" ] || continue For more information: https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ... https://www.shellcheck.net/wiki/SC2329 -- This function is never invoked. C...