[PATCH] mm/slub, kunit: add a KUnit test for SLUB debugging functionality-fix

From: glittao
Date: Wed May 12 2021 - 10:07:10 EST


From: Oliver Glitta <glittao@xxxxxxxxx>

Remove unused function test_exit(), from SLUB KUnit test.

Reported-by: Marco Elver <elver@xxxxxxxxxx>
Signed-off-by: Oliver Glitta <glittao@xxxxxxxxx>
---
lib/slub_kunit.c | 3 ---
1 file changed, 3 deletions(-)

diff --git a/lib/slub_kunit.c b/lib/slub_kunit.c
index f28965f64ef6..8662dc6cb509 100644
--- a/lib/slub_kunit.c
+++ b/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);
--
2.31.1.272.g89b43f80a5