diff options
author | Jeff Layton <jlayton@redhat.com> | 2017-12-11 06:35:23 -0500 |
---|---|---|
committer | Jeff Layton <jlayton@redhat.com> | 2018-01-29 06:42:21 -0500 |
commit | d17260fd5f9cd5c112cbcbbfd3024186d34c02d7 (patch) | |
tree | 99f1082e7324412ab4b8c495d04a7daba27880ee | |
parent | e38cf302b2e92a870f23e07c4390e04685779340 (diff) |
xfs: avoid setting XFS_ILOG_CORE if i_version doesn't need incrementing
If XFS_ILOG_CORE is already set then go ahead and increment it.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Acked-by: Darrick J. Wong <darrick.wong@oracle.com>
Acked-by: Dave Chinner <dchinner@redhat.com>
-rw-r--r-- | fs/xfs/xfs_trans_inode.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/fs/xfs/xfs_trans_inode.c b/fs/xfs/xfs_trans_inode.c index 225544327c4f..4a89da4b6fe7 100644 --- a/fs/xfs/xfs_trans_inode.c +++ b/fs/xfs/xfs_trans_inode.c | |||
@@ -112,15 +112,17 @@ xfs_trans_log_inode( | |||
112 | 112 | ||
113 | /* | 113 | /* |
114 | * First time we log the inode in a transaction, bump the inode change | 114 | * First time we log the inode in a transaction, bump the inode change |
115 | * counter if it is configured for this to occur. We don't use | 115 | * counter if it is configured for this to occur. While we have the |
116 | * inode_inc_version() because there is no need for extra locking around | 116 | * inode locked exclusively for metadata modification, we can usually |
117 | * i_version as we already hold the inode locked exclusively for | 117 | * avoid setting XFS_ILOG_CORE if no one has queried the value since |
118 | * metadata modification. | 118 | * the last time it was incremented. If we have XFS_ILOG_CORE already |
119 | * set however, then go ahead and bump the i_version counter | ||
120 | * unconditionally. | ||
119 | */ | 121 | */ |
120 | if (!(ip->i_itemp->ili_item.li_desc->lid_flags & XFS_LID_DIRTY) && | 122 | if (!(ip->i_itemp->ili_item.li_desc->lid_flags & XFS_LID_DIRTY) && |
121 | IS_I_VERSION(VFS_I(ip))) { | 123 | IS_I_VERSION(VFS_I(ip))) { |
122 | inode_inc_iversion(VFS_I(ip)); | 124 | if (inode_maybe_inc_iversion(VFS_I(ip), flags & XFS_ILOG_CORE)) |
123 | flags |= XFS_ILOG_CORE; | 125 | flags |= XFS_ILOG_CORE; |
124 | } | 126 | } |
125 | 127 | ||
126 | tp->t_flags |= XFS_TRANS_DIRTY; | 128 | tp->t_flags |= XFS_TRANS_DIRTY; |