Home
last modified time | relevance | path

Searched full:least (Results 1 – 25 of 6956) sorted by relevance

12345678910>>...279

/kernel/linux/linux-6.6/net/netfilter/ipvs/
Dip_vs_wlc.c3 * 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 …]
Dip_vs_lc.c3 * 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 …]
Dip_vs_nq.c50 * 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 …]
Dip_vs_sed.c54 * 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 …]
Dip_vs_lblcr.c3 * 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 …]
DKconfig12 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 …]
Dip_vs_lblc.c3 * 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 …]
/kernel/linux/linux-5.10/net/netfilter/ipvs/
Dip_vs_wlc.c3 * 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 …]
Dip_vs_lc.c3 * 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 …]
Dip_vs_nq.c50 * 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 …]
Dip_vs_sed.c54 * 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 …]
Dip_vs_lblcr.c3 * 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 …]
DKconfig12 option must be enabled for at least one of the clustered computers
137 tristate "least-connection scheduling"
139 The least-connection scheduling algorithm directs network
140 connections to the server with the least number of active
147 tristate "weighted least-connection scheduling"
149 The weighted least-connection scheduling algorithm directs network
150 connections to the server with the least active connections
178 tristate "locality-based least-connection scheduling"
180 The locality-based least-connection scheduling algorithm is for
186 least-connection server to this IP address.
[all …]
Dip_vs_lblc.c3 * 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 …]
/kernel/linux/linux-6.6/tools/testing/selftests/rcutorture/doc/
DTREE_RCU-kconfig.txt23 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.
/kernel/linux/linux-5.10/tools/testing/selftests/rcutorture/doc/
DTREE_RCU-kconfig.txt24 CONFIG_RCU_EQS_DEBUG -- Do at least one for CONFIG_NO_HZ_FULL and not.
32 nohz_full - do at least one.
33 maxcpu -- do at least one.
34 rcupdate.rcu_self_test_bh -- Do at least one each, offloaded and not.
35 rcupdate.rcu_self_test_sched -- Do at least one each, offloaded and not.
36 rcupdate.rcu_self_test -- Do at least one each, offloaded and not.
37 rcutree.rcu_fanout_exact -- Do at least one.
/kernel/linux/linux-5.10/Documentation/ABI/stable/
Dsysfs-bus-mhi6 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
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/skylakex/
Dpipeline.json188 …"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 …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/cascadelakex/
Dpipeline.json188 …"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 …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/skylake/
Dpipeline.json179 …"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 …]
/kernel/linux/linux-6.6/Documentation/ABI/stable/
Dsysfs-bus-mhi6 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
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/tigerlake/
Dpipeline.json466 …"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 …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/icelakex/
Dpipeline.json448 …"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 …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/rocketlake/
Dpipeline.json458 …"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 …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/x86/icelake/
Dpipeline.json458 …"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 …]

12345678910>>...279