diff options
author | Darrick J. Wong <djwong@kernel.org> | 2024-02-22 21:45:00 +0100 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2024-02-22 21:45:00 +0100 |
commit | 6c8127e93e3ac9c2cf6a13b885dd2d057b7e7d50 (patch) | |
tree | 4508d412726e597da37425a8b1f472c195381fdf | |
parent | xfs: support deferred bmap updates on the attr fork (diff) | |
download | linux-6c8127e93e3ac9c2cf6a13b885dd2d057b7e7d50.tar.xz linux-6c8127e93e3ac9c2cf6a13b885dd2d057b7e7d50.zip |
xfs: xfs_bmap_finish_one should map unwritten extents properly
The deferred bmap work state and the log item can transmit unwritten
state, so the XFS_BMAP_MAP handler must map in extents with that
unwritten state.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
-rw-r--r-- | fs/xfs/libxfs/xfs_bmap.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/xfs/libxfs/xfs_bmap.c b/fs/xfs/libxfs/xfs_bmap.c index 8d62fd626be5..d78e02a3b4d6 100644 --- a/fs/xfs/libxfs/xfs_bmap.c +++ b/fs/xfs/libxfs/xfs_bmap.c @@ -6245,6 +6245,8 @@ xfs_bmap_finish_one( switch (bi->bi_type) { case XFS_BMAP_MAP: + if (bi->bi_bmap.br_state == XFS_EXT_UNWRITTEN) + flags |= XFS_BMAPI_PREALLOC; error = xfs_bmapi_remap(tp, bi->bi_owner, bmap->br_startoff, bmap->br_blockcount, bmap->br_startblock, flags); |