/openbmc/u-boot/lib/ |
H A D | rbtree.c | 195 struct rb_node *node = NULL, *sibling, *tmp1, *tmp2; in ____rb_erase_color() local 205 sibling = parent->rb_right; in ____rb_erase_color() 206 if (node != sibling) { /* node == parent->rb_left */ in ____rb_erase_color() 207 if (rb_is_red(sibling)) { in ____rb_erase_color() 217 parent->rb_right = tmp1 = sibling->rb_left; in ____rb_erase_color() 218 sibling->rb_left = parent; in ____rb_erase_color() 220 __rb_rotate_set_parents(parent, sibling, root, in ____rb_erase_color() 222 augment_rotate(parent, sibling); in ____rb_erase_color() 223 sibling = tmp1; in ____rb_erase_color() 225 tmp1 = sibling->rb_right; in ____rb_erase_color() [all …]
|
/openbmc/linux/tools/lib/ |
H A D | rbtree.c | 230 struct rb_node *node = NULL, *sibling, *tmp1, *tmp2; in ____rb_erase_color() local 240 sibling = parent->rb_right; in ____rb_erase_color() 241 if (node != sibling) { /* node == parent->rb_left */ in ____rb_erase_color() 242 if (rb_is_red(sibling)) { in ____rb_erase_color() 252 tmp1 = sibling->rb_left; in ____rb_erase_color() 254 WRITE_ONCE(sibling->rb_left, parent); in ____rb_erase_color() 256 __rb_rotate_set_parents(parent, sibling, root, in ____rb_erase_color() 258 augment_rotate(parent, sibling); in ____rb_erase_color() 259 sibling = tmp1; in ____rb_erase_color() 261 tmp1 = sibling->rb_right; in ____rb_erase_color() [all …]
|
/openbmc/linux/lib/ |
H A D | rbtree.c | 230 struct rb_node *node = NULL, *sibling, *tmp1, *tmp2; in ____rb_erase_color() local 240 sibling = parent->rb_right; in ____rb_erase_color() 241 if (node != sibling) { /* node == parent->rb_left */ in ____rb_erase_color() 242 if (rb_is_red(sibling)) { in ____rb_erase_color() 252 tmp1 = sibling->rb_left; in ____rb_erase_color() 254 WRITE_ONCE(sibling->rb_left, parent); in ____rb_erase_color() 256 __rb_rotate_set_parents(parent, sibling, root, in ____rb_erase_color() 258 augment_rotate(parent, sibling); in ____rb_erase_color() 259 sibling = tmp1; in ____rb_erase_color() 261 tmp1 = sibling->rb_right; in ____rb_erase_color() [all …]
|
/openbmc/qemu/util/ |
H A D | interval-tree.c | 351 RBNode *node = NULL, *sibling, *tmp1, *tmp2; in rb_erase_color() local 361 sibling = parent->rb_right; in rb_erase_color() 362 if (node != sibling) { /* node == parent->rb_left */ in rb_erase_color() 363 if (rb_is_red(sibling)) { in rb_erase_color() 373 tmp1 = sibling->rb_left; in rb_erase_color() 375 qatomic_set(&sibling->rb_left, parent); in rb_erase_color() 377 rb_rotate_set_parents(parent, sibling, root, RB_RED); in rb_erase_color() 378 augment->rotate(parent, sibling); in rb_erase_color() 379 sibling = tmp1; in rb_erase_color() 381 tmp1 = sibling->rb_right; in rb_erase_color() [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/sandybridge/ |
H A D | cache.json | 577 …nd & prefetch code reads that hit in the LLC and the snoop to one of the sibling cores hits the li… 586 …"BriefDescription": "Counts demand & prefetch code reads that hit in the LLC and sibling core snoo… 595 … demand & prefetch code reads that hit in the LLC and the snoops sent to sibling cores return clea… 622 …nd & prefetch data reads that hit in the LLC and the snoop to one of the sibling cores hits the li… 631 …ounts demand & prefetch data reads that hit in the LLC and the snoops to sibling cores hit in eith… 640 …"BriefDescription": "Counts demand & prefetch data reads that hit in the LLC and sibling core snoo… 649 … demand & prefetch data reads that hit in the LLC and the snoops sent to sibling cores return clea… 667 …unts prefetch code reads that hit in the LLC and the snoop to one of the sibling cores hits the li… 676 …tion": "Counts prefetch code reads that hit in the LLC and the snoops to sibling cores hit in eith… 685 …"BriefDescription": "Counts prefetch code reads that hit in the LLC and sibling core snoops are no… [all …]
|
/openbmc/libbej/test/ |
H A D | bej_tree_test.cpp | 21 EXPECT_THAT(node.nodeAttr.sibling, nullptr); in TEST() 38 EXPECT_THAT(node.nodeAttr.sibling, nullptr); in TEST() 55 EXPECT_THAT(node.nodeAttr.sibling, nullptr); in TEST() 82 // child2 should be a sibling of child1. in TEST() 83 EXPECT_THAT(child1.leaf.nodeAttr.sibling, &child2); in TEST() 100 EXPECT_THAT(child.leaf.nodeAttr.sibling, nullptr); in TEST() 133 EXPECT_THAT(child.leaf.nodeAttr.sibling, nullptr); in TEST() 152 EXPECT_THAT(child.leaf.nodeAttr.sibling, nullptr); in TEST() 171 EXPECT_THAT(child.leaf.nodeAttr.sibling, nullptr); in TEST() 190 EXPECT_THAT(child.leaf.nodeAttr.sibling, nullptr); in TEST()
|
/openbmc/linux/drivers/media/platform/amphion/ |
H A D | vpu_helpers.c | 66 const struct vpu_format *sibling; in vpu_helper_find_sibling() local 69 if (!fmt || !fmt->sibling) in vpu_helper_find_sibling() 72 sibling = vpu_helper_find_format(inst, type, fmt->sibling); in vpu_helper_find_sibling() 73 if (!sibling || sibling->sibling != fmt->pixfmt || in vpu_helper_find_sibling() 74 sibling->comp_planes != fmt->comp_planes) in vpu_helper_find_sibling() 77 return sibling; in vpu_helper_find_sibling() 82 const struct vpu_format *sibling; in vpu_helper_match_format() local 87 sibling = vpu_helper_find_sibling(inst, type, fmta); in vpu_helper_match_format() 88 if (sibling && sibling->pixfmt == fmtb) in vpu_helper_match_format()
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/westmereex/ |
H A D | cache.json | 691 …"BriefDescription": "Retired loads that hit sibling core's L2 in modified or unmodified states (Pr… 707 …"BriefDescription": "Load instructions retired that HIT modified data in sibling core (Precise Eve… 882 … "BriefDescription": "Offcore data reads satisfied by the LLC and not found in a sibling core", 891 "BriefDescription": "Offcore data reads satisfied by the LLC and HIT in a sibling core", 900 "BriefDescription": "Offcore data reads satisfied by the LLC and HITM in a sibling core", 990 … "BriefDescription": "Offcore code reads satisfied by the LLC and not found in a sibling core", 999 "BriefDescription": "Offcore code reads satisfied by the LLC and HIT in a sibling core", 1008 "BriefDescription": "Offcore code reads satisfied by the LLC and HITM in a sibling core", 1098 "BriefDescription": "Offcore requests satisfied by the LLC and not found in a sibling core", 1107 "BriefDescription": "Offcore requests satisfied by the LLC and HIT in a sibling core", [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/nehalemep/ |
H A D | cache.json | 796 …"BriefDescription": "Retired loads that hit sibling core's L2 in modified or unmodified states (Pr… 812 …"BriefDescription": "Load instructions retired that HIT modified data in sibling core (Precise Eve… 885 … "BriefDescription": "Offcore data reads satisfied by the LLC and not found in a sibling core", 894 "BriefDescription": "Offcore data reads satisfied by the LLC and HIT in a sibling core", 903 "BriefDescription": "Offcore data reads satisfied by the LLC and HITM in a sibling core", 993 … "BriefDescription": "Offcore code reads satisfied by the LLC and not found in a sibling core", 1002 "BriefDescription": "Offcore code reads satisfied by the LLC and HIT in a sibling core", 1011 "BriefDescription": "Offcore code reads satisfied by the LLC and HITM in a sibling core", 1101 "BriefDescription": "Offcore requests satisfied by the LLC and not found in a sibling core", 1110 "BriefDescription": "Offcore requests satisfied by the LLC and HIT in a sibling core", [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/nehalemex/ |
H A D | cache.json | 796 …"BriefDescription": "Retired loads that hit sibling core's L2 in modified or unmodified states (Pr… 845 … "BriefDescription": "Offcore data reads satisfied by the LLC and not found in a sibling core", 854 "BriefDescription": "Offcore data reads satisfied by the LLC and HIT in a sibling core", 863 "BriefDescription": "Offcore data reads satisfied by the LLC and HITM in a sibling core", 953 … "BriefDescription": "Offcore code reads satisfied by the LLC and not found in a sibling core", 962 "BriefDescription": "Offcore code reads satisfied by the LLC and HIT in a sibling core", 971 "BriefDescription": "Offcore code reads satisfied by the LLC and HITM in a sibling core", 1061 "BriefDescription": "Offcore requests satisfied by the LLC and not found in a sibling core", 1070 "BriefDescription": "Offcore requests satisfied by the LLC and HIT in a sibling core", 1079 "BriefDescription": "Offcore requests satisfied by the LLC and HITM in a sibling core", [all …]
|
/openbmc/linux/kernel/ |
H A D | resource.c | 63 while (!p->sibling && p->parent) in next_resource() 65 return p->sibling; in next_resource() 70 while (!p->sibling && p->parent) in next_resource_skip_children() 72 return p->sibling; in next_resource_skip_children() 187 new->sibling = tmp; in __request_resource() 192 p = &tmp->sibling; in __request_resource() 210 *p = tmp->sibling; in __release_resource() 212 for (chd = tmp->child;; chd = chd->sibling) { in __release_resource() 214 if (!(chd->sibling)) in __release_resource() 218 chd->sibling = tmp->sibling; in __release_resource() [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/skylakex/ |
H A D | cache.json | 623 …and & prefetch data reads that hit in the L3 and the snoop to one of the sibling cores hits the li… 632 …and & prefetch data reads that hit in the L3 and the snoop to one of the sibling cores hits the li… 641 …"BriefDescription": "Counts all demand & prefetch data reads that hit in the L3 and sibling core s… 677 …s all prefetch data reads that hit in the L3 and the snoop to one of the sibling cores hits the li… 686 …s all prefetch data reads that hit in the L3 and the snoop to one of the sibling cores hits the li… 695 …"BriefDescription": "Counts all prefetch data reads that hit in the L3 and sibling core snoops are… 731 …n": "Counts prefetch RFOs that hit in the L3 and the snoop to one of the sibling cores hits the li… 740 …n": "Counts prefetch RFOs that hit in the L3 and the snoop to one of the sibling cores hits the li… 749 …"BriefDescription": "Counts prefetch RFOs that hit in the L3 and sibling core snoops are not neede… 785 …ll demand & prefetch RFOs that hit in the L3 and the snoop to one of the sibling cores hits the li… [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/ivytown/ |
H A D | cache.json | 638 …nd & prefetch data reads that hit in the LLC and the snoop to one of the sibling cores hits the li… 647 …ounts demand & prefetch data reads that hit in the LLC and the snoops to sibling cores hit in eith… 656 …"BriefDescription": "Counts demand & prefetch data reads that hit in the LLC and sibling core snoo… 665 …"BriefDescription": "Counts demand & prefetch data reads that hit in the LLC and sibling core snoo… 683 …unts prefetch data reads that hit in the LLC and the snoop to one of the sibling cores hits the li… 692 …tion": "Counts prefetch data reads that hit in the LLC and the snoops to sibling cores hit in eith… 701 …"BriefDescription": "Counts prefetch data reads that hit in the LLC and sibling core snoops are no… 710 …"BriefDescription": "Counts prefetch data reads that hit in the LLC and sibling core snoop returne… 728 …eads (demand & prefetch) that hit in the LLC and the snoop to one of the sibling cores hits the li… 737 …code/rfo reads (demand & prefetch) that hit in the LLC and the snoops to sibling cores hit in eith… [all …]
|
/openbmc/linux/Documentation/admin-guide/hw-vuln/ |
H A D | core-scheduling.rst | 105 During a schedule() event on any sibling of a core, the highest priority task on 106 the sibling's core is picked and assigned to the sibling calling schedule(), if 107 the sibling has the task enqueued. For rest of the siblings in the core, 114 switch to the new task immediately. If an idle task is selected for a sibling, 115 then the sibling is considered to be in a `forced idle` state. I.e., it may 127 task. If a sibling does not have a trusted task to run, it will be forced idle 131 the sibling to force it into idle. This results in 4 cases which need to be 189 sibling. Such attacks are possible for any combination of sibling CPU modes 212 sibling hyperthreads from one another. Prototypes of mitigations have been posted
|
H A D | cross-thread-rsb.rst | 8 predictions vulnerability. When running in SMT mode and one sibling thread 9 transitions out of C0 state, the other sibling thread could use return target 10 predictions from the sibling thread that transitioned out of C0. 16 being consumed by the sibling thread. 52 used by RET predictions in the sibling thread following a 1T/2T switch. In
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/westmereep-sp/ |
H A D | cache.json | 691 …"BriefDescription": "Retired loads that hit sibling core's L2 in modified or unmodified states (Pr… 707 …"BriefDescription": "Load instructions retired that HIT modified data in sibling core (Precise Eve… 889 … "BriefDescription": "Offcore data reads satisfied by the LLC and not found in a sibling core", 898 "BriefDescription": "Offcore data reads satisfied by the LLC and HIT in a sibling core", 907 "BriefDescription": "Offcore data reads satisfied by the LLC and HITM in a sibling core", 997 … "BriefDescription": "Offcore code reads satisfied by the LLC and not found in a sibling core", 1006 "BriefDescription": "Offcore code reads satisfied by the LLC and HIT in a sibling core", 1015 "BriefDescription": "Offcore code reads satisfied by the LLC and HITM in a sibling core", 1105 "BriefDescription": "Offcore requests satisfied by the LLC and not found in a sibling core", 1114 "BriefDescription": "Offcore requests satisfied by the LLC and HIT in a sibling core", [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/jaketown/ |
H A D | cache.json | 593 …nd & prefetch data reads that hit in the LLC and the snoop to one of the sibling cores hits the li… 602 …ounts demand & prefetch data reads that hit in the LLC and the snoops to sibling cores hit in eith… 611 …"BriefDescription": "Counts demand & prefetch data reads that hit in the LLC and sibling core snoo… 620 …"BriefDescription": "Counts demand & prefetch data reads that hit in the LLC and sibling core snoo… 638 …unts prefetch data reads that hit in the LLC and the snoop to one of the sibling cores hits the li… 647 …tion": "Counts prefetch data reads that hit in the LLC and the snoops to sibling cores hit in eith… 656 …"BriefDescription": "Counts prefetch data reads that hit in the LLC and sibling core snoops are no… 665 …"BriefDescription": "Counts prefetch data reads that hit in the LLC and sibling core snoop returne… 692 …eads (demand & prefetch) that hit in the LLC and the snoop to one of the sibling cores hits the li… 701 …code/rfo reads (demand & prefetch) that hit in the LLC and the snoops to sibling cores hit in eith… [all …]
|
/openbmc/linux/arch/s390/kernel/ |
H A D | guarded_storage.c | 96 struct task_struct *sibling; in gs_broadcast() local 99 for_each_thread(current, sibling) { in gs_broadcast() 100 if (!sibling->thread.gs_bc_cb) in gs_broadcast() 102 if (test_and_set_tsk_thread_flag(sibling, TIF_GUARDED_STORAGE)) in gs_broadcast() 103 kick_process(sibling); in gs_broadcast()
|
/openbmc/linux/tools/testing/selftests/powerpc/pmu/event_code_tests/ |
H A D | group_constraint_thresh_cmp_test.c | 52 /* Expected to fail as sibling and leader event request different thresh_cmp bits */ in group_constraint_thresh_cmp() 60 /* Add the same thresh_cmp value for leader and sibling event in config1 */ in group_constraint_thresh_cmp() 63 /* Expected to succeed as sibling and leader event request same thresh_cmp bits */ in group_constraint_thresh_cmp() 75 /* Expected to fail as sibling and leader event request different thresh_cmp bits */ in group_constraint_thresh_cmp() 83 /* Expected to succeed as sibling and leader event request same thresh_cmp bits */ in group_constraint_thresh_cmp()
|
H A D | group_constraint_repeat_test.c | 31 * for leader and sibling event which is expected in group_constraint_repeat() 39 /* Expected to fail since sibling event is requesting same PMC as leader */ in group_constraint_repeat() 44 /* Expected to pass since sibling event is requesting different PMC */ in group_constraint_repeat()
|
H A D | group_constraint_mmcra_sample_test.c | 30 * as sibling event. in group_constraint_mmcra_sample() 37 /* Expected to fail as sibling event doesn't use same sampling bits as leader */ in group_constraint_mmcra_sample() 42 /* Expected to pass as sibling event use same sampling bits as leader */ in group_constraint_mmcra_sample()
|
/openbmc/linux/Documentation/devicetree/ |
H A D | of_unittest.rst | 93 struct device_node *sibling; 98 considering only child and sibling pointers. There exists another pointer, 100 a particular level the child node and all the sibling nodes will have a parent 163 replaces the current child and turns it into its sibling. So, when the testcase 204 sibling compared to the earlier structure (Figure 2). After attaching first 206 (i.e. test-child0) to become a sibling and makes itself a child node, 225 node's parent to its sibling or attaches the previous sibling to the given 226 node's sibling, as appropriate. That is it :)
|
/openbmc/libbej/src/ |
H A D | bej_tree.c | 12 node->nodeAttr.sibling = NULL; in bejTreeInitParent() 51 node->nodeAttr.sibling = NULL; in bejTreeInitChildNode() 126 lastChild->sibling = child; in bejTreeLinkChildToParent() 150 parent->metaData.nextChild = currentChild->sibling; in bejParentGoToNextChild() 151 return currentChild->sibling; in bejParentGoToNextChild()
|
/openbmc/linux/tools/testing/selftests/seccomp/ |
H A D | seccomp_bpf.c | 2542 struct tsync_sibling sibling[TSYNC_SIBLINGS]; in FIXTURE() local 2564 memset(&self->sibling, 0, sizeof(self->sibling)); in FIXTURE_SETUP() 2579 self->sibling[0].tid = 0; in FIXTURE_SETUP() 2580 self->sibling[0].cond = &self->cond; in FIXTURE_SETUP() 2581 self->sibling[0].started = &self->started; in FIXTURE_SETUP() 2582 self->sibling[0].mutex = &self->mutex; in FIXTURE_SETUP() 2583 self->sibling[0].diverge = 0; in FIXTURE_SETUP() 2584 self->sibling[0].num_waits = 1; in FIXTURE_SETUP() 2585 self->sibling[0].prog = &self->root_prog; in FIXTURE_SETUP() 2586 self->sibling[0].metadata = _metadata; in FIXTURE_SETUP() [all …]
|
/openbmc/qemu/hw/core/ |
H A D | qdev.c | 62 QTAILQ_FOREACH(kid, &bus->children, sibling) { in bus_remove_child() 67 QTAILQ_REMOVE_RCU(&bus->children, kid, sibling); in bus_remove_child() 91 QTAILQ_INSERT_HEAD_RCU(&bus->children, kid, sibling); in bus_add_child() 259 QLIST_FOREACH(bus, &dev->child_bus, sibling) { in device_reset_child_foreach() 332 QLIST_FOREACH(bus, &dev->child_bus, sibling) { in qdev_get_child_bus() 355 QLIST_FOREACH(bus, &dev->child_bus, sibling) { in qdev_walk_children() 380 QTAILQ_FOREACH_RCU(kid, &bus->children, sibling) { in qdev_find_recursive() 387 QLIST_FOREACH(child, &dev->child_bus, sibling) { in qdev_find_recursive() 534 QLIST_FOREACH(bus, &dev->child_bus, sibling) { in device_set_realized() 577 QLIST_FOREACH(bus, &dev->child_bus, sibling) { in device_set_realized() [all …]
|