lib/test_vmalloc.c: fix typo in function name
authorMartin Kaiser <martin@kaiser.cx>
Mon, 26 Feb 2024 19:11:57 +0000 (20:11 +0100)
committerAndrew Morton <akpm@linux-foundation.org>
Tue, 5 Mar 2024 01:01:21 +0000 (17:01 -0800)
Fix a typo and change the function name to init_test_configuration.  Both
caller and definition have the same typo, so the current code already
works.

Link: https://lkml.kernel.org/r/20240226191159.39509-2-martin@kaiser.cx
Signed-off-by: Martin Kaiser <martin@kaiser.cx>
Reviewed-by: Uladzislau Rezki (Sony) <urezki@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
lib/test_vmalloc.c

index 3718d9886407d6a9d7fafb8a90eebc92f2211178..191b6bd5dff9481a6dcf5c7096c5ac50947d70fc 100644 (file)
@@ -501,7 +501,7 @@ static int test_func(void *private)
 }
 
 static int
-init_test_configurtion(void)
+init_test_configuration(void)
 {
        /*
         * A maximum number of workers is defined as hard-coded
@@ -531,7 +531,7 @@ static void do_concurrent_test(void)
        /*
         * Set some basic configurations plus sanity check.
         */
-       ret = init_test_configurtion();
+       ret = init_test_configuration();
        if (ret < 0)
                return;