From: Darrick J. Wong <djwong@xxxxxxxxxx> Implement the bare minimum needed to avoid xfs_check regressions when realtime groups are enabled. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> --- db/check.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/db/check.c b/db/check.c index 4f4bff58e22..d3d22f0531c 100644 --- a/db/check.c +++ b/db/check.c @@ -56,6 +56,7 @@ typedef enum { DBM_BTREFC, DBM_RLDATA, DBM_COWDATA, + DBM_RTSB, DBM_NDBM } dbm_t; @@ -187,6 +188,7 @@ static const char *typename[] = { "btrefcnt", "rldata", "cowdata", + "rtsb", NULL }; @@ -809,6 +811,23 @@ blockfree_f( return 0; } +static void +rtgroups_init( + struct xfs_mount *mp) +{ + xfs_rgnumber_t rgno; + + if (!xfs_has_rtgroups(mp)) + return; + + for (rgno = 0; rgno < mp->m_sb.sb_rgcount; rgno++) { + xfs_rtblock_t rtbno; + + rtbno = xfs_rgbno_to_rtb(mp, rgno, 0); + set_rdbmap(rtbno, mp->m_sb.sb_rextsize, DBM_RTSB); + } +} + /* * Check consistency of xfs filesystem contents. */ @@ -843,6 +862,7 @@ blockget_f( "filesystem.\n")); } } + rtgroups_init(mp); if (blist_size) { xfree(blist); blist = NULL;