The quilt patch titled Subject: lib/test_vmalloc.c: fix typo in function name has been removed from the -mm tree. Its filename was lib-test_vmallocc-fix-typo-in-function-name.patch This patch was dropped because it was merged into the mm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Martin Kaiser <martin@xxxxxxxxx> Subject: lib/test_vmalloc.c: fix typo in function name Date: Mon, 26 Feb 2024 20:11:57 +0100 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@xxxxxxxxx Signed-off-by: Martin Kaiser <martin@xxxxxxxxx> Reviewed-by: Uladzislau Rezki (Sony) <urezki@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/test_vmalloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/lib/test_vmalloc.c~lib-test_vmallocc-fix-typo-in-function-name +++ a/lib/test_vmalloc.c @@ -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; _ Patches currently in -mm which might be from martin@xxxxxxxxx are