On Mon, Nov 05, 2018 at 08:08:53PM -0800, Darrick J. Wong wrote: > 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) { This comment really belongs in the previous patch. And, with that, I think this can be merged totally into the previous patch. Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx