bcache: do not check NULL pointer before calling kmem_cache_destroy
authorColy Li <[email protected]>
Sat, 11 Aug 2018 05:19:54 +0000 (13:19 +0800)
committerJens Axboe <[email protected]>
Sat, 11 Aug 2018 21:46:42 +0000 (15:46 -0600)
commit3069211be30015b78e096fc4d3774b7d4ba29781
tree8e53b6df34a2040d2f013058db20c4e3f763031d
parentbc81b47e828adfc3631e616fddc6b2203876b65d
bcache: do not check NULL pointer before calling kmem_cache_destroy

kmem_cache_destroy() is safe for NULL pointer as input, the NULL pointer
checking is unncessary. This patch just removes the NULL pointer checking
to make code simpler.

Signed-off-by: Coly Li <[email protected]>
Reviewed-by: Shenghui Wang <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
drivers/md/bcache/request.c