From 21c580d88e2abd62b58ce34872cceb5c0d056330 Mon Sep 17 00:00:00 2001 From: Sean Fu Date: Sun, 20 May 2018 22:44:13 -0400 Subject: ext4: remove NULL check before calling kmem_cache_destroy() Signed-off-by: Sean Fu Signed-off-by: Theodore Ts'o --- fs/ext4/mballoc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'fs/ext4/mballoc.c') diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index 0d473991eebd..243c42fdc155 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c @@ -2537,8 +2537,7 @@ static void ext4_groupinfo_destroy_slabs(void) int i; for (i = 0; i < NR_GRPINFO_CACHES; i++) { - if (ext4_groupinfo_caches[i]) - kmem_cache_destroy(ext4_groupinfo_caches[i]); + kmem_cache_destroy(ext4_groupinfo_caches[i]); ext4_groupinfo_caches[i] = NULL; } } -- cgit v1.2.3