[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1534153129-24869-1-git-send-email-fxinrong@gmail.com>
Date: Mon, 13 Aug 2018 17:38:49 +0800
From: Sean Fu <fxinrong@...il.com>
To: colyli@...e.de
Cc: kent.overstreet@...il.com, linux-bcache@...r.kernel.org,
linux-kernel@...r.kernel.org, Sean Fu <fxinrong@...il.com>
Subject: [PATCH] md/bcache: Remove NULL check.
Remove unnessesary NULL check before kmem_cache_destroy() in
drivers/md/bcache/request.c
Signed-off-by: Sean Fu <fxinrong@...il.com>
---
drivers/md/bcache/request.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/md/bcache/request.c b/drivers/md/bcache/request.c
index ae67f5f..0ddee35 100644
--- a/drivers/md/bcache/request.c
+++ b/drivers/md/bcache/request.c
@@ -1306,8 +1306,7 @@ void bch_flash_dev_request_init(struct bcache_device *d)
void bch_request_exit(void)
{
- if (bch_search_cache)
- kmem_cache_destroy(bch_search_cache);
+ kmem_cache_destroy(bch_search_cache);
}
int __init bch_request_init(void)
--
2.6.2
Powered by blists - more mailing lists