diff options
author | 2024-07-02 11:23:07 -0700 | |
---|---|---|
committer | 2024-07-02 11:37:06 -0700 | |
commit | 886f11c797722650d98c554b28e66f12317a33e4 (patch) | |
tree | 36af135ad375906139c66f036800eede2257683a /fs/xfs/libxfs/xfs_refcount.h | |
parent | xfs: pass btree cursors to refcount btree tracepoints (diff) | |
download | linux-rng-886f11c797722650d98c554b28e66f12317a33e4.tar.xz linux-rng-886f11c797722650d98c554b28e66f12317a33e4.zip |
xfs: clean up refcount log intent item tracepoint callsites
Pass the incore refcount intent structure to the tracepoints instead of
open-coding the argument passing.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/libxfs/xfs_refcount.h')
-rw-r--r-- | fs/xfs/libxfs/xfs_refcount.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/xfs/libxfs/xfs_refcount.h b/fs/xfs/libxfs/xfs_refcount.h index 9b56768a590c..01a20621192e 100644 --- a/fs/xfs/libxfs/xfs_refcount.h +++ b/fs/xfs/libxfs/xfs_refcount.h @@ -48,6 +48,12 @@ enum xfs_refcount_intent_type { XFS_REFCOUNT_FREE_COW, }; +#define XFS_REFCOUNT_INTENT_STRINGS \ + { XFS_REFCOUNT_INCREASE, "incr" }, \ + { XFS_REFCOUNT_DECREASE, "decr" }, \ + { XFS_REFCOUNT_ALLOC_COW, "alloc_cow" }, \ + { XFS_REFCOUNT_FREE_COW, "free_cow" } + struct xfs_refcount_intent { struct list_head ri_list; struct xfs_perag *ri_pag; |