xfs: refactor dfops init to attach to transaction
Most callers of xfs_defer_init() immediately attach the dfops structure to a transaction. Add a transaction parameter to eliminate much of this boilerplate code. This also helps self-document the fact that many codepaths now expect a dfops pointer implicitly via xfs_trans->t_dfops. Signed-off-by: Brian Foster <bfoster@redhat.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
This commit is contained in:
committed by
Darrick J. Wong
parent
d5669ed581
commit
bcd2c9f335
@@ -1691,8 +1691,7 @@ xfs_refcount_recover_cow_leftovers(
|
||||
trace_xfs_refcount_recover_extent(mp, agno, &rr->rr_rrec);
|
||||
|
||||
/* Free the orphan record */
|
||||
xfs_defer_init(&dfops, &fsb);
|
||||
tp->t_dfops = &dfops;
|
||||
xfs_defer_init(tp, &dfops, &fsb);
|
||||
agbno = rr->rr_rrec.rc_startblock - XFS_REFC_COW_START;
|
||||
fsb = XFS_AGB_TO_FSB(mp, agno, agbno);
|
||||
error = xfs_refcount_free_cow_extent(mp, tp->t_dfops, fsb,
|
||||
|
||||
Reference in New Issue
Block a user