diff options
author | Christoph Hellwig <hch@lst.de> | 2016-10-20 04:52:00 (GMT) |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2016-10-20 04:52:00 (GMT) |
commit | 62c5ac89de7d5eecdbaa94ca3d554b0bd41578b1 (patch) | |
tree | 2011cb226212a9a591577a6bb1ff1b276a00adfc /fs/xfs/xfs_reflink.c | |
parent | 0a0af28cad9a43d90f13c2047bd8ee3d4cffb7f3 (diff) | |
download | linux-62c5ac89de7d5eecdbaa94ca3d554b0bd41578b1.tar.xz |
xfs: handle "raw" delayed extents xfs_reflink_trim_around_shared
Delalloc extents in the extent list contain the number of reserved
indirect blocks in their startblock value and don't use the magic
DELAYSTARTBLOCK constant. Ensure that xfs_reflink_trim_around_shared
handles them properly by checking for isnullstartblock().
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_reflink.c')
-rw-r--r-- | fs/xfs/xfs_reflink.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/xfs/xfs_reflink.c b/fs/xfs/xfs_reflink.c index 6592daa..6c4c215 100644 --- a/fs/xfs/xfs_reflink.c +++ b/fs/xfs/xfs_reflink.c @@ -182,7 +182,8 @@ xfs_reflink_trim_around_shared( if (!xfs_is_reflink_inode(ip) || ISUNWRITTEN(irec) || irec->br_startblock == HOLESTARTBLOCK || - irec->br_startblock == DELAYSTARTBLOCK) { + irec->br_startblock == DELAYSTARTBLOCK || + isnullstartblock(irec->br_startblock)) { *shared = false; return 0; } |