diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2018-10-30 10:42:03 +1100 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2018-10-30 10:42:03 +1100 |
commit | df3658361951e17364f1e1c3fa92862a990ad8bd (patch) | |
tree | 6a8654d7e37881b951eab42f3b28cf90b9a68766 /include/linux/fs.h | |
parent | 452ce65951a2f0719e4e119ecca134c06cfe22ee (diff) | |
download | lwn-df3658361951e17364f1e1c3fa92862a990ad8bd.tar.gz lwn-df3658361951e17364f1e1c3fa92862a990ad8bd.zip |
vfs: plumb remap flags through the vfs dedupe functions
Plumb a remap_flags argument through the vfs_dedupe_file_range_one
functions so that dedupe can take advantage of it.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 1c5e55d2a67d..544ab5083b48 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1859,7 +1859,7 @@ extern int vfs_dedupe_file_range(struct file *file, struct file_dedupe_range *same); extern loff_t vfs_dedupe_file_range_one(struct file *src_file, loff_t src_pos, struct file *dst_file, loff_t dst_pos, - loff_t len); + loff_t len, unsigned int remap_flags); struct super_operations { |