summaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_reflink.c
diff options
context:
space:
mode:
authorDarrick J. Wong <djwong@kernel.org>2023-12-06 18:40:57 -0800
committerDarrick J. Wong <djwong@kernel.org>2023-12-06 18:45:18 -0800
commit4c88fef3af4a51c2cdba6a28237e98da4873e8dc (patch)
treefd2acaa34053ff148e582d366d58a14e779ac913 /fs/xfs/xfs_reflink.c
parent4dffb2cbb4839fd6f9bbac0b3fd06cc9015cbb9b (diff)
downloadlinux-4c88fef3af4a51c2cdba6a28237e98da4873e8dc.tar.gz
linux-4c88fef3af4a51c2cdba6a28237e98da4873e8dc.tar.bz2
linux-4c88fef3af4a51c2cdba6a28237e98da4873e8dc.zip
xfs: remove __xfs_free_extent_later
xfs_free_extent_later is a trivial helper, so remove it to reduce the amount of thinking required to understand the deferred freeing interface. This will make it easier to introduce automatic reaping of speculative allocations in the next patch. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Dave Chinner <dchinner@redhat.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/xfs_reflink.c')
-rw-r--r--fs/xfs/xfs_reflink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_reflink.c b/fs/xfs/xfs_reflink.c
index e5b62dc28466..d5ca8bcae65b 100644
--- a/fs/xfs/xfs_reflink.c
+++ b/fs/xfs/xfs_reflink.c
@@ -618,7 +618,7 @@ xfs_reflink_cancel_cow_blocks(
error = xfs_free_extent_later(*tpp, del.br_startblock,
del.br_blockcount, NULL,
- XFS_AG_RESV_NONE);
+ XFS_AG_RESV_NONE, false);
if (error)
break;