The patch titled Subject: mm/slub, kunit: add a KUnit test for SLUB debugging functionality-fix has been added to the -mm tree. Its filename is mm-slub-kunit-add-a-kunit-test-for-slub-debugging-functionality-fix.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/mm-slub-kunit-add-a-kunit-test-for-slub-debugging-functionality-fix.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/mm-slub-kunit-add-a-kunit-test-for-slub-debugging-functionality-fix.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: Oliver Glitta <glittao@xxxxxxxxx> Subject: mm/slub, kunit: add a KUnit test for SLUB debugging functionality-fix Remove unused function test_exit(), from SLUB KUnit test. Link: https://lkml.kernel.org/r/20210512140656.12083-1-glittao@xxxxxxxxx Signed-off-by: Oliver Glitta <glittao@xxxxxxxxx> Reported-by: Marco Elver <elver@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/slub_kunit.c | 3 --- 1 file changed, 3 deletions(-) --- a/lib/slub_kunit.c~mm-slub-kunit-add-a-kunit-test-for-slub-debugging-functionality-fix +++ a/lib/slub_kunit.c @@ -129,8 +129,6 @@ static int test_init(struct kunit *test) return 0; } -static void test_exit(struct kunit *test) {} - static struct kunit_case test_cases[] = { KUNIT_CASE(test_clobber_zone), @@ -147,7 +145,6 @@ static struct kunit_case test_cases[] = static struct kunit_suite test_suite = { .name = "slub_test", .init = test_init, - .exit = test_exit, .test_cases = test_cases, }; kunit_test_suite(test_suite); _ Patches currently in -mm which might be from glittao@xxxxxxxxx are mm-slub-kunit-add-a-kunit-test-for-slub-debugging-functionality.patch mm-slub-kunit-add-a-kunit-test-for-slub-debugging-functionality-fix.patch slub-remove-resiliency_test-function.patch