Home
last modified time | relevance | path

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

/linux-6.12.1/tools/testing/selftests/ia64/
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-6.12.1/tools/perf/tests/
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-6.12.1/tools/perf/util/
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()
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-6.12.1/include/linux/
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-6.12.1/security/tomoyo/
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 …]
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()
Dcommon.h446 } path2; member
593 struct path path2; member
988 const struct path *path2);
Dmount.c104 obj.path2 = *dir; in tomoyo_mount_acl()
Dcondition.c728 dentry = obj->path2.dentry; in tomoyo_get_attributes()
/linux-6.12.1/kernel/
Daudit_tree.c874 struct path path1, path2; in audit_tag_tree() local
878 err = kern_path(new, 0, &path2); in audit_tag_tree()
881 tagged = collect_mounts(&path2); in audit_tag_tree()
882 path_put(&path2); in audit_tag_tree()
905 err = kern_path(tree->pathname, 0, &path2); in audit_tag_tree()
907 good_one = path_is_under(&path1, &path2); in audit_tag_tree()
908 path_put(&path2); in audit_tag_tree()
/linux-6.12.1/fs/ext4/
Dextents.c5647 struct ext4_ext_path *path2 = NULL; in ext4_swap_extents() local
5669 path2 = ext4_find_extent(inode2, lblk2, path2, EXT4_EX_NOCACHE); in ext4_swap_extents()
5670 if (IS_ERR(path2)) { in ext4_swap_extents()
5671 *erp = PTR_ERR(path2); in ext4_swap_extents()
5675 ex2 = path2[path2->p_depth].p_ext; in ext4_swap_extents()
5692 next2 = ext4_ext_next_allocated_block(path2); in ext4_swap_extents()
5725 path2 = ext4_force_split_extent_at(handle, inode2, in ext4_swap_extents()
5726 path2, lblk2, 0); in ext4_swap_extents()
5727 if (IS_ERR(path2)) { in ext4_swap_extents()
5728 *erp = PTR_ERR(path2); in ext4_swap_extents()
[all …]
/linux-6.12.1/fs/bcachefs/
Dbtree_update_interior.c1590 btree_path_idx_t path1 = 0, path2 = 0; in btree_split() local
1633 path2 = bch2_path_get_unlocked_mut(trans, as->btree_id, n2->c.level, n2->key.k.p); in btree_split()
1635 mark_btree_node_locked(trans, trans->paths + path2, n2->c.level, BTREE_NODE_INTENT_LOCKED); in btree_split()
1636 bch2_btree_path_level_init(trans, trans->paths + path2, n2); in btree_split()
1653 trans->paths[path2].locks_want++; in btree_split()
1654 BUG_ON(btree_node_locked(trans->paths + path2, n3->c.level)); in btree_split()
1656 mark_btree_node_locked(trans, trans->paths + path2, n3->c.level, BTREE_NODE_INTENT_LOCKED); in btree_split()
1657 bch2_btree_path_level_init(trans, trans->paths + path2, n3); in btree_split()
1724 bch2_trans_node_add(trans, trans->paths + path2, n2); in btree_split()
1733 if (path2) { in btree_split()
[all …]
Dbtree_key_cache.c456 struct btree_path *path2; in btree_key_cache_flush_pos() local
459 trans_for_each_path(trans, path2, i) in btree_key_cache_flush_pos()
460 if (path2 != path) in btree_key_cache_flush_pos()
461 __bch2_btree_path_unlock(trans, path2); in btree_key_cache_flush_pos()
/linux-6.12.1/fs/btrfs/
Dfree-space-tree.c1070 struct btrfs_path *path, *path2; in populate_free_space_tree() local
1080 path2 = btrfs_alloc_path(); in populate_free_space_tree()
1081 if (!path2) { in populate_free_space_tree()
1086 ret = add_new_free_space_info(trans, block_group, path2); in populate_free_space_tree()
1122 path2, start, in populate_free_space_tree()
1145 ret = __add_to_free_space_tree(trans, block_group, path2, in populate_free_space_tree()
1155 btrfs_free_path(path2); in populate_free_space_tree()
/linux-6.12.1/Documentation/sphinx/
Dkfigure.py93 def isNewer(path1, path2): argument
100 and os.stat(path1).st_ctime > os.stat(path2).st_ctime)
/linux-6.12.1/drivers/net/wireless/realtek/rtlwifi/rtl8192se/
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-6.12.1/fs/ceph/
Dmds_client.c2978 const char *path2 = NULL; in create_request_message() local
3009 &path2, &pathlen2, &ino2, &freepath2, true); in create_request_message()
3164 ceph_encode_filepath(&p, end, ino2, path2); in create_request_message()
3228 ceph_mdsc_free_path((char *)path2, pathlen2); in create_request_message()
/linux-6.12.1/fs/
Dnamespace.c4303 bool path_is_under(const struct path *path1, const struct path *path2) in path_is_under() argument
4307 res = is_path_reachable(real_mount(path1->mnt), path1->dentry, path2); in path_is_under()
/linux-6.12.1/fs/nfs/
Dnfs4proc.c4116 struct nfs4_pathname *path2) in _is_same_nfs4_pathname() argument
4120 if (path1->ncomponents != path2->ncomponents) in _is_same_nfs4_pathname()
4123 if (path1->components[i].len != path2->components[i].len) in _is_same_nfs4_pathname()
4125 if (memcmp(path1->components[i].data, path2->components[i].data, in _is_same_nfs4_pathname()