jfs: remove redundant dquot_initialize() in jfs_evict_inode()

We don't need to call dquot_initialize() twice in jfs_evict_inode(),
remove one of them for cleanup.

Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
This commit is contained in:
Chao Yu 2018-09-17 15:12:21 +08:00 committed by Dave Kleikamp
parent 02645bcdfc
commit 1390643d1d

View File

@ -166,7 +166,6 @@ void jfs_evict_inode(struct inode *inode)
/* /*
* Free the inode from the quota allocation. * Free the inode from the quota allocation.
*/ */
dquot_initialize(inode);
dquot_free_inode(inode); dquot_free_inode(inode);
} }
} else { } else {