Searched refs:realpath (Results 1 - 25 of 60) sorted by relevance

123

/linux-master/tools/testing/selftests/bpf/
H A Dtest_doc_build.sh7 SCRIPT_REL_PATH=$(realpath $0)
9 KDIR_ROOT_DIR=$(realpath $SCRIPT_REL_DIR/../../../../)
10 SCRIPT_REL_DIR=$(dirname $(realpath --relative-to=$KDIR_ROOT_DIR $SCRIPT_REL_PATH))
H A Dtest_bpftool.sh6 SCRIPT_DIR=$(dirname $(realpath $0))
H A Dtest_bpftool_build.sh19 SCRIPT_REL_PATH=$(realpath --relative-to=$PWD $0)
21 KDIR_ROOT_DIR=$(realpath $PWD/$SCRIPT_REL_DIR/../../../../)
41 local dir=$(realpath $1)
H A Dgenerate_udp_fragments.py87 dir = os.path.dirname(os.path.realpath(__file__))
H A Dtest_bpftool.py14 cur_dir = os.path.dirname(os.path.realpath(__file__))
/linux-master/arch/powerpc/tools/
H A Dcheckpatch.sh7 script_base=$(realpath $(dirname $0))
/linux-master/tools/testing/selftests/bpf/bpf_testmod/
H A DMakefile1 BPF_TESTMOD_DIR := $(realpath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
/linux-master/tools/net/ynl/
H A Dynl-regen.sh4 TOOL=$(dirname $(realpath $0))/ynl-gen-c.py
17 KDIR=$(dirname $(dirname $(dirname $(dirname $(realpath $0)))))
/linux-master/tools/testing/selftests/bpf/bpf_test_no_cfi/
H A DMakefile1 BPF_TEST_NO_CFI_DIR := $(realpath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
/linux-master/fs/overlayfs/
H A Dinode.c162 struct path realpath; local
172 type = ovl_path_real(dentry, &realpath);
174 err = ovl_do_getattr(&realpath, stat, request_mask, flags);
198 ovl_path_lower(dentry, &realpath);
199 err = ovl_do_getattr(&realpath, &lowerstat, lowermask,
234 realpath.dentry == ovl_dentry_lowerdata(dentry)) {
250 ovl_path_lowerdata(dentry, &realpath);
251 if (realpath.dentry) {
252 err = ovl_do_getattr(&realpath, &lowerdatastat,
294 struct path realpath; local
447 struct path realpath; local
483 struct path realpath; local
614 ovl_security_fileattr(const struct path *realpath, struct fileattr *fa, bool set) argument
636 ovl_real_fileattr_set(const struct path *realpath, struct fileattr *fa) argument
711 ovl_real_fileattr_get(const struct path *realpath, struct fileattr *fa) argument
728 struct path realpath; local
1215 struct path realpath = { local
[all...]
H A Dxattrs.c43 struct path realpath; local
47 ovl_path_lower(dentry, &realpath);
49 err = vfs_getxattr(mnt_idmap(realpath.mnt), realdentry, name, NULL, 0);
89 struct path realpath; local
91 ovl_i_path_real(inode, &realpath);
93 res = vfs_getxattr(mnt_idmap(realpath.mnt), realpath.dentry, name, value, size);
H A Dfile.c31 const struct path *realpath)
33 struct inode *realinode = d_inode(realpath->dentry);
46 real_idmap = mnt_idmap(realpath->mnt);
54 realfile = backing_file_open(&file->f_path, flags, realpath,
99 struct path realpath; local
106 ovl_path_real(dentry, &realpath);
113 ovl_path_realdata(dentry, &realpath);
115 if (!realpath.dentry)
119 if (unlikely(file_inode(real->file) != d_inode(realpath.dentry))) {
121 real->file = ovl_open_realfile(file, &realpath);
30 ovl_open_realfile(const struct file *file, const struct path *realpath) argument
149 struct path realpath; local
[all...]
H A Dreaddir.c298 static inline int ovl_dir_read(const struct path *realpath, argument
304 realfile = ovl_path_open(realpath, O_RDONLY | O_LARGEFILE);
319 err = ovl_check_whiteouts(realpath, rdd);
351 struct path realpath; local
363 next = ovl_path_next(idx, dentry, &realpath, &layer);
364 rdd.is_upper = ovl_dentry_upper(dentry) == realpath.dentry;
369 err = ovl_dir_read(&realpath, &rdd);
379 err = ovl_dir_read(&realpath, &rdd);
570 struct path realpath; local
580 ovl_path_upper(path->dentry, &realpath);
855 ovl_dir_open_realfile(const struct file *file, const struct path *realpath) argument
948 struct path realpath; local
1071 ovl_check_d_type_supported(const struct path *realpath) argument
[all...]
/linux-master/scripts/
H A Ddev-needs.sh93 local PARENT=$(realpath $CON/..)
101 PARENT=$(realpath $PARENT/..)
131 SUPPLIER=$(realpath $SL/supplier)
160 echo -n $(basename $(realpath $f))
170 echo -n $(basename $(realpath $f))
185 echo -n $(realpath $f)
272 CONSUMER=$(realpath ${CONSUMERS[$i]})
H A Dtags.sh39 tree=$(realpath "$tree")/
105 } | xargs realpath -esq $([ -z "$KBUILD_ABS_SRCTREE" ] && echo --relative-to=.) |
/linux-master/tools/testing/selftests/
H A Drun_kselftest.sh6 BASE_DIR=$(realpath $(dirname $0))
/linux-master/tools/testing/selftests/livepatch/test_modules/
H A DMakefile1 TESTMODS_DIR := $(realpath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
/linux-master/security/tomoyo/
H A DMakefile2 obj-y = audit.o common.o condition.o domain.o environ.o file.o gc.o group.o load_policy.o memory.o mount.o network.o realpath.o securityfs_if.o tomoyo.o util.o
H A Daudit.c250 char *realpath = NULL; local
263 realpath = tomoyo_realpath_from_path(&file->f_path);
265 if (!realpath || !bprm_info)
267 /* +80 is for " exec={ realpath=\"%s\" argc=%d envc=%d %s }" */
268 len += strlen(realpath) + 80 + strlen(bprm_info);
280 if (realpath) {
284 " exec={ realpath=\"%s\" argc=%d envc=%d %s }",
285 realpath, bprm->argc, bprm->envc, bprm_info);
292 kfree(realpath);
/linux-master/tools/testing/selftests/arm64/
H A DMakefile15 top_srcdir = $(realpath ../../../../)
/linux-master/tools/testing/selftests/riscv/
H A DMakefile16 top_srcdir = $(realpath ../../../../)
/linux-master/tools/leds/
H A Dget_led_device_info.sh8 linux_top=$(dirname `realpath $0` | awk -F/ \
18 led_defs_path=`realpath $2`
/linux-master/scripts/clang-tools/
H A Dgen_compile_commands.py67 os.path.realpath(args.directory),
176 abs_path = os.path.realpath(os.path.join(root_directory, file_path))
/linux-master/tools/perf/tests/
H A Dsdt.c90 tempdir = realpath(__tempdir, NULL);
/linux-master/tools/testing/selftests/mount/
H A Dnosymfollow-test.c166 char *path = realpath(LINK, NULL);
169 die("realpath failed: %s\n", strerror(errno));
171 die("realpath strcmp failed\n");

Completed in 225 milliseconds

123