| /kernel/linux/linux-5.10/net/netfilter/ipvs/ |
| 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 …]
|
| 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 …]
|
| 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 …]
|
| 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 …]
|
| 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 …]
|
| D | Kconfig | 12 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 …]
|
| 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 …]
|
| /kernel/linux/linux-4.19/net/netfilter/ipvs/ |
| D | ip_vs_wlc.c | 2 * IPVS: Weighted Least-Connection Scheduling module 31 * Weighted Least Connection scheduling 37 struct ip_vs_dest *dest, *least; in ip_vs_wlc_schedule() local 58 least = dest; in ip_vs_wlc_schedule() 59 loh = ip_vs_dest_conn_overhead(least); in ip_vs_wlc_schedule() 67 * Find the destination with the least load. in ip_vs_wlc_schedule() 75 (__s64)doh * atomic_read(&least->weight)) { in ip_vs_wlc_schedule() 76 least = dest; in ip_vs_wlc_schedule() 83 IP_VS_DBG_ADDR(least->af, &least->addr), in ip_vs_wlc_schedule() 84 ntohs(least->port), in ip_vs_wlc_schedule() [all …]
|
| D | ip_vs_lc.c | 2 * IPVS: Least-Connection Scheduling module 26 * Least Connection scheduling 32 struct ip_vs_dest *dest, *least = NULL; in ip_vs_lc_schedule() local 38 * Simply select the server with the least number of in ip_vs_lc_schedule() 51 if (!least || doh < loh) { in ip_vs_lc_schedule() 52 least = dest; in ip_vs_lc_schedule() 57 if (!least) in ip_vs_lc_schedule() 62 IP_VS_DBG_ADDR(least->af, &least->addr), in ip_vs_lc_schedule() 63 ntohs(least->port), in ip_vs_lc_schedule() 64 atomic_read(&least->activeconns), in ip_vs_lc_schedule() [all …]
|
| D | ip_vs_nq.c | 55 * Weighted Least Connection scheduling 61 struct ip_vs_dest *dest, *least = NULL; in ip_vs_nq_schedule() local 89 least = dest; in ip_vs_nq_schedule() 94 if (!least || in ip_vs_nq_schedule() 96 (__s64)doh * atomic_read(&least->weight))) { in ip_vs_nq_schedule() 97 least = dest; in ip_vs_nq_schedule() 102 if (!least) { in ip_vs_nq_schedule() 110 IP_VS_DBG_ADDR(least->af, &least->addr), in ip_vs_nq_schedule() 111 ntohs(least->port), in ip_vs_nq_schedule() 112 atomic_read(&least->activeconns), in ip_vs_nq_schedule() [all …]
|
| D | ip_vs_sed.c | 59 * Weighted Least Connection scheduling 65 struct ip_vs_dest *dest, *least; in ip_vs_sed_schedule() local 86 least = dest; in ip_vs_sed_schedule() 87 loh = ip_vs_sed_dest_overhead(least); in ip_vs_sed_schedule() 95 * Find the destination with the least load. in ip_vs_sed_schedule() 103 (__s64)doh * atomic_read(&least->weight)) { in ip_vs_sed_schedule() 104 least = dest; in ip_vs_sed_schedule() 111 IP_VS_DBG_ADDR(least->af, &least->addr), in ip_vs_sed_schedule() 112 ntohs(least->port), in ip_vs_sed_schedule() 113 atomic_read(&least->activeconns), in ip_vs_sed_schedule() [all …]
|
| D | ip_vs_lblcr.c | 2 * IPVS: Locality-Based Least-Connection with Replication scheduler 21 * n, serverSet[dest_ip] <- {weighted least-conn node}; 23 * n <- {least-conn (alive) node in serverSet[dest_ip]}; 27 * n <- {weighted least-conn node}; 165 /* get weighted least-connection node in the destination set */ 169 struct ip_vs_dest *dest, *least; in ip_vs_dest_set_min() local 174 least = e->dest; in ip_vs_dest_set_min() 175 if (least->flags & IP_VS_DEST_F_OVERLOAD) in ip_vs_dest_set_min() 178 if ((atomic_read(&least->weight) > 0) in ip_vs_dest_set_min() 179 && (least->flags & IP_VS_DEST_F_AVAILABLE)) { in ip_vs_dest_set_min() [all …]
|
| D | Kconfig | 11 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 …]
|
| D | ip_vs_lblc.c | 2 * IPVS: Locality-Based Least-Connection scheduling module 28 * n, cachenode[dest_ip] <- {weighted least-conn node}; 34 * n, cachenode[dest_ip] <- {weighted least-conn node}; 407 struct ip_vs_dest *dest, *least; in __ip_vs_lblc_schedule() local 426 least = dest; in __ip_vs_lblc_schedule() 427 loh = ip_vs_dest_conn_overhead(least); in __ip_vs_lblc_schedule() 434 * Find the destination with the least load. in __ip_vs_lblc_schedule() 443 (__s64)doh * atomic_read(&least->weight)) { in __ip_vs_lblc_schedule() 444 least = dest; in __ip_vs_lblc_schedule() 451 IP_VS_DBG_ADDR(least->af, &least->addr), in __ip_vs_lblc_schedule() [all …]
|
| /kernel/linux/linux-4.19/tools/testing/selftests/rcutorture/doc/ |
| D | TREE_RCU-kconfig.txt | 25 CONFIG_RCU_EQS_DEBUG -- Do at least one for CONFIG_NO_HZ_FULL and not. 33 nohz_full - do at least one. 34 maxcpu -- do at least one. 35 rcupdate.rcu_self_test_bh -- Do at least one each, offloaded and not. 36 rcupdate.rcu_self_test_sched -- Do at least one each, offloaded and not. 37 rcupdate.rcu_self_test -- Do at least one each, offloaded and not. 38 rcutree.rcu_fanout_exact -- Do at least one.
|
| /kernel/linux/linux-5.10/tools/testing/selftests/rcutorture/doc/ |
| D | TREE_RCU-kconfig.txt | 24 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/ |
| 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
|
| /kernel/linux/linux-4.19/tools/perf/pmu-events/arch/x86/skylake/ |
| D | pipeline.json | 29 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 169 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 200 …"BriefDescription": "Core crystal clock cycles when at least one thread on the physical core is un… 219 …"BriefDescription": "Core crystal clock cycles when at least one thread on the physical core is un… 284 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 294 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 304 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 314 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 324 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 334 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… [all …]
|
| /kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/skylakex/ |
| D | pipeline.json | 148 "BriefDescription": "Cycles where at least 2 uops were executed per-thread", 154 "PublicDescription": "Cycles where at least 2 uops were executed per-thread.", 180 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 198 "BriefDescription": "Cycles where at least 3 uops were executed per-thread", 204 "PublicDescription": "Cycles where at least 3 uops were executed per-thread.", 245 …"PublicDescription": "Counts the cycles when at least one uop is delivered by the LSD (Loop-stream… 274 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 284 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 294 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 304 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… [all …]
|
| /kernel/linux/linux-4.19/tools/perf/pmu-events/arch/x86/skylakex/ |
| D | pipeline.json | 25 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 165 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 196 …"BriefDescription": "Core crystal clock cycles when at least one thread on the physical core is un… 215 …"BriefDescription": "Core crystal clock cycles when at least one thread on the physical core is un… 289 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 299 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 309 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 319 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 329 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 339 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… [all …]
|
| /kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/cascadelakex/ |
| D | pipeline.json | 109 …"BriefDescription": "Core crystal clock cycles when at least one thread on the physical core is un… 199 "BriefDescription": "Cycles where at least 1 uop was executed per-thread", 205 "PublicDescription": "Cycles where at least 1 uop was executed per-thread.", 253 "BriefDescription": "Cycles where at least 2 uops were executed per-thread", 259 "PublicDescription": "Cycles where at least 2 uops were executed per-thread.", 297 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 307 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 317 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 327 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 337 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… [all …]
|
| /kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/skylake/ |
| D | pipeline.json | 26 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 165 …"BriefDescription": "Core cycles when at least one thread on the physical core is not in halt stat… 196 …"BriefDescription": "Core crystal clock cycles when at least one thread on the physical core is un… 215 …"BriefDescription": "Core crystal clock cycles when at least one thread on the physical core is un… 290 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 300 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 310 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 320 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 330 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 340 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… [all …]
|
| /kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/icelake/ |
| D | pipeline.json | 227 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 238 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 249 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 260 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 271 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 282 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 293 …"PublicDescription": "Counts, on the per-thread basis, cycles during which at least one uop is dis… 458 …"PublicDescription": "Counts the cycles when at least one uop is delivered by the LSD (Loop-stream… 505 "PublicDescription": "Cycles where at least 1 uop was executed per-thread.", 512 "BriefDescription": "Cycles where at least 1 uop was executed per-thread", [all …]
|
| /kernel/linux/linux-5.10/arch/arc/lib/ |
| D | strcmp.S | 33 bic_s r0,r0,r1 ; mask for least significant difference bit 35 xor r0,r5,r1 ; mask for least significant difference byte 50 bic_s r0,r0,r1 ; mask for least significant difference bit 52 xor r0,r5,r1 ; mask for least significant difference byte
|
| /kernel/linux/linux-5.10/lib/zstd/ |
| D | huf.h | 58 …size_t wkspSize); /**< `workSpace` must be a table of at least HUF_COMPRESS_WORKSPACE_SIZE_U32 uns… 93 /* The workspace must have alignment at least 4 and be at least this large */ 97 /* The workspace must have alignment at least 4 and be at least this large */ 146 …int preferRepeat); /**< `workSpace` must be a table of at least HUF_COMPRESS_WORKSPACE_SIZE_U32 un… 150 …* `workSpace` must be aligned on 4-bytes boundaries, and be at least as large as a table of 1024 … 190 …size_t wkspSize); /**< `workSpace` must be a table of at least HUF_COMPRESS_WORKSPACE_SIZE_U32 uns… 199 …int preferRepeat); /**< `workSpace` must be a table of at least HUF_COMPRESS_WORKSPACE_SIZE_U32 un…
|