aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/f2fs/dir.c
diff options
context:
space:
mode:
authorJaegeuk Kim <jaegeuk@kernel.org>2017-12-28 08:09:44 -0800
committerJaegeuk Kim <jaegeuk@kernel.org>2018-01-02 19:27:31 -0800
commit0a007b97aad6e1700ef5c3815d14e88192cc1124 (patch)
tree8c21d92988c5fa3fbf253a7c0792ac2cbc26f237 /fs/f2fs/dir.c
parentf2fs: return error during fill_super (diff)
downloadwireguard-linux-0a007b97aad6e1700ef5c3815d14e88192cc1124.tar.xz
wireguard-linux-0a007b97aad6e1700ef5c3815d14e88192cc1124.zip
f2fs: recover directory operations by fsync
This fixes generic/342 which doesn't recover renamed file which was fsynced before. It will be done via another fsync on newly created file. 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, 2 insertions, 0 deletions
diff --git a/fs/f2fs/dir.c b/fs/f2fs/dir.c
index 724304dc6143..f00b5ed8c011 100644
--- a/fs/f2fs/dir.c
+++ b/fs/f2fs/dir.c
@@ -713,6 +713,8 @@ void f2fs_delete_entry(struct f2fs_dir_entry *dentry, struct page *page,
f2fs_update_time(F2FS_I_SB(dir), REQ_TIME);
+ add_ino_entry(F2FS_I_SB(dir), dir->i_ino, TRANS_DIR_INO);
+
if (f2fs_has_inline_dentry(dir))
return f2fs_delete_inline_entry(dentry, page, dir, inode);