diff options
| author | Darrick J. Wong <[email protected]> | 2024-11-04 04:19:23 +0000 |
|---|---|---|
| committer | Darrick J. Wong <[email protected]> | 2024-11-05 21:38:40 +0000 |
| commit | 118895aa9513412b9077a8cae0bc63df8956f9b2 (patch) | |
| tree | debe45569c0578af77056953a0ce51f46f5e5fa3 /fs/xfs/xfs_rtalloc.c | |
| parent | xfs: export the geometry of realtime groups to userspace (diff) | |
| download | kernel-118895aa9513412b9077a8cae0bc63df8956f9b2.tar.gz kernel-118895aa9513412b9077a8cae0bc63df8956f9b2.zip | |
xfs: add block headers to realtime bitmap and summary blocks
Upgrade rtbitmap and rtsummary blocks to have self describing metadata
like most every other thing in XFS.
Signed-off-by: Darrick J. Wong <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Diffstat (limited to 'fs/xfs/xfs_rtalloc.c')
| -rw-r--r-- | fs/xfs/xfs_rtalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_rtalloc.c b/fs/xfs/xfs_rtalloc.c index abeedc848b3b..2baa8bed42ff 100644 --- a/fs/xfs/xfs_rtalloc.c +++ b/fs/xfs/xfs_rtalloc.c @@ -776,7 +776,7 @@ xfs_growfs_rt_nrblocks( struct xfs_mount *mp = rtg_mount(rtg); xfs_rfsblock_t step; - step = (bmbno + 1) * NBBY * mp->m_sb.sb_blocksize * rextsize; + step = (bmbno + 1) * mp->m_rtx_per_rbmblock * rextsize; if (xfs_has_rtgroups(mp)) { xfs_rfsblock_t rgblocks = mp->m_sb.sb_rgextents * rextsize; |
