summaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_attr_item.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2023-12-14 06:16:32 +0100
committerChandan Babu R <chandanbabu@kernel.org>2023-12-14 11:13:38 +0530
commitdc22af64368291a86fb6b7eb2adab21c815836b7 (patch)
treec908d2c6bdd56ef7e2be03c6c817580469e8232d /fs/xfs/xfs_attr_item.c
parent7f2f7531e0d455f1abb9f48fbbe17c37e8742590 (diff)
downloadlinux-dc22af64368291a86fb6b7eb2adab21c815836b7.tar.gz
linux-dc22af64368291a86fb6b7eb2adab21c815836b7.tar.bz2
linux-dc22af64368291a86fb6b7eb2adab21c815836b7.zip
xfs: pass the defer ops instead of type to xfs_defer_start_recovery
xfs_defer_start_recovery is only called from xlog_recover_intent_item, and the callers of that all have the actual xfs_defer_ops_type operation vector at hand. Pass that directly instead of looking it up from the defer_op_types table. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Darrick J. Wong <djwong@kernel.org> Signed-off-by: Chandan Babu R <chandanbabu@kernel.org>
Diffstat (limited to 'fs/xfs/xfs_attr_item.c')
-rw-r--r--fs/xfs/xfs_attr_item.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_attr_item.c b/fs/xfs/xfs_attr_item.c
index beae2de82450..9e02111bd890 100644
--- a/fs/xfs/xfs_attr_item.c
+++ b/fs/xfs/xfs_attr_item.c
@@ -759,7 +759,7 @@ xlog_recover_attri_commit_pass2(
memcpy(&attrip->attri_format, attri_formatp, len);
xlog_recover_intent_item(log, &attrip->attri_item, lsn,
- XFS_DEFER_OPS_TYPE_ATTR);
+ &xfs_attr_defer_type);
xfs_attri_log_nameval_put(nv);
return 0;
}