diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2016-08-03 05:11:01 +0300 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2016-08-03 05:11:01 +0300 |
commit | f8dbebef98f0b960a0e91d6b8d45c288c377797b (patch) | |
tree | 6c57c1a1836c3824843e11bd762941b3c6dfb74c /fs/xfs/libxfs/xfs_defer.h | |
parent | 9e88b5d86703bb836d33dcd0c70eb59e049c80c7 (diff) | |
download | linux-f8dbebef98f0b960a0e91d6b8d45c288c377797b.tar.xz |
xfs: enable the xfs_defer mechanism to process rmaps to update
Connect the xfs_defer mechanism with the pieces that we'll need to
handle deferred rmap updates. We'll wire up the existing code to
our new deferred mechanism later.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/libxfs/xfs_defer.h')
-rw-r--r-- | fs/xfs/libxfs/xfs_defer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/libxfs/xfs_defer.h b/fs/xfs/libxfs/xfs_defer.h index b9b5a92ffa6c..cc3981c48296 100644 --- a/fs/xfs/libxfs/xfs_defer.h +++ b/fs/xfs/libxfs/xfs_defer.h @@ -51,6 +51,7 @@ struct xfs_defer_pending { * find all the space it needs. */ enum xfs_defer_ops_type { + XFS_DEFER_OPS_TYPE_RMAP, XFS_DEFER_OPS_TYPE_FREE, XFS_DEFER_OPS_TYPE_MAX, }; |