Home
last modified time | relevance | path

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

/linux/tools/testing/selftests/ia64/
H A Daliasing-test.c65 char *name, *path2; in scan_tree() local
83 path2 = malloc(strlen(path) + strlen(name) + 3); in scan_tree()
84 strcpy(path2, path); in scan_tree()
85 strcat(path2, "/"); in scan_tree()
86 strcat(path2, name); in scan_tree()
89 rc = map_mem(path2, offset, length, touch); in scan_tree()
91 …fprintf(stderr, "PASS: %s 0x%lx-0x%lx is %s\n", path2, offset, offset + length, touch ? "readable"… in scan_tree()
93 fprintf(stderr, "PASS: %s 0x%lx-0x%lx not mappable\n", path2, offset, offset + length); in scan_tree()
95 fprintf(stderr, "FAIL: %s 0x%lx-0x%lx not accessible\n", path2, offset, offset + length); in scan_tree()
99 r = lstat(path2, &buf); in scan_tree()
[all …]
/linux/tools/perf/tests/
H A Dtests-scripts.c33 char path[PATH_MAX], path2[PATH_MAX], *exec_path; in shell_tests__dir_fd() local
50 if (readlink("/proc/self/exe", path2, sizeof path2) < 0) in shell_tests__dir_fd()
53 if (lstat(path2, &st) == 0 && (st.st_mode & S_IFMT) == S_IFLNK) { in shell_tests__dir_fd()
54 scnprintf(path, sizeof(path), path2); in shell_tests__dir_fd()
55 if (readlink(path, path2, sizeof path2) < 0) in shell_tests__dir_fd()
59 p = strrchr(path2, '/'); in shell_tests__dir_fd()
62 scnprintf(path, sizeof(path), "%s/tests/shell", path2); in shell_tests__dir_fd()
66 scnprintf(path, sizeof(path), "%s/source/tests/shell", path2); in shell_tests__dir_fd()
/linux/tools/perf/util/
H A Dpath.c37 int path__join(char *bf, size_t size, const char *path1, const char *path2) in path__join() argument
39 return scnprintf(bf, size, "%s%s%s", path1, path1[0] ? "/" : "", path2); in path__join()
42 int path__join3(char *bf, size_t size, const char *path1, const char *path2, const char *path3) in path__join3() argument
45 path2, path2[0] ? "/" : "", path3); in path__join3()
H A Dpath.h10 int path__join(char *bf, size_t size, const char *path1, const char *path2);
11 int path__join3(char *bf, size_t size, const char *path1, const char *path2, const char *path3);
/linux/include/linux/
H A Dpath.h16 static inline int path_equal(const struct path *path1, const struct path *path2) in path_equal() argument
18 return path1->mnt == path2->mnt && path1->dentry == path2->dentry; in path_equal()
/linux/security/tomoyo/
H A Dfile.c183 [tomoyo_pp2mac[r->param.path2.operation]], in tomoyo_audit_path2_log()
184 r->param.path2.filename1->name, in tomoyo_audit_path2_log()
185 r->param.path2.filename2->name); in tomoyo_audit_path2_log()
302 return (acl->perm & (1 << r->param.path2.operation)) && in tomoyo_check_path2_acl()
303 tomoyo_compare_name_union(r->param.path2.filename1, &acl->name1) in tomoyo_check_path2_acl()
304 && tomoyo_compare_name_union(r->param.path2.filename2, in tomoyo_check_path2_acl()
904 const struct path *path2) in tomoyo_path2_perm() argument
912 .path2 = { .mnt = path2->mnt, .dentry = path2->dentry } in tomoyo_path2_perm()
923 !tomoyo_get_realpath(&buf2, path2)) in tomoyo_path2_perm()
938 r.param.path2.operation = operation; in tomoyo_path2_perm()
[all …]
H A Dtomoyo.c268 struct path path2 = { .mnt = new_dir->mnt, .dentry = new_dentry }; in tomoyo_path_link() local
270 return tomoyo_path2_perm(TOMOYO_TYPE_LINK, &path1, &path2); in tomoyo_path_link()
291 struct path path2 = { .mnt = new_parent->mnt, .dentry = new_dentry }; in tomoyo_path_rename() local
294 const int err = tomoyo_path2_perm(TOMOYO_TYPE_RENAME, &path2, in tomoyo_path_rename()
300 return tomoyo_path2_perm(TOMOYO_TYPE_RENAME, &path1, &path2); in tomoyo_path_rename()
H A Dcommon.h446 } path2; member
593 struct path path2; member
988 const struct path *path2);
H A Dmount.c104 obj.path2 = *dir; in tomoyo_mount_acl()
H A Dcondition.c728 dentry = obj->path2.dentry; in tomoyo_get_attributes()
/linux/kernel/
H A Daudit_tree.c880 struct path path1, path2; in audit_tag_tree() local
885 err = kern_path(new, 0, &path2); in audit_tag_tree()
888 paths = collect_paths(&path2, array, 16); in audit_tag_tree()
889 path_put(&path2); in audit_tag_tree()
912 err = kern_path(tree->pathname, 0, &path2); in audit_tag_tree()
914 good_one = path_is_under(&path1, &path2); in audit_tag_tree()
915 path_put(&path2); in audit_tag_tree()
/linux/fs/ext4/
H A Dextents.c5680 struct ext4_ext_path *path2 = NULL; in ext4_swap_extents() local
5702 path2 = ext4_find_extent(inode2, lblk2, path2, EXT4_EX_NOCACHE); in ext4_swap_extents()
5703 if (IS_ERR(path2)) { in ext4_swap_extents()
5704 *erp = PTR_ERR(path2); in ext4_swap_extents()
5708 ex2 = path2[path2->p_depth].p_ext; in ext4_swap_extents()
5725 next2 = ext4_ext_next_allocated_block(path2); in ext4_swap_extents()
5758 path2 = ext4_force_split_extent_at(handle, inode2, in ext4_swap_extents()
5759 path2, lblk2, 0); in ext4_swap_extents()
5760 if (IS_ERR(path2)) { in ext4_swap_extents()
5761 *erp = PTR_ERR(path2); in ext4_swap_extents()
[all …]
/linux/fs/btrfs/
H A Dfree-space-tree.c1069 BTRFS_PATH_AUTO_FREE(path2); in populate_free_space_tree()
1078 path2 = btrfs_alloc_path(); in populate_free_space_tree()
1079 if (!path2) in populate_free_space_tree()
1084 ret = add_new_free_space_info(trans, block_group, path2); in populate_free_space_tree()
1131 path2, start, in populate_free_space_tree()
1152 ret = __btrfs_add_to_free_space_tree(trans, block_group, path2, in populate_free_space_tree()
/linux/Documentation/sphinx/
H A Dkfigure.py96 def isNewer(path1, path2): argument
103 and os.stat(path1).st_ctime > os.stat(path2).st_ctime)
/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192se/
H A Dphy.c1012 u8 path1, path2; in rtl92s_phy_bb_config() local
1024 path2 = (u8)(rtl92s_phy_query_bb_reg(hw, ROFDM0_TRXPATHENABLE, 0xf)); in rtl92s_phy_bb_config()
1025 pathmap = path1 | path2; in rtl92s_phy_bb_config()
1040 path1, path2, pathmap); in rtl92s_phy_bb_config()
/linux/fs/
H A Dnamespace.c4518 bool path_is_under(const struct path *path1, const struct path *path2) in path_is_under() argument
4521 return is_path_reachable(real_mount(path1->mnt), path1->dentry, path2); in path_is_under()
/linux/fs/nfs/
H A Dnfs4proc.c4161 struct nfs4_pathname *path2) in _is_same_nfs4_pathname() argument
4165 if (path1->ncomponents != path2->ncomponents) in _is_same_nfs4_pathname()
4168 if (path1->components[i].len != path2->components[i].len) in _is_same_nfs4_pathname()
4170 if (memcmp(path1->components[i].data, path2->components[i].data, in _is_same_nfs4_pathname()