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.WOSYoM52Ph and /tmp/tmp.wgXFxMKKxR Tree base: 757639ac608e ("Merge branch 'add-support-for-pse-budget-evaluation-strategy'") Now at: ef409daed33e ("selftest: add selftest for anycast notifications") ====== Checking before the patch ====== Checking tools/testing/selftests/net/rtnetlink_notification.sh - fa38ef9ee877f2b33c6522490a94c39c324964eee636cc12705bd0d305deff99 In rtnetlink_notification.sh line 26: ip monitor maddr > $tmpfile & ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip monitor maddr > "$tmpfile" & In rtnetlink_notification.sh line 35: return $RET ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: return "$RET" In rtnetlink_notification.sh line 56: return $RET ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: return "$RET" In rtnetlink_notification.sh line 70: exit $EXIT_STATUS ^----------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: exit "$EXIT_STATUS" For more information: https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ... ====== Checking the tree with the patch ====== Checking tools/testing/selftests/net/rtnetlink_notification.sh - fa38ef9ee877f2b33c6522490a94c39c324964eee636cc12705bd0d305deff99 In rtnetlink_notification.sh line 27: ip monitor maddr > $tmpfile & ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip monitor maddr > "$tmpfile" & In rtnetlink_notification.sh line 36: return $RET ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: return "$RET" In rtnetlink_notification.sh line 57: return $RET ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: return "$RET" In rtnetlink_notification.sh line 112: exit $EXIT_STATUS ^----------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: exit "$EXIT_STATUS" For more information: https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...