diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2016-10-03 18:11:48 +0200 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2016-10-06 01:26:29 +0200 |
commit | 3f165b334e51477d2b33ac1c81b39927514daab7 (patch) | |
tree | d41f7847f6a185673853d50fd0ceeaecca0fc7ea /fs/xfs/xfs_rmap_item.c | |
parent | xfs: use interval query for rmap alloc operations on shared files (diff) | |
download | linux-3f165b334e51477d2b33ac1c81b39927514daab7.tar.xz linux-3f165b334e51477d2b33ac1c81b39927514daab7.zip |
xfs: convert unwritten status of reverse mappings for shared files
Provide a function to convert an unwritten extent to a real one and
vice versa when shared extents are possible.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/xfs_rmap_item.c')
-rw-r--r-- | fs/xfs/xfs_rmap_item.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/xfs/xfs_rmap_item.c b/fs/xfs/xfs_rmap_item.c index 3b8742e48815..73c827831551 100644 --- a/fs/xfs/xfs_rmap_item.c +++ b/fs/xfs/xfs_rmap_item.c @@ -496,6 +496,9 @@ xfs_rui_recover( case XFS_RMAP_EXTENT_CONVERT: type = XFS_RMAP_CONVERT; break; + case XFS_RMAP_EXTENT_CONVERT_SHARED: + type = XFS_RMAP_CONVERT_SHARED; + break; case XFS_RMAP_EXTENT_ALLOC: type = XFS_RMAP_ALLOC; break; |