/* scrub teardown will take care of sc->sa for us */
 }
 
+/*
+ * Calculate the ondisk superblock size in bytes given the feature set of the
+ * mounted filesystem (aka the primary sb).  This is subtlely different from
+ * the logic in xfs_repair, which computes the size of a secondary sb given the
+ * featureset listed in the secondary sb.
+ */
+STATIC size_t
+xchk_superblock_ondisk_size(
+       struct xfs_mount        *mp)
+{
+       if (xfs_has_metadir(mp))
+               return offsetofend(struct xfs_dsb, sb_pad);
+       if (xfs_has_metauuid(mp))
+               return offsetofend(struct xfs_dsb, sb_meta_uuid);
+       if (xfs_has_crc(mp))
+               return offsetofend(struct xfs_dsb, sb_lsn);
+       if (xfs_sb_version_hasmorebits(&mp->m_sb))
+               return offsetofend(struct xfs_dsb, sb_bad_features2);
+       if (xfs_has_logv2(mp))
+               return offsetofend(struct xfs_dsb, sb_logsunit);
+       if (xfs_has_sector(mp))
+               return offsetofend(struct xfs_dsb, sb_logsectsize);
+       /* only support dirv2 or more recent */
+       return offsetofend(struct xfs_dsb, sb_dirblklog);
+}
+
 /*
  * Scrub the filesystem superblock.
  *
        struct xfs_buf          *bp;
        struct xfs_dsb          *sb;
        struct xfs_perag        *pag;
+       size_t                  sblen;
        xfs_agnumber_t          agno;
        uint32_t                v2_ok;
        __be32                  features_mask;
        }
 
        /* Everything else must be zero. */
-       if (memchr_inv(sb + 1, 0,
-                       BBTOB(bp->b_length) - sizeof(struct xfs_dsb)))
+       sblen = xchk_superblock_ondisk_size(mp);
+       if (memchr_inv((char *)sb + sblen, 0, BBTOB(bp->b_length) - sblen))
                xchk_block_set_corrupt(sc, bp);
 
        xchk_superblock_xref(sc, bp);