1
0
Fork 0

[PATCH] s390: free dasd slab cache

Free dasd slab cache on module unload.

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
hifive-unleashed-5.1
Horst Hummel 2005-07-27 11:45:03 -07:00 committed by Linus Torvalds
parent d61f6f3d8b
commit 6bb0e01081
1 changed files with 5 additions and 1 deletions

View File

@ -7,7 +7,7 @@
* Bugreports.to..: <Linux390@de.ibm.com> * Bugreports.to..: <Linux390@de.ibm.com>
* (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 1999-2001 * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 1999-2001
* *
* $Revision: 1.164 $ * $Revision: 1.165 $
*/ */
#include <linux/config.h> #include <linux/config.h>
@ -1740,6 +1740,10 @@ dasd_exit(void)
dasd_proc_exit(); dasd_proc_exit();
#endif #endif
dasd_ioctl_exit(); dasd_ioctl_exit();
if (dasd_page_cache != NULL) {
kmem_cache_destroy(dasd_page_cache);
dasd_page_cache = NULL;
}
dasd_gendisk_exit(); dasd_gendisk_exit();
dasd_devmap_exit(); dasd_devmap_exit();
devfs_remove("dasd"); devfs_remove("dasd");