summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYuezhang Mo <Yuezhang.Mo@sony.com>2024-03-31 23:38:17 +0900
committerNamjae Jeon <linkinjeon@kernel.org>2024-03-31 23:39:29 +0900
commitd7ed5232f0f16181506373d73e711190d5e0c868 (patch)
treeaedf559f292fb84c61a64eac6e1df0f4d9f6fab0
parent4cece764965020c22cff7665b18a012006359095 (diff)
downloadlinux-d7ed5232f0f16181506373d73e711190d5e0c868.tar.gz
linux-d7ed5232f0f16181506373d73e711190d5e0c868.tar.bz2
linux-d7ed5232f0f16181506373d73e711190d5e0c868.zip
exfat: fix timing of synchronizing bitmap and inode
Commit(f55c096f62f1 exfat: do not zero the extended part) changed the timing of synchronizing bitmap and inode in exfat_cont_expand(). The change caused xfstests generic/013 to fail if 'dirsync' or 'sync' is enabled. So this commit restores the timing. Fixes: f55c096f62f1 ("exfat: do not zero the extended part") Signed-off-by: Yuezhang Mo <Yuezhang.Mo@sony.com> Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
-rw-r--r--fs/exfat/file.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/exfat/file.c b/fs/exfat/file.c
index cc00f1a7a1e1..9adfc38ca7da 100644
--- a/fs/exfat/file.c
+++ b/fs/exfat/file.c
@@ -51,7 +51,7 @@ static int exfat_cont_expand(struct inode *inode, loff_t size)
clu.flags = ei->flags;
ret = exfat_alloc_cluster(inode, new_num_clusters - num_clusters,
- &clu, IS_DIRSYNC(inode));
+ &clu, inode_needs_sync(inode));
if (ret)
return ret;
@@ -77,12 +77,11 @@ out:
ei->i_size_aligned = round_up(size, sb->s_blocksize);
ei->i_size_ondisk = ei->i_size_aligned;
inode->i_blocks = round_up(size, sbi->cluster_size) >> 9;
+ mark_inode_dirty(inode);
- if (IS_DIRSYNC(inode))
+ if (IS_SYNC(inode))
return write_inode_now(inode, 1);
- mark_inode_dirty(inode);
-
return 0;
free_clu: