]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
kselftest: mm: fix typos in test_vmalloc.sh
authorally heev <allyheev@gmail.com>
Sat, 23 Aug 2025 17:02:08 +0000 (22:32 +0530)
committerAndrew Morton <akpm@linux-foundation.org>
Fri, 12 Sep 2025 00:25:16 +0000 (17:25 -0700)
Fix simple typos in function name and console message.

Link: https://lkml.kernel.org/r/20250823170208.184149-1-allyheev@gmail.com
Signed-off-by: ally heev <allyheev@gmail.com>
Cc: David Hildenbrand <david@redhat.com>
Cc: Shuah Khan <shuah@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
tools/testing/selftests/mm/test_vmalloc.sh

index d73b846736f1c2d6e947cde82d3729c9d79c5907..d39096723fca0f7be4713a75f245c6a7512a46cf 100755 (executable)
@@ -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