f2fs: remove redundant set_page_dirty()
This patch remove redundant set_page_dirty in truncate_blocks Signed-off-by: Yunlei He <heyunlei@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
a3ebfe4fd8
commit
4fcf589ad4
|
@ -567,8 +567,7 @@ int truncate_blocks(struct inode *inode, u64 from, bool lock)
|
|||
}
|
||||
|
||||
if (f2fs_has_inline_data(inode)) {
|
||||
if (truncate_inline_inode(ipage, from))
|
||||
set_page_dirty(ipage);
|
||||
truncate_inline_inode(ipage, from);
|
||||
if (from == 0)
|
||||
clear_inode_flag(inode, FI_DATA_EXIST);
|
||||
f2fs_put_page(ipage, 1);
|
||||
|
|
Loading…
Reference in New Issue