This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 606489dbfa97 Merge tag 'trace-ringbuffer-v6.14-2' of git://git.kernel.o [...] new 4572541892ea sched_ext: Use the NUMA scheduling domain for NUMA optimizations new 8da7bf2cee27 tools/sched_ext: Receive updates from SCX repo new e197f5ec3ad3 sched_ext: Use sizeof_field for key_len in dsq_hash_params new bc3a116a4498 sched_ext: Use str_enabled_disabled() helper in update_sel [...] new 9cf9aceed21e sched_ext: idle: use assign_cpu() to update the idle cpumask new 02f034dcbf3d sched_ext: idle: clarify comments new c0cf3530098b sched_ext: idle: introduce check_builtin_idle_enabled() helper new d9071ecb3139 sched_ext: idle: small CPU iteration refactoring new e4975ac53533 sched_ext: update scx_bpf_dsq_insert() doc for SCX_DSQ_LOCAL_ON new 382d7efc14a3 sched_ext: Include remaining task time slice in error state dump new a73bca3d9cc0 sched_ext: Add option -l in selftest runner to list all av [...] new ea9b2626271f sched_ext: Relocate scx_enabled() related code new 3a9910b5904d sched_ext: Implement scx_bpf_now() new 2e1ce39fde7c sched_ext: Add scx_bpf_now() for BPF scheduler new d07be814fc71 sched_ext: Add time helpers for BPF schedulers new 0f130bc341d0 sched_ext: Replace bpf_ktime_get_ns() to scx_bpf_now() new 62addc6dbf36 sched_ext: Use time helpers in BPF schedulers new 987ce79b5242 sched_ext: fix kernel-doc warnings new bc8198dc7ebc Merge tag 'sched_ext-for-6.14' of git://git.kernel.org/pub [...]
The 19 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: Documentation/scheduler/sched-ext.rst | 6 +- kernel/sched/core.c | 6 +- kernel/sched/ext.c | 335 ++++++++++++++++-------- kernel/sched/sched.h | 51 ++-- tools/sched_ext/include/scx/common.bpf.h | 178 ++++++++++++- tools/sched_ext/include/scx/common.h | 6 + tools/sched_ext/include/scx/compat.bpf.h | 5 + tools/sched_ext/include/scx/compat.h | 1 + tools/sched_ext/include/scx/enums.autogen.bpf.h | 105 ++++++++ tools/sched_ext/include/scx/enums.autogen.h | 41 +++ tools/sched_ext/include/scx/enums.bpf.h | 12 + tools/sched_ext/include/scx/enums.h | 27 ++ tools/sched_ext/include/scx/user_exit_info.h | 9 +- tools/sched_ext/scx_central.bpf.c | 13 +- tools/sched_ext/scx_central.c | 1 + tools/sched_ext/scx_flatcg.bpf.c | 25 +- tools/sched_ext/scx_flatcg.c | 1 + tools/sched_ext/scx_qmap.bpf.c | 2 +- tools/sched_ext/scx_qmap.c | 2 + tools/sched_ext/scx_simple.bpf.c | 9 +- tools/testing/selftests/sched_ext/runner.c | 15 +- 21 files changed, 690 insertions(+), 160 deletions(-) create mode 100644 tools/sched_ext/include/scx/enums.autogen.bpf.h create mode 100644 tools/sched_ext/include/scx/enums.autogen.h create mode 100644 tools/sched_ext/include/scx/enums.bpf.h create mode 100644 tools/sched_ext/include/scx/enums.h