summaryrefslogtreecommitdiff
path: root/fs/xfs/xfs_trans.h
diff options
context:
space:
mode:
authorDarrick J. Wong <djwong@kernel.org>2023-11-30 22:44:56 +0300
committerDarrick J. Wong <djwong@kernel.org>2023-12-07 05:45:16 +0300
commitbd3a88f6b71c7509566b44b7021581191cc11ae3 (patch)
tree8d70c82cf755c2129d5e916907bfa6eca98277f1 /fs/xfs/xfs_trans.h
parentf3fd7f6fce1cc9b8eb59705b27f823330207b7c9 (diff)
downloadlinux-bd3a88f6b71c7509566b44b7021581191cc11ae3.tar.xz
xfs: use xfs_defer_create_done for the relogging operation
Now that we have a helper to handle creating a log intent done item and updating all the necessary state flags, use it to reduce boilerplate in the ->iop_relog implementations. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/xfs_trans.h')
-rw-r--r--fs/xfs/xfs_trans.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/xfs/xfs_trans.h b/fs/xfs/xfs_trans.h
index 5fb018ad9fc0..25646e2b12f4 100644
--- a/fs/xfs/xfs_trans.h
+++ b/fs/xfs/xfs_trans.h
@@ -80,6 +80,7 @@ struct xfs_item_ops {
void (*iop_release)(struct xfs_log_item *);
bool (*iop_match)(struct xfs_log_item *item, uint64_t id);
struct xfs_log_item *(*iop_relog)(struct xfs_log_item *intent,
+ struct xfs_log_item *done_item,
struct xfs_trans *tp);
struct xfs_log_item *(*iop_intent)(struct xfs_log_item *intent_done);
};
@@ -248,9 +249,10 @@ extern struct kmem_cache *xfs_trans_cache;
static inline struct xfs_log_item *
xfs_trans_item_relog(
struct xfs_log_item *lip,
+ struct xfs_log_item *done_lip,
struct xfs_trans *tp)
{
- return lip->li_ops->iop_relog(lip, tp);
+ return lip->li_ops->iop_relog(lip, done_lip, tp);
}
struct xfs_dquot;