提交 1bb33a98 编写于 作者: D Darrick J. Wong 提交者: Dave Chinner

xfs: don't cap maximum dedupe request length

After various discussions on linux-fsdevel, it has been decided that it
is not necessary to cap the length of a dedupe request, and that
correctly-written userspace client programs will be able to absorb the
change.  Therefore, remove the length clamping behavior.
Signed-off-by: NDarrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: NDave Chinner <dchinner@redhat.com>
Signed-off-by: NDave Chinner <david@fromorbit.com>
上级 ef388e20
...@@ -939,7 +939,6 @@ xfs_file_clone_range( ...@@ -939,7 +939,6 @@ xfs_file_clone_range(
len, false); len, false);
} }
#define XFS_MAX_DEDUPE_LEN (16 * 1024 * 1024)
STATIC ssize_t STATIC ssize_t
xfs_file_dedupe_range( xfs_file_dedupe_range(
struct file *src_file, struct file *src_file,
...@@ -950,14 +949,6 @@ xfs_file_dedupe_range( ...@@ -950,14 +949,6 @@ xfs_file_dedupe_range(
{ {
int error; int error;
/*
* Limit the total length we will dedupe for each operation.
* This is intended to bound the total time spent in this
* ioctl to something sane.
*/
if (len > XFS_MAX_DEDUPE_LEN)
len = XFS_MAX_DEDUPE_LEN;
error = xfs_reflink_remap_range(src_file, loff, dst_file, dst_loff, error = xfs_reflink_remap_range(src_file, loff, dst_file, dst_loff,
len, true); len, true);
if (error) if (error)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册