aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched
AgeCommit message (Expand)AuthorFilesLines
2025-11-12sched_ext: Refactor lockup handlers into handle_lockup()Tejun Heo1-40/+25
2025-11-12sched_ext: Make scx_exit() and scx_vexit() return boolTejun Heo1-5/+9
2025-11-12sched_ext: Exit dispatch and move operations immediately when abortingTejun Heo1-44/+18
2025-11-12sched_ext: Simplify breather mechanism with scx_aborting flagTejun Heo1-29/+25
2025-11-12sched_ext: Use per-CPU DSQs instead of per-node global DSQs in bypass modeTejun Heo2-3/+14
2025-11-12sched_ext: Refactor do_enqueue_task() local and global DSQ pathsTejun Heo1-9/+12
2025-11-12sched_ext: Use shorter slice in bypass modeTejun Heo1-3/+31
2025-11-12sched_ext: Fix unsafe locking in the scx_dump_state()Zqiang1-2/+2
2025-11-11sched/deadline: Minor cleanup in select_task_rq_dl()Shrikanth Hegde1-2/+1
2025-11-11sched/deadline: Use cpumask_weight_and() in dl_bw_cpusShrikanth Hegde1-10/+1
2025-11-11sched/deadline: Document dl_serverPeter Zijlstra1-0/+194
2025-11-11sched/deadline: Fix dl_server stop conditionPeter Zijlstra1-2/+38
2025-11-11sched/deadline: Fix dl_server time accountingPeter Zijlstra4-35/+33
2025-11-11sched/core: Remove double update_rq_clock() in __set_cpus_allowed_ptr_locked()Hao Jia1-2/+0
2025-11-11sched/eevdf: Fix min_vruntime vs avg_vruntimePeter Zijlstra3-95/+31
2025-11-11sched/core: Add comment explaining force-idle vruntime snapshotsPeter Zijlstra1-0/+181
2025-11-11sched/core: Optimize core cookie matching checkFernand Sieber1-1/+4
2025-11-11sched/proxy: Yield the donor taskFernand Sieber5-7/+8
2025-11-06sched/fair: Prevent cfs_rq from being unthrottled with zero runtime_remainingAaron Lu2-10/+7
2025-11-05sched_ext: Mark racy bitfields to prevent adding fields that can't tolerate racesTejun Heo1-0/+4
2025-11-04sched_ext: Minor cleanups to scx_task_iterTejun Heo1-6/+5
2025-11-04sched_ext: Move __SCX_DSQ_ITER_ALL_FLAGS BUILD_BUG_ON to the right placeTejun Heo1-3/+2
2025-11-04rseq: Optimize event settingThomas Gleixner2-2/+10
2025-11-04rseq: Simplify the event notificationThomas Gleixner2-8/+5
2025-11-03sched_ext: Fix cgroup exit ordering by moving sched_ext_free() to finish_task_switch()Tejun Heo2-1/+7
2025-11-03sched_ext: Merge branch 'for-6.19' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup into for-6.19Tejun Heo4-15/+22
2025-11-03cgroup: Defer task cgroup unlink until after the task is done switching outTejun Heo1-0/+2
2025-11-03cgroup: Rename cgroup lifecycle hooks to cgroup_task_*()Tejun Heo1-2/+2
2025-11-01genirq/manage: Reduce priority of forced secondary interrupt handlerLukas Wunner1-0/+13
2025-10-29sched_ext: Allow scx_bpf_reenqueue_local() to be called from anywhereTejun Heo2-0/+32
2025-10-29sched_ext: Factor out reenq_local() from scx_bpf_reenqueue_local()Tejun Heo1-21/+29
2025-10-29sched_ext: Split schedule_deferred() into locked and unlocked variantsTejun Heo1-9/+24
2025-10-29Merge branch 'for-6.18-fixes' into for-6.19Tejun Heo1-1/+1
2025-10-29sched_ext: Fix use of uninitialized variable in scx_bpf_cpuperf_set()Andrea Righi1-1/+1
2025-10-29Merge branch 'linus/master' into sched/core, to resolve conflictPeter Zijlstra5-30/+141
2025-10-28sched_ext: Use SCX_TASK_READY test instead of tryget_task_struct() during class switchTejun Heo1-3/+1
2025-10-28sched: Fix the do_set_cpus_allowed() locking fixPeter Zijlstra1-10/+7
2025-10-27Merge tag 'sched_ext-for-6.18-rc3-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/sched_extLinus Torvalds2-15/+112
2025-10-26Merge tag 'sched_urgent_for_v6.18_rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds1-0/+12
2025-10-24sched: Remove never used code in mm_cid_get()Andy Shevchenko1-2/+0
2025-10-24sched_ext: Fix scx_bpf_dsq_peek() with FIFO DSQsAndrea Righi1-3/+3
2025-10-22sched_ext: Use rhashtable_lookup() instead of rhashtable_lookup_fast()Tejun Heo1-1/+1
2025-10-22sched_ext: Rename pnt_seq to kick_syncTejun Heo2-41/+41
2025-10-22sched_ext: Fix SCX_KICK_WAIT to work reliablyTejun Heo2-22/+30
2025-10-22sched_ext: Don't kick CPUs running higher classesTejun Heo1-3/+8
2025-10-22sched/fair: Start a cfs_rq on throttled hierarchy with PELT clock throttledK Prateek Nayak1-0/+12
2025-10-21sched_ext: Fix scx_bpf_dsq_insert() backward binary compatibilityTejun Heo1-6/+6
2025-10-21seqlock: Change thread_group_cputime() to use scoped_seqlock_read()Oleg Nesterov1-15/+5
2025-10-18sched_ext: Allow forcibly picking an scx taskAndrea Righi1-2/+16
2025-10-16sched_ext: Merge branch 'sched/core' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip into for-6.19Tejun Heo13-540/+594