diff options
author | 2024-12-21 08:38:28 +0000 | |
---|---|---|
committer | 2025-03-03 08:16:44 -0700 | |
commit | 012482b3308a49a84c2a7df08218dd4ad081e1da (patch) | |
tree | 6bccb1d5d02040be5aca0c8e0620d93e6908a810 | |
parent | xfs: factor out a xfs_rt_check_size helper (diff) | |
download | wireguard-linux-012482b3308a49a84c2a7df08218dd4ad081e1da.tar.xz wireguard-linux-012482b3308a49a84c2a7df08218dd4ad081e1da.zip |
xfs: add a rtg_blocks helper
Shortcut dereferencing the xg_block_count field in the generic group
structure.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
-rw-r--r-- | fs/xfs/libxfs/xfs_rtgroup.c | 2 | ||||
-rw-r--r-- | fs/xfs/libxfs/xfs_rtgroup.h | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_rtgroup.c b/fs/xfs/libxfs/xfs_rtgroup.c index d84d32f1b48f..97aad8967149 100644 --- a/fs/xfs/libxfs/xfs_rtgroup.c +++ b/fs/xfs/libxfs/xfs_rtgroup.c @@ -270,7 +270,7 @@ xfs_rtgroup_get_geometry( /* Fill out form. */ memset(rgeo, 0, sizeof(*rgeo)); rgeo->rg_number = rtg_rgno(rtg); - rgeo->rg_length = rtg_group(rtg)->xg_block_count; + rgeo->rg_length = rtg_blocks(rtg); xfs_rtgroup_geom_health(rtg, rgeo); return 0; } diff --git a/fs/xfs/libxfs/xfs_rtgroup.h b/fs/xfs/libxfs/xfs_rtgroup.h index 03f39d4e43fc..9c7e03f913cb 100644 --- a/fs/xfs/libxfs/xfs_rtgroup.h +++ b/fs/xfs/libxfs/xfs_rtgroup.h @@ -66,6 +66,11 @@ static inline xfs_rgnumber_t rtg_rgno(const struct xfs_rtgroup *rtg) return rtg->rtg_group.xg_gno; } +static inline xfs_rgblock_t rtg_blocks(const struct xfs_rtgroup *rtg) +{ + return rtg->rtg_group.xg_block_count; +} + static inline struct xfs_inode *rtg_bitmap(const struct xfs_rtgroup *rtg) { return rtg->rtg_inodes[XFS_RTGI_BITMAP]; |