The patch titled Subject: lib/test_meminit: destroy cache in kmem_cache_alloc_bulk() test has been added to the -mm tree. Its filename is lib-test_meminit-destroy-cache-in-kmem_cache_alloc_bulk-test.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/lib-test_meminit-destroy-cache-in-kmem_cache_alloc_bulk-test.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/lib-test_meminit-destroy-cache-in-kmem_cache_alloc_bulk-test.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Andrey Konovalov <andreyknvl@xxxxxxxxxx> Subject: lib/test_meminit: destroy cache in kmem_cache_alloc_bulk() test Make do_kmem_cache_size_bulk() destroy the cache it creates. Link: https://lkml.kernel.org/r/aced20a94bf04159a139f0846e41d38a1537debb.1640018297.git.andreyknvl@xxxxxxxxxx Fixes: 03a9349ac0e0 ("lib/test_meminit: add a kmem_cache_alloc_bulk() test") Signed-off-by: Andrey Konovalov <andreyknvl@xxxxxxxxxx> Reviewed-by: Marco Elver <elver@xxxxxxxxxx> Cc: Alexander Potapenko <glider@xxxxxxxxxx> Cc: Dmitry Vyukov <dvyukov@xxxxxxxxxx> Cc: Andrey Ryabinin <ryabinin.a.a@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/test_meminit.c | 1 + 1 file changed, 1 insertion(+) --- a/lib/test_meminit.c~lib-test_meminit-destroy-cache-in-kmem_cache_alloc_bulk-test +++ a/lib/test_meminit.c @@ -337,6 +337,7 @@ static int __init do_kmem_cache_size_bul if (num) kmem_cache_free_bulk(c, num, objects); } + kmem_cache_destroy(c); *total_failures += fail; return 1; } _ Patches currently in -mm which might be from andreyknvl@xxxxxxxxxx are kasan-fix-quarantine-conflicting-with-init_on_free.patch lib-test_meminit-destroy-cache-in-kmem_cache_alloc_bulk-test.patch