/linux-4.4.14/tools/perf/Documentation/ |
D | callchain-overhead-calculation.txt | 9 The 'children' overhead is calculated by adding all period values of 15 It might be confusing that the sum of all the 'children' overhead 19 spread over the children. 64 When the --children option is enabled, the 'self' overhead values of 66 calculate the 'children' overhead. In this case the report could be 96 'children' overhead of 'bar', 'main' and '\_\_libc_start_main'. 98 'children' overhead of 'main' and '\_\_libc_start_main'. 101 same (100%) 'children' overhead (even though they have zero 'self' 104 Since v3.16 the 'children' overhead is shown by default and the output 105 is sorted by its values. The 'children' overhead is disabled by [all …]
|
D | perf-top.txt | 168 --children:: 169 Accumulate callchain of children to parent entry so that then can
|
D | perf-report.txt | 197 Default is 'caller' when --children is used, otherwise 'callee'. 207 --children:: 208 Accumulate callchain of children to parent entry so that then can
|
/linux-4.4.14/drivers/mfd/ |
D | wl1273-core.c | 188 int children = 0; in wl1273_core_probe() local 198 if (!(pdata->children & WL1273_RADIO_CHILD)) { in wl1273_core_probe() 215 cell = &core->cells[children]; in wl1273_core_probe() 219 children++; in wl1273_core_probe() 227 if (pdata->children & WL1273_CODEC_CHILD) { in wl1273_core_probe() 228 cell = &core->cells[children]; in wl1273_core_probe() 234 children++; in wl1273_core_probe() 238 __func__, children); in wl1273_core_probe() 241 children, NULL, 0, NULL); in wl1273_core_probe()
|
D | twl6040.c | 624 int irq, ret, children = 0; in twl6040_probe() local 736 cell = &twl6040->cells[children]; in twl6040_probe() 742 children++; in twl6040_probe() 748 cell = &twl6040->cells[children]; in twl6040_probe() 754 children++; in twl6040_probe() 758 cell = &twl6040->cells[children]; in twl6040_probe() 760 children++; in twl6040_probe() 766 ret = mfd_add_devices(&client->dev, -1, twl6040->cells, children, in twl6040_probe()
|
D | retu-mfd.c | 124 const struct mfd_cell *children; member 131 .children = retu_devs, 138 .children = tahvo_devs, 274 ret = mfd_add_devices(rdev->dev, -1, rdat->children, rdat->nchildren, in retu_probe()
|
D | mfd-core.c | 108 list_for_each_entry(child, &parent->children, node) { in mfd_acpi_add_device() 118 list_for_each_entry(child, &parent->children, node) { in mfd_acpi_add_device()
|
D | Kconfig | 719 of the independent functions as children nodes in the device tree.
|
/linux-4.4.14/fs/nfs/blocklayout/ |
D | dev.c | 21 bl_free_device(&dev->children[i]); in bl_free_device() 22 kfree(dev->children); in bl_free_device() 140 struct pnfs_block_dev *child = &dev->children[i]; in bl_map_concat() 178 child = &dev->children[chunk_idx]; in bl_map_stripe() 243 d->children = kcalloc(v->concat.volumes_count, in bl_parse_concat() 245 if (!d->children) in bl_parse_concat() 249 ret = bl_parse_deviceid(server, &d->children[i], in bl_parse_concat() 255 d->children[i].start += len; in bl_parse_concat() 256 len += d->children[i].len; in bl_parse_concat() 272 d->children = kcalloc(v->stripe.volumes_count, in bl_parse_stripe() [all …]
|
D | blocklayout.h | 103 struct pnfs_block_dev *children; member
|
/linux-4.4.14/drivers/input/misc/ |
D | soc_button_array.c | 46 struct platform_device *children[BUTTON_TYPES]; member 147 if (priv->children[i]) in soc_button_remove() 148 platform_device_unregister(priv->children[i]); in soc_button_remove() 186 priv->children[i] = pd; in soc_button_probe() 189 if (!priv->children[0] && !priv->children[1]) in soc_button_probe()
|
/linux-4.4.14/arch/s390/numa/ |
D | toptree.h | 20 struct list_head children; member 36 list_for_each_entry(child, &ptree->children, sibling) 39 list_for_each_entry_safe(child, ptmp, &ptree->children, sibling) 43 (ptree->parent->children.prev == &ptree->sibling))
|
D | toptree.c | 35 INIT_LIST_HEAD(&res->children); in toptree_alloc() 96 list_for_each_entry(child, &cand->children, sibling) in toptree_update_mask() 119 list_add_tail(&cand->sibling, &target->children); in toptree_insert() 255 if (!list_empty(&context->children)) { in toptree_first() 256 list_for_each_entry(child, &context->children, sibling) { in toptree_first() 278 if (cur == list_last_entry(&cur->parent->children, in toptree_next_sibling()
|
/linux-4.4.14/drivers/net/phy/ |
D | mdio-mux.c | 29 struct mdio_mux_child_bus *children; member 173 cb->next = pb->children; in mdio_mux_init() 174 pb->children = cb; in mdio_mux_init() 177 if (pb->children) { in mdio_mux_init() 195 struct mdio_mux_child_bus *cb = pb->children; in mdio_mux_uninit()
|
/linux-4.4.14/scripts/dtc/ |
D | livetree.c | 100 struct node *build_node(struct property *proplist, struct node *children) in build_node() argument 108 new->children = children; in build_node() 185 while (new_node->children) { in merge_nodes() 187 new_child = new_node->children; in merge_nodes() 188 new_node->children = new_child->next_sibling; in merge_nodes() 266 p = &parent->children; in add_child() 275 struct node *node = parent->children; in delete_node_by_name() 563 bootcpu = cpus->children; in guess_boot_cpuid() 689 node->children = tbl[0]; in sort_subnodes()
|
D | dtc.h | 149 struct node *children; member 178 for ((c) = (n)->children; (c); (c) = (c)->next_sibling) 192 struct node *build_node(struct property *proplist, struct node *children);
|
D | flattree.c | 767 if (node->children) in unflatten_tree()
|
/linux-4.4.14/scripts/ |
D | asn1_compiler.c | 690 struct element *children; member 946 element->children = alloc_elem(cursor); in parse_type() 947 element = element->children; in parse_type() 1031 element->children = parse_compound(&cursor, end, 1); in parse_type() 1045 element->children = parse_type(&cursor, end, NULL); in parse_type() 1047 element->children = parse_compound(&cursor, end, 0); in parse_type() 1062 element->children = parse_type(&cursor, end, NULL); in parse_type() 1064 element->children = parse_compound(&cursor, end, 1); in parse_type() 1154 struct element *children, **child_p = &children, *element; in parse_compound() local 1197 children->flags &= ~ELEMENT_CONDITIONAL; in parse_compound() [all …]
|
D | analyze_suspend.py | 184 children = 0 variable in DeviceNode 188 self.children = [] 458 children = self.deviceDescendants(name, phase) 459 for dev in children: 524 children = self.deviceChildren(devname, phase) 525 family = children 526 for child in children: 544 node.children.append(cnode) 563 if len(node.children) > 0: 565 for cnode in node.children:
|
D | spelling.txt | 212 childern||children 213 childs||children
|
/linux-4.4.14/arch/c6x/platforms/ |
D | pll.c | 102 list_for_each_entry(clk, &root->children, childnode) { in propagate_rate() 146 list_add(&clk->childnode, &clk->parent->children); in clk_set_parent() 172 list_add_tail(&clk->childnode, &clk->parent->children); in clk_register() 329 INIT_LIST_HEAD(&clk->children); in __init_clk() 403 list_for_each_entry(clk, &parent->children, childnode) { in dump_clock()
|
D | plldata.c | 32 .children = LIST_HEAD_INIT(clkin1.children),
|
/linux-4.4.14/arch/powerpc/platforms/pseries/ |
D | pci_dlpar.c | 49 list_for_each_entry(tmp, &bus->children, node) { in find_bus_among_children() 108 if (!(list_empty(&b->children) && list_empty(&b->devices))) in remove_phb_dynamic()
|
D | iommu.c | 632 int children; in pci_dma_bus_setup_pSeries() local 657 for (children = 0, tmp = dn->child; tmp; tmp = tmp->sibling) in pci_dma_bus_setup_pSeries() 658 children++; in pci_dma_bus_setup_pSeries() 660 pr_debug("Children: %d\n", children); in pci_dma_bus_setup_pSeries() 672 while (pci->phb->dma_window_size * children > 0x80000000ul) in pci_dma_bus_setup_pSeries() 699 while (pci->phb->dma_window_size * children > 0x70000000ul) in pci_dma_bus_setup_pSeries()
|
/linux-4.4.14/drivers/input/serio/ |
D | serio.c | 521 INIT_LIST_HEAD(&serio->children); in serio_init_port() 549 list_add_tail(&serio->child_node, &parent->children); in serio_add_port() 630 if (!list_empty(&s->children)) { in serio_reconnect_subtree() 631 s = list_first_entry(&s->children, in serio_reconnect_subtree() 645 if (!list_is_last(&s->child_node, &parent->children)) { in serio_reconnect_subtree() 668 while (!list_empty(&serio->children)) { in serio_disconnect_port() 671 while (!list_empty(&s->children)) in serio_disconnect_port() 672 s = list_first_entry(&s->children, in serio_disconnect_port() 738 list_for_each_entry_safe(s, next, &serio->children, child_node) { in serio_unregister_child_port()
|
/linux-4.4.14/kernel/gcov/ |
D | fs.c | 52 struct list_head children; member 416 INIT_LIST_HEAD(&node->children); in init_node() 459 list_add(&node->list, &parent->children); in new_node() 504 while ((node != &root_node) && list_empty(&node->children)) { in remove_node() 520 list_for_each_entry(node, &parent->children, list) { in get_child_by_name() 542 else if (list_empty(&node->children)) { in reset_write()
|
/linux-4.4.14/Documentation/devicetree/bindings/bus/ |
D | mvebu-mbus.txt | 76 /* more children ...*/ 82 The MBus children address space is comprised of two cells: the first one for 123 /* other children */ 135 /* more children ...*/ 165 /* other children */ 179 /* other children */
|
D | brcm,bus-axi.txt | 17 The top-level axi bus may contain children representing attached cores
|
/linux-4.4.14/arch/arm/mach-davinci/ |
D | clock.c | 152 list_for_each_entry(clk, &root->children, childnode) { in propagate_rate() 200 list_add(&clk->childnode, &clk->parent->children); in clk_set_parent() 223 INIT_LIST_HEAD(&clk->children); in clk_register() 228 list_add_tail(&clk->childnode, &clk->parent->children); in clk_register() 678 list_for_each_entry(clk, &parent->children, childnode) { in dump_clock()
|
D | clock.h | 99 struct list_head children; /* list of children */ member
|
/linux-4.4.14/drivers/clk/ |
D | clk.c | 67 struct hlist_head children; member 181 hlist_for_each_entry(child, &core->children, child_node) in clk_unprepare_unused_subtree() 207 hlist_for_each_entry(child, &core->children, child_node) in clk_disable_unused_subtree() 314 hlist_for_each_entry(child, &core->children, child_node) { in __clk_lookup_subtree() 951 hlist_for_each_entry(child, &core->children, child_node) in __clk_recalc_accuracies() 1029 hlist_for_each_entry(child, &core->children, child_node) in __clk_recalc_rates() 1107 hlist_for_each_entry(child, &core->children, child_node) in clk_core_update_orphan_status() 1124 hlist_add_head(&core->child_node, &new_parent->children); in clk_reparent() 1261 hlist_for_each_entry(child, &core->children, child_node) { in __clk_speculate_rates() 1284 hlist_for_each_entry(child, &core->children, child_node) { in clk_calc_subtree() [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/net/ |
D | hisilicon-hns-mdio.txt | 9 Typically an MDIO bus might have several children.
|
D | cavium-mdio.txt | 14 Typically an MDIO bus might have several children.
|
/linux-4.4.14/sound/core/ |
D | info.c | 531 list_for_each_entry(p, &entry->children, list) { in snd_info_register_recursive() 717 INIT_LIST_HEAD(&entry->children); in snd_info_create_entry() 721 list_add_tail(&entry->list, &parent->children); in snd_info_create_entry() 777 list_for_each_entry(p, &entry->children, list) in snd_info_disconnect() 802 list_for_each_entry_safe(p, n, &entry->children, list) in snd_info_free_entry()
|
/linux-4.4.14/Documentation/networking/ |
D | fib_trie.txt | 37 children of a full child (see "full_children") up one level, so that 39 contain an arbitrarily large array of links to several children. 41 may be "halved", having some of its children moved downwards one level, 49 the number of children of a given tnode that aren't path compressed.
|
/linux-4.4.14/include/linux/ |
D | init_task.h | 221 .children = LIST_HEAD_INIT(tsk.children), \
|
D | mcb.h | 30 struct list_head children; member
|
D | serio.h | 44 struct list_head children; member
|
D | kernfs.h | 77 struct rb_root children; member 253 WARN_ON_ONCE(!RB_EMPTY_ROOT(&kn->dir.children)); in kernfs_enable_ns()
|
D | cgroup-defs.h | 118 struct list_head children; member
|
D | sh_clk.h | 46 struct list_head children; member
|
D | pci.h | 460 struct list_head children; /* list of child buses */ member
|
D | sched.h | 1500 struct list_head children; /* list of my children */ member
|
/linux-4.4.14/drivers/sh/clk/ |
D | core.c | 218 list_add(&child->sibling, &parent->children); in clk_reparent() 229 list_for_each_entry(clkp, &tclk->children, sibling) { in propagate_rate() 425 INIT_LIST_HEAD(&clk->children); in clk_register() 433 list_add(&clk->sibling, &clk->parent->children); in clk_register()
|
/linux-4.4.14/tools/perf/util/ |
D | thread-stack.h | 91 struct rb_root children; member
|
D | thread-stack.c | 347 cp->children = RB_ROOT; in call_path__init() 416 p = &parent->children.rb_node; in call_path__findnew() 435 rb_insert_color(&cp->rb_node, &parent->children); in call_path__findnew()
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | cros-adc-thermistors.dtsi | 3 * children of the IIO based ADC.
|
/linux-4.4.14/fs/kernfs/ |
D | dir.c | 259 struct rb_node **node = &kn->parent->dir.children.rb_node; in kernfs_link_sibling() 279 rb_insert_color(&kn->rb, &kn->parent->dir.children); in kernfs_link_sibling() 307 rb_erase(&kn->rb, &kn->parent->dir.children); in kernfs_unlink_sibling() 668 struct rb_node *node = parent->dir.children.rb_node; in kernfs_find_ns() 973 rbn = rb_first(&pos->dir.children); in kernfs_leftmost_descendant() 1393 struct rb_node *node = parent->dir.children.rb_node; in kernfs_dir_pos()
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | pci-hotplug.c | 53 list_for_each_entry(child_bus, &bus->children, node) in pcibios_remove_pci_devices()
|
D | pci-common.c | 1230 list_for_each_entry(b, &bus->children, node) in pcibios_allocate_bus_resources() 1419 list_for_each_entry(child_bus, &bus->children, node) in pcibios_claim_one_bus() 1654 list_for_each_entry(child, &bus->children, node) in pcibios_scan_phb()
|
/linux-4.4.14/net/sched/ |
D | sch_cbq.c | 113 struct cbq_class *children; /* Pointer to children chain */ member 1017 cl = this->children; in cbq_adjust_levels() 1022 } while ((cl = cl->sibling) != this->children); in cbq_adjust_levels() 1140 if (this->tparent->children == this) { in cbq_unlink_class() 1141 this->tparent->children = this->sibling; in cbq_unlink_class() 1143 this->tparent->children = NULL; in cbq_unlink_class() 1161 if (parent->children == NULL) { in cbq_link_class() 1162 parent->children = this; in cbq_link_class() 1164 this->sibling = parent->children->sibling; in cbq_link_class() 1165 parent->children->sibling = this; in cbq_link_class() [all …]
|
D | sch_htb.c | 111 unsigned int children; member 1200 if (cl->parent->children > 1) in htb_parent_last_child() 1278 if (cl->children || cl->filter_cnt) in htb_delete() 1300 cl->parent->children--; in htb_delete() 1412 cl->children = 0; in htb_change_class() 1462 parent->children++; in htb_change_class()
|
D | sch_hfsc.c | 125 struct list_head children; /* child classes */ member 912 list_for_each_entry(p, &cl->children, siblings) { in hfsc_adjust_levels() 1094 INIT_LIST_HEAD(&cl->children); in hfsc_change_class() 1100 list_add_tail(&cl->siblings, &parent->children); in hfsc_change_class() 1455 INIT_LIST_HEAD(&q->root.children); in hfsc_init_qdisc()
|
/linux-4.4.14/kernel/ |
D | exit.c | 324 list_for_each_entry(c, &p->children, sibling) { in mm_update_next_owner() 332 list_for_each_entry(c, &p->real_parent->children, sibling) { in mm_update_next_owner() 561 if (list_empty(&father->children)) in forget_original_parent() 565 list_for_each_entry(p, &father->children, sibling) { in forget_original_parent() 582 list_splice_tail_init(&father->children, &reaper->children); in forget_original_parent() 1431 list_for_each_entry(p, &tsk->children, sibling) { in do_wait_thread()
|
D | cgroup.c | 554 list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \ 1130 BUG_ON(!list_empty(&cgrp->self.children)); in cgroup_destroy_root() 1797 if (!list_empty(&root->cgrp.self.children)) { in cgroup_remount() 1880 INIT_LIST_HEAD(&cgrp->self.children); in init_cgroup_housekeeping() 1984 BUG_ON(!list_empty(&root_cgrp->self.children)); in cgroup_setup_root() 2179 if (!list_empty(&root->cgrp.self.children) || in cgroup_kill_sb() 3692 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling); in css_next_child() 3696 list_for_each_entry_rcu(next, &parent->children, sibling) in css_next_child() 3705 if (&next->sibling != &parent->children) in css_next_child() 4797 INIT_LIST_HEAD(&css->children); in init_and_link_css() [all …]
|
D | fork.c | 1339 INIT_LIST_HEAD(&p->children); in copy_process() 1588 list_add_tail(&p->sibling, &p->real_parent->children); in copy_process()
|
/linux-4.4.14/Documentation/devicetree/bindings/mips/cavium/ |
D | uctl.txt | 14 - ranges: Empty to signify direct mapping of the children.
|
/linux-4.4.14/drivers/acpi/ |
D | container.c | 48 list_for_each_entry(child, &adev->children, node) in acpi_container_offline()
|
D | glue.c | 98 if (check_children && list_empty(&adev->children)) in find_child_checks() 113 list_for_each_entry(adev, &parent->children, node) { in acpi_find_child_device()
|
D | scan.c | 367 list_for_each_entry(child, &adev->children, node) { in acpi_scan_bus_check() 626 INIT_LIST_HEAD(&device->children); in acpi_device_add() 663 list_add_tail(&device->node, &device->parent->children); in acpi_device_add() 1778 list_for_each_entry(child, &device->children, node) in acpi_bus_attach() 1849 list_for_each_entry_reverse(child, &adev->children, node) in acpi_bus_trim()
|
D | property.c | 810 head = &adev->children; in acpi_get_next_subnode()
|
D | Kconfig | 462 device and its children. This can be very verbose, so leave
|
D | acpi_video.c | 1427 list_for_each_entry(dev, &device->children, node) { in acpi_video_bus_get_devices()
|
/linux-4.4.14/Documentation/devicetree/bindings/spi/ |
D | spi-xlp.txt | 18 SPI slave nodes must be children of the SPI master node and can contain
|
D | spi_pl022.txt | 26 SPI slave nodes must be children of the SPI master node and can
|
D | qcom,spi-qup.txt | 42 SPI slave nodes must be children of the SPI master node and can contain
|
D | spi-bus.txt | 44 SPI slave nodes must be children of the SPI master node and can
|
/linux-4.4.14/arch/c6x/include/asm/ |
D | clock.h | 90 struct list_head children; /* list of children */ member
|
/linux-4.4.14/Documentation/devicetree/bindings/i2c/ |
D | i2c-mux-pca954x.txt | 20 children in idle state. This is necessary for example, if there are several
|
D | i2c.txt | 18 The cells properties above define that an address of children of an I2C bus
|
/linux-4.4.14/Documentation/devicetree/bindings/net/dsa/ |
D | dsa.txt | 35 A switch may have multiple "port" children nodes 37 Each port children node must have the following mandatory properties:
|
/linux-4.4.14/arch/sparc/kernel/ |
D | pci_common.c | 517 list_for_each_entry(bus, &pbus->children, node) in pci_scan_for_target_abort() 540 list_for_each_entry(bus, &pbus->children, node) in pci_scan_for_master_abort() 564 list_for_each_entry(bus, &pbus->children, node) in pci_scan_for_parity_error()
|
D | pci.c | 613 list_for_each_entry(child_bus, &bus->children, node) in pci_bus_register_of_sysfs() 643 list_for_each_entry(child_bus, &bus->children, node) in pci_claim_bus_resources() 1050 list_for_each_entry(bus, &pbus->children, node) in pcie_bus_slot_names()
|
/linux-4.4.14/Documentation/devicetree/bindings/display/atmel/ |
D | hlcdc-dc.txt | 13 Required children nodes:
|
/linux-4.4.14/Documentation/devicetree/bindings/mtd/ |
D | sunxi-nand.txt | 14 Optional children nodes:
|
D | vf610-nfc.txt | 22 Required children nodes:
|
/linux-4.4.14/fs/proc/ |
D | Kconfig | 76 bool "Include /proc/<pid>/task/<tid>/children file" 79 Provides a fast way to retrieve first level children pids of a task. See
|
D | array.c | 616 if (list_is_last(&task->sibling, &start->children)) in get_children_pid() 640 list_for_each_entry(task, &start->children, sibling) { in get_children_pid()
|
/linux-4.4.14/Documentation/security/ |
D | Yama.txt | 64 with PTRACE_ATTACH, or through children calling PTRACE_TRACEME. 69 The original children-only logic was based on the restrictions in grsecurity.
|
D | keys.txt | 615 checked for keys before recursion into its children occurs.
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | vexpress.txt | 93 and children describing available functions. 102 property, describing physical location of the children nodes: 152 - "simple-bus" compatible value (to ensure creation of the children)
|
/linux-4.4.14/arch/arm/mach-omap1/ |
D | clock.c | 764 list_add(&child->sibling, &parent->children); in clk_reparent() 776 list_for_each_entry(clkp, &tclk->children, sibling) { in propagate_rate() 812 INIT_LIST_HEAD(&clk->children); in clk_preinit() 828 list_add(&clk->sibling, &clk->parent->children); in clk_register()
|
D | clock.h | 146 struct list_head children; member
|
/linux-4.4.14/Documentation/devicetree/ |
D | usage-model.txt | 251 tree and children of simple memory mapped bus nodes. 324 considered a device). The children of the /soc node are memory mapped 342 assume that its devices are children of a bus controller. For 346 ever appear as children of an I2C bus node. Ditto for SPI, MDIO, USB, 363 what about the children of the SoC node? Shouldn't they be registered 368 its spi_device children, and similarly for other bus_types. 371 children. The board support code would allocate and register an SoC 376 Actually, it turns out that registering children of some
|
D | booting-without-of.txt | 713 and #size-cells are not inherited so every node with children must specify 1288 number and level/sense information. All interrupt children in an
|
/linux-4.4.14/arch/frv/mb93090-mb00/ |
D | pci-frv.c | 100 pcibios_allocate_bus_resources(&bus->children); in pcibios_allocate_bus_resources()
|
/linux-4.4.14/Documentation/devicetree/bindings/mfd/ |
D | twl-familly.txt | 24 The children nodes will thus depend of the capability of the variant.
|
D | mfd.txt | 22 "simple-bus" inidicates when to see subnodes as children for a simple
|
D | omap-usb-host.txt | 64 Properties for children:
|
/linux-4.4.14/kernel/trace/ |
D | trace_events_filter.c | 1536 int children; member 1550 if (WARN_ON(d->count == d->children)) { in fold_pred_cb() 1566 int children; in fold_pred() local 1576 children = count_leafs(preds, &preds[root->left]); in fold_pred() 1577 children += count_leafs(preds, &preds[root->right]); in fold_pred() 1579 root->ops = kcalloc(children, sizeof(*root->ops), GFP_KERNEL); in fold_pred() 1583 root->val = children; in fold_pred() 1584 data.children = children; in fold_pred()
|
/linux-4.4.14/block/partitions/ |
D | ldm.h | 148 u8 children; member
|
D | ldm.c | 819 comp->children = ldm_get_vnum (buffer + 0x1D + r_vstate); in ldm_parse_cmp3()
|
/linux-4.4.14/fs/ceph/ |
D | snap.c | 119 INIT_LIST_HEAD(&realm->children); in ceph_create_snap_realm() 284 list_add(&realm->child_item, &parent->children); in adjust_snap_realm_parent() 406 list_for_each_entry(child, &realm->children, child_item) in rebuild_snap_realms() 646 list_for_each_entry(child, &realm->children, child_item) { in queue_realm_cap_snaps()
|
D | super.h | 677 struct list_head children; /* list of child realms */ member
|
/linux-4.4.14/Documentation/block/ |
D | cfq-iosched.txt | 152 Internal cgroup nodes (the ones with children) can also have tasks in 156 its direct children. 173 and AB have no child and thus its tasks have no children cgroup to 196 A has children and further distributes its 57% among the children and
|
/linux-4.4.14/arch/mn10300/unit-asb2305/ |
D | pci-asb2305.c | 123 pcibios_allocate_bus_resources(&bus->children); in pcibios_allocate_bus_resources()
|
/linux-4.4.14/Documentation/cgroups/ |
D | devices.txt | 56 a cgroup's devices.deny file, all its children will have that entry removed 106 not be possible once the device cgroups has children.
|
D | unified-hierarchy.txt | 131 which governs which controllers are enabled on the children of the 168 from the parent can be used in its children. 180 children have it enabled. 186 tasks belonging to the parent cgroup and its children cgroups. This 193 flat when children should be allocated specific ratios of CPU cycles 242 important as otherwise it wouldn't be possible to create children of a 244 cgroup must create children and transfer all its tasks to the children 330 after all children are removed. This again makes it impossible to
|
D | cpuacct.txt | 29 process (bash) into it. CPU time consumed by this bash and its children
|
D | memory.txt | 285 cannot be set if the cgroup have children, or if there are already tasks in the 287 When use_hierarchy == 1 and a group is accounted, its children will 516 sum of all hierarchical children's values of 579 hierarchical children's values in addition to the memcg's own value. 610 children of the ancestor.
|
D | cgroups.txt | 41 tasks, and all their future children, into hierarchical groups with 257 children of that task, to a cgroup allows organizing the work load
|
D | cpusets.txt | 195 children of that task, to a cpuset allows organizing the work load
|
/linux-4.4.14/tools/perf/tests/ |
D | hists_cumulate.c | 163 u64 children; member 217 TEST_ASSERT_VAL(buf, he->stat_acc->period == expected[i].children); in do_test()
|
/linux-4.4.14/include/linux/mfd/ |
D | wl1273-core.h | 254 unsigned int children; member
|
/linux-4.4.14/net/ipv6/ |
D | ip6_fib.c | 1281 int children; in fib6_repair_tree() local 1295 children = 0; in fib6_repair_tree() 1298 child = fn->right, children |= 1; in fib6_repair_tree() 1300 child = fn->left, children |= 2; in fib6_repair_tree() 1302 if (children == 3 || FIB6_SUBTREE(fn) in fib6_repair_tree() 1305 || (children && fn->fn_flags & RTN_ROOT) in fib6_repair_tree() 1361 if (children&2) { in fib6_repair_tree()
|
/linux-4.4.14/drivers/scsi/libsas/ |
D | sas_expander.c | 865 list_add_tail(&child->siblings, &parent_ex->children); in sas_ex_discover_end_dev() 980 list_add_tail(&child->siblings, &parent->ex_dev.children); in sas_ex_discover_expander() 1132 list_for_each_entry(child, &ex->children, siblings) { in sas_check_level_subtractive_boundary() 1851 list_for_each_entry(ch, &ex->children, siblings) { in sas_find_bcast_dev() 1867 list_for_each_entry_safe(child, n, &ex->children, siblings) { in sas_unregister_ex_tree() 1886 &ex_dev->children, siblings) { in sas_unregister_devs_sas_addr() 1918 list_for_each_entry(child, &ex_root->children, siblings) { in sas_discover_bfs_by_root_level() 1970 list_for_each_entry(child, &dev->ex_dev.children, siblings) { in sas_discover_new()
|
D | sas_discover.c | 47 INIT_LIST_HEAD(&dev->ex_dev.children); in sas_init_dev()
|
/linux-4.4.14/Documentation/devicetree/bindings/nvmem/ |
D | nvmem.txt | 14 Contains bindings specific to provider drivers and data cells as children
|
/linux-4.4.14/drivers/pci/pcie/ |
D | aspm.c | 46 struct list_head children; /* list of child link states */ member 522 INIT_LIST_HEAD(&link->children); in alloc_pcie_link_state() 533 list_add(&link->link, &parent->children); in alloc_pcie_link_state()
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-devices-soc | 13 devices would be better suited to appear as children of that SoC.
|
D | sysfs-class-powercap | 152 This applies to current power zone and its children.
|
D | sysfs-bus-pci | 98 hot-remove the PCI device and any of its children.
|
/linux-4.4.14/Documentation/devicetree/bindings/soc/qcom/ |
D | qcom,gsbi.txt | 28 Properties for children:
|
/linux-4.4.14/include/sound/ |
D | info.h | 91 struct list_head children; member
|
/linux-4.4.14/Documentation/devicetree/bindings/leds/ |
D | register-bit-led.txt | 5 single LED. The register bit LEDs appear as children to the
|
/linux-4.4.14/Documentation/arm/ |
D | Interrupts | 43 to the Neponset handler, the "parent" is GPIO25, and the "children"d 157 the parent IRQ should be unmasked, and the status of all children must
|
/linux-4.4.14/Documentation/devicetree/bindings/iio/ |
D | iio-bindings.txt | 62 and IIO channel to their children.
|
/linux-4.4.14/drivers/pci/ |
D | search.c | 114 list_for_each_entry(tmp, &bus->children, node) { in pci_do_find_bus()
|
D | probe.c | 498 INIT_LIST_HEAD(&b->children); in pci_alloc_bus() 776 list_add_tail(&child->node, &parent->children); in pci_add_new_bus()
|
D | setup-bus.c | 1598 list_for_each_entry(child_bus, &bus->children, node) { in pci_bus_get_depth()
|
D | pci.c | 118 list_for_each_entry(tmp, &bus->children, node) { in pci_bus_max_busnr()
|
/linux-4.4.14/Documentation/filesystems/caching/ |
D | object.txt | 160 object to transit to a state that allows access to its children: 248 can destroy themselves. This object waits for all its children to go away 261 all its children, if it is dying because the netfs relinquished its
|
D | fscache.txt | 109 recursive, stack space is limited, and indices can only be children of 179 children. Any index with non-index object children will be assumed to only
|
D | cachefiles.txt | 251 Data objects are represented as files if they have no children, or directories 260 If an object has children, then it will be represented as a directory.
|
D | netfs-api.txt | 186 have index children.
|
/linux-4.4.14/drivers/pci/host/ |
D | pci-host-generic.c | 268 list_for_each_entry(child, &bus->children, node) in gen_pci_probe()
|
D | pcie-altera.c | 556 list_for_each_entry(child, &bus->children, node) in altera_pcie_probe()
|
D | pcie-designware.c | 558 list_for_each_entry(child, &bus->children, node) in dw_pcie_host_init()
|
D | pcie-rcar.c | 420 list_for_each_entry(child, &bus->children, node) in rcar_pcie_enable()
|
/linux-4.4.14/Documentation/devicetree/bindings/reset/ |
D | reset.txt | 26 children of the bus are affected by the reset signal, or an individual HW
|
/linux-4.4.14/arch/x86/pci/ |
D | acpi.c | 369 list_for_each_entry(child, &bus->children, node) in pci_acpi_scan_root()
|
D | i386.c | 239 list_for_each_entry(child, &bus->children, node) in pcibios_allocate_bus_resources()
|
/linux-4.4.14/drivers/mcb/ |
D | mcb-core.c | 201 INIT_LIST_HEAD(&bus->children); in mcb_alloc_bus()
|
/linux-4.4.14/drivers/gpu/drm/i915/ |
D | intel_opregion.c | 676 list_for_each_entry(acpi_cdev, &acpi_dev->children, node) { in intel_didl_outputs() 699 list_for_each_entry(acpi_cdev, &acpi_video_bus->children, node) { in intel_didl_outputs()
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/tegra/ |
D | nvidia,tegra20-emc.txt | 39 for which this node (and children) are valid.
|
/linux-4.4.14/scripts/kconfig/ |
D | qconf.h | 90 return (ConfigItem *)children().first(); in firstChild()
|
/linux-4.4.14/arch/alpha/kernel/ |
D | pci.c | 297 list_for_each_entry(child_bus, &b->children, node) in pcibios_claim_one_bus()
|
/linux-4.4.14/Documentation/filesystems/ |
D | path-lookup.txt | 249 | children:"home", ...| 256 | children:"npiggin" | we now recheck the d_seq of dentry0. Then we 263 | children:"a.c", ... | can be forgotten. 270 | children:NULL | its refcount because we're holding d_lock.
|
D | proc.txt | 43 3.7 /proc/<pid>/task/<tid>/children - Information about task children 325 cgtime guest time of the task children in jiffies 1489 generation children with separate address spaces instead, if possible. This 1697 3.7 /proc/<pid>/task/<tid>/children - Information about task children 1699 This file provides a fast way to retrieve first level children pids 1703 Note the "first level" here -- if a child has own children they will 1704 not be listed here, one needs to read /proc/<children-pid>/task/<tid>/children 1708 guarantee to provide precise results and some children might be
|
D | f2fs.txt | 518 The following figure shows an example of two cases holding children. 528 Number of children = 6, Number of children = 3,
|
D | directory-locking | 125 children", so if we are going to introduce hybrid objects we will need
|
D | gfs2-glocks.txt | 106 (Parents before children, inodes at "same level" with same parent in
|
D | coda.txt | 1534 CodaFid, and all children of this directory. This call is issued when 1569 vnode), purge its children from the namecache and remove the file from the
|
/linux-4.4.14/Documentation/filesystems/configfs/ |
D | configfs.txt | 261 (assuming that it has no children to keep it busy). The subsystem is 311 these children. 381 children of the parent group. If ct_group_ops->make_group() exists, 394 group is checking for children.
|
/linux-4.4.14/Documentation/devicetree/bindings/reserved-memory/ |
D | reserved-memory.txt | 76 memory-region (optional) - phandle, specifier pairs to children of /reserved-memory
|
/linux-4.4.14/Documentation/acpi/ |
D | scan_handlers.txt | 12 struct acpi_device objects and analogously for their children). Those struct
|
D | enumeration.txt | 338 The MFD devices register their children as platform devices. For the child 343 o The children share the parent ACPI handle.
|
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/ |
D | pinctrl-st.txt | 41 node (children).
|
D | pinctrl-bindings.txt | 124 The pin configuration nodes need not be direct children of the pin controller
|
/linux-4.4.14/Documentation/DocBook/ |
D | scsi.xml.db | 117 API-sas-remove-children
|
/linux-4.4.14/Documentation/scheduler/ |
D | sched-bwc.txt | 83 [ Where C is the parent's bandwidth, and c_i its children ]
|
/linux-4.4.14/mm/ |
D | oom_kill.c | 548 list_for_each_entry(child, &t->children, sibling) { in oom_kill_process()
|
/linux-4.4.14/include/scsi/ |
D | libsas.h | 145 struct list_head children; member
|
/linux-4.4.14/arch/arm/kernel/ |
D | bios32.c | 531 list_for_each_entry(child, &bus->children, node) in pci_common_init_dev()
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ |
D | qoriq-clock.txt | 59 trees the children of the clockgen node are the clock providers.
|
D | clock-bindings.txt | 78 clock to their children.
|
/linux-4.4.14/Documentation/devicetree/bindings/iommu/ |
D | iommu.txt | 95 can be useful to describe how children on the bus relate to the IOMMU if they
|
/linux-4.4.14/include/acpi/ |
D | acpi_bus.h | 357 struct list_head children; member
|
/linux-4.4.14/Documentation/power/ |
D | runtime_pm.txt | 137 counter of 'active' children of the device. 175 'active' children of which is equal to zero, or the 'power.ignore_children' 226 - the count of 'active' children of the device 425 children as appropriate (it is only valid to use this function if 433 children as appropriate (it is only valid to use this function if 619 * The device's children may need the device to be at full power in order
|
D | devices.txt | 320 children of a device had been suspended if new children could be 325 After the prepare callback method returns, no new children may be 421 however, that new children may be registered below the device as soon as
|
D | pci.txt | 707 This callback is only necessary if the driver's device has children that in 709 callback is to prevent new children of the device from being registered until
|
/linux-4.4.14/arch/microblaze/pci/ |
D | pci-common.c | 1053 list_for_each_entry(b, &bus->children, node) in pcibios_allocate_bus_resources() 1245 list_for_each_entry(child_bus, &bus->children, node) in pcibios_claim_one_bus()
|
/linux-4.4.14/Documentation/devicetree/bindings/pci/ |
D | nvidia,tegra20-pcie.txt | 222 device nodes need to be added in order to allow the bus' children to be
|
/linux-4.4.14/drivers/pci/hotplug/ |
D | acpiphp_glue.c | 419 list_for_each_entry(tmp, &bus->children, node) { in acpiphp_max_busnr()
|
/linux-4.4.14/Documentation/ |
D | clk.txt | 50 struct hlist_head children;
|
D | kobject.txt | 172 This should be done only after any attributes or children of the kobject 331 A kset keeps its children in a standard kernel linked list. Kobjects point
|
D | rbtree.txt | 260 and its immediate children. And this will be used in O(log n) lookup
|
/linux-4.4.14/drivers/scsi/ |
D | dc395x.c | 328 struct DeviceCtlBlk *children[DC395x_MAX_SCSI_ID][32]; member 954 return acb->children[id][lun]; in find_dcb() 3815 acb->children[dcb->target_id][dcb->target_lun] = dcb; in adapter_add_device() 3851 acb->children[dcb->target_id][dcb->target_lun] = NULL; in adapter_remove_device()
|
/linux-4.4.14/arch/tile/kernel/ |
D | pci_gx.c | 603 list_for_each_entry(child, &root_bus->children, node) in fixup_read_and_payload_sizes()
|
/linux-4.4.14/drivers/mtd/ |
D | Kconfig | 135 the partition map from the children of the flash node,
|
/linux-4.4.14/Documentation/devicetree/bindings/display/tegra/ |
D | nvidia,tegra20-host1x.txt | 19 The host1x top-level node defines a number of children, each representing one
|
/linux-4.4.14/kernel/sched/ |
D | core.c | 787 list_for_each_entry_rcu(child, &parent->children, siblings) { in walk_tg_tree_from() 7418 INIT_LIST_HEAD(&root_task_group.children); in sched_init() 7737 INIT_LIST_HEAD(&tg->children); in sched_online_group() 7738 list_add_rcu(&tg->siblings, &parent->children); in sched_online_group() 7887 list_for_each_entry_rcu(child, &tg->children, siblings) { in tg_rt_schedulable()
|
D | sched.h | 267 struct list_head children; member
|
/linux-4.4.14/tools/perf/ |
D | design.txt | 51 inherit : 1, /* children inherit it */
|
/linux-4.4.14/Documentation/powerpc/ |
D | pci_iov_resource_on_powernv.txt | 139 you freeze a switch, it freezes all its children). So we do it in
|
/linux-4.4.14/drivers/input/mouse/ |
D | psmouse-base.c | 1793 while (!list_empty(&serio->children)) { in psmouse_attr_set_protocol()
|
/linux-4.4.14/arch/ia64/kernel/ |
D | mca.c | 1828 INIT_LIST_HEAD(&p->children); in format_mca_init_stack()
|
/linux-4.4.14/drivers/pcmcia/ |
D | yenta_socket.c | 1097 list_for_each_entry(sibling, &bridge_to_fix->parent->children, in yenta_fixup_parent_bridge()
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | mmu.txt | 218 unsynchronized children).
|
/linux-4.4.14/Documentation/usb/ |
D | power-management.txt | 667 Once all children and descendants have suspended the
|
/linux-4.4.14/drivers/platform/x86/ |
D | thinkpad_acpi.c | 6362 list_for_each_entry(child, &device->children, node) { in tpacpi_query_bcl_levels()
|
/linux-4.4.14/Documentation/trace/ |
D | ftrace.txt | 2345 If you want to trace only one function and all of its children,
|
/linux-4.4.14/ |
D | CREDITS | 1274 D: parent process death signal to children
|