xfs: standardize ondisk to incore conversion for bmap btrees
Fix all xfs_bmbt_disk_get_all callsites to call xfs_bmap_validate_extent and bubble up corruption reports. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Dave Chinner <dchinner@redhat.com>
This commit is contained in:
parent
c4e34172da
commit
69010fe3ac
|
@ -471,6 +471,12 @@ xchk_bmapbt_rec(
|
|||
return 0;
|
||||
|
||||
xfs_bmbt_disk_get_all(&rec->bmbt, &irec);
|
||||
if (xfs_bmap_validate_extent(ip, info->whichfork, &irec) != NULL) {
|
||||
xchk_fblock_set_corrupt(bs->sc, info->whichfork,
|
||||
irec.br_startoff);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (!xfs_iext_lookup_extent(ip, ifp, irec.br_startoff, &icur,
|
||||
&iext_irec) ||
|
||||
irec.br_startoff != iext_irec.br_startoff ||
|
||||
|
|
Loading…
Reference in New Issue