/linux/tools/testing/selftests/cgroup/ |
A D | test_memcontrol.c | 268 char *children[4] = {NULL}; in test_memcg_min() local 317 if (!children[i]) in test_memcg_min() 320 if (cg_create(children[i])) in test_memcg_min() 379 if (!children[i]) in test_memcg_min() 382 cg_destroy(children[i]); in test_memcg_min() 383 free(children[i]); in test_memcg_min() 424 char *children[4] = {NULL}; in test_memcg_low() local 472 if (!children[i]) in test_memcg_low() 538 if (!children[i]) in test_memcg_low() 541 cg_destroy(children[i]); in test_memcg_low() [all …]
|
/linux/tools/perf/Documentation/ |
A 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' 105 is sorted by its values. The 'children' overhead is disabled by 106 specifying --no-children option on the command line or by adding [all …]
|
/linux/drivers/mfd/ |
A D | wl1273-core.c | 165 int children = 0; in wl1273_core_probe() local 175 if (!(pdata->children & WL1273_RADIO_CHILD)) { in wl1273_core_probe() 192 cell = &core->cells[children]; in wl1273_core_probe() 196 children++; in wl1273_core_probe() 204 if (pdata->children & WL1273_CODEC_CHILD) { in wl1273_core_probe() 205 cell = &core->cells[children]; in wl1273_core_probe() 211 children++; in wl1273_core_probe() 215 __func__, children); in wl1273_core_probe() 218 children, NULL, 0, NULL); in wl1273_core_probe()
|
A D | twl6040.c | 642 int irq, ret, children = 0; in twl6040_probe() local 762 cell = &twl6040->cells[children]; in twl6040_probe() 768 children++; in twl6040_probe() 774 cell = &twl6040->cells[children]; in twl6040_probe() 780 children++; in twl6040_probe() 784 cell = &twl6040->cells[children]; in twl6040_probe() 786 children++; in twl6040_probe() 789 cell = &twl6040->cells[children]; in twl6040_probe() 791 children++; in twl6040_probe() 797 ret = mfd_add_devices(&client->dev, -1, twl6040->cells, children, in twl6040_probe()
|
A 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()
|
/linux/drivers/net/ethernet/netronome/nfp/abm/ |
A D | qdisc.c | 23 return qdisc->children[id] && in nfp_abm_qdisc_child_valid() 114 qdisc->children[i] = NULL; in nfp_abm_qdisc_unlink_children() 201 !qdisc->children[0]; in nfp_abm_offload_compile_red() 311 mq->children[i] = NULL; in nfp_abm_qdisc_clear_mq() 332 kfree(qdisc->children); in nfp_abm_qdisc_free() 341 unsigned int children) in nfp_abm_qdisc_alloc() argument 351 if (children) { in nfp_abm_qdisc_alloc() 352 qdisc->children = kcalloc(children, sizeof(void *), GFP_KERNEL); in nfp_abm_qdisc_alloc() 353 if (!qdisc->children) in nfp_abm_qdisc_alloc() 374 kfree(qdisc->children); in nfp_abm_qdisc_alloc() [all …]
|
/linux/lib/ |
A D | generic-radix-tree.c | 13 struct genradix_node *children[GENRADIX_ARY]; member 71 n = n->children[offset >> genradix_depth_shift(level)]; in __genradix_ptr() 127 new_node->children[0] = n; in __genradix_ptr_alloc() 139 &n->children[offset >> genradix_depth_shift(level)]; in __genradix_ptr_alloc() 186 while (!n->children[i]) { in __genradix_iter_peek() 197 n = n->children[i]; in __genradix_iter_peek() 210 if (n->children[i]) in genradix_free_recurse() 211 genradix_free_recurse(n->children[i], level - 1); in genradix_free_recurse()
|
/linux/drivers/net/ethernet/mellanox/mlx5/core/ |
A D | fs_core.h | 145 struct list_head children; member 315 list_for_each_entry_reverse(pos, &(prio)->node.children, list) 318 list_for_each_entry(pos, (&(prio)->node.children), list) 321 fs_list_for_each_entry(pos, &(ns)->node.children) 324 fs_list_for_each_entry(pos, &(prio)->node.children) 327 fs_list_for_each_entry(pos, &(prio)->node.children) 330 fs_list_for_each_entry_safe(pos, tmp, &(prio)->node.children) 333 fs_list_for_each_entry(pos, &(ft)->node.children) 336 fs_list_for_each_entry(pos, &(fg)->node.children) 339 fs_list_for_each_entry(pos, &(fte)->node.children)
|
/linux/drivers/platform/surface/ |
A D | surface3_button.c | 65 struct platform_device *children[BUTTON_TYPES]; member 167 if (priv->children[i]) in surface3_button_remove() 168 platform_device_unregister(priv->children[i]); in surface3_button_remove() 220 priv->children[i] = pd; in surface3_button_probe() 223 if (!priv->children[0] && !priv->children[1]) in surface3_button_probe()
|
/linux/fs/nfs/blocklayout/ |
A D | dev.c | 23 bl_free_device(&dev->children[i]); in bl_free_device() 24 kfree(dev->children); in bl_free_device() 182 struct pnfs_block_dev *child = &dev->children[i]; in bl_map_concat() 220 child = &dev->children[chunk_idx]; in bl_map_stripe() 424 d->children = kcalloc(v->concat.volumes_count, in bl_parse_concat() 426 if (!d->children) in bl_parse_concat() 436 d->children[i].start += len; in bl_parse_concat() 437 len += d->children[i].len; in bl_parse_concat() 453 d->children = kcalloc(v->stripe.volumes_count, in bl_parse_stripe() 455 if (!d->children) in bl_parse_stripe() [all …]
|
/linux/include/linux/phy/ |
A D | phy.h | 169 struct device_node *children; member 198 #define of_phy_provider_register_full(dev, children, xlate) \ argument 199 __of_phy_provider_register(dev, children, THIS_MODULE, xlate) 201 #define devm_of_phy_provider_register_full(dev, children, xlate) \ argument 202 __devm_of_phy_provider_register(dev, children, THIS_MODULE, xlate) 269 struct device_node *children, struct module *owner, 273 struct device_node *children, struct module *owner, 502 struct device *dev, struct device_node *children, struct module *owner, in __of_phy_provider_register() argument 510 *dev, struct device_node *children, struct module *owner, in __devm_of_phy_provider_register() argument
|
/linux/scripts/ |
A D | check-sysctl-docs | 97 delete children 146 children[curtable][curentry] = child 152 if (children[tables[1]][table]) { 153 for (entry in entries[children[tables[1]][table]]) {
|
A D | asn1_compiler.c | 686 struct element *children; member 942 element->children = alloc_elem(cursor); in parse_type() 943 element = element->children; in parse_type() 1150 struct element *children, **child_p = &children, *element; in parse_compound() local 1193 children->flags &= ~ELEMENT_CONDITIONAL; in parse_compound() 1203 return children; in parse_compound() 1246 for (c = e->children; c; c = c->next) in dump_element() 1406 for (ce = e->children; ce; ce = ce->next) in render_out_of_line_list() 1471 render_element(out, e->children, e); in render_element() 1576 render_element(out, e->children, NULL); in render_element() [all …]
|
/linux/drivers/net/mdio/ |
A D | mdio-mux.c | 25 struct mdio_mux_child_bus *children; member 87 struct mdio_mux_child_bus *cb = pb->children; in mdio_mux_uninit_children() 188 cb->next = pb->children; in mdio_mux_init() 189 pb->children = cb; in mdio_mux_init() 192 if (pb->children) { in mdio_mux_init()
|
/linux/drivers/i2c/muxes/ |
A D | i2c-mux-gpmux.c | 77 int children; in i2c_mux_probe() local 97 children = of_get_child_count(np); in i2c_mux_probe() 99 muxc = i2c_mux_alloc(parent, dev, children, 0, 0, in i2c_mux_probe() 132 dev_info(dev, "%d-port mux on %s adapter\n", children, parent->name); in i2c_mux_probe()
|
/linux/drivers/iio/multiplexer/ |
A D | iio-mux.c | 350 int children; in mux_probe() local 369 children = 0; in mux_probe() 372 children++; in mux_probe() 374 if (children <= 0) { in mux_probe() 380 sizeof_priv += sizeof(*mux->child) * children; in mux_probe() 381 sizeof_priv += sizeof(*mux->chan) * children; in mux_probe() 390 mux->chan = (struct iio_chan_spec *)(mux->child + children); in mux_probe() 404 indio_dev->num_channels = children; in mux_probe()
|
/linux/drivers/powercap/ |
A D | dtpm.c | 71 list_for_each_entry(child, &dtpm->children, sibling) { in __get_power_uw() 97 list_for_each_entry(child, &dtpm->children, sibling) { in __dtpm_rebalance_weight() 193 if (!list_empty(&dtpm->children)) { in dtpm_release_zone() 268 list_for_each_entry(child, &dtpm->children, sibling) { in __set_power_limit_uw() 367 INIT_LIST_HEAD(&dtpm->children); in dtpm_init() 445 list_add_tail(&dtpm->sibling, &parent->children); in dtpm_register()
|
/linux/tools/perf/scripts/python/ |
A D | flamegraph.py | 37 self.children = [] 44 "c": self.children 76 for child in node.children: 81 node.children.append(child)
|
/linux/Documentation/devicetree/bindings/mtd/ |
A D | nvidia-tegra20-nand.txt | 17 Optional children nodes: 18 Individual NAND chips are children of the NAND controller node. Currently 21 Required children node properties: 24 Optional children node properties:
|
/linux/drivers/input/misc/ |
A D | soc_button_array.c | 44 struct platform_device *children[BUTTON_TYPES]; member 379 if (priv->children[i]) in soc_button_remove() 380 platform_device_unregister(priv->children[i]); in soc_button_remove() 433 priv->children[i] = pd; in soc_button_probe() 436 if (!priv->children[0] && !priv->children[1]) in soc_button_probe()
|
/linux/drivers/net/ethernet/intel/ice/ |
A D | ice_sched.c | 33 if (!root->children) { in ice_sched_add_root_node() 72 return start_node->children[i]; in ice_sched_find_node_by_teid() 187 if (!node->children) { in ice_sched_add_node() 290 return pi->root->children[i]; in ice_sched_get_tc_node() 334 parent->children[j - 1] = in ice_free_sched_node() 335 parent->children[j]; in ice_free_sched_node() 356 if (node->children) in ice_free_sched_node() 1151 node = node->children[0]; in ice_rm_dflt_leaf_node() 1189 node = node->children[0]; in ice_sched_rm_dflt_nodes() 2171 old_parent->children[j]; in ice_sched_update_parent() [all …]
|
/linux/tools/perf/util/ |
A D | call-path.c | 23 cp->children = RB_ROOT; in call_path__init() 92 p = &parent->children.rb_node; in call_path__findnew() 111 rb_insert_color(&cp->rb_node, &parent->children); in call_path__findnew()
|
/linux/drivers/phy/ |
A D | phy-core.c | 140 for_each_child_of_node(phy_provider->children, child) in of_phy_provider_lookup() 1045 struct device_node *children, struct module *owner, in __of_phy_provider_register() argument 1056 if (children) { in __of_phy_provider_register() 1057 struct device_node *parent = of_node_get(children), *next; in __of_phy_provider_register() 1073 children = dev->of_node; in __of_phy_provider_register() 1081 phy_provider->children = of_node_get(children); in __of_phy_provider_register() 1108 struct device_node *children, struct module *owner, in __devm_of_phy_provider_register() argument 1118 phy_provider = __of_phy_provider_register(dev, children, owner, in __devm_of_phy_provider_register() 1144 of_node_put(phy_provider->children); in of_phy_provider_unregister()
|
/linux/drivers/dma-buf/ |
A D | st-dma-fence-chain.c | 387 atomic_t children; member 433 if (atomic_dec_and_test(&data->children)) in __find_race() 434 wake_up_var(&data->children); in __find_race() 457 atomic_set(&data.children, 0); in find_race() 464 atomic_inc(&data.children); in find_race() 468 wait_var_event_timeout(&data.children, in find_race() 469 !atomic_read(&data.children), in find_race()
|
/linux/scripts/dtc/ |
A D | livetree.c | 88 struct node *build_node(struct property *proplist, struct node *children, in build_node() argument 97 new->children = children; in build_node() 192 while (new_node->children) { in merge_nodes() 194 new_child = new_node->children; in merge_nodes() 195 new_node->children = new_child->next_sibling; in merge_nodes() 305 p = &parent->children; in add_child() 314 struct node *node = parent->children; in delete_node_by_name() 633 bootcpu = cpus->children; in guess_boot_cpuid() 759 node->children = tbl[0]; in sort_subnodes()
|