aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs/dir.c
diff options
context:
space:
mode:
authorSahitya Tummala <stummala@codeaurora.org>2018-10-05 10:47:39 +0530
committerJaegeuk Kim <jaegeuk@kernel.org>2018-10-16 09:37:00 -0700
commitc75f2feb80eb8cbb579a3677dce4c165f3102a04 (patch)
tree45eb0768b01ec865e008f4c2d8fd8c6820b6f8a4 /fs/f2fs/dir.c
parentf2fs: remove unneeded disable_nat_bits() (diff)
downloadlinux-dev-c75f2feb80eb8cbb579a3677dce4c165f3102a04.tar.xz
linux-dev-c75f2feb80eb8cbb579a3677dce4c165f3102a04.zip
f2fs: do not update REQ_TIME in case of error conditions
The REQ_TIME should be updated only in case of success cases as followed at all other places in the file system. Signed-off-by: Sahitya Tummala <stummala@codeaurora.org> Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/dir.c')
-rw-r--r--fs/f2fs/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/dir.c b/fs/f2fs/dir.c
index c77a58038709..e02db5db62dc 100644
--- a/fs/f2fs/dir.c
+++ b/fs/f2fs/dir.c
@@ -655,9 +655,9 @@ int f2fs_do_tmpfile(struct inode *inode, struct inode *dir)
f2fs_put_page(page, 1);
clear_inode_flag(inode, FI_NEW_INODE);
+ f2fs_update_time(F2FS_I_SB(inode), REQ_TIME);
fail:
up_write(&F2FS_I(inode)->i_sem);
- f2fs_update_time(F2FS_I_SB(inode), REQ_TIME);
return err;
}