From: Ingo Molnar <mingo@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org,
Peter Zijlstra <peterz@infradead.org>,
Thomas Gleixner <tglx@linutronix.de>,
Borislav Petkov <bp@alien8.de>,
Juri Lelli <juri.lelli@redhat.com>,
Vincent Guittot <vincent.guittot@linaro.org>,
Dietmar Eggemann <dietmar.eggemann@arm.com>,
Steven Rostedt <rostedt@goodmis.org>,
Ben Segall <bsegall@google.com>, Mel Gorman <mgorman@suse.de>,
Daniel Bristot de Oliveira <bristot@redhat.com>,
Valentin Schneider <vschneid@redhat.com>
Subject: [GIT PULL] Scheduler changes for v6.7
Date: Sat, 28 Oct 2023 14:23:34 +0200 [thread overview]
Message-ID: <ZTz9RpZxfxysYCmt@gmail.com> (raw)
Linus,
Please pull the latest sched/core git tree from:
git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched-core-2023-10-28
# HEAD: 984ffb6a4366752c949f7b39640aecdce222607f sched/fair: Remove SIS_PROP
Scheduler changes for v6.7 are:
- Fair scheduler (SCHED_OTHER) improvements:
- Remove the old and now unused SIS_PROP code & option
- Scan cluster before LLC in the wake-up path
- Use candidate prev/recent_used CPU if scanning failed for cluster wakeup
- NUMA scheduling improvements:
- Improve the VMA access-PID code to better skip/scan VMAs
- Extend tracing to cover VMA-skipping decisions
- Improve/fix the recently introduced sched_numa_find_nth_cpu() code
- Generalize numa_map_to_online_node()
- Energy scheduling improvements:
- Remove the EM_MAX_COMPLEXITY limit
- Add tracepoints to track energy computation
- Make the behavior of the 'sched_energy_aware' sysctl more consistent
- Consolidate and clean up access to a CPU's max compute capacity
- Fix uclamp code corner cases
- RT scheduling improvements:
- Drive dl_rq->overloaded with dl_rq->pushable_dl_tasks updates
- Drive the ->rto_mask with rt_rq->pushable_tasks updates
- Scheduler scalability improvements:
- Rate-limit updates to tg->load_avg
- On x86 disable IBRS when CPU is offline to improve single-threaded performance
- Micro-optimize in_task() and in_interrupt()
- Micro-optimize the PSI code
- Avoid updating PSI triggers and ->rtpoll_total when there are no state changes
- Core scheduler infrastructure improvements:
- Use saved_state to reduce some spurious freezer wakeups
- Bring in a handful of fast-headers improvements to scheduler headers
- Make the scheduler UAPI headers more widely usable by user-space
- Simplify the control flow of scheduler syscalls by using lock guards
- Fix sched_setaffinity() vs. CPU hotplug race
- Scheduler debuggability improvements:
- Disallow writing invalid values to sched_rt_period_us
- Fix a race in the rq-clock debugging code triggering warnings
- Fix a warning in the bandwidth distribution code
- Micro-optimize in_atomic_preempt_off() checks
- Enforce that the tasklist_lock is held in for_each_thread()
- Print the TGID in sched_show_task()
- Remove the /proc/sys/kernel/sched_child_runs_first sysctl
- Misc cleanups & fixes
Thanks,
Ingo
------------------>
Aaron Lu (1):
sched/fair: Ratelimit update to tg->load_avg
Barry Song (2):
sched: Add cpus_share_resources API
sched/fair: Scan cluster before scanning LLC in wake-up path
Chengming Zhou (1):
sched/fair: Fix cfs_rq_is_decayed() on !SMP
Colin Ian King (1):
sched/headers: Remove comment referring to rq::cpu_load, since this has been removed
Cyril Hrubis (3):
sched/rt: Disallow writing invalid values to sched_rt_period_us
sched/rt/docs: Clarify & fix sched_rt_* sysctl docs
sched/rt/docs: Use 'real-time' instead of 'realtime'
Elliot Berman (2):
sched/core: Remove ifdeffery for saved_state
freezer,sched: Use saved_state to reduce some spurious wakeups
Fan Yu (1):
sched/psi: Update poll => rtpoll in relevant comments
Finn Thain (1):
sched/core: Optimize in_task() and in_interrupt() a bit
GUO Zihua (1):
sched/headers: Remove duplicated includes in kernel/sched/sched.h
Haifeng Xu (1):
sched/psi: Bail out early from irq time accounting
Hao Jia (1):
sched/core: Fix RQCF_ACT_SKIP leak
Ingo Molnar (12):
sched/fair: Rename check_preempt_wakeup() to check_preempt_wakeup_fair()
sched/fair: Rename check_preempt_curr() to wakeup_preempt()
sched/headers: Add header guard to <linux/sched/deadline.h>
sched/headers: Standardize the <linux/sched/vhost_task.h> header guard name
sched/headers: Standardize the <linux/sched/type.h> header guard #endif
sched/headers: Standardize the <linux/sched/smt.h> header guard #endif
<linux/list.h>: Introduce the list_for_each_reverse() method
sched/core: Update stale comment in try_to_wake_up()
sched/nohz: Update idle load-balancing (ILB) comments
sched/nohz: Use consistent variable names in find_new_ilb() and kick_ilb()
sched/nohz: Remove unnecessarily complex error handling pattern from find_new_ilb()
sched/topology: Move the declaration of 'schedutil_gov' to kernel/sched/sched.h
Jiapeng Chong (1):
sched/fair: Remove duplicate #include
Joel Fernandes (Google) (1):
sched/nohz: Update comments about NEWILB_KICK
Josh Don (2):
sched/fair: Make cfs_rq->throttled_csd_list available on !SMP
sched/fair: Fix warning in bandwidth distribution
Kir Kolyshkin (1):
sched/headers: Move 'struct sched_param' out of uapi, to work around glibc/musl breakage
Liming Wu (1):
sched/debug: Avoid checking in_atomic_preempt_off() twice in schedule_debug()
Mathieu Desnoyers (1):
sched: Make PELT acronym definition searchable
Matthew Wilcox (Oracle) (1):
sched: Assert for_each_thread() is properly locked
Mel Gorman (5):
sched/numa: Document vma_numab_state fields
sched/numa: Rename vma_numab_state::access_pids[] => ::pids_active[], ::next_pid_reset => ::pids_active_reset
sched/numa: Trace decisions related to skipping VMAs
sched/numa: Complete scanning of partial VMAs regardless of PID activity
sched/numa: Complete scanning of inactive VMAs when there is no alternative
Peter Zijlstra (11):
sched: Simplify set_user_nice()
sched: Simplify syscalls
sched: Simplify sched_{set,get}affinity()
sched: Simplify yield_to()
sched: Simplify sched_rr_get_interval()
sched: Simplify sched_move_task()
sched: Simplify tg_set_cfs_bandwidth()
sched: Misc cleanups
sched/topology: Rename 'DIE' domain to 'PKG'
sched: Fix stop_one_cpu_nowait() vs hotplug
sched/fair: Remove SIS_PROP
Pierre Gondois (1):
sched/topology: Remove the EM_MAX_COMPLEXITY limit
Qais Yousef (3):
sched/uclamp: Set max_spare_cap_cpu even if max_spare_cap is 0
sched/uclamp: Ignore (util == 0) optimization in feec() when p_util_max = 0
sched/debug: Add new tracepoint to track compute energy computation
Raghavendra K T (1):
sched/numa: Move up the access pid reset logic
Sebastian Andrzej Siewior (2):
sched/debug: Remove the /proc/sys/kernel/sched_child_runs_first sysctl
sched/debug: Update stale reference to sched_debug.c
Shrikanth Hegde (1):
sched/topology: Change behaviour of the 'sched_energy_aware' sysctl, based on the platform
Uros Bizjak (1):
sched/core: Use do-while instead of for loop in set_nr_if_polling()
Valentin Schneider (2):
sched/rt: Make rt_rq->pushable_tasks updates drive rto_mask
sched/deadline: Make dl_rq->pushable_dl_tasks update drive dl_rq->overloaded
Vincent Guittot (1):
sched/topology: Consolidate and clean up access to a CPU's max compute capacity
Waiman Long (4):
x86/speculation: Add __update_spec_ctrl() helper
x86/idle: Disable IBRS when CPU is offline to improve single-threaded performance
intel_idle: Use __update_spec_ctrl() in intel_idle_ibrs()
intel_idle: Add ibrs_off module parameter to force-disable IBRS
Wang Jinchao (1):
sched/core: Refactor the task_flags check for worker sleeping in sched_submit_work()
Yajun Deng (2):
sched/debug: Print 'tgid' in sched_show_task()
sched/rt: Change the type of 'sysctl_sched_rt_period' from 'unsigned int' to 'int'
Yang Yang (3):
sched/psi: Change update_triggers() to a 'void' function
sched/psi: Avoid updating PSI triggers and ->rtpoll_total when there are no state changes
sched/psi: Delete the 'update_total' function parameter from update_triggers()
Yicong Yang (1):
sched/fair: Use candidate prev/recent_used CPU if scanning failed for cluster wakeup
Yiwei Lin (1):
sched/fair: Remove unused 'curr' argument from pick_next_entity()
Yu Liao (1):
sched/headers: Remove duplicate header inclusions
Yury Norov (6):
numa: Generalize numa_map_to_online_node()
sched/fair: Fix open-coded numa_nearest_node()
sched/topology: Fix sched_numa_find_nth_cpu() in CPU-less case
sched/topology: Fix sched_numa_find_nth_cpu() in non-NUMA case
sched/topology: Handle NUMA_NO_NODE in sched_numa_find_nth_cpu()
sched/topology: Fix sched_numa_find_nth_cpu() comment
Documentation/admin-guide/pm/intel_idle.rst | 17 +-
Documentation/admin-guide/sysctl/kernel.rst | 3 +-
Documentation/scheduler/sched-capacity.rst | 13 +-
Documentation/scheduler/sched-energy.rst | 29 +-
Documentation/scheduler/sched-rt-group.rst | 40 +-
arch/powerpc/kernel/smp.c | 4 +-
arch/s390/kernel/topology.c | 2 +-
arch/x86/include/asm/spec-ctrl.h | 11 +
arch/x86/kernel/smpboot.c | 12 +-
drivers/idle/intel_idle.c | 18 +-
include/linux/cpu.h | 2 +
include/linux/list.h | 8 +
include/linux/mm.h | 4 +-
include/linux/mm_types.h | 31 +-
include/linux/numa.h | 7 +-
include/linux/preempt.h | 15 +-
include/linux/sched.h | 7 +-
include/linux/sched/deadline.h | 4 +
include/linux/sched/numa_balancing.h | 10 +
include/linux/sched/sd_flags.h | 7 +
include/linux/sched/signal.h | 3 +-
include/linux/sched/smt.h | 2 +-
include/linux/sched/topology.h | 10 +-
include/linux/sched/types.h | 2 +-
include/linux/sched/vhost_task.h | 7 +-
include/linux/topology.h | 2 +-
include/trace/events/sched.h | 57 +++
include/uapi/linux/sched/types.h | 4 -
kernel/freezer.c | 41 +-
kernel/sched/build_utility.c | 1 -
kernel/sched/core.c | 651 ++++++++++++----------------
kernel/sched/cpudeadline.c | 2 +-
kernel/sched/deadline.c | 73 +---
kernel/sched/debug.c | 7 +-
kernel/sched/fair.c | 432 ++++++++++--------
kernel/sched/features.h | 1 -
kernel/sched/idle.c | 4 +-
kernel/sched/pelt.c | 2 +-
kernel/sched/psi.c | 58 ++-
kernel/sched/rt.c | 95 ++--
kernel/sched/sched.h | 45 +-
kernel/sched/stop_task.c | 4 +-
kernel/sched/topology.c | 213 +++++----
lib/cpumask.c | 4 +-
mm/mempolicy.c | 18 +-
45 files changed, 1015 insertions(+), 967 deletions(-)
next reply other threads:[~2023-10-28 12:23 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-28 12:23 Ingo Molnar [this message]
2023-10-30 23:50 ` [GIT PULL] Scheduler changes for v6.7 pr-tracker-bot
2024-01-08 14:07 ` [GIT PULL] Scheduler changes for v6.8 Ingo Molnar
2024-01-09 4:04 ` pr-tracker-bot
2024-01-10 22:19 ` Linus Torvalds
2024-01-10 22:41 ` Linus Torvalds
2024-01-10 22:57 ` Linus Torvalds
2024-01-11 8:11 ` Vincent Guittot
2024-01-11 17:45 ` Linus Torvalds
2024-01-11 17:53 ` Linus Torvalds
2024-01-11 18:16 ` Vincent Guittot
2024-01-12 14:23 ` Dietmar Eggemann
2024-01-12 16:58 ` Vincent Guittot
2024-01-12 18:18 ` Qais Yousef
2024-01-12 19:03 ` Vincent Guittot
2024-01-12 20:30 ` Linus Torvalds
2024-01-12 20:49 ` Linus Torvalds
2024-01-12 21:04 ` Linus Torvalds
2024-01-13 1:04 ` Qais Yousef
2024-01-13 1:24 ` Linus Torvalds
2024-01-13 1:31 ` Linus Torvalds
2024-01-13 10:47 ` Vincent Guittot
2024-01-13 18:33 ` Qais Yousef
2024-01-13 18:37 ` Qais Yousef
2024-01-11 11:09 ` [GIT PULL] scheduler fixes Ingo Molnar
2024-01-11 13:04 ` Vincent Guittot
2024-01-11 20:48 ` [PATCH] Revert "sched/cpufreq: Rework schedutil governor performance estimation" and dependent commit Ingo Molnar
2024-01-11 22:22 ` Vincent Guittot
2024-01-12 18:24 ` Ingo Molnar
2024-01-12 18:26 ` [GIT PULL] Scheduler changes for v6.8 Ingo Molnar
2024-01-14 9:12 ` Wyes Karny
2024-01-14 11:18 ` Vincent Guittot
2024-01-14 12:37 ` Wyes Karny
2024-01-14 13:02 ` Dietmar Eggemann
2024-01-14 13:05 ` Vincent Guittot
2024-01-14 13:03 ` Vincent Guittot
2024-01-14 15:12 ` Qais Yousef
2024-01-14 15:20 ` Vincent Guittot
2024-01-14 19:58 ` Qais Yousef
2024-01-14 23:37 ` Qais Yousef
2024-01-15 6:25 ` Wyes Karny
2024-01-15 11:59 ` Qais Yousef
2024-01-15 8:21 ` Vincent Guittot
2024-01-15 12:09 ` Qais Yousef
2024-01-15 13:26 ` Vincent Guittot
2024-01-15 14:03 ` Dietmar Eggemann
2024-01-15 15:26 ` Vincent Guittot
2024-01-15 20:05 ` Dietmar Eggemann
2024-01-15 8:42 ` David Laight
2024-01-14 18:11 ` Wyes Karny
2024-01-14 18:18 ` Vincent Guittot
2024-01-11 9:33 ` Ingo Molnar
2024-01-11 11:14 ` [tip: sched/urgent] Revert "sched/cpufreq: Rework schedutil governor performance estimation" and dependent commits tip-bot2 for Ingo Molnar
2024-01-11 20:55 ` [tip: sched/urgent] Revert "sched/cpufreq: Rework schedutil governor performance estimation" and dependent commit tip-bot2 for Ingo Molnar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZTz9RpZxfxysYCmt@gmail.com \
--to=mingo@kernel.org \
--cc=bp@alien8.de \
--cc=bristot@redhat.com \
--cc=bsegall@google.com \
--cc=dietmar.eggemann@arm.com \
--cc=juri.lelli@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mgorman@suse.de \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=tglx@linutronix.de \
--cc=torvalds@linux-foundation.org \
--cc=vincent.guittot@linaro.org \
--cc=vschneid@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.