diff options
author | Xin Yin <yinxin.x@bytedance.com> | 2021-12-21 05:28:39 +0300 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2022-01-10 21:25:44 +0300 |
commit | 5e4d0eba1ccaf19f93222abdeda5a368be141785 (patch) | |
tree | 540e5c5dbdf551d1dece0a8e2ac6d3893866817d /fs/ext4/extents.c | |
parent | d1199b94474ac4513b8491a4b751a8a466e1886b (diff) | |
download | linux-5e4d0eba1ccaf19f93222abdeda5a368be141785.tar.xz |
ext4: fix fast commit may miss tracking range for FALLOC_FL_ZERO_RANGE
when call falloc with FALLOC_FL_ZERO_RANGE, to set an range to unwritten,
which has been already initialized. If the range is align to blocksize,
fast commit will not track range for this change.
Also track range for unwritten range in ext4_map_blocks().
Signed-off-by: Xin Yin <yinxin.x@bytedance.com>
Reviewed-by: Harshad Shirwadkar <harshadshirwadkar@gmail.com>
Link: https://lore.kernel.org/r/20211221022839.374606-1-yinxin.x@bytedance.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Cc: stable@kernel.org
Diffstat (limited to 'fs/ext4/extents.c')
-rw-r--r-- | fs/ext4/extents.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index 38111ea18ae1..c3e76a5de661 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -4647,8 +4647,6 @@ static long ext4_zero_range(struct file *file, loff_t offset, ret = ext4_mark_inode_dirty(handle, inode); if (unlikely(ret)) goto out_handle; - ext4_fc_track_range(handle, inode, offset >> inode->i_sb->s_blocksize_bits, - (offset + len - 1) >> inode->i_sb->s_blocksize_bits); /* Zero out partial block at the edges of the range */ ret = ext4_zero_partial_blocks(handle, inode, offset, len); if (ret >= 0) |