diff options
Diffstat (limited to 'fs/xfs/xfs_log_cil.c')
| -rw-r--r-- | fs/xfs/xfs_log_cil.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_log_cil.c b/fs/xfs/xfs_log_cil.c index a6e3e71e3f8..601ccf02618 100644 --- a/fs/xfs/xfs_log_cil.c +++ b/fs/xfs/xfs_log_cil.c @@ -338,8 +338,8 @@ xlog_cil_committed(  	xfs_trans_committed_bulk(ctx->cil->xc_log->l_ailp, ctx->lv_chain,  					ctx->start_lsn, abort); -	xfs_alloc_busy_sort(&ctx->busy_extents); -	xfs_alloc_busy_clear(mp, &ctx->busy_extents, +	xfs_extent_busy_sort(&ctx->busy_extents); +	xfs_extent_busy_clear(mp, &ctx->busy_extents,  			     (mp->m_flags & XFS_MOUNT_DISCARD) && !abort);  	spin_lock(&ctx->cil->xc_cil_lock); @@ -352,7 +352,7 @@ xlog_cil_committed(  		ASSERT(mp->m_flags & XFS_MOUNT_DISCARD);  		xfs_discard_extents(mp, &ctx->busy_extents); -		xfs_alloc_busy_clear(mp, &ctx->busy_extents, false); +		xfs_extent_busy_clear(mp, &ctx->busy_extents, false);  	}  	kmem_free(ctx);  |