On Sat, Oct 15, 2016 at 10:52:31AM +0200, Christoph Hellwig wrote: > Split out two helpers for deleting delayed or real extents from the COW fork. > This allows to call them directly from xfs_reflink_cow_end_io once that > function is refactored to iterate the extent tree. It will also allow > to reuse the delalloc deletion from xfs_bunmapi in the future. > > Signed-off-by: Christoph Hellwig <hch@xxxxxx> > Reviewed-by: Brian Foster <bfoster@xxxxxxxxxx> > --- > fs/xfs/libxfs/xfs_bmap.c | 374 ++++++++++++++++++++++++++++------------------- > fs/xfs/libxfs/xfs_bmap.h | 5 + > fs/xfs/xfs_reflink.c | 5 - > 3 files changed, 225 insertions(+), 159 deletions(-) > ... > diff --git a/fs/xfs/xfs_reflink.c b/fs/xfs/xfs_reflink.c > index 5d230ea..f33f737 100644 > --- a/fs/xfs/xfs_reflink.c > +++ b/fs/xfs/xfs_reflink.c > @@ -535,11 +535,6 @@ xfs_reflink_cancel_cow_blocks( > trace_xfs_reflink_cancel_cow(ip, &irec); > > if (irec.br_startblock == DELAYSTARTBLOCK) { > - /* Free a delayed allocation. */ > - xfs_mod_fdblocks(ip->i_mount, irec.br_blockcount, > - false); Don't we still need this call, or am I missing where it exists elsewhere? Also, IIRC we might need to make sure this occurs after xfs_bunmapi_cow() since the latter can steal blocks from the deleted extent for indirect blocks (e.g., where we call xfs_bmap_split_indlen()). Brian > - ip->i_delayed_blks -= irec.br_blockcount; > - > /* Remove the mapping from the CoW fork. */ > error = xfs_bunmapi_cow(ip, &irec); > if (error) > -- > 2.1.4 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-xfs" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html