2024-07-05 23:00:04 +07:00
|
|
|
#ifndef MY_ABC_HERE
|
|
|
|
#define MY_ABC_HERE
|
|
|
|
#endif
|
2020-02-28 20:04:17 +07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
|
|
|
|
#ifndef BTRFS_REFLINK_H
|
|
|
|
#define BTRFS_REFLINK_H
|
|
|
|
|
|
|
|
#include <linux/fs.h>
|
|
|
|
|
|
|
|
loff_t btrfs_remap_file_range(struct file *file_in, loff_t pos_in,
|
|
|
|
struct file *file_out, loff_t pos_out,
|
|
|
|
loff_t len, unsigned int remap_flags);
|
|
|
|
|
2024-07-05 23:00:04 +07:00
|
|
|
#ifdef MY_ABC_HERE
|
|
|
|
int btrfs_ioctl_syno_clone_range_v2(struct file *dst_file,
|
|
|
|
struct btrfs_ioctl_syno_clone_range_args_v2 __user *argp);
|
|
|
|
#endif /* MY_ABC_HERE */
|
|
|
|
|
|
|
|
#ifdef MY_ABC_HERE
|
|
|
|
long btrfs_ioctl_syno_extent_same(struct file *file,
|
|
|
|
struct btrfs_ioctl_syno_extent_same_args __user *argp);
|
|
|
|
#endif /* MY_ABC_HERE */
|
|
|
|
|
2020-02-28 20:04:17 +07:00
|
|
|
#endif /* BTRFS_REFLINK_H */
|