summaryrefslogtreecommitdiffstats
path: root/fs/xfs/libxfs/xfs_rtbitmap.h
diff options
context:
space:
mode:
authorDarrick J. Wong <djwong@kernel.org>2023-10-16 09:46:08 -0700
committerDarrick J. Wong <djwong@kernel.org>2023-10-17 17:45:37 -0700
commitadd3cddaea509071d01bf1d34df0d05db1a93a07 (patch)
tree7e3c3bc90190676a709453b5f46e155fdcbc1d41 /fs/xfs/libxfs/xfs_rtbitmap.h
parent90d98a6ada1da0f8797ff3f5adafd175dd8c0a81 (diff)
downloadlinux-stable-add3cddaea509071d01bf1d34df0d05db1a93a07.tar.gz
linux-stable-add3cddaea509071d01bf1d34df0d05db1a93a07.tar.bz2
linux-stable-add3cddaea509071d01bf1d34df0d05db1a93a07.zip
xfs: remove XFS_BLOCKWSIZE and XFS_BLOCKWMASK macros
Remove these trivial macros since they're not even part of the ondisk format. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/libxfs/xfs_rtbitmap.h')
-rw-r--r--fs/xfs/libxfs/xfs_rtbitmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_rtbitmap.h b/fs/xfs/libxfs/xfs_rtbitmap.h
index 5c4325702cb1..a382b38c6c30 100644
--- a/fs/xfs/libxfs/xfs_rtbitmap.h
+++ b/fs/xfs/libxfs/xfs_rtbitmap.h
@@ -146,7 +146,7 @@ xfs_rtx_to_rbmword(
struct xfs_mount *mp,
xfs_rtxnum_t rtx)
{
- return (rtx >> XFS_NBWORDLOG) & XFS_BLOCKWMASK(mp);
+ return (rtx >> XFS_NBWORDLOG) & (mp->m_blockwsize - 1);
}
/* Convert a file block offset in the rt bitmap file to an rt extent number. */