Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests: kmod: Fix typo in kmod.sh

This patch fixes some spelling typos in kmod.sh

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>

authored by

Masanari Iida and committed by
Shuah Khan
36876b30 5f9e832c

+3 -3
+3 -3
tools/testing/selftests/kmod/kmod.sh
··· 28 28 # override by exporting to your environment prior running this script. 29 29 # For instance this script assumes you do not have xfs loaded upon boot. 30 30 # If this is false, export DEFAULT_KMOD_FS="ext4" prior to running this 31 - # script if the filesyste module you don't have loaded upon bootup 31 + # script if the filesystem module you don't have loaded upon bootup 32 32 # is ext4 instead. Refer to allow_user_defaults() for a list of user 33 33 # override variables possible. 34 34 # ··· 263 263 config_reset() 264 264 { 265 265 if ! echo -n "1" >"$DIR"/reset; then 266 - echo "$0: reset shuld have worked" >&2 266 + echo "$0: reset should have worked" >&2 267 267 exit 1 268 268 fi 269 269 } ··· 488 488 echo Example uses: 489 489 echo 490 490 echo "${TEST_NAME}.sh -- executes all tests" 491 - echo "${TEST_NAME}.sh -t 0008 -- Executes test ID 0008 number of times is recomended" 491 + echo "${TEST_NAME}.sh -t 0008 -- Executes test ID 0008 number of times is recommended" 492 492 echo "${TEST_NAME}.sh -w 0008 -- Watch test ID 0008 run until an error occurs" 493 493 echo "${TEST_NAME}.sh -s 0008 -- Run test ID 0008 once" 494 494 echo "${TEST_NAME}.sh -c 0008 3 -- Run test ID 0008 three times"