[PATCH] Really ignore kmem_cache_destroy return value
[deliverable/linux.git] / fs / fat / inode.c
index bc4da3a48c8c33d5057d89f5c7ac837b876fdb68..d3015119043423845c6ef43e00df335424ee0922 100644 (file)
@@ -528,8 +528,7 @@ static int __init fat_init_inodecache(void)
 
 static void __exit fat_destroy_inodecache(void)
 {
-       if (kmem_cache_destroy(fat_inode_cachep))
-               printk(KERN_INFO "fat_inode_cache: not all structures were freed\n");
+       kmem_cache_destroy(fat_inode_cachep);
 }
 
 static int fat_remount(struct super_block *sb, int *flags, char *data)
This page took 0.024956 seconds and 5 git commands to generate.