summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarrick J. Wong <djwong@kernel.org>2021-09-01 11:18:06 -0700
committerDarrick J. Wong <djwong@kernel.org>2021-12-15 17:29:19 -0800
commit0f1c785b274fd6c7c5212887f6d69b2f1e3a3b81 (patch)
tree10d356768767c92fe4581bbb26412160c45e3841
parente902d49510b092da0b4fa82a6b37e37493859da3 (diff)
xfs: remove xfs_trans_set_refcount_flagsrefcount-intent-cleanups_2021-12-15
Remove this single-use helper. Signed-off-by: Darrick J. Wong <djwong@kernel.org>
-rw-r--r--fs/xfs/xfs_refcount_item.c32
1 files changed, 12 insertions, 20 deletions
diff --git a/fs/xfs/xfs_refcount_item.c b/fs/xfs/xfs_refcount_item.c
index 93e4b47e2d14..c3f424564f16 100644
--- a/fs/xfs/xfs_refcount_item.c
+++ b/fs/xfs/xfs_refcount_item.c
@@ -277,25 +277,6 @@ xfs_refcount_update_diff_items(
XFS_FSB_TO_AGNO(mp, rb->ri_startblock);
}
-/* Set the phys extent flags for this reverse mapping. */
-static void
-xfs_trans_set_refcount_flags(
- struct xfs_phys_extent *refc,
- enum xfs_refcount_intent_type type)
-{
- refc->pe_flags = 0;
- switch (type) {
- case XFS_REFCOUNT_INCREASE:
- case XFS_REFCOUNT_DECREASE:
- case XFS_REFCOUNT_ALLOC_COW:
- case XFS_REFCOUNT_FREE_COW:
- refc->pe_flags |= type;
- break;
- default:
- ASSERT(0);
- }
-}
-
/* Log refcount updates in the intent item. */
STATIC void
xfs_refcount_update_log_item(
@@ -319,7 +300,18 @@ xfs_refcount_update_log_item(
ext = &cuip->cui_format.cui_extents[next_extent];
ext->pe_startblock = refc->ri_startblock;
ext->pe_len = refc->ri_blockcount;
- xfs_trans_set_refcount_flags(ext, refc->ri_type);
+ switch (refc->ri_type) {
+ case XFS_REFCOUNT_INCREASE:
+ case XFS_REFCOUNT_DECREASE:
+ case XFS_REFCOUNT_ALLOC_COW:
+ case XFS_REFCOUNT_FREE_COW:
+ ext->pe_flags = refc->ri_type;
+ break;
+ default:
+ ASSERT(0);
+ ext->pe_flags = 0;
+ break;
+ }
}
static struct xfs_log_item *