From: Jaegeuk Kim Date: Thu, 7 Jan 2016 21:52:34 +0000 (-0800) Subject: f2fs: remove redundant calls X-Git-Tag: Ubuntu-5.13.0-19.19~16590^2~9 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=2a4b8e9fab9cea45d90179d9ee8e718c5ed26457;p=mirror_ubuntu-jammy-kernel.git f2fs: remove redundant calls This patch removes redundant calls. Signed-off-by: Jaegeuk Kim --- diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c index e3d32f6b4b4f..69bc65fd862c 100644 --- a/fs/f2fs/file.c +++ b/fs/f2fs/file.c @@ -267,8 +267,6 @@ sync_nodes: if (need_inode_block_update(sbi, ino)) { mark_inode_dirty_sync(inode); f2fs_write_inode(inode, NULL); - - f2fs_balance_fs(sbi); goto sync_nodes; } @@ -484,7 +482,6 @@ int truncate_data_blocks_range(struct dnode_of_data *dn, int count) F2FS_I(dn->inode)) + ofs; f2fs_update_extent_cache_range(dn, fofs, 0, len); dec_valid_block_count(sbi, dn->inode, nr_free); - set_page_dirty(dn->node_page); sync_inode_page(dn); } dn->ofs_in_node = ofs;