diff options
author | Darrick J. Wong <djwong@kernel.org> | 2023-12-07 03:40:57 +0100 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2023-12-07 03:45:18 +0100 |
commit | 4c88fef3af4a51c2cdba6a28237e98da4873e8dc (patch) | |
tree | fd2acaa34053ff148e582d366d58a14e779ac913 /fs/xfs/libxfs/xfs_alloc.c | |
parent | xfs: allow pausing of pending deferred work items (diff) | |
download | linux-4c88fef3af4a51c2cdba6a28237e98da4873e8dc.tar.xz 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/libxfs/xfs_alloc.c')
-rw-r--r-- | fs/xfs/libxfs/xfs_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_alloc.c b/fs/xfs/libxfs/xfs_alloc.c index 100ab5931b31..c35224ad9428 100644 --- a/fs/xfs/libxfs/xfs_alloc.c +++ b/fs/xfs/libxfs/xfs_alloc.c @@ -2523,7 +2523,7 @@ xfs_defer_agfl_block( * The list is maintained sorted (by block number). */ int -__xfs_free_extent_later( +xfs_free_extent_later( struct xfs_trans *tp, xfs_fsblock_t bno, xfs_filblks_t len, |