/kernel/linux/linux-5.10/fs/affs/ |
H A D | namei.c | 391 affs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry) in affs_link() argument 393 struct inode *inode = d_inode(old_dentry); in affs_link() 402 affs_rename(struct inode *old_dir, struct dentry *old_dentry, in affs_rename() argument 411 affs_nofilenametruncate(old_dentry)); in affs_rename() 423 bh = affs_bread(sb, d_inode(old_dentry)->i_ino); in affs_rename() 449 affs_xrename(struct inode *old_dir, struct dentry *old_dentry, in affs_xrename() argument 458 bh_old = affs_bread(sb, d_inode(old_dentry)->i_ino); in affs_xrename() 490 affs_copy_name(AFFS_TAIL(sb, bh_new)->name, old_dentry); in affs_xrename() 503 int affs_rename2(struct inode *old_dir, struct dentry *old_dentry, in affs_rename2() argument 512 old_dir->i_ino, old_dentry, new_di in affs_rename2() [all...] |
/kernel/linux/linux-5.10/fs/nfs/ |
H A D | unlink.c | 263 struct dentry *old_dentry = data->old_dentry; in nfs_async_rename_done() local 265 trace_nfs_sillyrename_rename(old_dir, old_dentry, in nfs_async_rename_done() 285 if (d_really_is_positive(data->old_dentry)) in nfs_async_rename_release() 286 nfs_mark_for_revalidate(d_inode(data->old_dentry)); in nfs_async_rename_release() 301 dput(data->old_dentry); in nfs_async_rename_release() 326 * @old_dentry: original dentry to be renamed 327 * @new_dentry: dentry to which the old_dentry should be renamed 334 struct dentry *old_dentry, struct dentry *new_dentry, in nfs_async_rename() 363 data->old_dentry in nfs_async_rename() 333 nfs_async_rename(struct inode *old_dir, struct inode *new_dir, struct dentry *old_dentry, struct dentry *new_dentry, void (*complete)(struct rpc_task *, struct nfs_renamedata *)) nfs_async_rename() argument [all...] |
/kernel/linux/linux-6.6/fs/nfs/ |
H A D | unlink.c | 268 struct dentry *old_dentry = data->old_dentry; in nfs_async_rename_done() local 270 trace_nfs_sillyrename_rename(old_dir, old_dentry, in nfs_async_rename_done() 290 if (d_really_is_positive(data->old_dentry)) in nfs_async_rename_release() 291 nfs_mark_for_revalidate(d_inode(data->old_dentry)); in nfs_async_rename_release() 306 dput(data->old_dentry); in nfs_async_rename_release() 331 * @old_dentry: original dentry to be renamed 332 * @new_dentry: dentry to which the old_dentry should be renamed 339 struct dentry *old_dentry, struct dentry *new_dentry, in nfs_async_rename() 373 data->old_dentry in nfs_async_rename() 338 nfs_async_rename(struct inode *old_dir, struct inode *new_dir, struct dentry *old_dentry, struct dentry *new_dentry, void (*complete)(struct rpc_task *, struct nfs_renamedata *)) nfs_async_rename() argument [all...] |
/kernel/linux/linux-6.6/fs/affs/ |
H A D | namei.c | 394 affs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry) in affs_link() argument 396 struct inode *inode = d_inode(old_dentry); in affs_link() 405 affs_rename(struct inode *old_dir, struct dentry *old_dentry, in affs_rename() argument 414 affs_nofilenametruncate(old_dentry)); in affs_rename() 426 bh = affs_bread(sb, d_inode(old_dentry)->i_ino); in affs_rename() 452 affs_xrename(struct inode *old_dir, struct dentry *old_dentry, in affs_xrename() argument 461 bh_old = affs_bread(sb, d_inode(old_dentry)->i_ino); in affs_xrename() 493 affs_copy_name(AFFS_TAIL(sb, bh_new)->name, old_dentry); in affs_xrename() 507 struct dentry *old_dentry, struct inode *new_dir, in affs_rename2() 515 old_dir->i_ino, old_dentry, new_di in affs_rename2() 506 affs_rename2(struct mnt_idmap *idmap, struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry, unsigned int flags) affs_rename2() argument [all...] |
/kernel/linux/linux-5.10/fs/jffs2/ |
H A D | dir.c | 243 static int jffs2_link (struct dentry *old_dentry, struct inode *dir_i, struct dentry *dentry) in jffs2_link() argument 245 struct jffs2_sb_info *c = JFFS2_SB_INFO(old_dentry->d_sb); in jffs2_link() 246 struct jffs2_inode_info *f = JFFS2_INODE_INFO(d_inode(old_dentry)); in jffs2_link() 256 if (d_is_dir(old_dentry)) in jffs2_link() 260 type = (d_inode(old_dentry)->i_mode & S_IFMT) >> 12; in jffs2_link() 268 set_nlink(d_inode(old_dentry), ++f->inocache->pino_nlink); in jffs2_link() 270 d_instantiate(dentry, d_inode(old_dentry)); in jffs2_link() 272 ihold(d_inode(old_dentry)); in jffs2_link() 759 static int jffs2_rename (struct inode *old_dir_i, struct dentry *old_dentry, in jffs2_rename() argument 801 type = (d_inode(old_dentry) in jffs2_rename() [all...] |
/kernel/linux/linux-6.6/fs/jffs2/ |
H A D | dir.c | 247 static int jffs2_link (struct dentry *old_dentry, struct inode *dir_i, struct dentry *dentry) in jffs2_link() argument 249 struct jffs2_sb_info *c = JFFS2_SB_INFO(old_dentry->d_sb); in jffs2_link() 250 struct jffs2_inode_info *f = JFFS2_INODE_INFO(d_inode(old_dentry)); in jffs2_link() 260 if (d_is_dir(old_dentry)) in jffs2_link() 264 type = (d_inode(old_dentry)->i_mode & S_IFMT) >> 12; in jffs2_link() 272 set_nlink(d_inode(old_dentry), ++f->inocache->pino_nlink); in jffs2_link() 274 d_instantiate(dentry, d_inode(old_dentry)); in jffs2_link() 276 ihold(d_inode(old_dentry)); in jffs2_link() 770 struct inode *old_dir_i, struct dentry *old_dentry, in jffs2_rename() 812 type = (d_inode(old_dentry) in jffs2_rename() 769 jffs2_rename(struct mnt_idmap *idmap, struct inode *old_dir_i, struct dentry *old_dentry, struct inode *new_dir_i, struct dentry *new_dentry, unsigned int flags) jffs2_rename() argument [all...] |
/kernel/linux/linux-5.10/fs/debugfs/ |
H A D | inode.c | 775 * @old_dentry: dentry of an object to be renamed. 783 * This function will return a pointer to old_dentry (which is updated to 790 struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry, in debugfs_rename() argument 801 if (IS_ERR_OR_NULL(old_dentry)) in debugfs_rename() 802 return old_dentry; in debugfs_rename() 809 if (d_really_is_negative(old_dentry) || old_dentry == trap || in debugfs_rename() 810 d_mountpoint(old_dentry)) in debugfs_rename() 817 take_dentry_name_snapshot(&old_name, old_dentry); in debugfs_rename() 819 error = simple_rename(d_inode(old_dir), old_dentry, d_inod in debugfs_rename() 828 NULL, old_dentry); debugfs_rename() local [all...] |
/kernel/linux/linux-6.6/fs/debugfs/ |
H A D | inode.c | 808 * @old_dentry: dentry of an object to be renamed. 816 * This function will return a pointer to old_dentry (which is updated to 823 struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry, in debugfs_rename() argument 834 if (IS_ERR_OR_NULL(old_dentry)) in debugfs_rename() 835 return old_dentry; in debugfs_rename() 842 if (d_really_is_negative(old_dentry) || old_dentry == trap || in debugfs_rename() 843 d_mountpoint(old_dentry)) in debugfs_rename() 850 take_dentry_name_snapshot(&old_name, old_dentry); in debugfs_rename() 852 error = simple_rename(&nop_mnt_idmap, d_inode(old_dir), old_dentry, in debugfs_rename() 861 NULL, old_dentry); debugfs_rename() local [all...] |
/kernel/linux/linux-5.10/fs/hmdfs/ |
H A D | inode_remote.c | 754 static void rename_in_cache_file(uint64_t dev_id, struct dentry *old_dentry, in rename_in_cache_file() argument 760 old_item = hmdfs_find_cache_item(dev_id, old_dentry->d_parent); in rename_in_cache_file() 763 hmdfs_rename_dentry(old_dentry, new_dentry, old_item->filp, in rename_in_cache_file() 779 int hmdfs_rename_remote(struct inode *old_dir, struct dentry *old_dentry, in hmdfs_rename_remote() argument 785 const char *old_dentry_d_name = old_dentry->d_name.name; in hmdfs_rename_remote() 789 struct hmdfs_inode_info *info = hmdfs_i(old_dentry->d_inode); in hmdfs_rename_remote() 792 trace_hmdfs_rename_remote(old_dir, old_dentry, new_dir, new_dentry, in hmdfs_rename_remote() 798 if (hmdfs_file_type(old_dentry->d_name.name) != HMDFS_TYPE_COMMON || in hmdfs_rename_remote() 808 if (hmdfs_d(old_dentry)->device_id != hmdfs_d(new_dentry)->device_id) in hmdfs_rename_remote() 812 hmdfs_get_dentry_relative_path(old_dentry in hmdfs_rename_remote() [all...] |
H A D | inode_local.c | 617 int hmdfs_rename_local_dentry(struct inode *old_dir, struct dentry *old_dentry, in hmdfs_rename_local_dentry() argument 634 hmdfs_get_lower_path(old_dentry, &lower_old_path); in hmdfs_rename_local_dentry() 671 dget(old_dentry); in hmdfs_rename_local_dentry() 678 hmdfs_drop_remote_cache_dents(old_dentry->d_parent); in hmdfs_rename_local_dentry() 679 if (old_dentry->d_parent != new_dentry->d_parent) in hmdfs_rename_local_dentry() 682 hmdfs_clear_drop_flag(old_dentry->d_parent); in hmdfs_rename_local_dentry() 683 if (old_dentry->d_parent != new_dentry->d_parent) in hmdfs_rename_local_dentry() 684 hmdfs_clear_drop_flag(old_dentry->d_parent); in hmdfs_rename_local_dentry() 688 dput(old_dentry); in hmdfs_rename_local_dentry() 699 int hmdfs_rename_local(struct inode *old_dir, struct dentry *old_dentry, in hmdfs_rename_local() argument [all...] |
H A D | inode_cloud_merge.c | 653 ret = do_rename_merge(rename_para->old_dir, rename_para->old_dentry, in rename_lo_d_cloud_child() 664 struct dentry *old_dentry, in hmdfs_rename_cloud_merge() 670 struct hmdfs_rename_para rename_para = { old_dir, old_dentry, new_dir, in hmdfs_rename_cloud_merge() 674 if (hmdfs_file_type(old_dentry->d_name.name) != HMDFS_TYPE_COMMON || in hmdfs_rename_cloud_merge() 691 trace_hmdfs_rename_merge(old_dir, old_dentry, new_dir, new_dentry, in hmdfs_rename_cloud_merge() 704 if (S_ISREG(old_dentry->d_inode->i_mode) && !ret) in hmdfs_rename_cloud_merge() 705 d_invalidate(old_dentry); in hmdfs_rename_cloud_merge() 663 hmdfs_rename_cloud_merge(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry, unsigned int flags) hmdfs_rename_cloud_merge() argument
|
/kernel/linux/linux-6.6/fs/hmdfs/ |
H A D | inode_remote.c | 754 static void rename_in_cache_file(uint64_t dev_id, struct dentry *old_dentry, in rename_in_cache_file() argument 760 old_item = hmdfs_find_cache_item(dev_id, old_dentry->d_parent); in rename_in_cache_file() 763 hmdfs_rename_dentry(old_dentry, new_dentry, old_item->filp, in rename_in_cache_file() 779 int hmdfs_rename_remote(struct mnt_idmap *idmap, struct inode *old_dir, struct dentry *old_dentry, in hmdfs_rename_remote() argument 785 const char *old_dentry_d_name = old_dentry->d_name.name; in hmdfs_rename_remote() 789 struct hmdfs_inode_info *info = hmdfs_i(old_dentry->d_inode); in hmdfs_rename_remote() 792 trace_hmdfs_rename_remote(old_dir, old_dentry, new_dir, new_dentry, in hmdfs_rename_remote() 798 if (hmdfs_file_type(old_dentry->d_name.name) != HMDFS_TYPE_COMMON || in hmdfs_rename_remote() 808 if (hmdfs_d(old_dentry)->device_id != hmdfs_d(new_dentry)->device_id) in hmdfs_rename_remote() 812 hmdfs_get_dentry_relative_path(old_dentry in hmdfs_rename_remote() [all...] |
H A D | inode_local.c | 617 int hmdfs_rename_local_dentry(struct inode *old_dir, struct dentry *old_dentry, in hmdfs_rename_local_dentry() argument 635 hmdfs_get_lower_path(old_dentry, &lower_old_path); in hmdfs_rename_local_dentry() 670 rename_data.old_dentry = lower_old_dentry; in hmdfs_rename_local_dentry() 678 dget(old_dentry); in hmdfs_rename_local_dentry() 685 hmdfs_drop_remote_cache_dents(old_dentry->d_parent); in hmdfs_rename_local_dentry() 686 if (old_dentry->d_parent != new_dentry->d_parent) in hmdfs_rename_local_dentry() 689 hmdfs_clear_drop_flag(old_dentry->d_parent); in hmdfs_rename_local_dentry() 690 if (old_dentry->d_parent != new_dentry->d_parent) in hmdfs_rename_local_dentry() 691 hmdfs_clear_drop_flag(old_dentry->d_parent); in hmdfs_rename_local_dentry() 695 dput(old_dentry); in hmdfs_rename_local_dentry() 706 hmdfs_rename_local(struct mnt_idmap *idmap, struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry, unsigned int flags) hmdfs_rename_local() argument [all...] |
/kernel/linux/linux-5.10/fs/sysv/ |
H A D | namei.c | 99 static int sysv_link(struct dentry * old_dentry, struct inode * dir, in sysv_link() argument 102 struct inode *inode = d_inode(old_dentry); in sysv_link() 189 static int sysv_rename(struct inode * old_dir, struct dentry * old_dentry, in sysv_rename() argument 193 struct inode * old_inode = d_inode(old_dentry); in sysv_rename() 204 old_de = sysv_find_entry(old_dentry, &old_page); in sysv_rename()
|
/kernel/linux/linux-5.10/fs/minix/ |
H A D | namei.c | 101 static int minix_link(struct dentry * old_dentry, struct inode * dir, in minix_link() argument 104 struct inode *inode = d_inode(old_dentry); in minix_link() 184 static int minix_rename(struct inode * old_dir, struct dentry *old_dentry, in minix_rename() argument 188 struct inode * old_inode = d_inode(old_dentry); in minix_rename() 199 old_de = minix_find_entry(old_dentry, &old_page); in minix_rename()
|
/kernel/linux/linux-6.6/fs/sysv/ |
H A D | namei.c | 101 static int sysv_link(struct dentry * old_dentry, struct inode * dir, in sysv_link() argument 104 struct inode *inode = d_inode(old_dentry); in sysv_link() 192 struct dentry *old_dentry, struct inode *new_dir, in sysv_rename() 195 struct inode * old_inode = d_inode(old_dentry); in sysv_rename() 206 old_de = sysv_find_entry(old_dentry, &old_page); in sysv_rename() 191 sysv_rename(struct mnt_idmap *idmap, struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry, unsigned int flags) sysv_rename() argument
|
/kernel/linux/linux-6.6/security/landlock/ |
H A D | fs.c | 763 * @old_dentry: File or directory requested to be moved or linked. 810 * - -EXDEV if @old_dentry would inherit new access rights from @new_dir; 813 static int current_check_refer_path(struct dentry *const old_dentry, in current_check_refer_path() argument 830 if (unlikely(d_is_negative(old_dentry))) in current_check_refer_path() 841 get_mode_access(d_backing_inode(old_dentry)->i_mode); in current_check_refer_path() 843 access_request_parent1 |= maybe_remove(old_dentry); in current_check_refer_path() 848 if (old_dentry->d_parent == new_dir->dentry) { in current_check_refer_path() 872 old_dentry->d_parent, in current_check_refer_path() 882 * take into account the @old_dentry access rights aggregated with its in current_check_refer_path() 888 old_dentry, access_request_parent in current_check_refer_path() 1102 hook_path_link(struct dentry *const old_dentry, const struct path *const new_dir, struct dentry *const new_dentry) hook_path_link() argument 1110 hook_path_rename(const struct path *const old_dir, struct dentry *const old_dentry, const struct path *const new_dir, struct dentry *const new_dentry, const unsigned int flags) hook_path_rename() argument [all...] |
/kernel/linux/linux-6.6/fs/f2fs/ |
H A D | namei.c | 396 static int f2fs_link(struct dentry *old_dentry, struct inode *dir, in f2fs_link() argument 399 struct inode *inode = d_inode(old_dentry); in f2fs_link() 408 err = fscrypt_prepare_link(old_dentry, dir, dentry); in f2fs_link() 414 F2FS_I(old_dentry->d_inode)->i_projid))) in f2fs_link() 956 struct dentry *old_dentry, struct inode *new_dir, in f2fs_rename() 960 struct inode *old_inode = d_inode(old_dentry); in f2fs_rename() 977 F2FS_I(old_dentry->d_inode)->i_projid))) in f2fs_rename() 997 err = f2fs_setup_filename(old_dir, &old_dentry->d_name, in f2fs_rename() 1022 old_entry = f2fs_find_entry(old_dir, &old_dentry->d_name, &old_page); in f2fs_rename() 1106 err = f2fs_add_link(old_dentry, whiteou in f2fs_rename() 955 f2fs_rename(struct mnt_idmap *idmap, struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry, unsigned int flags) f2fs_rename() argument 1153 f2fs_cross_rename(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry) f2fs_cross_rename() argument 1318 f2fs_rename2(struct mnt_idmap *idmap, struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry, unsigned int flags) f2fs_rename2() argument [all...] |
/kernel/linux/linux-5.10/fs/f2fs/ |
H A D | namei.c | 381 static int f2fs_link(struct dentry *old_dentry, struct inode *dir, in f2fs_link() argument 384 struct inode *inode = d_inode(old_dentry); in f2fs_link() 393 err = fscrypt_prepare_link(old_dentry, dir, dentry); in f2fs_link() 399 F2FS_I(old_dentry->d_inode)->i_projid))) in f2fs_link() 913 static int f2fs_rename(struct inode *old_dir, struct dentry *old_dentry, in f2fs_rename() argument 918 struct inode *old_inode = d_inode(old_dentry); in f2fs_rename() 935 F2FS_I(old_dentry->d_inode)->i_projid))) in f2fs_rename() 973 old_entry = f2fs_find_entry(old_dir, &old_dentry->d_name, &old_page); in f2fs_rename() 1057 err = f2fs_add_link(old_dentry, whiteout); in f2fs_rename() 1105 static int f2fs_cross_rename(struct inode *old_dir, struct dentry *old_dentry, in f2fs_cross_rename() argument 1270 f2fs_rename2(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry, unsigned int flags) f2fs_rename2() argument [all...] |
/kernel/linux/linux-5.10/fs/ufs/ |
H A D | namei.c | 148 static int ufs_link (struct dentry * old_dentry, struct inode * dir, in ufs_link() argument 151 struct inode *inode = d_inode(old_dentry); in ufs_link() 243 static int ufs_rename(struct inode *old_dir, struct dentry *old_dentry, in ufs_rename() argument 247 struct inode *old_inode = d_inode(old_dentry); in ufs_rename() 258 old_de = ufs_find_entry(old_dir, &old_dentry->d_name, &old_page); in ufs_rename()
|
/kernel/linux/linux-6.6/fs/minix/ |
H A D | namei.c | 96 static int minix_link(struct dentry * old_dentry, struct inode * dir, in minix_link() argument 99 struct inode *inode = d_inode(old_dentry); in minix_link() 178 struct inode *old_dir, struct dentry *old_dentry, in minix_rename() 182 struct inode * old_inode = d_inode(old_dentry); in minix_rename() 193 old_de = minix_find_entry(old_dentry, &old_page); in minix_rename() 177 minix_rename(struct mnt_idmap *idmap, struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry, unsigned int flags) minix_rename() argument
|
/kernel/linux/linux-6.6/fs/ufs/ |
H A D | namei.c | 150 static int ufs_link (struct dentry * old_dentry, struct inode * dir, in ufs_link() argument 153 struct inode *inode = d_inode(old_dentry); in ufs_link() 247 struct dentry *old_dentry, struct inode *new_dir, in ufs_rename() 250 struct inode *old_inode = d_inode(old_dentry); in ufs_rename() 261 old_de = ufs_find_entry(old_dir, &old_dentry->d_name, &old_page); in ufs_rename() 246 ufs_rename(struct mnt_idmap *idmap, struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry, unsigned int flags) ufs_rename() argument
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/ |
H A D | local_storage.c | 108 int BPF_PROG(inode_rename, struct inode *old_dir, struct dentry *old_dentry, in BPF_PROG() argument 122 storage = bpf_inode_storage_get(&inode_storage_map, old_dentry->d_inode, in BPF_PROG() 130 err = bpf_inode_storage_delete(&inode_storage_map, old_dentry->d_inode); in BPF_PROG()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | fscrypt.h | 240 int __fscrypt_prepare_rename(struct inode *old_dir, struct dentry *old_dentry, 526 struct dentry *old_dentry, in __fscrypt_prepare_rename() 714 * @old_dentry: an existing dentry for the inode being linked 730 static inline int fscrypt_prepare_link(struct dentry *old_dentry, in fscrypt_prepare_link() argument 735 return __fscrypt_prepare_link(d_inode(old_dentry), dir, dentry); in fscrypt_prepare_link() 743 * @old_dentry: dentry for source file 762 struct dentry *old_dentry, in fscrypt_prepare_rename() 768 return __fscrypt_prepare_rename(old_dir, old_dentry, in fscrypt_prepare_rename() 525 __fscrypt_prepare_rename(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry, unsigned int flags) __fscrypt_prepare_rename() argument 761 fscrypt_prepare_rename(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry, unsigned int flags) fscrypt_prepare_rename() argument
|
/kernel/linux/linux-6.6/fs/ |
H A D | libfs.c | 315 * @old_dentry: dentry being moved 323 struct dentry *old_dentry, in simple_offset_rename_exchange() 329 u32 old_index = dentry2offset(old_dentry); in simple_offset_rename_exchange() 333 simple_offset_remove(old_ctx, old_dentry); in simple_offset_rename_exchange() 336 ret = simple_offset_add(new_ctx, old_dentry); in simple_offset_rename_exchange() 342 simple_offset_remove(new_ctx, old_dentry); in simple_offset_rename_exchange() 346 ret = simple_rename_exchange(old_dir, old_dentry, new_dir, new_dentry); in simple_offset_rename_exchange() 348 simple_offset_remove(new_ctx, old_dentry); in simple_offset_rename_exchange() 355 offset_set(old_dentry, old_index); in simple_offset_rename_exchange() 356 xa_store(&old_ctx->xa, old_index, old_dentry, GFP_KERNE in simple_offset_rename_exchange() 322 simple_offset_rename_exchange(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry) simple_offset_rename_exchange() argument 646 simple_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry) simple_link() argument 716 simple_rename_timestamp(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry) simple_rename_timestamp() argument 731 simple_rename_exchange(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry) simple_rename_exchange() argument 751 simple_rename(struct mnt_idmap *idmap, struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry, unsigned int flags) simple_rename() argument [all...] |