diff options
Diffstat (limited to 'fs/xfs/xfs_bmap_btree.c')
| -rw-r--r-- | fs/xfs/xfs_bmap_btree.c | 10 | 
1 files changed, 7 insertions, 3 deletions
| diff --git a/fs/xfs/xfs_bmap_btree.c b/fs/xfs/xfs_bmap_btree.c index 3f1383d160e..bea44709afb 100644 --- a/fs/xfs/xfs_bmap_btree.c +++ b/fs/xfs/xfs_bmap_btree.c @@ -2754,7 +2754,7 @@ xfs_bmbt_update(  }  /* - * Check an extent list, which has just been read, for + * Check extent records, which have just been read, for   * any bit in the extent flag field. ASSERT on debug   * kernels, as this condition should not occur.   * Return an error condition (1) if any flags found, @@ -2763,10 +2763,14 @@ xfs_bmbt_update(  int  xfs_check_nostate_extents( -	xfs_bmbt_rec_t		*ep, +	xfs_ifork_t		*ifp, +	xfs_extnum_t		idx,  	xfs_extnum_t		num)  { -	for (; num > 0; num--, ep++) { +	xfs_bmbt_rec_t		*ep; + +	for (; num > 0; num--, idx++) { +		ep = xfs_iext_get_ext(ifp, idx);  		if ((ep->l0 >>  		     (64 - BMBT_EXNTFLAG_BITLEN)) != 0) {  			ASSERT(0); | 
