mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
xfs: elide ->create_done calls for unlogged deferred work
Extended attribute updates use the deferred work machinery to manage state across a chain of smaller transactions. All previous deferred work users have employed log intent items and log done items to manage restarting of interrupted operations, which means that ->create_intent sets dfp_intent to a log intent item and ->create_done uses that item to create a log intent done item. However, xattrs have used the INCOMPLETE flag to deal with the lack of recovery support for an interrupted transaction chain. Log items are optional if the xattr update caller didn't set XFS_DA_OP_LOGGED to require a restartable sequence. In other words, ->create_intent can return NULL to say that there's no log intent item. If that's the case, no log intent done item should be created. Clean up xfs_defer_create_done not to do this, so that the ->create_done functions don't have to check for non-null dfp_intent themselves. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
parent
94da54d582
commit
9c07bca793
@ -201,6 +201,10 @@ xfs_defer_create_done(
|
||||
const struct xfs_defer_op_type *ops = defer_op_types[dfp->dfp_type];
|
||||
struct xfs_log_item *lip;
|
||||
|
||||
/* If there is no log intent item, there can be no log done item. */
|
||||
if (!dfp->dfp_intent)
|
||||
return;
|
||||
|
||||
/*
|
||||
* Mark the transaction dirty, even on error. This ensures the
|
||||
* transaction is aborted, which:
|
||||
|
@ -740,9 +740,6 @@ xfs_attr_create_done(
|
||||
struct xfs_attri_log_item *attrip;
|
||||
struct xfs_attrd_log_item *attrdp;
|
||||
|
||||
if (!intent)
|
||||
return NULL;
|
||||
|
||||
attrip = ATTRI_ITEM(intent);
|
||||
|
||||
attrdp = kmem_cache_zalloc(xfs_attrd_cache, GFP_NOFS | __GFP_NOFAIL);
|
||||
|
Loading…
Reference in New Issue
Block a user