Skip to content

Commit

Permalink
xfs: don't set XFS_TRANS_HAS_INTENT_DONE when there's no ATTRD log item
Browse files Browse the repository at this point in the history
XFS_TRANS_HAS_INTENT_DONE is a flag to the CIL that we've added a log
intent done item to the transaction.  This enables an optimization
wherein we avoid writing out log intent and log intent done items if
they would have ended up in the same checkpoint.  This reduces writes to
the ondisk log and speeds up recovery as a result.

However, callers can use the defer ops machinery to modify xattrs
without using the log items.  In this situation, there won't be an
intent done item, so we do not need to set the flag.

Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
  • Loading branch information
Darrick J. Wong committed Dec 7, 2023
1 parent db7ccc0 commit 172538b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions fs/xfs/xfs_attr_item.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,13 +347,15 @@ xfs_xattri_finish_update(
* 1.) releases the ATTRI and frees the ATTRD
* 2.) shuts down the filesystem
*/
args->trans->t_flags |= XFS_TRANS_DIRTY | XFS_TRANS_HAS_INTENT_DONE;
args->trans->t_flags |= XFS_TRANS_DIRTY;

/*
* attr intent/done items are null when logged attributes are disabled
*/
if (attrdp)
if (attrdp) {
args->trans->t_flags |= XFS_TRANS_HAS_INTENT_DONE;
set_bit(XFS_LI_DIRTY, &attrdp->attrd_item.li_flags);
}

return error;
}
Expand Down

0 comments on commit 172538b

Please sign in to comment.