diff options
author | Allison Henderson <allison.henderson@oracle.com> | 2022-05-09 11:09:07 +0200 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2022-05-09 11:09:07 +0200 |
commit | 1d08e11d04d293cb7006d1c8641be1fdd8a8e397 (patch) | |
tree | 0a385c6eff141ea20c4f8db5deda5e8a653d2d2b /fs/xfs/libxfs/xfs_defer.c | |
parent | xfs: Set up infrastructure for log attribute replay (diff) | |
download | linux-1d08e11d04d293cb7006d1c8641be1fdd8a8e397.tar.xz linux-1d08e11d04d293cb7006d1c8641be1fdd8a8e397.zip |
xfs: Implement attr logging and replay
This patch adds the needed routines to create, log and recover logged
extended attribute intents.
Signed-off-by: Allison Henderson <allison.henderson@oracle.com>
Reviewed-by: Chandan Babu R <chandanrlinux@gmail.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/libxfs/xfs_defer.c')
-rw-r--r-- | fs/xfs/libxfs/xfs_defer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/libxfs/xfs_defer.c b/fs/xfs/libxfs/xfs_defer.c index 466f333ea508..b2ecc272f9e4 100644 --- a/fs/xfs/libxfs/xfs_defer.c +++ b/fs/xfs/libxfs/xfs_defer.c @@ -186,6 +186,7 @@ static const struct xfs_defer_op_type *defer_op_types[] = { [XFS_DEFER_OPS_TYPE_RMAP] = &xfs_rmap_update_defer_type, [XFS_DEFER_OPS_TYPE_FREE] = &xfs_extent_free_defer_type, [XFS_DEFER_OPS_TYPE_AGFL_FREE] = &xfs_agfl_free_defer_type, + [XFS_DEFER_OPS_TYPE_ATTR] = &xfs_attr_defer_type, }; static bool |