Searched refs:root (Results 401 - 425 of 1078) sorted by relevance

<<11121314151617181920>>

/linux-master/fs/xfs/libxfs/
H A Dxfs_btree_mem.h36 union xfs_btree_ptr root; member in struct:xfbtree
/linux-master/fs/proc/
H A DMakefile12 proc-y += inode.o root.o base.o generic.o array.o \
/linux-master/drivers/acpi/
H A Dinternal.h36 void pci_ioapic_remove(struct acpi_pci_root *root);
37 int acpi_ioapic_remove(struct acpi_pci_root *root);
39 static inline void pci_ioapic_remove(struct acpi_pci_root *root) { return; } argument
40 static inline int acpi_ioapic_remove(struct acpi_pci_root *root) { return 0; } argument
/linux-master/drivers/gpu/drm/msm/dp/
H A Ddp_drm.c93 static void dp_bridge_debugfs_init(struct drm_bridge *bridge, struct dentry *root) argument
97 dp_display_debugfs_init(dp, root, false);
271 static void edp_bridge_debugfs_init(struct drm_bridge *bridge, struct dentry *root) argument
275 dp_display_debugfs_init(dp, root, true);
/linux-master/fs/vboxsf/
H A Ddir.c40 vboxsf_close(sbi->root, params.handle);
45 vboxsf_close(sbi->root, params.handle);
293 vboxsf_close(sbi->root, params.handle);
340 vboxsf_close(sbi->root, handle);
380 err = vboxsf_remove(sbi->root, path, flags);
421 err = vboxsf_rename(sbi->root, old_path, new_path, shfl_flags);
458 err = vboxsf_symlink(sbi->root, path, ssymname, &info);
/linux-master/drivers/clk/imx/
H A Dclk-imx93.c264 const struct imx93_clk_root *root; local
316 root = &root_array[i];
317 clks[root->clk] = imx93_clk_composite_flags(root->name,
318 parent_names[root->sel],
319 4, base + root->off, 3,
320 root->flags);
/linux-master/fs/ext4/
H A Dextents_status.c174 tree->root = RB_ROOT;
186 node = rb_first(&tree->root);
211 static struct extent_status *__es_tree_search(struct rb_root *root, argument
214 struct rb_node *node = root->rb_node;
281 es1 = __es_tree_search(&tree->root, lblk);
582 rb_erase(&es->rb_node, &tree->root);
606 rb_erase(node, &tree->root);
789 struct rb_node **p = &tree->root.rb_node;
836 rb_insert_color(&es->rb_node, &tree->root);
967 es = __es_tree_search(&EXT4_I(inode)->i_es_tree.root, lbl
1196 __pr_tree_search(struct rb_root *root, ext4_lblk_t lclu) argument
[all...]
H A Ddir.c418 static void free_rb_tree_fname(struct rb_root *root) argument
422 rbtree_postorder_for_each_entry_safe(fname, next, root, rb_hash)
429 *root = RB_ROOT;
448 free_rb_tree_fname(&p->root);
470 p = &info->root.rb_node;
510 rb_insert_color(&new_fn->rb_hash, &info->root);
567 free_rb_tree_fname(&info->root);
584 info->curr_node = rb_first(&info->root);
595 free_rb_tree_fname(&info->root);
606 info->curr_node = rb_first(&info->root);
[all...]
/linux-master/tools/perf/util/
H A Dcgroup.c312 /* cgroup_name will have a full path, skip the root directory */
346 /* first entry to root cgroup */
519 static struct cgroup *__cgroup__findnew(struct rb_root *root, uint64_t id, argument
522 struct rb_node **p = &root->rb_node;
557 rb_insert_color(&cgrp->node, root);
573 struct cgroup *__cgroup__find(struct rb_root *root, uint64_t id) argument
575 return __cgroup__findnew(root, id, /*create=*/false, /*path=*/NULL);
604 void read_all_cgroups(struct rb_root *root) argument
613 /* cgroup_name will have a full path, skip the root directory */
630 __cgroup__findnew(root, cgrp_i
[all...]
/linux-master/include/linux/
H A Dioport.h195 extern struct resource *request_resource_conflict(struct resource *root, struct resource *new);
196 extern int request_resource(struct resource *root, struct resource *new);
199 extern void reserve_region_with_split(struct resource *root,
204 extern void insert_resource_expand_to_fit(struct resource *root, struct resource *new);
207 extern int allocate_resource(struct resource *root, struct resource *new,
215 struct resource *lookup_resource(struct resource *root, resource_size_t start);
299 extern int devm_request_resource(struct device *dev, struct resource *root,
H A Drmap.h32 struct anon_vma *root; /* Root of this anon_vma tree */ member in struct:anon_vma
121 down_write(&anon_vma->root->rwsem);
126 return down_write_trylock(&anon_vma->root->rwsem);
131 up_write(&anon_vma->root->rwsem);
136 down_read(&anon_vma->root->rwsem);
141 return down_read_trylock(&anon_vma->root->rwsem);
146 up_read(&anon_vma->root->rwsem);
/linux-master/fs/nilfs2/
H A Dnamei.c444 struct nilfs_root *root; local
450 root = NILFS_I(d_inode(child))->i_root;
452 return d_obtain_alias(nilfs_iget(child->d_sb, root, ino));
458 struct nilfs_root *root; local
464 root = nilfs_lookup_root(sb->s_fs_info, cno);
465 if (!root)
468 inode = nilfs_iget(sb, root, ino);
469 nilfs_put_root(root);
509 struct nilfs_root *root = NILFS_I(inode)->i_root; local
521 fid->cno = root
[all...]
/linux-master/fs/orangefs/
H A Dsuper.c41 static int orangefs_show_options(struct seq_file *m, struct dentry *root) argument
43 struct orangefs_sb_info_s *orangefs_sb = ORANGEFS_SB(root->d_sb);
45 if (root->d_sb->s_flags & SB_POSIXACL)
417 struct inode *root; local
454 root = orangefs_iget(sb, &root_object);
455 if (IS_ERR(root))
456 return PTR_ERR(root);
459 "Allocated root inode [%p] with mode %x\n",
460 root,
461 root
[all...]
/linux-master/mm/
H A Dksm.c811 struct rb_root *root)
829 rb_replace_node(&dup->node, &chain->node, root);
844 struct rb_root *root)
846 rb_erase(&chain->node, root);
1147 struct rb_root *root)
1167 free_stable_node_chain(stable_node, root);
1623 struct rb_root *root,
1696 root);
1741 struct rb_root *root)
1746 free_stable_node_chain(stable_node, root);
810 alloc_stable_node_chain(struct ksm_stable_node *dup, struct rb_root *root) argument
843 free_stable_node_chain(struct ksm_stable_node *chain, struct rb_root *root) argument
1146 remove_stable_node_chain(struct ksm_stable_node *stable_node, struct rb_root *root) argument
1621 stable_node_dup(struct ksm_stable_node **_stable_node_dup, struct ksm_stable_node **_stable_node, struct rb_root *root, bool prune_stale_stable_nodes) argument
1740 stable_node_dup_any(struct ksm_stable_node *stable_node, struct rb_root *root) argument
1767 __stable_node_chain(struct ksm_stable_node **_stable_node_dup, struct ksm_stable_node **_stable_node, struct rb_root *root, bool prune_stale_stable_nodes) argument
1789 chain_prune(struct ksm_stable_node **s_n_d, struct ksm_stable_node **s_n, struct rb_root *root) argument
1796 chain(struct ksm_stable_node **s_n_d, struct ksm_stable_node *s_n, struct rb_root *root) argument
1821 struct rb_root *root; local
2077 struct rb_root *root; local
2198 struct rb_root *root; local
3273 stable_node_chain_remove_range(struct ksm_stable_node *stable_node, unsigned long start_pfn, unsigned long end_pfn, struct rb_root *root) argument
[all...]
/linux-master/lib/reed_solomon/
H A Ddecode_rs.c37 uint16_t *root = rsc->buffers + RS_DECODE_ROOT * (nroots + 1); variable
209 continue; /* Not a root */
216 /* store root (index-form) and error location number */
217 root[count] = i;
258 i * root[j])];
267 num2 = alpha_to[rs_modnn(rs, root[j] * (fcr - 1) + nn)];
275 i * root[j])];
/linux-master/scripts/dtc/
H A Ddtx_diff31 -S linux kernel source tree is at root of current git repo
52 If this script is not run from the root of the linux source tree,
306 If it does not exist, create it from the root of the Linux source tree:
309 If not at the root of the Linux kernel source tree -s SRCTREE or -S
317 this script from the root of the Linux kernel source tree is required.
/linux-master/arch/powerpc/platforms/powernv/
H A Dopal-lpc.c368 struct dentry *root; local
374 root = debugfs_create_dir("lpc", arch_debugfs_dir);
376 rc |= opal_lpc_debugfs_create_type(root, "io", OPAL_LPC_IO);
377 rc |= opal_lpc_debugfs_create_type(root, "mem", OPAL_LPC_MEM);
378 rc |= opal_lpc_debugfs_create_type(root, "fw", OPAL_LPC_FW);
H A Dsetup.c274 struct device_node *root; local
277 root = of_find_node_by_path("/");
278 if (root)
279 model = of_get_property(root, "model", NULL);
285 of_node_put(root);
/linux-master/drivers/gpu/drm/pl111/
H A Dpl111_versatile.c383 struct device_node *root; local
398 * CLCD or HDLCD is available in the root of the device tree.
400 root = of_find_node_by_path("/");
401 if (!root)
404 for_each_available_child_of_node(root, child) {
418 of_node_put(root);
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/
H A Dfs_core.h161 struct fs_node *root; member in struct:fs_node
258 /* parent == NULL => root ns */
327 #define fs_list_for_each_entry(pos, root) \
328 list_for_each_entry(pos, root, node.list)
330 #define fs_list_for_each_entry_safe(pos, tmp, root) \
331 list_for_each_entry_safe(pos, tmp, root, node.list)
/linux-master/drivers/md/
H A Ddm-thin-metadata.c127 * Device detail root mapping dev_id -> device_details
187 dm_block_t root; member in struct:dm_pool_metadata
590 disk_super->data_mapping_root = cpu_to_le64(pmd->root);
629 r = dm_btree_empty(&pmd->info, &pmd->root);
635 DMERR("couldn't create devices root");
744 * For pool metadata opening process, root setting is redundant
747 * root to avoid accessing broken btree.
749 pmd->root = le64_to_cpu(disk_super->data_mapping_root);
839 pmd->root = le64_to_cpu(disk_super->data_mapping_root);
929 disk_super->data_mapping_root = cpu_to_le64(pmd->root);
[all...]
/linux-master/net/netfilter/
H A Dnft_set_rbtree.c19 struct rb_root root; member in struct:nft_rbtree
65 parent = rcu_dereference_raw(priv->root.rb_node);
146 parent = rcu_dereference_raw(priv->root.rb_node);
232 rb_erase(&rbe->node, &priv->root);
324 p = &priv->root.rb_node;
347 first = rb_first(&priv->root);
465 p = &priv->root.rb_node;
482 rb_insert_color(&new->node, &priv->root);
514 rb_erase(&rbe->node, &priv->root);
553 const struct rb_node *parent = priv->root
[all...]
/linux-master/fs/btrfs/
H A Dreflink.c63 struct btrfs_fs_info *fs_info = inode->root->fs_info;
178 struct btrfs_root *root = BTRFS_I(dst)->root; local
195 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
200 ret = btrfs_next_leaf(root, path);
256 * extent item in the destination root.
262 trans = btrfs_start_transaction(root, 3);
272 ret = btrfs_drop_extents(trans, root, BTRFS_I(dst), &drop_args);
275 ret = btrfs_insert_empty_item(trans, root, path, new_key, size);
294 trans = btrfs_start_transaction(root,
[all...]
/linux-master/net/sched/
H A Dsch_hfsc.c170 struct hfsc_class root; /* root class */ member in struct:hfsc_sched
301 /* if root-class's cfmin is bigger than cur_time nothing to do */
1016 parent = &q->root;
1073 if (!(parent->cl_flags & HFSC_FSC) && parent != &q->root) {
1099 if (cl != &q->root)
1111 cl == &q->root) {
1145 head = &q->root;
1146 tcf = rcu_dereference_bh(q->root.filter_list);
1264 cl = &q->root;
[all...]
/linux-master/fs/btrfs/tests/
H A Dfree-space-tests.c1009 struct btrfs_root *root = NULL; local
1032 root = btrfs_alloc_dummy_root(fs_info);
1033 if (IS_ERR(root)) {
1035 ret = PTR_ERR(root);
1039 root->root_key.objectid = BTRFS_EXTENT_TREE_OBJECTID;
1040 root->root_key.type = BTRFS_ROOT_ITEM_KEY;
1041 root->root_key.offset = 0;
1042 btrfs_global_root_insert(root);
1060 btrfs_free_dummy_root(root);

Completed in 254 milliseconds

<<11121314151617181920>>