From: Darrick J. Wong <djwong@xxxxxxxxxx> If high level code wants to do a deferred xattr set operation with the NVLOOKUP flag set, we need to push this through the log. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> --- libxfs/xfs_attr.c | 2 ++ libxfs/xfs_log_format.h | 1 + 2 files changed, 3 insertions(+) diff --git a/libxfs/xfs_attr.c b/libxfs/xfs_attr.c index c38048536af..47684d07693 100644 --- a/libxfs/xfs_attr.c +++ b/libxfs/xfs_attr.c @@ -896,6 +896,8 @@ xfs_attr_defer_add( switch (op_flags) { case XFS_ATTRI_OP_FLAGS_SET: + if (args->op_flags & XFS_DA_OP_NVLOOKUP) + new->xattri_op_flags = XFS_ATTRI_OP_FLAGS_NVSET; new->xattri_dela_state = xfs_attr_init_add_state(args); break; case XFS_ATTRI_OP_FLAGS_REPLACE: diff --git a/libxfs/xfs_log_format.h b/libxfs/xfs_log_format.h index bf648b75194..2ac520a18e9 100644 --- a/libxfs/xfs_log_format.h +++ b/libxfs/xfs_log_format.h @@ -1044,6 +1044,7 @@ struct xfs_icreate_log { #define XFS_ATTRI_OP_FLAGS_REMOVE 2 /* Remove the attribute */ #define XFS_ATTRI_OP_FLAGS_REPLACE 3 /* Replace the attribute */ #define XFS_ATTRI_OP_FLAGS_NVREMOVE 4 /* Remove attr w/ vlookup */ +#define XFS_ATTRI_OP_FLAGS_NVSET 5 /* Set attr with w/ vlookup */ #define XFS_ATTRI_OP_FLAGS_TYPE_MASK 0xFF /* Flags type mask */ /*