= Overview = As discussed during the sched_ext office hours, using a global cpumask to keep track of the idle CPUs can be inefficient and it may not scale really well on large NUMA systems. Therefore, split the idle cpumask into multiple per-NUMA node cpumasks to improve scalability and performance on such large systems. Scalability issues seem to be more noticeable on Intel Sapphire Rapids dual-socket architectures. = Test = Hardware: - System: DGX B200 - CPUs: 224 SMT threads (112 physical cores) - Processor: INTEL(R) XEON(R) PLATINUM 8570 - 2 NUMA nodes Scheduler: - scx_simple [1] (so that we can focus at the built-in idle selection policy and not at the scheduling policy itself) Test: - Run a parallel kernel build `make -j $(nproc)` and measure the average elapsed time over 10 runs: avg time | stdev ---------+------ before: 52.431s | 2.895 after: 50.342s | 2.895 = Conclusion = Splitting the global cpumask into multiple per-NUMA cpumasks helped to achieve a speedup of approximately +4% with this particular architecture and test case. The same test on a DGX-1 (40 physical cores, Intel Xeon E5-2698 v4 @ 2.20GHz, 2 NUMA nodes) shows a speedup of around 1.5-3%. On smaller systems, I haven't noticed any measurable regressions or improvements with the same test (parallel kernel build) and scheduler (scx_simple). Moreover, with a modified scx_bpfland that uses the new NUMA-aware APIs I observed an additional +2-2.5% performance improvement in the same test. NOTE: splitting the global cpumask into multiple cpumasks may increase the overhead of scx_bpf_pick_idle_cpu() or ops.select_cpu() (for schedulers relying on the built-in CPU idle selection policy) in presence of multiple NUMA nodes, particularly under high system load, since we may have to access multiple cpumasks to find an idle CPU. However, this increased overhead seems to be highly compensated by a lower overhead when updating the idle state and by the fact that CPUs are more likely operating within their local idle cpumask, reducing the stress on the cache coherency protocol. = References = [1] https://github.com/sched-ext/scx/blob/main/scheds/c/scx_simple.bpf.c ChangeLog v9 -> v10: - introduce for_each_numa_node() and numa_nearest_nodemask() helpers ChangeLog v8 -> v9: - drop some preliminary refactoring patches that are now applied to sched_ext/for-6.15 - rename SCX_PICK_IDLE_NODE -> SCX_PICK_IDLE_IN_NODE - use NUMA_NO_NODE to reference to the global idle cpumask and drop NUMA_FLAT_NODE (which was quite confusing) - NUMA_NO_NODE is not implicitly translated to the current node - rename struct idle_cpumask -> idle_cpus - drop "get_" prefix from the idle cpumask helpers - rename for_each_numa_hop_node() -> for_each_numa_node() - for_each_numa_node() returns MAX_NUMNODES at the end of the loop (for coherency with other node iterators) - do not get rid of the scx_selcpu_topo_numa logic (since it can still be used when per-node cpumasks are not enabled) ChangeLog v7 -> v8: - patch set refactoring: move ext_idle.c as first patch and introduce more preparation patches - introduce SCX_PICK_IDLE_NODE to restrict idle CPU selection to a single specified node - trigger scx_ops_error() when the *_node() kfunc's are used without enbling SCX_OPS_NODE_BUILTIN_IDLE - check for node_possible() in validate_node() - do node validation in the kfunc's (instead of the internal kernel functions) and trigger scx_ops_error in case of failure - rename idle_masks -> scx_idle_masks - drop unused CL_ALIGNED_IF_ONSTACK - drop unnecessary rcu_read_lock/unlock() when iterating NUMA nodes ChangeLog v6 -> v7: - addressed some issues based on Yury's review (thanks!) - introduced a new iterator to navigate the NUMA nodes in order of increasing distance ChangeLog v5 -> v6: - refactor patch set to introduce SCX_OPS_NODE_BUILTIN_IDLE before the per-node cpumasks - move idle CPU selection policy to a separate file (ext_idle.c) (no functional change, just some code shuffling) ChangeLog v4 -> v5: - introduce new scx_bpf_cpu_to_node() kfunc - provide __COMPAT_*() helpers for the new kfunc's ChangeLog v3 -> v4: - introduce SCX_OPS_NODE_BUILTIN_IDLE to select multiple per-node cpumasks or single flat cpumask - introduce new kfuncs to access per-node idle cpumasks information - use for_each_numa_hop_mask() to traverse NUMA nodes in increasing distance - dropped nodemask helpers (not needed anymore) - rebase to sched_ext/for-6.14 ChangeLog v2 -> v3: - introduce for_each_online_node_wrap() - re-introduce cpumask_intersects() in test_and_clear_cpu_idle() (to reduce memory writes / cache coherence pressure) - get rid of the redundant scx_selcpu_topo_numa logic [test results are pretty much identical, so I haven't updated them from v2] ChangeLog v1 -> v2: - renamed for_each_node_mask|state_from() -> for_each_node_mask|state_wrap() - misc cpumask optimizations (thanks to Yury) Andrea Righi (6): mm/numa: Introduce numa_nearest_nodemask() sched/topology: Introduce for_each_numa_node() iterator sched_ext: idle: Introduce SCX_OPS_BUILTIN_IDLE_PER_NODE sched_ext: idle: introduce SCX_PICK_IDLE_IN_NODE sched_ext: idle: Per-node idle cpumasks sched_ext: idle: Introduce node-aware idle cpu kfunc helpers include/linux/nodemask_types.h | 6 +- include/linux/numa.h | 8 + include/linux/topology.h | 28 +++ kernel/sched/ext.c | 22 +- kernel/sched/ext_idle.c | 396 ++++++++++++++++++++++++++----- kernel/sched/ext_idle.h | 17 +- mm/mempolicy.c | 38 +++ tools/sched_ext/include/scx/common.bpf.h | 4 + tools/sched_ext/include/scx/compat.bpf.h | 19 ++ 9 files changed, 475 insertions(+), 63 deletions(-)