====== Checking before the patch ====== ====== Checking the tree with the patch ====== tools/testing/selftests/net/rds/config.sh was shellcheck compliant, not anymore New errors added --- /tmp/tmp.3cfODzxVje 2026-03-18 21:02:36.432135026 -0400 +++ /tmp/tmp.CbZqxVTTBy 2026-03-18 21:02:36.572133606 -0400 @@ -0,0 +1,98 @@ + +In config.sh line 37: +scripts/config $FLAGS --disable CONFIG_MODULES + ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: +scripts/config "$FLAGS" --disable CONFIG_MODULES + + +In config.sh line 40: +scripts/config $FLAGS --enable CONFIG_RDS + ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: +scripts/config "$FLAGS" --enable CONFIG_RDS + + +In config.sh line 41: +scripts/config $FLAGS --enable CONFIG_RDS_TCP + ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: +scripts/config "$FLAGS" --enable CONFIG_RDS_TCP + + +In config.sh line 45: + scripts/config $FLAGS --enable CONFIG_GCOV_KERNEL + ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: + scripts/config "$FLAGS" --enable CONFIG_GCOV_KERNEL + + +In config.sh line 46: + scripts/config $FLAGS --disable GCOV_PROFILE_ALL + ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: + scripts/config "$FLAGS" --disable GCOV_PROFILE_ALL + + +In config.sh line 47: + scripts/config $FLAGS --enable GCOV_PROFILE_RDS + ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: + scripts/config "$FLAGS" --enable GCOV_PROFILE_RDS + + +In config.sh line 49: + scripts/config $FLAGS --disable CONFIG_GCOV_KERNEL + ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: + scripts/config "$FLAGS" --disable CONFIG_GCOV_KERNEL + + +In config.sh line 50: + scripts/config $FLAGS --disable GCOV_PROFILE_ALL + ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: + scripts/config "$FLAGS" --disable GCOV_PROFILE_ALL + + +In config.sh line 51: + scripts/config $FLAGS --disable GCOV_PROFILE_RDS + ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: + scripts/config "$FLAGS" --disable GCOV_PROFILE_RDS + + +In config.sh line 55: +scripts/config $FLAGS --enable CONFIG_NET_NS + ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: +scripts/config "$FLAGS" --enable CONFIG_NET_NS + + +In config.sh line 56: +scripts/config $FLAGS --enable CONFIG_VETH + ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: +scripts/config "$FLAGS" --enable CONFIG_VETH + + +In config.sh line 59: +scripts/config $FLAGS --enable CONFIG_NET_SCH_NETEM + ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: +scripts/config "$FLAGS" --enable CONFIG_NET_SCH_NETEM + +For more information: + https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...