/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/imagemagick/ |
H A D | imagemagick_7.1.1-43.bb | 105 …rent version (7.1.1) is not affected by the CVE which affects versions at least earlier than 6.9.4… 106 …rent version (7.1.1) is not affected by the CVE which affects versions at least earlier than 6.9.4… 107 …rent version (7.1.1) is not affected by the CVE which affects versions at least earlier than 6.9.4… 108 …rent version (7.1.1) is not affected by the CVE which affects versions at least earlier than 6.9.4… 109 …rent version (7.1.1) is not affected by the CVE which affects versions at least earlier than 6.9.4… 110 …rent version (7.1.1) is not affected by the CVE which affects versions at least earlier than 6.9.4… 111 …rent version (7.1.1) is not affected by the CVE which affects versions at least earlier than 6.9.4… 112 …rent version (7.1.1) is not affected by the CVE which affects versions at least earlier than 6.9.4… 113 …rent version (7.1.1) is not affected by the CVE which affects versions at least earlier than 6.9.4… 114 …rent version (7.1.1) is not affected by the CVE which affects versions at least earlier than 6.9.4… [all …]
|
/openbmc/linux/net/netfilter/ipvs/ |
H A D | ip_vs_wlc.c | 3 * IPVS: Weighted Least-Connection Scheduling module 26 * Weighted Least Connection scheduling 32 struct ip_vs_dest *dest, *least; in ip_vs_wlc_schedule() local 53 least = dest; in ip_vs_wlc_schedule() 54 loh = ip_vs_dest_conn_overhead(least); in ip_vs_wlc_schedule() 62 * Find the destination with the least load. in ip_vs_wlc_schedule() 70 (__s64)doh * atomic_read(&least->weight)) { in ip_vs_wlc_schedule() 71 least = dest; in ip_vs_wlc_schedule() 78 IP_VS_DBG_ADDR(least->af, &least->addr), in ip_vs_wlc_schedule() 79 ntohs(least->port), in ip_vs_wlc_schedule() [all …]
|
H A D | ip_vs_lc.c | 3 * IPVS: Least-Connection Scheduling module 21 * Least Connection scheduling 27 struct ip_vs_dest *dest, *least = NULL; in ip_vs_lc_schedule() local 33 * Simply select the server with the least number of in ip_vs_lc_schedule() 46 if (!least || doh < loh) { in ip_vs_lc_schedule() 47 least = dest; in ip_vs_lc_schedule() 52 if (!least) in ip_vs_lc_schedule() 57 IP_VS_DBG_ADDR(least->af, &least->addr), in ip_vs_lc_schedule() 58 ntohs(least->port), in ip_vs_lc_schedule() 59 atomic_read(&least->activeconns), in ip_vs_lc_schedule() [all …]
|
H A D | ip_vs_nq.c | 50 * Weighted Least Connection scheduling 56 struct ip_vs_dest *dest, *least = NULL; in ip_vs_nq_schedule() local 84 least = dest; in ip_vs_nq_schedule() 89 if (!least || in ip_vs_nq_schedule() 91 (__s64)doh * atomic_read(&least->weight))) { in ip_vs_nq_schedule() 92 least = dest; in ip_vs_nq_schedule() 97 if (!least) { in ip_vs_nq_schedule() 105 IP_VS_DBG_ADDR(least->af, &least->addr), in ip_vs_nq_schedule() 106 ntohs(least->port), in ip_vs_nq_schedule() 107 atomic_read(&least->activeconns), in ip_vs_nq_schedule() [all …]
|
H A D | ip_vs_sed.c | 54 * Weighted Least Connection scheduling 60 struct ip_vs_dest *dest, *least; in ip_vs_sed_schedule() local 81 least = dest; in ip_vs_sed_schedule() 82 loh = ip_vs_sed_dest_overhead(least); in ip_vs_sed_schedule() 90 * Find the destination with the least load. in ip_vs_sed_schedule() 98 (__s64)doh * atomic_read(&least->weight)) { in ip_vs_sed_schedule() 99 least = dest; in ip_vs_sed_schedule() 106 IP_VS_DBG_ADDR(least->af, &least->addr), in ip_vs_sed_schedule() 107 ntohs(least->port), in ip_vs_sed_schedule() 108 atomic_read(&least->activeconns), in ip_vs_sed_schedule() [all …]
|
H A D | ip_vs_lblcr.c | 3 * IPVS: Locality-Based Least-Connection with Replication scheduler 16 * n, serverSet[dest_ip] <- {weighted least-conn node}; 18 * n <- {least-conn (alive) node in serverSet[dest_ip]}; 22 * n <- {weighted least-conn node}; 160 /* get weighted least-connection node in the destination set */ 164 struct ip_vs_dest *dest, *least; in ip_vs_dest_set_min() local 169 least = e->dest; in ip_vs_dest_set_min() 170 if (least->flags & IP_VS_DEST_F_OVERLOAD) in ip_vs_dest_set_min() 173 if ((atomic_read(&least->weight) > 0) in ip_vs_dest_set_min() 174 && (least->flags & IP_VS_DEST_F_AVAILABLE)) { in ip_vs_dest_set_min() [all …]
|
H A D | Kconfig | 12 option must be enabled for at least one of the clustered computers 138 tristate "least-connection scheduling" 140 The least-connection scheduling algorithm directs network 141 connections to the server with the least number of active 148 tristate "weighted least-connection scheduling" 150 The weighted least-connection scheduling algorithm directs network 151 connections to the server with the least active connections 179 tristate "locality-based least-connection scheduling" 181 The locality-based least-connection scheduling algorithm is for 187 least-connection server to this IP address. [all …]
|
H A D | ip_vs_lblc.c | 3 * IPVS: Locality-Based Least-Connection scheduling module 23 * n, cachenode[dest_ip] <- {weighted least-conn node}; 29 * n, cachenode[dest_ip] <- {weighted least-conn node}; 402 struct ip_vs_dest *dest, *least; in __ip_vs_lblc_schedule() local 421 least = dest; in __ip_vs_lblc_schedule() 422 loh = ip_vs_dest_conn_overhead(least); in __ip_vs_lblc_schedule() 429 * Find the destination with the least load. in __ip_vs_lblc_schedule() 438 (__s64)doh * atomic_read(&least->weight)) { in __ip_vs_lblc_schedule() 439 least = dest; in __ip_vs_lblc_schedule() 446 IP_VS_DBG_ADDR(least->af, &least->addr), in __ip_vs_lblc_schedule() [all …]
|
/openbmc/linux/tools/testing/selftests/rcutorture/doc/ |
H A D | TREE_RCU-kconfig.txt | 23 CONFIG_RCU_EQS_DEBUG -- Do at least one for CONFIG_NO_HZ_FULL and not. 31 nohz_full - do at least one. 32 maxcpu -- do at least one. 33 rcupdate.rcu_self_test_bh -- Do at least one each, offloaded and not. 34 rcupdate.rcu_self_test_sched -- Do at least one each, offloaded and not. 35 rcupdate.rcu_self_test -- Do at least one each, offloaded and not. 36 rcutree.rcu_fanout_exact -- Do at least one.
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/cascadelakex/ |
H A D | pipeline.json | 188 …"BriefDescription": "Core crystal clock cycles when at least one thread on the physical core is un… 217 …"BriefDescription": "Core crystal clock cycles when at least one thread on the physical core is un… 241 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 255 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 504 …"PublicDescription": "Counts the cycles when at least one uop is delivered by the LSD (Loop-stream… 611 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 619 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 627 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 635 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 643 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/skylakex/ |
H A D | pipeline.json | 188 …"BriefDescription": "Core crystal clock cycles when at least one thread on the physical core is un… 217 …"BriefDescription": "Core crystal clock cycles when at least one thread on the physical core is un… 241 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 255 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 504 …"PublicDescription": "Counts the cycles when at least one uop is delivered by the LSD (Loop-stream… 611 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 619 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 627 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 635 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 643 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/skylake/ |
H A D | pipeline.json | 179 …"BriefDescription": "Core crystal clock cycles when at least one thread on the physical core is un… 208 …"BriefDescription": "Core crystal clock cycles when at least one thread on the physical core is un… 232 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 246 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 495 …"PublicDescription": "Counts the cycles when at least one uop is delivered by the LSD (Loop-stream… 602 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 610 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 618 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 626 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 634 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… [all …]
|
/openbmc/linux/Documentation/ABI/stable/ |
H A D | sysfs-bus-mhi | 6 using a BHI (Boot Host Interface) register read after at least 8 without having the device power on at least once, the file will 18 at least one attempt to power up the device has been done. If 19 read without having the device power on at least once, the file
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/tigerlake/ |
H A D | pipeline.json | 466 …"PublicDescription": "Counts the cycles when at least one uop is delivered by the LSD (Loop-stream… 598 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 606 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 614 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 622 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 630 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 638 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 646 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 659 … "BriefDescription": "Cycles at least 1 micro-op is executed from any thread on physical core.", 663 …"PublicDescription": "Counts cycles when at least 1 micro-op is executed from any thread on physic… [all …]
|
H A D | virtual-memory.json | 11 … "BriefDescription": "Cycles when at least one PMH is busy with a page walk for a demand load.", 15 …"PublicDescription": "Counts cycles when at least one PMH (Page Miss Handler) is busy with a page … 60 "BriefDescription": "Cycles when at least one PMH is busy with a page walk for a store.", 64 …"PublicDescription": "Counts cycles when at least one PMH (Page Miss Handler) is busy with a page … 109 …"BriefDescription": "Cycles when at least one PMH is busy with a page walk for code (instruction f… 113 …"PublicDescription": "Counts cycles when at least one PMH (Page Miss Handler) is busy with a page …
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/icelake/ |
H A D | pipeline.json | 458 …"PublicDescription": "Counts the cycles when at least one uop is delivered by the LSD (Loop-stream… 590 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 598 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 606 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 614 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 622 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 630 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 638 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 651 … "BriefDescription": "Cycles at least 1 micro-op is executed from any thread on physical core.", 655 …"PublicDescription": "Counts cycles when at least 1 micro-op is executed from any thread on physic… [all …]
|
H A D | virtual-memory.json | 11 … "BriefDescription": "Cycles when at least one PMH is busy with a page walk for a demand load.", 15 …"PublicDescription": "Counts cycles when at least one PMH (Page Miss Handler) is busy with a page … 60 "BriefDescription": "Cycles when at least one PMH is busy with a page walk for a store.", 64 …"PublicDescription": "Counts cycles when at least one PMH (Page Miss Handler) is busy with a page … 109 …"BriefDescription": "Cycles when at least one PMH is busy with a page walk for code (instruction f… 113 …"PublicDescription": "Counts cycles when at least one PMH (Page Miss Handler) is busy with a page …
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/icelakex/ |
H A D | pipeline.json | 448 …"PublicDescription": "Counts the cycles when at least one uop is delivered by the LSD (Loop-stream… 572 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 580 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 588 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 596 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 604 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 612 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 620 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 625 … "BriefDescription": "Cycles at least 1 micro-op is executed from any thread on physical core.", 629 …"PublicDescription": "Counts cycles when at least 1 micro-op is executed from any thread on physic… [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/rocketlake/ |
H A D | pipeline.json | 458 …"PublicDescription": "Counts the cycles when at least one uop is delivered by the LSD (Loop-stream… 590 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 598 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 606 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 614 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 622 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 630 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 638 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 651 … "BriefDescription": "Cycles at least 1 micro-op is executed from any thread on physical core.", 655 …"PublicDescription": "Counts cycles when at least 1 micro-op is executed from any thread on physic… [all …]
|
H A D | virtual-memory.json | 11 … "BriefDescription": "Cycles when at least one PMH is busy with a page walk for a demand load.", 15 …"PublicDescription": "Counts cycles when at least one PMH (Page Miss Handler) is busy with a page … 60 "BriefDescription": "Cycles when at least one PMH is busy with a page walk for a store.", 64 …"PublicDescription": "Counts cycles when at least one PMH (Page Miss Handler) is busy with a page … 109 …"BriefDescription": "Cycles when at least one PMH is busy with a page walk for code (instruction f… 113 …"PublicDescription": "Counts cycles when at least one PMH (Page Miss Handler) is busy with a page …
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/ivytown/ |
H A D | pipeline.json | 314 …"BriefDescription": "Reference cycles when the at least one thread on the physical core is unhalte… 343 …"BriefDescription": "Reference cycles when the at least one thread on the physical core is unhalte… 357 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 359 …"PublicDescription": "Core cycles when at least one thread on the physical core is not in halt sta… 372 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 375 …"PublicDescription": "Core cycles when at least one thread on the physical core is not in halt sta… 836 … "BriefDescription": "Cycles at least 1 micro-op is executed from any thread on physical core", 840 … "PublicDescription": "Cycles at least 1 micro-op is executed from any thread on physical core.", 845 … "BriefDescription": "Cycles at least 2 micro-op is executed from any thread on physical core", 849 … "PublicDescription": "Cycles at least 2 micro-op is executed from any thread on physical core.", [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/ivybridge/ |
H A D | pipeline.json | 314 …"BriefDescription": "Reference cycles when the at least one thread on the physical core is unhalte… 343 …"BriefDescription": "Reference cycles when the at least one thread on the physical core is unhalte… 357 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 359 …"PublicDescription": "Core cycles when at least one thread on the physical core is not in halt sta… 372 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 375 …"PublicDescription": "Core cycles when at least one thread on the physical core is not in halt sta… 836 … "BriefDescription": "Cycles at least 1 micro-op is executed from any thread on physical core", 840 … "PublicDescription": "Cycles at least 1 micro-op is executed from any thread on physical core.", 845 … "BriefDescription": "Cycles at least 2 micro-op is executed from any thread on physical core", 849 … "PublicDescription": "Cycles at least 2 micro-op is executed from any thread on physical core.", [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/ipvsadm/ |
H A D | ipvsadm_1.31.bb | 10 (round robin, weighted round robin, least-connec-tion, weighted least-connection, \ 11 locality-based least-connection, locality-based least-connection with replication, \
|
/openbmc/docs/ |
H A D | community-membership.md | 63 **Note:** Acceptance of code contributions requires at least one approver in 71 - Member for at least 3 months 72 - Primary reviewer for at least 5 changes to the codebase 73 - Reviewed or merged at least 5 substantial changes to the codebase 109 - Member for at least 3 months 110 - Primary reviewer for at least 5 reviews to the codebase 153 - Reviewer of the codebase for at least 9 months 154 - Primary reviewer for at least 10 substantial changes to the codebase 155 - Reviewed or merged at least 30 changes to the codebase 163 - Sponsors must be approver in at least one subproject.
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/sapphirerapids/ |
H A D | virtual-memory.json | 11 … "BriefDescription": "Cycles when at least one PMH is busy with a page walk for a demand load.", 15 …"PublicDescription": "Counts cycles when at least one PMH (Page Miss Handler) is busy with a page … 68 "BriefDescription": "Cycles when at least one PMH is busy with a page walk for a store.", 72 …"PublicDescription": "Counts cycles when at least one PMH (Page Miss Handler) is busy with a page … 125 …"BriefDescription": "Cycles when at least one PMH is busy with a page walk for code (instruction f… 129 …"PublicDescription": "Counts cycles when at least one PMH (Page Miss Handler) is busy with a page …
|