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

123

/linux-master/Documentation/sphinx/
H A Dkernel_include.py63 path = os.path.realpath(
H A Dmaintainers_include.py180 path = os.path.realpath(path)
/linux-master/
H A DMakefile42 abs_srctree := $(realpath $(dir $(this-makefile)))
193 # $(realpath ...) gets empty if the path does not exist. Run 'mkdir -p' first.
195 # $(realpath ...) resolves symlinks
196 abs_objtree := $(realpath $(KBUILD_OUTPUT))
/linux-master/arch/powerpc/tools/
H A Dcheckpatch.sh7 script_base=$(realpath $(dirname $0))
/linux-master/fs/overlayfs/
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 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 Doverlayfs.h728 int ovl_check_d_type_supported(const struct path *realpath);
857 int ovl_real_fileattr_get(const struct path *realpath, struct fileattr *fa);
858 int ovl_real_fileattr_set(const struct path *realpath, struct fileattr *fa);
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...]
H A Dutil.c1514 struct path realpath; local
1520 realinode = ovl_i_path_real(inode, &realpath);
1521 real_idmap = mnt_idmap(realpath.mnt);
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);
/linux-master/rust/
H A DMakefile103 -e 's:<a href="srctree/([^"]+)">:<a href="$(realpath $(srctree))/\1">:g'
416 $(realpath $(srctree)) $(realpath $(objtree)) \
/linux-master/scripts/
H A DMakefile.package30 --output=$$(realpath $@) $(archive-args)
138 s@SRCTREE@$(realpath $(srctree))@" \
193 perf-archive-args = --add-file=$$(realpath $(word 2, $^)) \
194 --add-file=$$(realpath $(word 3, $^)) \
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/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/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);
H A Dcommon.c106 [TOMOYO_EXEC_REALPATH] = "exec.realpath",
1994 char *realpath = NULL; local
2014 realpath = strstr(header, " exec={ realpath=\"");
2015 if (realpath) {
2016 realpath += 8;
2017 len += tomoyo_truncate(realpath) + 6;
2027 if (realpath)
2028 tomoyo_addprintf(buffer, len, " exec.%s", realpath);
/linux-master/tools/arch/x86/intel_sdsi/
H A Dintel_sdsi.c795 if (!realpath(optarg, bin_file)) {
796 perror("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/tools/lib/bpf/
H A DMakefile5 srctree := $(realpath $(srctree))
H A Dusdt.c467 if (!realpath(lib_path, path)) {
/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/perf/
H A DMakefile.perf297 FEATURE_DUMP_EXPORT := $(realpath $(OUTPUT)FEATURE-DUMP)
299 FEATURE_DUMP_EXPORT := $(realpath $(FEATURES_DUMP))
/linux-master/tools/perf/bench/
H A Dinject-buildid.c91 dso->name = realpath(fpath, NULL);

Completed in 294 milliseconds

123