/linux-4.4.14/include/linux/ |
D | path.h | 15 static inline int path_equal(const struct path *path1, const struct path *path2) in path_equal() argument 17 return path1->mnt == path2->mnt && path1->dentry == path2->dentry; in path_equal()
|
/linux-4.4.14/tools/perf/util/ |
D | util.h | 298 const char *path1, const char *path2) in path__join() argument 300 return scnprintf(bf, size, "%s%s%s", path1, path1[0] ? "/" : "", path2); in path__join() 304 const char *path1, const char *path2, in path__join3() argument 308 path1, path1[0] ? "/" : "", in path__join3()
|
/linux-4.4.14/security/tomoyo/ |
D | tomoyo.c | 271 struct path path1 = { new_dir->mnt, old_dentry }; in tomoyo_path_link() local 273 return tomoyo_path2_perm(TOMOYO_TYPE_LINK, &path1, &path2); in tomoyo_path_link() 291 struct path path1 = { old_parent->mnt, old_dentry }; in tomoyo_path_rename() local 293 return tomoyo_path2_perm(TOMOYO_TYPE_RENAME, &path1, &path2); in tomoyo_path_rename()
|
D | mount.c | 136 obj.path1 = path; in tomoyo_mount_acl() 171 if (obj.path1.dentry) in tomoyo_mount_acl() 172 path_put(&obj.path1); in tomoyo_mount_acl()
|
D | file.c | 695 .path1 = *path, in tomoyo_path_number_perm() 743 .path1 = *path, in tomoyo_check_open_permission() 789 .path1 = *path, in tomoyo_path_perm() 846 .path1 = *path, in tomoyo_mkdev_perm() 885 int tomoyo_path2_perm(const u8 operation, struct path *path1, in tomoyo_path2_perm() argument 893 .path1 = *path1, in tomoyo_path2_perm() 904 if (!tomoyo_get_realpath(&buf1, path1) || in tomoyo_path2_perm() 910 if (!d_is_dir(path1->dentry)) in tomoyo_path2_perm()
|
D | common.h | 587 struct path path1; member 977 int tomoyo_path2_perm(const u8 operation, struct path *path1,
|
D | domain.c | 699 ee->obj.path1 = bprm->file->f_path; in tomoyo_find_next_domain()
|
D | condition.c | 702 dentry = obj->path1.dentry; in tomoyo_get_attributes()
|
/linux-4.4.14/fs/btrfs/ |
D | relocation.c | 684 struct btrfs_path *path1; local 705 path1 = btrfs_alloc_path(); 707 if (!path1 || !path2) { 711 path1->reada = 1; 731 path1->search_commit_root = 1; 732 path1->skip_locking = 1; 733 ret = btrfs_search_slot(NULL, rc->extent_root, &key, path1, 740 ASSERT(path1->slots[0]); 742 path1->slots[0]--; 767 eb = path1->nodes[0]; [all …]
|
/linux-4.4.14/kernel/ |
D | audit_tree.c | 783 struct path path1, path2; in audit_tag_tree() local 795 err = kern_path(old, 0, &path1); in audit_tag_tree() 817 good_one = path_is_under(&path1, &path2); in audit_tag_tree() 869 path_put(&path1); in audit_tag_tree()
|
/linux-4.4.14/fs/ext4/ |
D | extents.c | 5789 struct ext4_ext_path *path1 = NULL; in ext4_swap_extents() local 5811 path1 = ext4_find_extent(inode1, lblk1, NULL, EXT4_EX_NOCACHE); in ext4_swap_extents() 5812 if (IS_ERR(path1)) { in ext4_swap_extents() 5813 *erp = PTR_ERR(path1); in ext4_swap_extents() 5814 path1 = NULL; in ext4_swap_extents() 5825 ex1 = path1[path1->p_depth].p_ext; in ext4_swap_extents() 5842 next1 = ext4_ext_next_allocated_block(path1); in ext4_swap_extents() 5868 &path1, lblk1, 0); in ext4_swap_extents() 5894 &path1, lblk1 + len, 0); in ext4_swap_extents() 5911 *erp = ext4_ext_get_access(handle, inode1, path1 + path1->p_depth); in ext4_swap_extents() [all …]
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192se/ |
D | phy.c | 1058 u8 path1, path2; in rtl92s_phy_bb_config() local 1068 path1 = (u8)(rtl92s_phy_query_bb_reg(hw, RFPGA0_TXINFO, 0xf)); in rtl92s_phy_bb_config() 1071 pathmap = path1 | path2; in rtl92s_phy_bb_config() 1088 path1, path2, pathmap); in rtl92s_phy_bb_config()
|
/linux-4.4.14/fs/ |
D | namespace.c | 2942 int path_is_under(struct path *path1, struct path *path2) in path_is_under() argument 2946 res = is_path_reachable(real_mount(path1->mnt), path1->dentry, path2); in path_is_under()
|
/linux-4.4.14/fs/ceph/ |
D | mds_client.c | 1920 const char *path1 = NULL; in create_request_message() local 1932 &path1, &pathlen1, &ino1, &freepath1); in create_request_message() 1978 ceph_encode_filepath(&p, end, ino1, path1); in create_request_message() 2035 kfree((char *)path1); in create_request_message()
|