Commit 734781a9 authored by Chengguang Xu's avatar Chengguang Xu Committed by Martin Schwidefsky

s390/dasd: remove unnecessary condition check

kmem_cache_destroy() can handle NULL pointer correctly, so there is
no need to check NULL pointer before calling kmem_cache_destroy().
Signed-off-by: default avatarChengguang Xu <cgxu519@gmx.com>
Signed-off-by: default avatarJan Höppner <hoeppner@linux.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 55a5542a
...@@ -3309,10 +3309,8 @@ dasd_exit(void) ...@@ -3309,10 +3309,8 @@ dasd_exit(void)
dasd_proc_exit(); dasd_proc_exit();
#endif #endif
dasd_eer_exit(); dasd_eer_exit();
if (dasd_page_cache != NULL) { kmem_cache_destroy(dasd_page_cache);
kmem_cache_destroy(dasd_page_cache); dasd_page_cache = NULL;
dasd_page_cache = NULL;
}
dasd_gendisk_exit(); dasd_gendisk_exit();
dasd_devmap_exit(); dasd_devmap_exit();
if (dasd_debug_area != NULL) { if (dasd_debug_area != NULL) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment