Home
last modified time | relevance | path

Searched refs:old_path (Results 1 – 17 of 17) sorted by relevance

/linux/tools/testing/selftests/filesystems/fat/
H A Drun_fat_tests.sh44 local old_path="${MNT_PATH}/old_file"
47 echo old | sudo tee "${old_path}" >/dev/null 2>&1
49 sudo "${rename_exchange}" "${old_path}" "${new_path}" >/dev/null 2>&1
51 grep new "${old_path}" >/dev/null 2>&1
59 local old_path="${MNT_PATH}/old_file"
63 echo old | sudo tee "${old_path}" >/dev/null 2>&1
65 sudo "${rename_exchange}" "${old_path}" "${new_path}" >/dev/null 2>&1
67 grep new "${old_path}" >/dev/null 2>&1
/linux/security/apparmor/
H A Dmount.c428 struct path old_path; in aa_bind_mount() local
439 error = kern_path(dev_name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &old_path); in aa_bind_mount()
450 match_mnt(subj_cred, profile, path, buffer, &old_path, in aa_bind_mount()
455 path_put(&old_path); in aa_bind_mount()
522 struct path old_path; in aa_move_mount_old() local
527 error = kern_path(orig_name, LOOKUP_FOLLOW, &old_path); in aa_move_mount_old()
531 error = aa_move_mount(subj_cred, label, &old_path, path); in aa_move_mount_old()
532 path_put(&old_path); in aa_move_mount_old()
668 const struct path *old_path, in build_pivotroot() argument
681 AA_BUG(!old_path); in build_pivotroot()
[all …]
H A Dlsm.c397 struct path old_path = { .mnt = old_dir->mnt, in apparmor_path_rename() local
421 label, &old_path, in apparmor_path_rename()
428 label, &old_path, 0, in apparmor_path_rename()
768 static int apparmor_sb_pivotroot(const struct path *old_path, in apparmor_sb_pivotroot() argument
776 error = aa_pivotroot(current_cred(), label, old_path, new_path); in apparmor_sb_pivotroot()
/linux/fs/
H A Dinit.c168 struct path old_path, new_path; in init_link() local
172 error = kern_path(oldname, 0, &old_path); in init_link()
182 if (old_path.mnt != new_path.mnt) in init_link()
185 error = may_linkat(idmap, &old_path); in init_link()
188 error = security_path_link(old_path.dentry, &new_path, new_dentry); in init_link()
191 error = vfs_link(old_path.dentry, idmap, new_path.dentry->d_inode, in init_link()
196 path_put(&old_path); in init_link()
/linux/tools/testing/kunit/
H A Dkunit_kernel.py296 old_path = get_old_kunitconfig_path(build_dir)
297 if os.path.exists(old_path):
298 os.remove(old_path) # write_to_file appends to the file
299 self._kconfig.write_to_file(old_path)
303 old_path = get_old_kunitconfig_path(build_dir)
304 if not os.path.exists(old_path):
307 old_kconfig = kunit_config.parse_file(old_path)
/linux/fs/vboxsf/
H A Ddir.c402 struct shfl_string *old_path, *new_path; in vboxsf_dir_rename() local
408 old_path = vboxsf_path_from_dentry(sbi, old_dentry); in vboxsf_dir_rename()
409 if (IS_ERR(old_path)) in vboxsf_dir_rename()
410 return PTR_ERR(old_path); in vboxsf_dir_rename()
421 err = vboxsf_rename(sbi->root, old_path, new_path, shfl_flags); in vboxsf_dir_rename()
430 __putname(old_path); in vboxsf_dir_rename()
H A Dvboxsf_wrappers.c341 struct shfl_string *old_path, struct shfl_fsobjinfo *buf) in vboxsf_symlink() argument
352 parms.old_path.type = VMMDEV_HGCM_PARM_TYPE_LINADDR_KERNEL_IN; in vboxsf_symlink()
353 parms.old_path.u.pointer.size = shfl_string_buf_size(old_path); in vboxsf_symlink()
354 parms.old_path.u.pointer.u.linear_addr = (uintptr_t)old_path; in vboxsf_symlink()
H A Dvfsmod.h141 struct shfl_string *old_path, struct shfl_fsobjinfo *buf);
H A Dshfl_hostintf.h889 struct vmmdev_hgcm_function_parameter old_path; member
/linux/tools/lib/subcmd/
H A Dexec-cmd.c150 const char *old_path = getenv("PATH"); in setup_path() local
158 if (old_path) in setup_path()
159 astrcat(&new_path, old_path); in setup_path()
/linux/security/apparmor/include/
H A Dmount.h57 struct aa_label *label, const struct path *old_path,
/linux/tools/perf/
H A Dbuiltin-help.c333 const char *old_path = getenv("MANPATH"); in setup_man_path() local
336 * old_path, the ':' at the end will let 'man' to try in setup_man_path()
338 * there is old_path, we need ':' as delimiter. */ in setup_man_path()
339 if (asprintf(&new_path, "%s:%s", system_path(PERF_MAN_PATH), old_path ?: "") > 0) { in setup_man_path()
/linux/security/tomoyo/
H A Dtomoyo.c
/linux/fs/ocfs2/
H A Docfs2_ioctl.h55 __u64 old_path; member
/linux/sound/pci/hda/
H A Dhda_generic.c4093 struct nid_path *old_path, *path; in mux_select() local
4104 old_path = get_input_path(codec, adc_idx, spec->cur_mux[adc_idx]); in mux_select()
4105 if (!old_path) in mux_select()
4107 if (old_path->active) in mux_select()
4108 snd_hda_activate_path(codec, old_path, false, false); in mux_select()
4126 path_power_down_sync(codec, old_path); in mux_select()
/linux/security/landlock/
H A Dfs.c1394 static int hook_sb_pivotroot(const struct path *const old_path, in hook_sb_pivotroot() argument
/linux/security/
H A Dsecurity.c1583 * @old_path: new location for current rootfs
1590 int security_sb_pivotroot(const struct path *old_path, in security_sb_pivotroot() argument
1593 return call_int_hook(sb_pivotroot, old_path, new_path); in security_sb_pivotroot()