OSDN Git Service

ANDROID: sdcardfs: remove unneeded null check
authorDaniel Rosenberg <drosen@google.com>
Tue, 21 Mar 2017 23:29:13 +0000 (16:29 -0700)
committerAmit Pundir <amit.pundir@linaro.org>
Tue, 14 Aug 2018 12:17:11 +0000 (17:47 +0530)
As pointed out by checkpatch, these functions already
handle null inputs, so the checks are not needed.

Signed-off-by: Daniel Rosenberg <drosen@google.com>
Bug: 35331000
Change-Id: I189342f032dfcefee36b27648bb512488ad61d20

fs/sdcardfs/lookup.c
fs/sdcardfs/packagelist.c
fs/sdcardfs/super.c

index 6b450c4..6de2747 100644 (file)
@@ -36,8 +36,7 @@ int sdcardfs_init_dentry_cache(void)
 
 void sdcardfs_destroy_dentry_cache(void)
 {
-       if (sdcardfs_dentry_cachep)
-               kmem_cache_destroy(sdcardfs_dentry_cachep);
+       kmem_cache_destroy(sdcardfs_dentry_cachep);
 }
 
 void free_dentry_private_data(struct dentry *dentry)
index 3df39a7..cadb5fa 100644 (file)
@@ -889,6 +889,5 @@ void packagelist_exit(void)
 {
        configfs_sdcardfs_exit();
        packagelist_destroy();
-       if (hashtable_entry_cachep)
-               kmem_cache_destroy(hashtable_entry_cachep);
+       kmem_cache_destroy(hashtable_entry_cachep);
 }
index a4629f2..7d3c331 100644 (file)
@@ -222,8 +222,7 @@ int sdcardfs_init_inode_cache(void)
 /* sdcardfs inode cache destructor */
 void sdcardfs_destroy_inode_cache(void)
 {
-       if (sdcardfs_inode_cachep)
-               kmem_cache_destroy(sdcardfs_inode_cachep);
+       kmem_cache_destroy(sdcardfs_inode_cachep);
 }
 
 /*