Home
last modified time | relevance | path

Searched refs:target_dir (Results 1 – 11 of 11) sorted by relevance

/openbmc/linux/fs/exportfs/
H A Dexpfs.c212 reconnect_path(struct vfsmount *mnt, struct dentry *target_dir, char *nbuf) in reconnect_path() argument
216 dentry = dget(target_dir); in reconnect_path()
234 clear_disconnected(target_dir); in reconnect_path()
499 struct dentry *target_dir, *nresult; in exportfs_decode_fh_raw() local
522 target_dir = nop->fh_to_parent(mnt->mnt_sb, fid, in exportfs_decode_fh_raw()
524 if (!target_dir) in exportfs_decode_fh_raw()
526 err = PTR_ERR(target_dir); in exportfs_decode_fh_raw()
527 if (IS_ERR(target_dir)) in exportfs_decode_fh_raw()
535 err = reconnect_path(mnt, target_dir, nbuf); in exportfs_decode_fh_raw()
537 dput(target_dir); in exportfs_decode_fh_raw()
[all …]
/openbmc/phosphor-logging/extensions/openpower-pels/
H A Dsetup.py12 target_dir = os.path.join(this_dir, "pel_registry") variable
14 os.path.join(this_dir, "registry/message_registry.json"), target_dir
17 os.path.join(this_dir, "registry/O_component_ids.json"), target_dir
20 os.path.join(this_dir, "registry/B_component_ids.json"), target_dir
/openbmc/openbmc/poky/scripts/lib/wic/plugins/source/
H A Disoimage-isohybrid.py92 def do_configure_grubefi(cls, part, creator, target_dir): argument
106 splash = os.path.join(target_dir, "splash.jpg")
138 cfg_path = os.path.join(target_dir, "grub.cfg")
308 target_dir = "%s/EFI/BOOT" % isodir
309 if os.path.exists(target_dir):
310 shutil.rmtree(target_dir)
312 os.makedirs(target_dir)
331 grub_target = os.path.join(target_dir, grub_dest_image)
339 if not os.path.isfile(os.path.join(target_dir, "boot.cfg")):
340 cls.do_configure_grubefi(part, creator, target_dir)
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/openvpn/
H A Dopenvpn_2.6.13.bb91 target_dir="${D}/${PTEST_PATH}/unit_tests/$(basename ${dir})"
92 mkdir -p ${target_dir}
93 cp -f ${dir}/Makefile ${target_dir}/
94 sed -i "s/^Makefile:/MM:/g" ${target_dir}/Makefile
95 sed -i 's/^#TESTS = $(am__EXEEXT_4)/TESTS = $(am__EXEEXT_4)/' ${target_dir}/Makefile
98 cp -rf ${testfile} ${target_dir}/
/openbmc/openbmc/poky/meta/lib/oeqa/utils/
H A Dlogparser.py93 def results_as_files(self, target_dir): argument
94 if not os.path.exists(target_dir):
95 raise Exception("Target directory does not exist: %s" % target_dir)
101 section_file = os.path.join(target_dir, prefix)
/openbmc/linux/tools/testing/selftests/damon/
H A Dsysfs.sh231 target_dir=$1
232 ensure_dir "$target_dir" "exist"
233 ensure_file "$target_dir/pid_target" "exist" "600"
234 test_regions "$target_dir/regions"
/openbmc/openbmc/poky/meta/lib/oe/package_manager/rpm/
H A D__init__.py259 target_dir = oe.path.join(self.saved_packaging_data, i)
261 shutil.copytree(source_dir, target_dir, symlinks=True)
263 shutil.copy2(source_dir, target_dir)
269 target_dir = oe.path.join(self.target_rootfs, i)
270 if os.path.exists(target_dir):
271 bb.utils.remove(target_dir, True)
274 shutil.copytree(source_dir, target_dir, symlinks=True)
276 shutil.copy2(source_dir, target_dir)
/openbmc/u-boot/tools/buildman/
H A Dtest.py160 target_dir = None
163 target_dir = arg[2:]
165 if not os.path.isdir(target_dir):
166 os.mkdir(target_dir)
/openbmc/linux/drivers/usb/usbip/
H A Dstub_rx.c69 int target_dir; in tweak_clear_halt_cmd() local
83 target_dir = le16_to_cpu(req->wIndex) & 0x0080; in tweak_clear_halt_cmd()
85 if (target_dir) in tweak_clear_halt_cmd()
/openbmc/openbmc-build-scripts/scripts/
H A Dget_unit_test_report.py110 working_dir = os.path.join(pwd, args.target_dir)
/openbmc/linux/fs/smb/client/
H A Dinode.c2339 struct dentry *source_dentry, struct inode *target_dir, argument
2452 tmprc = cifs_rmdir(target_dir, target_dentry);
2454 tmprc = cifs_unlink(target_dir, target_dentry);
2462 CIFS_I(source_dir)->time = CIFS_I(target_dir)->time = 0;