Commit 940b1be2 authored by ally heev's avatar ally heev Committed by Andrew Morton
Browse files

kselftest: mm: fix typos in test_vmalloc.sh

Fix simple typos in function name and console message.

Link: https://lkml.kernel.org/r/20250823170208.184149-1-allyheev@gmail.com


Signed-off-by: default avatarally heev <allyheev@gmail.com>
Cc: David Hildenbrand <david@redhat.com>
Cc: Shuah Khan <shuah@kernel.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 32960f75
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -47,14 +47,14 @@ check_test_requirements()
	fi
}

run_perfformance_check()
run_performance_check()
{
	echo "Run performance tests to evaluate how fast vmalloc allocation is."
	echo "It runs all test cases on one single CPU with sequential order."

	modprobe $DRIVER $PERF_PARAM > /dev/null 2>&1
	echo "Done."
	echo "Ccheck the kernel message buffer to see the summary."
	echo "Check the kernel message buffer to see the summary."
}

run_stability_check()
@@ -160,7 +160,7 @@ function run_test()
		usage
	else
		if [[ "$1" = "performance" ]]; then
			run_perfformance_check
			run_performance_check
		elif [[ "$1" = "stress" ]]; then
			run_stability_check
		elif [[ "$1" = "smoke" ]]; then