diff options
author | Namjae Jeon <namjae.jeon@samsung.com> | 2014-02-24 00:58:19 +0100 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-02-24 00:58:19 +0100 |
commit | e1d8fb88a64c1f8094b9f6c3b6d2d9e6719c970d (patch) | |
tree | ec95b7acd9f3182e683ea16fab40092d9f038ec6 /fs/xfs/xfs_bmap_util.h | |
parent | fs: Add new flag(FALLOC_FL_COLLAPSE_RANGE) for fallocate (diff) | |
download | linux-e1d8fb88a64c1f8094b9f6c3b6d2d9e6719c970d.tar.xz linux-e1d8fb88a64c1f8094b9f6c3b6d2d9e6719c970d.zip |
xfs: Add support FALLOC_FL_COLLAPSE_RANGE for fallocate
This patch implements fallocate's FALLOC_FL_COLLAPSE_RANGE for XFS.
The semantics of this flag are following:
1) It collapses the range lying between offset and length by removing any data
blocks which are present in this range and than updates all the logical
offsets of extents beyond "offset + len" to nullify the hole created by
removing blocks. In short, it does not leave a hole.
2) It should be used exclusively. No other fallocate flag in combination.
3) Offset and length supplied to fallocate should be fs block size aligned
in case of xfs and ext4.
4) Collaspe range does not work beyond i_size.
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Ashish Sangwan <a.sangwan@samsung.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_bmap_util.h')
-rw-r--r-- | fs/xfs/xfs_bmap_util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/xfs/xfs_bmap_util.h b/fs/xfs/xfs_bmap_util.h index 900747b25772..935ed2b24edf 100644 --- a/fs/xfs/xfs_bmap_util.h +++ b/fs/xfs/xfs_bmap_util.h @@ -99,6 +99,8 @@ int xfs_free_file_space(struct xfs_inode *ip, xfs_off_t offset, xfs_off_t len); int xfs_zero_file_space(struct xfs_inode *ip, xfs_off_t offset, xfs_off_t len); +int xfs_collapse_file_space(struct xfs_inode *, xfs_off_t offset, + xfs_off_t len); /* EOF block manipulation functions */ bool xfs_can_free_eofblocks(struct xfs_inode *ip, bool force); |