ShellCheck - shell script analysis tool version: 0.10.0 license: GNU General Public License, version 3 website: https://www.shellcheck.net Redirect to /tmp/tmp.hgDKp8QNO0 and /tmp/tmp.pLAdzRVq41 Tree base: ab5bc3859271 ("bonding: Update for extended arp_ip_target format.") Now at: 8f4745702419 ("bonding: Selftest and documentation for the arp_ip_target parameter.") ====== Checking before the patch ====== ====== Checking the tree with the patch ====== Checking tools/testing/selftests/drivers/net/bonding/bond-arp-ip-target.sh - 2c6d27dcd48424f50f61ab30b11bb5b51b23236447bf6514f63e18e2e37dfb62 In bond-arp-ip-target.sh line 133: if [ $RET -ne 0 ]; then ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: if [ "$RET" -ne 0 ]; then In bond-arp-ip-target.sh line 160: if [ $RET -ne 0 ]; then ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: if [ "$RET" -ne 0 ]; then For more information: https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...