| /OK3568_Linux_fs/kernel/kernel/power/ |
| H A D | wakeup_reason.c | 39 struct list_head siblings; member 75 INIT_LIST_HEAD(&p->siblings); in init_node() 103 n = list_first_entry(head, struct wakeup_irq_node, siblings); in delete_list() 104 list_del(&n->siblings); in delete_list() 118 list_for_each_entry(n, head, siblings) { in add_sibling_node_sorted() 120 predecessor = &n->siblings; in add_sibling_node_sorted() 129 list_add(&n->siblings, predecessor); in add_sibling_node_sorted() 144 list_for_each_entry(n, head, siblings) in find_node_in_list() 206 list_del_init(&parent->siblings); in log_threaded_irq_wakeup_reason() 207 list_add_tail(&parent->siblings, &parent_irqs); in log_threaded_irq_wakeup_reason() [all …]
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | smt.c | 23 unsigned long long siblings; in smt_on() local 38 siblings = strtoull(str, NULL, 16); in smt_on() 40 if (hweight64(siblings) > 1) { in smt_on()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/gt/ |
| H A D | selftest_lrc.c | 3682 struct intel_engine_cs **siblings, in nop_virtual_engine() argument 3699 ve[n] = intel_execlists_create_virtual(siblings, nsibling); in nop_virtual_engine() 3810 struct intel_engine_cs **siblings, in __select_siblings() argument 3823 siblings[n++] = gt->engine_class[class][inst]; in __select_siblings() 3832 struct intel_engine_cs **siblings) in select_siblings() argument 3834 return __select_siblings(gt, class, siblings, NULL); in select_siblings() 3840 struct intel_engine_cs *siblings[MAX_ENGINE_INSTANCE + 1]; in live_virtual_engine() local 3861 nsibling = select_siblings(gt, class, siblings); in live_virtual_engine() 3866 err = nop_virtual_engine(gt, siblings, nsibling, in live_virtual_engine() 3872 err = nop_virtual_engine(gt, siblings, nsibling, n, CHAIN); in live_virtual_engine() [all …]
|
| H A D | intel_lrc.c | 222 struct intel_engine_cs *siblings[]; member 501 if (engine == ve->siblings[0]) { /* only preempt one sibling */ in need_preempt() 1814 if (likely(engine == ve->siblings[0])) in virtual_xfer_context() 1829 if (ve->siblings[n] == engine) { in virtual_xfer_context() 1830 swap(ve->siblings[n], ve->siblings[0]); in virtual_xfer_context() 2273 yesno(engine != ve->siblings[0])); in execlists_dequeue() 2299 GEM_BUG_ON(ve->siblings[0] != engine); in execlists_dequeue() 5472 struct intel_engine_cs *sibling = ve->siblings[n]; in rcu_virtual_context_destroy() 5540 swap(ve->siblings[swp], ve->siblings[0]); in virtual_engine_initial_hint() 5547 return __execlists_context_alloc(ce, ve->siblings[0]); in virtual_context_alloc() [all …]
|
| H A D | intel_lrc.h | 114 intel_execlists_create_virtual(struct intel_engine_cs **siblings,
|
| /OK3568_Linux_fs/u-boot/fs/yaffs2/ |
| H A D | yaffs_allocator.c | 273 list_add(&new_objs[i].siblings, &allocator->free_objs); in yaffs_create_free_objs() 304 obj = list_entry(lh, struct yaffs_obj, siblings); in yaffs_alloc_raw_obj() 323 list_add(&obj->siblings, &allocator->free_objs); in yaffs_free_raw_obj()
|
| H A D | yaffs_verify.c | 449 list_obj = list_entry(lh, struct yaffs_obj, siblings); in yaffs_verify_obj_in_dir() 486 list_obj = list_entry(lh, struct yaffs_obj, siblings); in yaffs_verify_dir()
|
| H A D | yaffs_guts.c | 1261 list_del_init(&obj->siblings); in yaffs_remove_obj_from_dir() 1283 if (obj->siblings.prev == NULL) { in yaffs_add_obj_to_dir() 1293 list_add(&obj->siblings, &directory->variant.dir_variant.children); in yaffs_add_obj_to_dir() 1623 if (!list_empty(&obj->siblings)) in yaffs_free_obj() 1814 INIT_LIST_HEAD(&obj->siblings); in yaffs_alloc_empty_obj() 1819 list_add(&(obj->siblings), in yaffs_alloc_empty_obj() 4186 l = list_entry(i, struct yaffs_obj, siblings); in yaffs_strip_deleted_objs() 4191 l = list_entry(i, struct yaffs_obj, siblings); in yaffs_strip_deleted_objs() 4294 obj = list_entry(lh, struct yaffs_obj, siblings); in yaffs_del_dir_contents() 4338 l = list_entry(i, struct yaffs_obj, siblings); in yaffs_find_by_name()
|
| /OK3568_Linux_fs/kernel/drivers/nvme/host/ |
| H A D | multipath.c | 167 list_for_each_entry_rcu(ns, &head->list, siblings) { in __nvme_find_path() 204 ns = list_next_or_null_rcu(&head->list, &ns->siblings, struct nvme_ns, in nvme_next_ns() 205 siblings); in nvme_next_ns() 208 return list_first_or_null_rcu(&head->list, struct nvme_ns, siblings); in nvme_next_ns() 280 list_for_each_entry_rcu(ns, &head->list, siblings) { in nvme_available_path()
|
| /OK3568_Linux_fs/kernel/drivers/scsi/ |
| H A D | scsi.c | 559 struct list_head *list = (prev ? &prev->siblings : &shost->__devices); in __scsi_iterate_devices() 565 next = list_entry(list->next, struct scsi_device, siblings); in __scsi_iterate_devices() 710 list_for_each_entry(sdev, &shost->__devices, siblings) { in __scsi_device_lookup()
|
| H A D | scsi_scan.c | 237 INIT_LIST_HEAD(&sdev->siblings); in scsi_alloc_sdev() 319 list_del_init(&starget->siblings); in scsi_target_destroy() 352 list_for_each_entry(starget, &shost->__targets, siblings) { in __scsi_find_target() 436 INIT_LIST_HEAD(&starget->siblings); in scsi_alloc_target() 448 list_add_tail(&starget->siblings, &shost->__targets); in scsi_alloc_target() 1869 list_for_each_entry(sdev, &shost->__devices, siblings) { in scsi_forget_host()
|
| H A D | scsi_sysfs.c | 464 list_del(&sdev->siblings); in scsi_device_dev_release_usercontext() 1522 list_for_each_entry(sdev, &shost->__devices, siblings) { in __scsi_remove_target() 1561 list_for_each_entry(starget, &shost->__targets, siblings) { in scsi_remove_target() 1660 list_add_tail(&sdev->siblings, &shost->__devices); in scsi_sysfs_device_initialize()
|
| /OK3568_Linux_fs/kernel/include/scsi/ |
| H A D | scsi_device.h | 107 struct list_head siblings; /* list of all devices on this host */ member 298 struct list_head siblings; member 404 list_for_each_entry((sdev), &((shost)->__devices), siblings)
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/gem/ |
| H A D | i915_gem_context.c | 1591 struct intel_engine_cs **siblings; in set_engines__load_balance() local 1630 siblings = stack; in set_engines__load_balance() 1632 siblings = kmalloc_array(num_siblings, in set_engines__load_balance() 1633 sizeof(*siblings), in set_engines__load_balance() 1635 if (!siblings) in set_engines__load_balance() 1647 siblings[n] = intel_engine_lookup_user(i915, in set_engines__load_balance() 1650 if (!siblings[n]) { in set_engines__load_balance() 1659 ce = intel_execlists_create_virtual(siblings, n); in set_engines__load_balance() 1674 if (siblings != stack) in set_engines__load_balance() 1675 kfree(siblings); in set_engines__load_balance()
|
| /OK3568_Linux_fs/buildroot/package/weston/ |
| H A D | 0055-compositor-Support-placing-subsurface-above-or-below.patch | 5 all siblings
|
| /OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_11.0.1/ |
| H A D | 0055-compositor-Support-placing-subsurface-above-or-below.patch | 5 all siblings
|
| /OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_10.0.2/ |
| H A D | 0052-compositor-Support-placing-subsurface-above-or-below.patch | 5 all siblings
|
| /OK3568_Linux_fs/kernel/drivers/scsi/libsas/ |
| H A D | sas_expander.c | 896 list_add_tail(&child->siblings, &parent_ex->children); in sas_ex_discover_end_dev() 1012 list_add_tail(&child->siblings, &parent->ex_dev.children); in sas_ex_discover_expander() 1142 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() 1885 &ex_dev->children, siblings) { in sas_unregister_devs_sas_addr() 1917 list_for_each_entry(child, &ex_root->children, siblings) { in sas_discover_bfs_by_root_level() 1968 list_for_each_entry(child, &dev->ex_dev.children, siblings) { in sas_discover_new()
|
| H A D | sas_internal.h | 181 INIT_LIST_HEAD(&dev->siblings); in sas_alloc_device()
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/pm/ |
| H A D | intel_epb.rst | 40 example, SMT siblings or cores in one package). For this reason, updating the
|
| /OK3568_Linux_fs/kernel/Documentation/hwmon/ |
| H A D | amd_energy.rst | 54 populated for the siblings.
|
| /OK3568_Linux_fs/kernel/net/sched/ |
| H A D | sch_hfsc.c | 124 struct list_head siblings; /* sibling classes */ member 855 list_for_each_entry(p, &cl->children, siblings) { in hfsc_adjust_levels() 1068 list_add_tail(&cl->siblings, &parent->children); in hfsc_change_class() 1103 list_del(&cl->siblings); in hfsc_delete_class()
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-support/libksba/libksba/ |
| H A D | ksba-add-pkgconfig-support.patch | 27 - dnl since that is consistent with how our three siblings use the directory/
|
| /OK3568_Linux_fs/kernel/Documentation/scsi/ |
| H A D | scsi-generic.rst | 13 is more generalized (but lower level) than its siblings and tends to be
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/soc/fsl/cpm_qe/ |
| H A D | qe.txt | 8 as a complete entity (UCC, USB etc ). All of them should be siblings on
|