On Tue, Oct 03, 2017 at 01:42:23PM -0700, Darrick J. Wong wrote: > From: Darrick J. Wong <darrick.wong@xxxxxxxxxx> > +/* Scrub a refcountbt record. */ > +STATIC int > +xfs_scrub_refcountbt_helper( > + struct xfs_scrub_btree *bs, > + union xfs_btree_rec *rec) > +{ > + struct xfs_mount *mp = bs->cur->bc_mp; > + struct xfs_agf *agf; > + struct xfs_refcount_irec irec; > + unsigned long long rec_end; > + xfs_agblock_t eoag; > + bool has_cowflag; > + int error = 0; > + > + irec.rc_startblock = be32_to_cpu(rec->refc.rc_startblock); > + irec.rc_blockcount = be32_to_cpu(rec->refc.rc_blockcount); > + irec.rc_refcount = be32_to_cpu(rec->refc.rc_refcount); > + agf = XFS_BUF_TO_AGF(bs->sc->sa.agf_bp); > + eoag = be32_to_cpu(agf->agf_length); > + > + /* Only CoW records can have refcount == 1. */ > + has_cowflag = !!(irec.rc_startblock & XFS_REFC_COW_START); > + if ((irec.rc_refcount == 1 && !has_cowflag) || > + (irec.rc_refcount != 1 && has_cowflag)) > + xfs_scrub_btree_set_corrupt(bs->sc, bs->cur, 0); > + > + /* Check the extent. */ > + irec.rc_startblock &= ~XFS_REFC_COW_START; > + rec_end = (unsigned long long)irec.rc_startblock + irec.rc_blockcount; > + if (irec.rc_startblock >= mp->m_sb.sb_agblocks || > + irec.rc_startblock >= eoag || > + irec.rc_blockcount == 0 || > + rec_end > mp->m_sb.sb_agblocks || > + rec_end > eoag || For the (broken) record... > + irec.rc_refcount < 1) Unsigned variable, so it seems to me that irec.rc_refcount == 0 would be a more correct check. Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html