/linux-4.19.296/fs/overlayfs/ |
D | file.c | 561 struct file *file_out, loff_t pos_out, in ovl_copyfile() argument 583 real_out.file, pos_out, len, flags); in ovl_copyfile() 588 real_out.file, pos_out, len); in ovl_copyfile() 593 real_out.file, pos_out, len); in ovl_copyfile() 608 struct file *file_out, loff_t pos_out, in ovl_copy_file_range() argument 611 return ovl_copyfile(file_in, pos_in, file_out, pos_out, len, flags, in ovl_copy_file_range() 616 struct file *file_out, loff_t pos_out, u64 len) in ovl_clone_file_range() argument 618 return ovl_copyfile(file_in, pos_in, file_out, pos_out, len, 0, in ovl_clone_file_range() 623 struct file *file_out, loff_t pos_out, u64 len) in ovl_dedupe_file_range() argument 633 return ovl_copyfile(file_in, pos_in, file_out, pos_out, len, 0, in ovl_dedupe_file_range()
|
/linux-4.19.296/fs/ |
D | read_write.c | 1557 struct file *file_out, loff_t pos_out, in vfs_copy_file_range() argument 1576 ret = rw_verify_area(WRITE, file_out, &pos_out, len); in vfs_copy_file_range() 1600 file_out, pos_out, len); in vfs_copy_file_range() 1609 pos_out, len, flags); in vfs_copy_file_range() 1614 ret = do_splice_direct(file_in, &pos_in, file_out, &pos_out, in vfs_copy_file_range() 1639 loff_t pos_out; in SYSCALL_DEFINE6() local 1661 if (copy_from_user(&pos_out, off_out, sizeof(loff_t))) in SYSCALL_DEFINE6() 1664 pos_out = f_out.file->f_pos; in SYSCALL_DEFINE6() 1667 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len, in SYSCALL_DEFINE6() 1671 pos_out += ret; in SYSCALL_DEFINE6() [all …]
|
/linux-4.19.296/fs/xfs/ |
D | xfs_reflink.c | 1306 loff_t pos_out, in xfs_reflink_remap_prep() argument 1338 ret = vfs_clone_file_prep_inodes(inode_in, pos_in, inode_out, pos_out, in xfs_reflink_remap_prep() 1355 if (pos_out + *len < i_size_read(inode_out)) { in xfs_reflink_remap_prep() 1370 ret = xfs_reflink_zero_posteof(dest, pos_out); in xfs_reflink_remap_prep() 1384 if (pos_out > XFS_ISIZE(dest)) { in xfs_reflink_remap_prep() 1385 loff_t flen = *len + (pos_out - XFS_ISIZE(dest)); in xfs_reflink_remap_prep() 1388 ret = xfs_flush_unmap_range(dest, pos_out, *len); in xfs_reflink_remap_prep() 1430 loff_t pos_out, in xfs_reflink_remap_range() argument 1451 ret = xfs_reflink_remap_prep(file_in, pos_in, file_out, pos_out, in xfs_reflink_remap_range() 1456 trace_xfs_reflink_remap_range(src, pos_in, len, dest, pos_out); in xfs_reflink_remap_range() [all …]
|
D | xfs_reflink.h | 31 struct file *file_out, loff_t pos_out, u64 len, bool is_dedupe);
|
D | xfs_file.c | 934 loff_t pos_out, in xfs_file_clone_range() argument 937 return xfs_reflink_remap_range(file_in, pos_in, file_out, pos_out, in xfs_file_clone_range() 946 loff_t pos_out, in xfs_file_dedupe_range() argument 949 return xfs_reflink_remap_range(file_in, pos_in, file_out, pos_out, in xfs_file_dedupe_range()
|
/linux-4.19.296/fs/nfs/ |
D | nfs4file.c | 133 struct file *file_out, loff_t pos_out, in nfs4_copy_file_range() argument 140 return nfs42_proc_copy(file_in, pos_in, file_out, pos_out, count); in nfs4_copy_file_range()
|
/linux-4.19.296/fs/hostfs/ |
D | hostfs.h | 71 extern char *read_dir(void *stream, unsigned long long *pos_out,
|
D | hostfs_user.c | 107 char *read_dir(void *stream, unsigned long long *pos_out, in read_dir() argument 120 *pos_out = ent->d_off; in read_dir()
|
/linux-4.19.296/fs/ocfs2/ |
D | refcounttree.h | 121 loff_t pos_out,
|
D | refcounttree.c | 4515 loff_t pos_out, in ocfs2_reflink_remap_extent() argument 4536 tpos = ocfs2_bytes_to_clusters(t_inode->i_sb, pos_out); in ocfs2_reflink_remap_extent() 4624 loff_t pos_out, in ocfs2_reflink_remap_blocks() argument 4642 if (pos_in == pos_out && pos_in == 0 && len == i_size_read(s_inode) && in ocfs2_reflink_remap_blocks() 4702 pos_out, len, &dealloc); in ocfs2_reflink_remap_blocks() 4832 loff_t pos_out, in ocfs2_reflink_remap_range() argument 4859 ret = vfs_clone_file_prep_inodes(inode_in, pos_in, inode_out, pos_out, in ocfs2_reflink_remap_range() 4871 out_bh, pos_out, len); in ocfs2_reflink_remap_range() 4875 truncate_inode_pages_range(&inode_out->i_data, pos_out, in ocfs2_reflink_remap_range() 4876 PAGE_ALIGN(pos_out + len) - 1); in ocfs2_reflink_remap_range() [all …]
|
D | file.c | 2657 loff_t pos_out, in ocfs2_file_clone_range() argument 2660 return ocfs2_reflink_remap_range(file_in, pos_in, file_out, pos_out, in ocfs2_file_clone_range() 2667 loff_t pos_out, in ocfs2_file_dedupe_range() argument 2670 return ocfs2_reflink_remap_range(file_in, pos_in, file_out, pos_out, in ocfs2_file_dedupe_range()
|
/linux-4.19.296/fs/f2fs/ |
D | file.c | 2371 struct file *file_out, loff_t pos_out, size_t len) in f2fs_move_file_range() argument 2394 if (pos_in == pos_out) in f2fs_move_file_range() 2396 if (pos_out > pos_in && pos_out < pos_in + len) in f2fs_move_file_range() 2420 if (pos_out + olen > dst->i_size) in f2fs_move_file_range() 2421 dst_max_i_size = pos_out + olen; in f2fs_move_file_range() 2426 !IS_ALIGNED(pos_out, F2FS_BLKSIZE)) in f2fs_move_file_range() 2444 pos_out, pos_out + len); in f2fs_move_file_range() 2459 pos_out >> F2FS_BLKSIZE_BITS, in f2fs_move_file_range() 2510 range.pos_out, range.len); in f2fs_ioc_move_range()
|
D | f2fs.h | 442 u64 pos_out; /* start position in dst_fd */ member
|
/linux-4.19.296/include/linux/ |
D | fs.h | 1844 struct inode *inode_out, loff_t pos_out, 1847 struct file *file_out, loff_t pos_out, u64 len); 1849 struct file *file_out, loff_t pos_out, u64 len);
|
/linux-4.19.296/fs/btrfs/ |
D | ctree.h | 3273 struct file *file_out, loff_t pos_out, u64 len);
|