Home
last modified time | relevance | path

Searched refs:dst_file (Results 1 – 8 of 8) sorted by relevance

/linux/fs/
H A Dremap_range.c433 struct file *dst_file, loff_t dst_pos, in vfs_dedupe_file_range_one() argument
449 ret = remap_verify_area(dst_file, dst_pos, len, true); in vfs_dedupe_file_range_one()
458 ret = mnt_want_write_file(dst_file); in vfs_dedupe_file_range_one()
463 if (!may_dedupe_file(dst_file)) in vfs_dedupe_file_range_one()
467 if (file_inode(src_file)->i_sb != file_inode(dst_file)->i_sb) in vfs_dedupe_file_range_one()
471 if (S_ISDIR(file_inode(dst_file)->i_mode)) in vfs_dedupe_file_range_one()
475 if (!dst_file->f_op->remap_file_range) in vfs_dedupe_file_range_one()
483 ret = dst_file->f_op->remap_file_range(src_file, src_pos, dst_file, in vfs_dedupe_file_range_one()
486 mnt_drop_write_file(dst_file); in vfs_dedupe_file_range_one()
H A Dioctl.c230 static int ioctl_file_clone(struct file *dst_file, unsigned long srcfd, in ioctl_file_clone() argument
239 cloned = vfs_clone_file_range(fd_file(src_file), off, dst_file, destoff, in ioctl_file_clone()
/linux/fs/smb/client/
H A Dioctl.c70 static long cifs_ioctl_copychunk(unsigned int xid, struct file *dst_file, in cifs_ioctl_copychunk() argument
78 if (!(dst_file->f_mode & FMODE_WRITE)) { in cifs_ioctl_copychunk()
84 rc = mnt_want_write_file(dst_file); in cifs_ioctl_copychunk()
107 rc = cifs_file_copychunk_range(xid, fd_file(src_file), 0, dst_file, 0, in cifs_ioctl_copychunk()
112 mnt_drop_write_file(dst_file); in cifs_ioctl_copychunk()
H A Dcifsfs.c1296 struct file *dst_file, loff_t destoff, loff_t len, in cifs_remap_file_range() argument
1300 struct inode *target_inode = file_inode(dst_file); in cifs_remap_file_range()
1304 struct cifsFileInfo *smb_file_target = dst_file->private_data; in cifs_remap_file_range()
1423 struct file *dst_file, loff_t destoff, in cifs_file_copychunk_range() argument
1427 struct inode *target_inode = file_inode(dst_file); in cifs_file_copychunk_range()
1438 if (!src_file->private_data || !dst_file->private_data) { in cifs_file_copychunk_range()
1445 smb_file_target = dst_file->private_data; in cifs_file_copychunk_range()
1494 rc = file_modified(dst_file); in cifs_file_copychunk_range()
1539 struct file *dst_file, loff_t destoff, in cifs_copy_file_range() argument
1544 struct cifsFileInfo *cfile = dst_file->private_data; in cifs_copy_file_range()
[all …]
H A Dsmb2ops.c1883 struct cifsFileInfo *dst_file, in smb2_copychunk_range() argument
1901 tcon = tlink_tcon(dst_file->tlink); in smb2_copychunk_range()
1904 dst_file->fid.volatile_fid, tcon->tid, in smb2_copychunk_range()
1970 rc = SMB2_ioctl(xid, tcon, dst_file->fid.persistent_fid, in smb2_copychunk_range()
1971 dst_file->fid.volatile_fid, FSCTL_SRV_COPYCHUNK_WRITE, in smb2_copychunk_range()
2060 dst_file->fid.volatile_fid, tcon->tid, in smb2_copychunk_range()
2065 dst_file->fid.volatile_fid, tcon->tid, in smb2_copychunk_range()
/linux/fs/nfs/
H A Dnfs4file.c248 struct file *dst_file, loff_t dst_off, loff_t count, in nfs42_remap_file_range() argument
251 struct inode *dst_inode = file_inode(dst_file); in nfs42_remap_file_range()
289 ret = nfs42_proc_clone(src_file, dst_file, src_off, dst_off, count); in nfs42_remap_file_range()
/linux/fs/ceph/
H A Dfile.c3023 struct file *dst_file, loff_t dst_off, in __ceph_copy_file_range() argument
3027 struct inode *dst_inode = file_inode(dst_file); in __ceph_copy_file_range()
3096 ret = file_write_and_wait_range(dst_file, dst_off, (dst_off + len)); in __ceph_copy_file_range()
3108 dst_file, (dst_off + len), &dst_got); in __ceph_copy_file_range()
3154 ret = splice_file_range(src_file, &src_off, dst_file, &dst_off, in __ceph_copy_file_range()
3163 dst_file, (dst_off + len), &dst_got); in __ceph_copy_file_range()
3184 file_update_time(dst_file); in __ceph_copy_file_range()
3209 bytes = splice_file_range(src_file, &src_off, dst_file, in __ceph_copy_file_range()
3224 struct file *dst_file, loff_t dst_off, in ceph_copy_file_range() argument
3229 ret = __ceph_copy_file_range(src_file, src_off, dst_file, dst_off, in ceph_copy_file_range()
[all …]
/linux/fs/fuse/
H A Dfile.c3152 struct file *dst_file, loff_t dst_off, in fuse_copy_file_range() argument
3157 ret = __fuse_copy_file_range(src_file, src_off, dst_file, dst_off, in fuse_copy_file_range()
3161 ret = splice_copy_file_range(src_file, src_off, dst_file, in fuse_copy_file_range()