mirror of
https://github.com/JakeHillion/scx.git
synced 2024-11-30 04:50:24 +00:00
829b1d3ced
Tejun pointed out that a possible issue exists in the current implementation, wherein if you have two NUMA nodes that are imbalanced, but their domains are internally balanced, we'll fail to migrate between them if all nodes are in the balanced_nodes list. To address this, let's just use a single global list for all types of domains, and do checking internally for imbalances. The reason it was done this way in the first place was to allow me to mutably iterate over both vectors in a nested loop. The way around that is to just use loop {} and push/pop domains from the list. We could do the same thing for the NUMA nodes themselves, which are also in 3 separate lists in the LoadBalancer. We'll do that in a subsequent commit. Signed-off-by: David Vernet <void@manifault.com> |
||
---|---|---|
.. | ||
scx_layered | ||
scx_rlfifo | ||
scx_rustland | ||
scx_rusty | ||
meson.build | ||
README.md |
RUST SCHEDULERS
Introduction
This directory contains schedulers with user space rust components.
The README in each scheduler directory provides some background and describes the types of workloads or scenarios they're designed to accommodate. For more details on any of these schedulers, please see the header comment in their main.rs or *.bpf.c files.