/linux-6.12.1/io_uring/ ! |
D | msg_ring.c | 23 struct file *src_file; member 62 if (WARN_ON_ONCE(!msg->src_file)) in io_msg_ring_cleanup() 65 fput(msg->src_file); in io_msg_ring_cleanup() 66 msg->src_file = NULL; in io_msg_ring_cleanup() 191 struct file *src_file = msg->src_file; in io_msg_install_complete() local 197 ret = __io_fixed_fd_install(target_ctx, src_file, msg->dst_fd); in io_msg_install_complete() 201 msg->src_file = NULL; in io_msg_install_complete() 253 struct file *src_file = msg->src_file; in io_msg_send_fd() local 261 if (!src_file) { in io_msg_send_fd() 262 src_file = io_msg_grab_file(req, issue_flags); in io_msg_send_fd() [all …]
|
/linux-6.12.1/tools/perf/scripts/python/ ! |
D | arm-cs-trace-disasm.py | 157 src_file = ("..." + source_file_name[-37:]) + " " 159 src_file = source_file_name.ljust(41) 162 src_str = src_file + str(line_number).rjust(4) + " <source not found>" 164 src_str = src_file + str(line_number).rjust(4) + " " + source_line
|
D | intel-pt-events.py | 323 src_file = ("..." + source_file_name[-37:]) + " " 325 src_file = source_file_name.ljust(41) 327 src_str = src_file + str(line_number).rjust(4) + " <source not found>" 329 src_str = src_file + str(line_number).rjust(4) + " " + source_line
|
/linux-6.12.1/fs/smb/client/ ! |
D | ioctl.c | 75 struct fd src_file; in cifs_ioctl_copychunk() local 92 src_file = fdget(srcfd); in cifs_ioctl_copychunk() 93 if (!fd_file(src_file)) { in cifs_ioctl_copychunk() 98 if (fd_file(src_file)->f_op->unlocked_ioctl != cifs_ioctl) { in cifs_ioctl_copychunk() 104 src_inode = file_inode(fd_file(src_file)); in cifs_ioctl_copychunk() 109 rc = cifs_file_copychunk_range(xid, fd_file(src_file), 0, dst_file, 0, in cifs_ioctl_copychunk() 114 fdput(src_file); in cifs_ioctl_copychunk()
|
D | cifsfs.c | 1230 static loff_t cifs_remap_file_range(struct file *src_file, loff_t off, in cifs_remap_file_range() argument 1234 struct inode *src_inode = file_inode(src_file); in cifs_remap_file_range() 1238 struct cifsFileInfo *smb_file_src = src_file->private_data; in cifs_remap_file_range() 1343 struct file *src_file, loff_t off, in cifs_file_copychunk_range() argument 1347 struct inode *src_inode = file_inode(src_file); in cifs_file_copychunk_range() 1359 if (!src_file->private_data || !dst_file->private_data) { in cifs_file_copychunk_range() 1367 smb_file_src = src_file->private_data; in cifs_file_copychunk_range() 1430 file_accessed(src_file); in cifs_file_copychunk_range() 1459 static ssize_t cifs_copy_file_range(struct file *src_file, loff_t off, in cifs_copy_file_range() argument 1473 rc = cifs_file_copychunk_range(xid, src_file, off, dst_file, destoff, in cifs_copy_file_range() [all …]
|
D | cifsfs.h | 132 struct file *src_file, loff_t off,
|
D | cifsglob.h | 504 struct cifsFileInfo *src_file); 506 struct cifsFileInfo *src_file, void __user *); 525 struct cifsFileInfo *src_file,
|
/linux-6.12.1/fs/btrfs/ ! |
D | reflink.c | 862 loff_t btrfs_remap_file_range(struct file *src_file, loff_t off, in btrfs_remap_file_range() argument 866 struct inode *src_inode = file_inode(src_file); in btrfs_remap_file_range() 881 ret = btrfs_remap_file_range_prep(src_file, off, dst_file, destoff, in btrfs_remap_file_range() 889 ret = btrfs_clone_files(dst_file, src_file, off, len, destoff); in btrfs_remap_file_range() 907 (file_sync_write(src_file) || file_sync_write(dst_file))) { in btrfs_remap_file_range() 908 ret = btrfs_sync_file(src_file, off, off + len - 1, 0); in btrfs_remap_file_range()
|
/linux-6.12.1/fs/ ! |
D | remap_range.c | 432 loff_t vfs_dedupe_file_range_one(struct file *src_file, loff_t src_pos, in vfs_dedupe_file_range_one() argument 445 ret = remap_verify_area(src_file, src_pos, len, false); 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() 483 ret = dst_file->f_op->remap_file_range(src_file, src_pos, dst_file, in vfs_dedupe_file_range_one()
|
D | ioctl.c | 234 struct fd src_file = fdget(srcfd); in ioctl_file_clone() local 238 if (!fd_file(src_file)) in ioctl_file_clone() 240 cloned = vfs_clone_file_range(fd_file(src_file), off, dst_file, destoff, in ioctl_file_clone() 248 fdput(src_file); in ioctl_file_clone()
|
/linux-6.12.1/fs/nfs/ ! |
D | nfs4file.c | 240 static loff_t nfs42_remap_file_range(struct file *src_file, loff_t src_off, in nfs42_remap_file_range() argument 246 struct inode *src_inode = file_inode(src_file); in nfs42_remap_file_range() 293 ret = nfs42_proc_clone(src_file, dst_file, src_off, dst_off, count); in nfs42_remap_file_range()
|
/linux-6.12.1/fs/ceph/ ! |
D | file.c | 2953 static ssize_t __ceph_copy_file_range(struct file *src_file, loff_t src_off, in __ceph_copy_file_range() argument 2957 struct inode *src_inode = file_inode(src_file); in __ceph_copy_file_range() 3022 ret = file_write_and_wait_range(src_file, src_off, (src_off + len)); in __ceph_copy_file_range() 3038 err = get_rd_wr_caps(src_file, &src_got, in __ceph_copy_file_range() 3085 ret = splice_file_range(src_file, &src_off, dst_file, &dst_off, in __ceph_copy_file_range() 3093 err = get_rd_wr_caps(src_file, &src_got, in __ceph_copy_file_range() 3140 bytes = splice_file_range(src_file, &src_off, dst_file, in __ceph_copy_file_range() 3154 static ssize_t ceph_copy_file_range(struct file *src_file, loff_t src_off, in ceph_copy_file_range() argument 3160 ret = __ceph_copy_file_range(src_file, src_off, dst_file, dst_off, in ceph_copy_file_range() 3164 ret = splice_copy_file_range(src_file, src_off, dst_file, in ceph_copy_file_range()
|
/linux-6.12.1/fs/fuse/ ! |
D | file.c | 3297 static ssize_t fuse_copy_file_range(struct file *src_file, loff_t src_off, in fuse_copy_file_range() argument 3303 ret = __fuse_copy_file_range(src_file, src_off, dst_file, dst_off, in fuse_copy_file_range() 3307 ret = splice_copy_file_range(src_file, src_off, dst_file, in fuse_copy_file_range()
|
/linux-6.12.1/include/linux/ ! |
D | fs.h | 2192 extern loff_t vfs_dedupe_file_range_one(struct file *src_file, loff_t src_pos,
|