diff options
Diffstat (limited to 'fs/xfs/xfs_iwalk.c')
| -rw-r--r-- | fs/xfs/xfs_iwalk.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_iwalk.c b/fs/xfs/xfs_iwalk.c index 01b55f03a102..730c8d48da28 100644 --- a/fs/xfs/xfs_iwalk.c +++ b/fs/xfs/xfs_iwalk.c @@ -268,7 +268,7 @@ xfs_iwalk_ag_start(  	/* Set up a fresh cursor and empty the inobt cache. */  	iwag->nr_recs = 0; -	error = xfs_ialloc_read_agi(pag, tp, agi_bpp); +	error = xfs_ialloc_read_agi(pag, tp, 0, agi_bpp);  	if (error)  		return error;  	*curpp = xfs_inobt_init_cursor(pag, tp, *agi_bpp); @@ -386,7 +386,7 @@ xfs_iwalk_run_callbacks(  	}  	/* ...and recreate the cursor just past where we left off. */ -	error = xfs_ialloc_read_agi(iwag->pag, iwag->tp, agi_bpp); +	error = xfs_ialloc_read_agi(iwag->pag, iwag->tp, 0, agi_bpp);  	if (error)  		return error;  	*curpp = xfs_inobt_init_cursor(iwag->pag, iwag->tp, *agi_bpp);  |