Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e4e76272 authored by Chao Yu's avatar Chao Yu Committed by Jaegeuk Kim
Browse files

f2fs: fix inline data/dentry stat number leak



If we clear inline data/dentry flag in handle_failed_inode, we will fail
to decline the stat count of inline data/dentry in f2fs_evict_inode due
to no flag in inode. So remove the wrong clearing.

Signed-off-by: default avatarChao Yu <chao2.yu@samsung.com>
Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent f4c9c743
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -390,8 +390,6 @@ void handle_failed_inode(struct inode *inode)
	remove_inode_page(inode);

	set_inode_flag(F2FS_I(inode), FI_FREE_NID);
	clear_inode_flag(F2FS_I(inode), FI_INLINE_DATA);
	clear_inode_flag(F2FS_I(inode), FI_INLINE_DENTRY);
	f2fs_unlock_op(sbi);

	/* iput will drop the inode object */