ANDROID: sdcardfs: remove unneeded null check

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
This commit is contained in:
Daniel Rosenberg 2017-03-21 16:29:13 -07:00 committed by Artem Borisov
parent 1ff2bf9007
commit def7e34e8b
3 changed files with 3 additions and 6 deletions

View 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)

View file

@ -908,6 +908,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);
}

View 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);
}
/*