Home
last modified time | relevance | path

Searched full:pos_out (Results 1 – 10 of 10) sorted by relevance

/linux/fs/
H A Dremap_range.c32 struct file *file_out, loff_t pos_out, in generic_remap_checks() argument
44 if (!IS_ALIGNED(pos_in, bs) || !IS_ALIGNED(pos_out, bs)) in generic_remap_checks()
48 if (pos_in + count < pos_in || pos_out + count < pos_out) in generic_remap_checks()
57 pos_out >= size_out || pos_out + count > size_out)) in generic_remap_checks()
65 ret = generic_write_check_limits(file_out, pos_out, &count); in generic_remap_checks()
77 (!(remap_flags & REMAP_FILE_DEDUP) || pos_out + count == size_out)) { in generic_remap_checks()
87 pos_out + bcount > pos_in && in generic_remap_checks()
88 pos_out < pos_in + bcount) in generic_remap_checks()
135 loff_t pos_out, in generic_remap_check_len() argument
145 if (pos_out + *len < i_size_read(inode_out)) in generic_remap_check_len()
[all …]
/linux/fs/xfs/
H A Dxfs_reflink.h52 struct file *file_out, loff_t pos_out, loff_t len,
61 struct file *file_out, loff_t pos_out, loff_t *len,
64 struct xfs_inode *dest, loff_t pos_out, loff_t remap_len,
/linux/fs/nfs/
H A Dnfs4file.c137 struct file *file_out, loff_t pos_out, in __nfs4_copy_file_range() argument
179 ret = nfs42_proc_copy(file_in, pos_in, file_out, pos_out, count, in __nfs4_copy_file_range()
190 struct file *file_out, loff_t pos_out, in nfs4_copy_file_range() argument
195 ret = __nfs4_copy_file_range(file_in, pos_in, file_out, pos_out, count, in nfs4_copy_file_range()
199 pos_out, count); in nfs4_copy_file_range()
/linux/include/linux/
H A Dsplice.h92 struct file *out, loff_t pos_out, in splice_copy_file_range() argument
95 return splice_file_range(in, &pos_in, out, &pos_out, len); in splice_copy_file_range()
/linux/fs/btrfs/
H A Dreflink.h11 struct file *file_out, loff_t pos_out,
/linux/fs/hostfs/
H A Dhostfs.h45 extern char *read_dir(void *stream, unsigned long long *pos_out,
/linux/include/uapi/linux/
H A Df2fs.h87 __u64 pos_out; /* start position in dst_fd */ member
/linux/fs/ocfs2/
H A Drefcounttree.h113 loff_t pos_out,
H A Dfile.c2702 struct file *file_out, loff_t pos_out, in ocfs2_remap_file_range() argument
2731 ret = generic_remap_file_range_prep(file_in, pos_in, file_out, pos_out, in ocfs2_remap_file_range()
2744 round_down(pos_out, PAGE_SIZE), in ocfs2_remap_file_range()
2745 round_up(pos_out + len, PAGE_SIZE) - 1); in ocfs2_remap_file_range()
2748 inode_out, out_bh, pos_out, len); in ocfs2_remap_file_range()
2765 ret = ocfs2_reflink_update_dest(inode_out, out_bh, pos_out + len); in ocfs2_remap_file_range()
/linux/fs/fuse/
H A Dfile.c3025 struct file *file_out, loff_t pos_out, in __fuse_copy_file_range()
3041 .off_out = pos_out, in __fuse_copy_file_range()
3052 ((pos_out + len) > inode_out->i_size); in __fuse_copy_file_range()
3090 err = fuse_writeback_range(inode_out, pos_out, pos_out + len - 1); in __fuse_copy_file_range()
3135 ALIGN_DOWN(pos_out, PAGE_SIZE), in __fuse_copy_file_range()
3136 ALIGN(pos_out + bytes_copied, PAGE_SIZE) - 1); in __fuse_copy_file_range()
3139 fuse_write_update_attr(inode_out, pos_out + bytes_copied, bytes_copied); in __fuse_copy_file_range()
3022 __fuse_copy_file_range(struct file * file_in,loff_t pos_in,struct file * file_out,loff_t pos_out,size_t len,unsigned int flags) __fuse_copy_file_range() argument