diff options
Diffstat (limited to 'fs/xfs/libxfs/xfs_bmap.c')
| -rw-r--r-- | fs/xfs/libxfs/xfs_bmap.c | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/fs/xfs/libxfs/xfs_bmap.c b/fs/xfs/libxfs/xfs_bmap.c index fef35696adb7..30c931b38853 100644 --- a/fs/xfs/libxfs/xfs_bmap.c +++ b/fs/xfs/libxfs/xfs_bmap.c @@ -574,7 +574,8 @@ xfs_bmap_btree_to_extents(  		return error;  	xfs_rmap_ino_bmbt_owner(&oinfo, ip->i_ino, whichfork); -	error = xfs_free_extent_later(cur->bc_tp, cbno, 1, &oinfo); +	error = xfs_free_extent_later(cur->bc_tp, cbno, 1, &oinfo, +			XFS_AG_RESV_NONE);  	if (error)  		return error; @@ -5236,8 +5237,9 @@ xfs_bmap_del_extent_real(  		} else {  			error = __xfs_free_extent_later(tp, del->br_startblock,  					del->br_blockcount, NULL, -					(bflags & XFS_BMAPI_NODISCARD) || -					del->br_state == XFS_EXT_UNWRITTEN); +					XFS_AG_RESV_NONE, +					((bflags & XFS_BMAPI_NODISCARD) || +					del->br_state == XFS_EXT_UNWRITTEN));  			if (error)  				goto done;  		}  |