Home
last modified time | relevance | path

Searched refs:dst_inode (Results 1 – 9 of 9) sorted by relevance

/linux/fs/nfs/
A Dnfs4file.c244 struct inode *dst_inode = file_inode(dst_file); in nfs42_remap_file_range() local
245 struct nfs_server *server = NFS_SERVER(dst_inode); in nfs42_remap_file_range()
258 if (IS_SWAPFILE(dst_inode) || IS_SWAPFILE(src_inode)) in nfs42_remap_file_range()
270 if (src_inode == dst_inode) in nfs42_remap_file_range()
276 } else if (dst_inode < src_inode) { in nfs42_remap_file_range()
277 inode_lock_nested(dst_inode, I_MUTEX_PARENT); in nfs42_remap_file_range()
281 inode_lock_nested(dst_inode, I_MUTEX_CHILD); in nfs42_remap_file_range()
289 ret = nfs_sync_inode(dst_inode); in nfs42_remap_file_range()
303 } else if (dst_inode < src_inode) { in nfs42_remap_file_range()
305 inode_unlock(dst_inode); in nfs42_remap_file_range()
[all …]
A Dnfs42proc.c320 struct inode *dst_inode = file_inode(dst); in _nfs42_proc_copy() local
322 struct nfs_server *dst_server = NFS_SERVER(dst_inode); in _nfs42_proc_copy()
354 status = nfs_sync_inode(dst_inode); in _nfs42_proc_copy()
372 trace_nfs4_copy(src_inode, dst_inode, args, res, nss, status); in _nfs42_proc_copy()
399 nfs42_copy_dest_done(dst_inode, pos_dst, res->write_res.count); in _nfs42_proc_copy()
1045 struct inode *dst_inode = file_inode(dst_f); in _nfs42_proc_clone() local
1046 struct nfs_server *server = NFS_SERVER(dst_inode); in _nfs42_proc_clone()
1049 .dst_fh = NFS_FH(dst_inode), in _nfs42_proc_clone()
1084 trace_nfs4_clone(src_inode, dst_inode, &args, status); in _nfs42_proc_clone()
1086 nfs42_copy_dest_done(dst_inode, dst_offset, count); in _nfs42_proc_clone()
[all …]
A Dnfs4trace.h2233 const struct inode *dst_inode,
2240 TP_ARGS(src_inode, dst_inode, args, res, nss, error),
2268 const struct nfs_inode *dst_nfsi = NFS_I(dst_inode);
2275 __entry->dst_dev = dst_inode->i_sb->s_dev;
2340 const struct inode *dst_inode,
2345 TP_ARGS(src_inode, dst_inode, args, error),
2366 const struct nfs_inode *dst_nfsi = NFS_I(dst_inode);
2373 __entry->dst_dev = dst_inode->i_sb->s_dev;
A Dnfs4proc.c5530 struct inode *dst_inode = file_inode(dst); in _nfs4_proc_commit() local
5531 struct nfs_server *server = NFS_SERVER(dst_inode); in _nfs4_proc_commit()
5538 args->fh = NFS_FH(dst_inode); in _nfs4_proc_commit()
/linux/fs/btrfs/
A Dreflink.c863 struct inode *dst_inode = file_inode(dst_file); in btrfs_remap_file_range() local
864 bool same_inode = dst_inode == src_inode; in btrfs_remap_file_range()
873 lock_two_nondirectories(src_inode, dst_inode); in btrfs_remap_file_range()
874 btrfs_double_mmap_lock(src_inode, dst_inode); in btrfs_remap_file_range()
883 ret = btrfs_extent_same(src_inode, off, len, dst_inode, destoff); in btrfs_remap_file_range()
891 btrfs_double_mmap_unlock(src_inode, dst_inode); in btrfs_remap_file_range()
892 unlock_two_nondirectories(src_inode, dst_inode); in btrfs_remap_file_range()
/linux/fs/ceph/
A Dfile.c2214 size = i_size_read(dst_inode); in is_file_size_ok()
2217 if (inode_newsize_ok(dst_inode, endoff)) in is_file_size_ok()
2352 struct inode *dst_inode = file_inode(dst_file); in __ceph_copy_file_range() local
2354 struct ceph_inode_info *dst_ci = ceph_inode(dst_inode); in __ceph_copy_file_range()
2363 if (src_inode->i_sb != dst_inode->i_sb) { in __ceph_copy_file_range()
2373 if (ceph_snap(dst_inode) != CEPH_NOSNAP) in __ceph_copy_file_range()
2484 err = is_file_size_ok(src_inode, dst_inode, in __ceph_copy_file_range()
2490 size = i_size_read(dst_inode); in __ceph_copy_file_range()
2503 inode_inc_iversion_raw(dst_inode); in __ceph_copy_file_range()
2507 if (ceph_inode_set_size(dst_inode, dst_off) || in __ceph_copy_file_range()
[all …]
/linux/tools/testing/selftests/bpf/progs/
A Dprofiler.h138 ino_t dst_inode; member
A Dprofiler.inc.h801 filemod_data->dst_inode = file_ino; in kprobe_ret__do_filp_open()
855 filemod_data->dst_inode = dst_file_ino; in BPF_KPROBE()
914 filemod_data->dst_inode = dst_file_ino; in BPF_KPROBE()
/linux/fs/f2fs/
A Dfile.c1210 static int __clone_blkaddrs(struct inode *src_inode, struct inode *dst_inode, in __clone_blkaddrs() argument
1230 set_new_dnode(&dn, dst_inode, NULL, NULL, 0); in __clone_blkaddrs()
1242 ADDRS_PER_PAGE(dn.node_page, dst_inode) - in __clone_blkaddrs()
1251 f2fs_i_blocks_write(dst_inode, in __clone_blkaddrs()
1261 if (dst_inode->i_size < new_size) in __clone_blkaddrs()
1262 f2fs_i_size_write(dst_inode, new_size); in __clone_blkaddrs()
1273 pdst = f2fs_get_new_data_page(dst_inode, NULL, dst + i, in __clone_blkaddrs()
1295 struct inode *dst_inode, pgoff_t src, pgoff_t dst, in __exchange_data_block() argument
1325 ret = __clone_blkaddrs(src_inode, dst_inode, src_blkaddr, in __exchange_data_block()

Completed in 59 milliseconds