Home
last modified time | relevance | path

Searched refs:root (Results 1 – 25 of 3317) sorted by relevance

12345678910>>...133

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/xscreensaver/files/
H A D0001-Tweak-app-defaults.patch50 - maze -root \n\
51 -@GL_KLUDGE@ GL: superquadrics -root \n\
52 - attraction -root \n\
53 - blitspin -root \n\
54 - greynetic -root \n\
55 - helix -root \n\
56 - hopalong -root \n\
57 - imsmap -root \n\
58 -- noseguy -root \n\
59 -- pyro -root \n\
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/files/
H A Dbuildhistory_filelist2.txt1 drwxr-xr-x root root 4096 ./bin
2 lrwxrwxrwx root root 19 ./bin/ash -> /bin/busybox.nosuid
3 lrwxrwxrwx root root 25 ./bin/base64 -> /usr/bin/base64.coreutils
4 -rwxr-xr-x root root 1190872 ./bin/bash.bash
5 lrwxrwxrwx root root 14 ./bin/bash -> /bin/bash.bash
6 lrwxrwxrwx root root 14 ./bin/busybox -> busybox.nosuid
7 -rwxr-xr-x root root 613008 ./bin/busybox.nosuid
8 -rwsr-xr-x root root 59440 ./bin/busybox.suid
9 lrwxrwxrwx root root 18 ./bin/cat -> /bin/cat.coreutils
10 -rwxr-xr-x root root 47336 ./bin/cat.coreutils
[all …]
H A Dbuildhistory_filelist1.txt1 drwxr-xr-x root root 4096 ./bin
2 lrwxrwxrwx root root 19 ./bin/ash -> /bin/busybox.nosuid
3 lrwxrwxrwx root root 25 ./bin/base64 -> /usr/bin/base64.coreutils
4 -rwxr-xr-x root root 1190872 ./bin/bash.bash
5 lrwxrwxrwx root root 14 ./bin/bash -> /bin/bash.bash
6 lrwxrwxrwx root root 14 ./bin/busybox -> busybox.nosuid
7 -rwxr-xr-x root root 613008 ./bin/busybox.nosuid
8 -rwsr-xr-x root root 59440 ./bin/busybox.suid
9 lrwxrwxrwx root root 18 ./bin/cat -> /bin/cat.coreutils
10 -rwxr-xr-x root root 47336 ./bin/cat.coreutils
[all …]
/openbmc/openbmc/poky/meta/files/
H A Dfs-perms.txt25 # /usr/src 0755 root root false - - -
26 # /usr/share/man 0755 root root true 0644 root root
28 # Note: all standard config directories are automatically assigned "0755 root root false - - -"
31 ${mandir} 0755 root root true 0644 root root
32 ${infodir} 0755 root root true 0644 root root
33 ${docdir} 0755 root root true 0644 root root
34 ${datadir}/gtk-doc 0755 root root true 0644 root root
37 ${datadir}/locale 0755 root root true 0644 root root
40 ${includedir} 0755 root root true 0644 root root
43 /usr/src/debug 0755 root root true 0644 root root
[all …]
H A Ddevice_table-minimal.txt11 /dev d 755 root root - - - - -
12 /dev/console c 662 root tty 5 1 - - -
13 /dev/fb0 c 600 root root 29 0 - - -
14 /dev/hda b 660 root disk 3 0 - - -
15 /dev/hda b 660 root disk 3 1 1 1 4
16 /dev/kmem c 640 root kmem 1 2 - - -
17 /dev/kmsg c 600 root root 1 11 - - -
18 /dev/mem c 640 root kmem 1 1 - - -
19 /dev/mmcblk0 b 660 root disk 179 0 - - -
20 /dev/mmcblk0p b 660 root disk 179 1 1 1 4
[all …]
/openbmc/linux/drivers/acpi/
H A Dpci_root.c154 static void decode_osc_bits(struct acpi_pci_root *root, char *msg, u32 word, in decode_osc_bits() argument
167 dev_info(&root->device->dev, "_OSC: %s [%s]\n", msg, buf); in decode_osc_bits()
170 static void decode_osc_support(struct acpi_pci_root *root, char *msg, u32 word) in decode_osc_support() argument
172 decode_osc_bits(root, msg, word, pci_osc_support_bit, in decode_osc_support()
176 static void decode_osc_control(struct acpi_pci_root *root, char *msg, u32 word) in decode_osc_control() argument
178 decode_osc_bits(root, msg, word, pci_osc_control_bit, in decode_osc_control()
182 static void decode_cxl_osc_support(struct acpi_pci_root *root, char *msg, u32 word) in decode_cxl_osc_support() argument
184 decode_osc_bits(root, msg, word, cxl_osc_support_bit, in decode_cxl_osc_support()
188 static void decode_cxl_osc_control(struct acpi_pci_root *root, char *msg, u32 word) in decode_cxl_osc_control() argument
190 decode_osc_bits(root, msg, word, cxl_osc_control_bit, in decode_cxl_osc_control()
[all …]
/openbmc/qemu/tests/unit/
H A Dtest-interval-tree.c13 static IntervalTreeRoot root; variable
33 g_assert(root.rb_root.rb_node == NULL); in test_empty()
34 g_assert(root.rb_leftmost == NULL); in test_empty()
35 g_assert(interval_tree_iter_first(&root, 0, UINT64_MAX) == NULL); in test_empty()
44 interval_tree_insert(&nodes[0], &root); in test_find_one_point()
46 g_assert(interval_tree_iter_first(&root, 0, 9) == &nodes[0]); in test_find_one_point()
48 g_assert(interval_tree_iter_first(&root, 0, 0) == NULL); in test_find_one_point()
50 g_assert(interval_tree_iter_first(&root, 0, 1) == &nodes[0]); in test_find_one_point()
51 g_assert(interval_tree_iter_first(&root, 1, 1) == &nodes[0]); in test_find_one_point()
52 g_assert(interval_tree_iter_first(&root, 1, 2) == &nodes[0]); in test_find_one_point()
[all …]
/openbmc/linux/lib/
H A Dradix-tree.c95 static inline gfp_t root_gfp_mask(const struct radix_tree_root *root) in root_gfp_mask() argument
97 return root->xa_flags & (__GFP_BITS_MASK & ~GFP_ZONEMASK); in root_gfp_mask()
118 static inline void root_tag_set(struct radix_tree_root *root, unsigned tag) in root_tag_set() argument
120 root->xa_flags |= (__force gfp_t)(1 << (tag + ROOT_TAG_SHIFT)); in root_tag_set()
123 static inline void root_tag_clear(struct radix_tree_root *root, unsigned tag) in root_tag_clear() argument
125 root->xa_flags &= (__force gfp_t)~(1 << (tag + ROOT_TAG_SHIFT)); in root_tag_clear()
128 static inline void root_tag_clear_all(struct radix_tree_root *root) in root_tag_clear_all() argument
130 root->xa_flags &= (__force gfp_t)((1 << ROOT_TAG_SHIFT) - 1); in root_tag_clear_all()
133 static inline int root_tag_get(const struct radix_tree_root *root, unsigned tag) in root_tag_get() argument
135 return (__force int)root->xa_flags & (1 << (tag + ROOT_TAG_SHIFT)); in root_tag_get()
[all …]
H A Drbtree_test.c27 static struct rb_root_cached root = RB_ROOT_CACHED; variable
32 static void insert(struct test_node *node, struct rb_root_cached *root) in insert() argument
34 struct rb_node **new = &root->rb_root.rb_node, *parent = NULL; in insert()
46 rb_insert_color(&node->rb, &root->rb_root); in insert()
49 static void insert_cached(struct test_node *node, struct rb_root_cached *root) in insert_cached() argument
51 struct rb_node **new = &root->rb_root.rb_node, *parent = NULL; in insert_cached()
66 rb_insert_color_cached(&node->rb, root, leftmost); in insert_cached()
69 static inline void erase(struct test_node *node, struct rb_root_cached *root) in erase() argument
71 rb_erase(&node->rb, &root->rb_root); in erase()
74 static inline void erase_cached(struct test_node *node, struct rb_root_cached *root) in erase_cached() argument
[all …]
/openbmc/openbmc/poky/meta/recipes-core/initscripts/initscripts-1.0/
H A Dvolatiles14 # l root root 0777 /var/test /tmp/testfile
15 # f root root 0644 /var/test none
26 d root root 1777 /run/lock none
27 d root root 0755 /var/volatile/log none
28 d root root 1777 /var/volatile/tmp none
29 l root root 1777 /var/lock /run/lock
30 l root root 0755 /var/run /run
31 l root root 1777 /var/tmp /var/volatile/tmp
32 l root root 1777 /tmp /var/tmp
33 d root root 0755 /var/lock/subsys none
[all …]
/openbmc/qemu/hw/pci-host/
H A Ddesignware.c61 designware_pcie_root_to_host(DesignwarePCIERoot *root) in designware_pcie_root_to_host() argument
63 BusState *bus = qdev_get_parent_bus(DEVICE(root)); in designware_pcie_root_to_host()
87 DesignwarePCIERoot *root = DESIGNWARE_PCIE_ROOT(opaque); in designware_pcie_root_msi_write() local
88 DesignwarePCIEHost *host = designware_pcie_root_to_host(root); in designware_pcie_root_msi_write()
90 root->msi.intr[0].status |= BIT(val) & root->msi.intr[0].enable; in designware_pcie_root_msi_write()
92 if (root->msi.intr[0].status & ~root->msi.intr[0].mask) { in designware_pcie_root_msi_write()
107 static void designware_pcie_root_update_msi_mapping(DesignwarePCIERoot *root) in designware_pcie_root_update_msi_mapping() argument
110 MemoryRegion *mem = &root->msi.iomem; in designware_pcie_root_update_msi_mapping()
111 const uint64_t base = root->msi.base; in designware_pcie_root_update_msi_mapping()
112 const bool enable = root->msi.intr[0].enable; in designware_pcie_root_update_msi_mapping()
[all …]
/openbmc/linux/fs/kernfs/
H A Ddir.c482 struct kernfs_root *root = kernfs_root(kn); in kernfs_drain() local
484 lockdep_assert_held_write(&root->kernfs_rwsem); in kernfs_drain()
497 up_write(&root->kernfs_rwsem); in kernfs_drain()
505 wait_event(root->deactivate_waitq, in kernfs_drain()
516 down_write(&root->kernfs_rwsem); in kernfs_drain()
555 struct kernfs_root *root; in kernfs_put() local
559 root = kernfs_root(kn); in kernfs_put()
575 idr_remove(&root->ino_idr, (u32)kernfs_ino(kn)); in kernfs_put()
586 idr_destroy(&root->ino_idr); in kernfs_put()
587 kfree_rcu(root, rcu); in kernfs_put()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/systemd/systemd-systemctl/
H A Dsystemctl28 def __init__(self, root, path): argument
30 self._parse(root, path)
33 for path2 in sorted((root / location / "system" / dirname).glob("*.conf")):
34 self._parse(root, path2)
36 def _parse(self, root, path): argument
53 path = root / Path(os.readlink(str(path))).relative_to(ROOT)
98 def __init__(self, scope, root): argument
100 self._collect_presets(scope, root)
121 def _collect_presets(self, scope, root): argument
125 paths = (root / location / scope).glob("*.preset")
[all …]
/openbmc/linux/fs/btrfs/
H A Ddisk-io.c484 fs_info = BTRFS_I(mapping->host)->root->fs_info; in btree_writepages()
511 btrfs_warn(BTRFS_I(folio->mapping->host)->root->fs_info, in btree_invalidate_folio()
621 static void __setup_root(struct btrfs_root *root, struct btrfs_fs_info *fs_info, in __setup_root() argument
626 memset(&root->root_key, 0, sizeof(root->root_key)); in __setup_root()
627 memset(&root->root_item, 0, sizeof(root->root_item)); in __setup_root()
628 memset(&root->defrag_progress, 0, sizeof(root->defrag_progress)); in __setup_root()
629 root->fs_info = fs_info; in __setup_root()
630 root->root_key.objectid = objectid; in __setup_root()
631 root->node = NULL; in __setup_root()
632 root->commit_root = NULL; in __setup_root()
[all …]
H A Dctree.h338 static inline bool btrfs_root_readonly(const struct btrfs_root *root) in btrfs_root_readonly() argument
341 return (root->root_item.flags & cpu_to_le64(BTRFS_ROOT_SUBVOL_RDONLY)) != 0; in btrfs_root_readonly()
344 static inline bool btrfs_root_dead(const struct btrfs_root *root) in btrfs_root_dead() argument
347 return (root->root_item.flags & cpu_to_le64(BTRFS_ROOT_SUBVOL_DEAD)) != 0; in btrfs_root_dead()
350 static inline u64 btrfs_root_id(const struct btrfs_root *root) in btrfs_root_id() argument
352 return root->root_key.objectid; in btrfs_root_id()
518 int btrfs_previous_item(struct btrfs_root *root,
521 int btrfs_previous_extent_item(struct btrfs_root *root,
526 struct extent_buffer *btrfs_root_node(struct btrfs_root *root);
527 int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
[all …]
/openbmc/linux/tools/testing/selftests/cgroup/
H A Dtest_core.c80 static int test_cgcore_destroy(const char *root) in test_cgcore_destroy() argument
87 cg_test = cg_name(root, "cg_test"); in test_cgcore_destroy()
142 static int test_cgcore_populated(const char *root) in test_cgcore_populated() argument
151 cg_test_a = cg_name(root, "cg_test_a"); in test_cgcore_populated()
152 cg_test_b = cg_name(root, "cg_test_a/cg_test_b"); in test_cgcore_populated()
153 cg_test_c = cg_name(root, "cg_test_a/cg_test_b/cg_test_c"); in test_cgcore_populated()
154 cg_test_d = cg_name(root, "cg_test_a/cg_test_b/cg_test_d"); in test_cgcore_populated()
186 if (cg_enter_current(root)) in test_cgcore_populated()
275 static int test_cgcore_invalid_domain(const char *root) in test_cgcore_invalid_domain() argument
280 grandparent = cg_name(root, "cg_test_grandparent"); in test_cgcore_invalid_domain()
[all …]
/openbmc/openbmc/poky/meta/recipes-core/systemd/systemd-systemctl/
H A Dsystemctl32 def __init__(self, root, path, instance_unit_name): argument
34 self._parse(root, path)
37 files = (root / location / "system" / dirname).glob("*.conf")
40 files = chain(files, (root / location / "system" / inst_dirname).glob("*.conf"))
42 self._parse(root, path2)
44 def _parse(self, root, path): argument
61 path = root / Path(os.readlink(str(path))).relative_to(ROOT)
114 def __init__(self, scope, root): argument
116 self._collect_presets(scope, root)
137 def _collect_presets(self, scope, root): argument
[all …]
/openbmc/linux/tools/testing/radix-tree/
H A Dregression3.c31 RADIX_TREE(root, GFP_KERNEL); in regression3_test()
40 radix_tree_insert(&root, 0, ptr0); in regression3_test()
41 radix_tree_tag_set(&root, 0, 0); in regression3_test()
44 radix_tree_for_each_tagged(slot, &root, &iter, 0, 0) { in regression3_test()
47 radix_tree_insert(&root, 1, ptr); in regression3_test()
48 radix_tree_tag_set(&root, 1, 0); in regression3_test()
57 radix_tree_delete(&root, 1); in regression3_test()
60 radix_tree_for_each_slot(slot, &root, &iter, 0) { in regression3_test()
63 radix_tree_insert(&root, 1, ptr); in regression3_test()
73 radix_tree_for_each_slot(slot, &root, &iter, 0) { in regression3_test()
[all …]
H A Dtest.h14 int item_insert(struct radix_tree_root *root, unsigned long index);
17 int item_delete(struct radix_tree_root *root, unsigned long index);
19 struct item *item_lookup(struct radix_tree_root *root, unsigned long index);
21 void item_check_present(struct radix_tree_root *root, unsigned long index);
22 void item_check_absent(struct radix_tree_root *root, unsigned long index);
23 void item_gang_check_present(struct radix_tree_root *root,
26 void item_full_scan(struct radix_tree_root *root, unsigned long start,
28 void item_kill_tree(struct radix_tree_root *root);
43 item_tag_set(struct radix_tree_root *root, unsigned long index, int tag);
45 item_tag_clear(struct radix_tree_root *root, unsigned long index, int tag);
[all …]
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-class-rapidio48 drwxr-xr-x 3 root root 0 Feb 11 15:10 00:e:0001
49 drwxr-xr-x 3 root root 0 Feb 11 15:10 00:e:0004
50 drwxr-xr-x 3 root root 0 Feb 11 15:10 00:e:0007
51 drwxr-xr-x 3 root root 0 Feb 11 15:10 00:s:0002
52 drwxr-xr-x 3 root root 0 Feb 11 15:10 00:s:0003
53 drwxr-xr-x 3 root root 0 Feb 11 15:10 00:s:0005
54 lrwxrwxrwx 1 root root 0 Feb 11 15:11 device -> ../../../0000:01:00.0
55 -r--r--r-- 1 root root 4096 Feb 11 15:11 port_destid
56 drwxr-xr-x 2 root root 0 Feb 11 15:11 power
57 lrwxrwxrwx 1 root root 0 Feb 11 15:04 subsystem -> ../../../../../../class/rapidio_port
[all …]
/openbmc/linux/fs/vboxsf/
H A Dvboxsf_wrappers.c75 int vboxsf_map_folder(struct shfl_string *folder_name, u32 *root) in vboxsf_map_folder() argument
84 parms.root.type = VMMDEV_HGCM_PARM_TYPE_32BIT; in vboxsf_map_folder()
85 parms.root.u.value32 = 0; in vboxsf_map_folder()
98 *root = parms.root.u.value32; in vboxsf_map_folder()
102 int vboxsf_unmap_folder(u32 root) in vboxsf_unmap_folder() argument
106 parms.root.type = VMMDEV_HGCM_PARM_TYPE_32BIT; in vboxsf_unmap_folder()
107 parms.root.u.value32 = root; in vboxsf_unmap_folder()
130 int vboxsf_create(u32 root, struct shfl_string *parsed_path, in vboxsf_create() argument
135 parms.root.type = VMMDEV_HGCM_PARM_TYPE_32BIT; in vboxsf_create()
136 parms.root.u.value32 = root; in vboxsf_create()
[all …]
/openbmc/linux/fs/btrfs/tests/
H A Dqgroup-tests.c16 static int insert_normal_tree_ref(struct btrfs_root *root, u64 bytenr, in insert_normal_tree_ref() argument
41 ret = btrfs_insert_empty_item(&trans, root, path, &ins, size); in insert_normal_tree_ref()
68 static int add_tree_ref(struct btrfs_root *root, u64 bytenr, u64 num_bytes, in add_tree_ref() argument
90 ret = btrfs_search_slot(&trans, root, &key, path, 0, 1); in add_tree_ref()
112 ret = btrfs_insert_empty_item(&trans, root, path, &key, 0); in add_tree_ref()
119 static int remove_extent_item(struct btrfs_root *root, u64 bytenr, in remove_extent_item() argument
139 ret = btrfs_search_slot(&trans, root, &key, path, -1, 1); in remove_extent_item()
145 btrfs_del_item(&trans, root, path); in remove_extent_item()
150 static int remove_extent_ref(struct btrfs_root *root, u64 bytenr, in remove_extent_ref() argument
172 ret = btrfs_search_slot(&trans, root, &key, path, 0, 1); in remove_extent_ref()
[all …]
/openbmc/linux/Documentation/target/
H A Dtcm_mod_builder.rst74 drwxr-xr-x 2 root root 4096 2010-10-05 03:23 .
75 drwxr-xr-x 9 root root 4096 2010-10-05 03:22 ..
76 -rw-r--r-- 1 root root 282 2010-10-05 03:22 Kbuild
77 -rw-r--r-- 1 root root 171 2010-10-05 03:22 Kconfig
78 -rw-r--r-- 1 root root 49 2010-10-05 03:23 modules.order
79 -rw-r--r-- 1 root root 738 2010-10-05 03:22 tcm_nab5000_base.h
80 -rw-r--r-- 1 root root 9096 2010-10-05 03:22 tcm_nab5000_configfs.c
81 -rw-r--r-- 1 root root 191200 2010-10-05 03:23 tcm_nab5000_configfs.o
82 -rw-r--r-- 1 root root 40504 2010-10-05 03:23 .tcm_nab5000_configfs.o.cmd
83 -rw-r--r-- 1 root root 5414 2010-10-05 03:22 tcm_nab5000_fabric.c
[all …]
/openbmc/linux/drivers/eisa/
H A Deisa-bus.c43 struct eisa_root_device *root, in is_forced_dev() argument
49 x = (root->bus_nr << 8) | edev->slot; in is_forced_dev()
182 static int __init eisa_init_device(struct eisa_root_device *root, in eisa_init_device() argument
190 sig_addr = SLOT_ADDRESS(root, slot) + EISA_VENDOR_ID_OFFSET; in eisa_init_device()
198 edev->state = inb(SLOT_ADDRESS(root, slot) + EISA_CONFIG_OFFSET) in eisa_init_device()
200 edev->base_addr = SLOT_ADDRESS(root, slot); in eisa_init_device()
201 edev->dma_mask = root->dma_mask; /* Default DMA mask */ in eisa_init_device()
203 edev->dev.parent = root->dev; in eisa_init_device()
207 dev_set_name(&edev->dev, "%02X:%02X", root->bus_nr, slot); in eisa_init_device()
217 if (is_forced_dev(enable_dev, enable_dev_count, root, edev)) in eisa_init_device()
[all …]
/openbmc/linux/include/trace/events/
H A Dcgroup.h13 TP_PROTO(struct cgroup_root *root),
15 TP_ARGS(root),
18 __field( int, root )
20 __string( name, root->name )
24 __entry->root = root->hierarchy_id;
25 __entry->ss_mask = root->subsys_mask;
26 __assign_str(name, root->name);
30 __entry->root, __entry->ss_mask, __get_str(name))
35 TP_PROTO(struct cgroup_root *root),
37 TP_ARGS(root)
[all …]

12345678910>>...133