xfs: hoist freeing of rt data fork extent mappings
authorDarrick J. Wong <djwong@kernel.org>
Mon, 16 Oct 2023 16:16:22 +0000 (09:16 -0700)
committerDarrick J. Wong <djwong@kernel.org>
Tue, 17 Oct 2023 15:40:54 +0000 (08:40 -0700)
commit6c664484337b37fa0cf6e958f4019623e30d40f7
tree093f4bec2c47255c7bf232267bd9be6daf520a27
parent9488062805943c2d63350d3ef9e4dc093799789a
xfs: hoist freeing of rt data fork extent mappings

Currently, xfs_bmap_del_extent_real contains a bunch of code to convert
the physical extent of a data fork mapping for a realtime file into rt
extents and pass that to the rt extent freeing function.  Since the
details of this aren't needed when CONFIG_XFS_REALTIME=n, move it to
xfs_rtbitmap.c to reduce code size when realtime isn't enabled.

This will (one day) enable realtime EFIs to reuse the same
unit-converting call with less code duplication.

Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
fs/xfs/libxfs/xfs_bmap.c
fs/xfs/libxfs/xfs_rtbitmap.c
fs/xfs/xfs_rtalloc.h