[PATCH] Really ignore kmem_cache_destroy return value
[deliverable/linux.git] / fs / bfs / inode.c
index 3e4d6c767b9b381e00e5dceab61a5b4ed9e5e3b5..8fc2e8e49dbe37172dc591a13da6c7876a9ead5e 100644 (file)
@@ -268,8 +268,7 @@ static int init_inodecache(void)
 
 static void destroy_inodecache(void)
 {
-       if (kmem_cache_destroy(bfs_inode_cachep))
-               printk(KERN_INFO "bfs_inode_cache: not all structures were freed\n");
+       kmem_cache_destroy(bfs_inode_cachep);
 }
 
 static struct super_operations bfs_sops = {
This page took 0.023551 seconds and 5 git commands to generate.