From 31a6b02a1ce906c0f463a2aa2d6a5ff982c9915e Mon Sep 17 00:00:00 2001 From: "Darrick J. Wong" Date: Wed, 10 Aug 2016 11:29:40 +1000 Subject: [PATCH] xfs: enable the xfs_defer mechanism to process extents to free Source kernel commit: 9749fee83f38fca8dbe67161a033db22e3c4a2dd Connect the xfs_defer mechanism with the pieces that we'll need to handle deferred extent freeing. We'll wire up the existing code to our new deferred mechanism later. Signed-off-by: Darrick J. Wong Reviewed-by: Brian Foster Signed-off-by: Dave Chinner --- libxfs/xfs_defer.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libxfs/xfs_defer.h b/libxfs/xfs_defer.h index a227bd2ce..b9b5a92ff 100644 --- a/libxfs/xfs_defer.h +++ b/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_FREE, XFS_DEFER_OPS_TYPE_MAX, }; -- 2.50.1