diff options
author | Darrick J. Wong <djwong@kernel.org> | 2023-10-16 18:21:47 +0200 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2023-10-18 01:24:22 +0200 |
commit | 13928113fc5b5e79c91796290a99ed991ac0efe2 (patch) | |
tree | d067e90ba202b390abff8abebe764ea3ea56706c /fs/xfs/libxfs/xfs_bmap.c | |
parent | xfs: make sure maxlen is still congruent with prod when rounding down (diff) | |
download | linux-13928113fc5b5e79c91796290a99ed991ac0efe2.tar.xz linux-13928113fc5b5e79c91796290a99ed991ac0efe2.zip |
xfs: move the xfs_rtbitmap.c declarations to xfs_rtbitmap.h
Move all the declarations for functionality in xfs_rtbitmap.c into a
separate xfs_rtbitmap.h header file.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/libxfs/xfs_bmap.c')
-rw-r--r-- | fs/xfs/libxfs/xfs_bmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_bmap.c b/fs/xfs/libxfs/xfs_bmap.c index 617cc7e78e38..a47da8d3d1bc 100644 --- a/fs/xfs/libxfs/xfs_bmap.c +++ b/fs/xfs/libxfs/xfs_bmap.c @@ -21,7 +21,7 @@ #include "xfs_bmap.h" #include "xfs_bmap_util.h" #include "xfs_bmap_btree.h" -#include "xfs_rtalloc.h" +#include "xfs_rtbitmap.h" #include "xfs_errortag.h" #include "xfs_error.h" #include "xfs_quota.h" |