From: Darrick J. Wong <darrick.wong@xxxxxxxxxx> Change the name of xchk_iallocbt_check_freemask so that it represents what the function actually does. Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> --- fs/xfs/scrub/ialloc.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/fs/xfs/scrub/ialloc.c b/fs/xfs/scrub/ialloc.c index 645b248faa80..10c3aaefc2a3 100644 --- a/fs/xfs/scrub/ialloc.c +++ b/fs/xfs/scrub/ialloc.c @@ -305,9 +305,13 @@ xchk_iallocbt_check_cluster( return error; } -/* Make sure the free mask is consistent with what the inodes think. */ +/* + * For all the inode clusters that could map to this inobt record, make sure + * that the holemask makes sense and that the allocation status of each inode + * matches the freemask. + */ STATIC int -xchk_iallocbt_check_freemask( +xchk_iallocbt_check_clusters( struct xchk_btree *bs, struct xchk_iallocbt *iabt, struct xfs_inobt_rec_incore *irec) @@ -315,6 +319,13 @@ xchk_iallocbt_check_freemask( unsigned int chunk_ioff; int error = 0; + /* + * For the common case where this inobt record maps to multiple inode + * clusters this will call _check_cluster for each cluster. + * + * For the case that multiple inobt records map to a single cluster, + * this will call _check_cluster once. + */ for (chunk_ioff = 0; chunk_ioff < XFS_INODES_PER_CHUNK; chunk_ioff += iabt->inodes_per_cluster) { @@ -461,7 +472,7 @@ xchk_iallocbt_rec( xchk_btree_set_corrupt(bs->sc, bs->cur, 0); check_freemask: - error = xchk_iallocbt_check_freemask(bs, iabt, &irec); + error = xchk_iallocbt_check_clusters(bs, iabt, &irec); if (error) goto out;