Home
last modified time | relevance | path

Searched refs:realpath (Results 1 – 25 of 55) sorted by relevance

123

/linux-6.6.21/fs/overlayfs/
Dinode.c162 struct path realpath; in ovl_getattr() local
172 type = ovl_path_real(dentry, &realpath); in ovl_getattr()
174 err = ovl_do_getattr(&realpath, stat, request_mask, flags); in ovl_getattr()
198 ovl_path_lower(dentry, &realpath); in ovl_getattr()
199 err = ovl_do_getattr(&realpath, &lowerstat, lowermask, in ovl_getattr()
234 realpath.dentry == ovl_dentry_lowerdata(dentry)) { in ovl_getattr()
250 ovl_path_lowerdata(dentry, &realpath); in ovl_getattr()
251 if (realpath.dentry) { in ovl_getattr()
252 err = ovl_do_getattr(&realpath, &lowerdatastat, in ovl_getattr()
294 struct path realpath; in ovl_permission() local
[all …]
Dfile.c40 const struct path *realpath) in ovl_open_realfile() argument
42 struct inode *realinode = d_inode(realpath->dentry); in ovl_open_realfile()
55 real_idmap = mnt_idmap(realpath->mnt); in ovl_open_realfile()
63 realfile = backing_file_open(&file->f_path, flags, realpath, in ovl_open_realfile()
108 struct path realpath; in ovl_real_fdget_meta() local
115 ovl_path_real(dentry, &realpath); in ovl_real_fdget_meta()
122 ovl_path_realdata(dentry, &realpath); in ovl_real_fdget_meta()
124 if (!realpath.dentry) in ovl_real_fdget_meta()
128 if (unlikely(file_inode(real->file) != d_inode(realpath.dentry))) { in ovl_real_fdget_meta()
130 real->file = ovl_open_realfile(file, &realpath); in ovl_real_fdget_meta()
[all …]
Dreaddir.c294 static inline int ovl_dir_read(const struct path *realpath, in ovl_dir_read() argument
300 realfile = ovl_path_open(realpath, O_RDONLY | O_LARGEFILE); in ovl_dir_read()
315 err = ovl_check_whiteouts(realpath, rdd); in ovl_dir_read()
347 struct path realpath; in ovl_dir_read_merged() local
358 next = ovl_path_next(idx, dentry, &realpath); in ovl_dir_read_merged()
359 rdd.is_upper = ovl_dentry_upper(dentry) == realpath.dentry; in ovl_dir_read_merged()
362 err = ovl_dir_read(&realpath, &rdd); in ovl_dir_read_merged()
372 err = ovl_dir_read(&realpath, &rdd); in ovl_dir_read_merged()
556 struct path realpath; in ovl_dir_read_impure() local
566 ovl_path_upper(path->dentry, &realpath); in ovl_dir_read_impure()
[all …]
/linux-6.6.21/tools/testing/selftests/bpf/
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))
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)
Dtest_bpftool.sh6 SCRIPT_DIR=$(dirname $(realpath $0))
Dgenerate_udp_fragments.py87 dir = os.path.dirname(os.path.realpath(__file__))
Dtest_bpftool.py14 cur_dir = os.path.dirname(os.path.realpath(__file__))
/linux-6.6.21/scripts/
Ddev-needs.sh131 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]})
Dtags.sh39 tree=$(realpath "$tree")/
110 } | xargs realpath -esq $([ -z "$KBUILD_ABS_SRCTREE" ] && echo --relative-to=.) |
DMakefile.package51 --output=$$(realpath $@) $(archive-args)
219 perf-archive-args = --add-file=$$(realpath $(word 2, $^)) \
220 --add-file=$$(realpath $(word 3, $^)) \
/linux-6.6.21/security/tomoyo/
Daudit.c250 char *realpath = NULL; in tomoyo_init_log() local
263 realpath = tomoyo_realpath_from_path(&file->f_path); in tomoyo_init_log()
265 if (!realpath || !bprm_info) in tomoyo_init_log()
268 len += strlen(realpath) + 80 + strlen(bprm_info); in tomoyo_init_log()
280 if (realpath) { in tomoyo_init_log()
285 realpath, bprm->argc, bprm->envc, bprm_info); in tomoyo_init_log()
292 kfree(realpath); in tomoyo_init_log()
DMakefile2 … environ.o file.o gc.o group.o load_policy.o memory.o mount.o network.o realpath.o securityfs_if.o…
/linux-6.6.21/tools/net/ynl/
Dynl-regen.sh4 TOOL=$(dirname $(realpath $0))/ynl-gen-c.py
17 KDIR=$(dirname $(dirname $(dirname $(dirname $(realpath $0)))))
/linux-6.6.21/tools/leds/
Dget_led_device_info.sh8 linux_top=$(dirname `realpath $0` | awk -F/ \
18 led_defs_path=`realpath $2`
/linux-6.6.21/arch/powerpc/tools/
Dcheckpatch.sh7 script_base=$(realpath $(dirname $0))
/linux-6.6.21/tools/testing/selftests/bpf/bpf_testmod/
DMakefile1 BPF_TESTMOD_DIR := $(realpath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
/linux-6.6.21/tools/testing/selftests/
Drun_kselftest.sh6 BASE_DIR=$(realpath $(dirname $0))
/linux-6.6.21/tools/testing/selftests/riscv/
DMakefile16 top_srcdir = $(realpath ../../../../)
/linux-6.6.21/tools/testing/selftests/arm64/
DMakefile15 top_srcdir = $(realpath ../../../../)
/linux-6.6.21/tools/perf/tests/
Dsdt.c90 tempdir = realpath(__tempdir, NULL); in test__sdt_event()
/linux-6.6.21/tools/testing/selftests/exec/
Dexecveat.c227 char *fullname = realpath("execveat", NULL); in run_tests()
228 char *fullname_script = realpath("script", NULL); in run_tests()
/linux-6.6.21/tools/testing/selftests/arm64/fp/
DMakefile4 top_srcdir = $(realpath ../../../../../)
/linux-6.6.21/tools/testing/selftests/mount/
Dnosymfollow-test.c166 char *path = realpath(LINK, NULL); in test_realpath()
/linux-6.6.21/Documentation/sphinx/
Dmaintainers_include.py180 path = os.path.realpath(path)

123