aboutsummaryrefslogtreecommitdiff
path: root/kernel/sched/ext.c
AgeCommit message (Expand)AuthorFilesLines
2024-09-23sched_ext: Provide a sysfs enable_seq counterAndrea Righi1-0/+17
2024-09-23sched_ext: Fix build when !CONFIG_STACKTRACETejun Heo1-3/+4
2024-09-10sched_ext: Don't trigger ops.quiescent/runnable() on migrationsTejun Heo1-2/+2
2024-09-10sched_ext: Synchronize bypass state changes with rq lockTejun Heo1-26/+37
2024-09-09sched_ext: Implement scx_bpf_dispatch[_vtime]_from_dsq()Tejun Heo1-3/+229
2024-09-09sched_ext: Compact struct bpf_iter_scx_dsq_kernTejun Heo1-11/+12
2024-09-09sched_ext: Replace consume_local_task() with move_local_task_to_local_dsq()Tejun Heo1-16/+26
2024-09-09sched_ext: Move consume_local_task() upwardTejun Heo1-17/+14
2024-09-09sched_ext: Move sanity check and dsq_mod_nr() into task_unlink_from_dsq()Tejun Heo1-4/+3
2024-09-09sched_ext: Reorder args for consume_local/remote_task()Tejun Heo1-7/+7
2024-09-09sched_ext: Restructure dispatch_to_local_dsq()Tejun Heo1-50/+46
2024-09-09sched_ext: Fix processs_ddsp_deferred_locals() by unifying DTL_INVALID handlingTejun Heo1-31/+10
2024-09-09sched_ext: Make find_dsq_for_dispatch() handle SCX_DSQ_LOCAL_ONTejun Heo1-50/+40
2024-09-09sched_ext: Refactor consume_remote_task()Tejun Heo1-69/+76
2024-09-09sched_ext: Rename scx_kfunc_set_sleepable to unlocked and relocateTejun Heo1-33/+33
2024-09-09sched_ext: Add missing static to scx_dump_dataTejun Heo1-1/+1
2024-09-06sched_ext: Add missing static to scx_has_op[]Tejun Heo1-1/+1
2024-09-06sched_ext: Temporarily work around pick_task_scx() being called without balan...Tejun Heo1-1/+16
2024-09-04sched_ext: Add cgroup supportTejun Heo1-9/+510
2024-09-04sched_ext: TASK_DEAD tasks must be switched into SCX on ops_enableTejun Heo1-17/+13
2024-09-04sched_ext: TASK_DEAD tasks must be switched out of SCX on ops_disableTejun Heo1-16/+8
2024-09-03sched_ext: Remove switch_class_scx()Tejun Heo1-5/+4
2024-09-03sched_ext: Relocate functions in kernel/sched/ext.cTejun Heo1-78/+78
2024-09-03sched_ext: Unify regular and core-sched pick task pathsTejun Heo1-67/+11
2024-09-03sched_ext: Replace SCX_TASK_BAL_KEEP with SCX_RQ_BAL_KEEPTejun Heo1-11/+9
2024-09-03sched_ext: Don't call put_prev_task_scx() before picking the next taskTejun Heo1-68/+62
2024-09-03Merge branch 'tip/sched/core' into for-6.12Tejun Heo1-2/+10
2024-08-30sched_ext: Use sched_clock_cpu() instead of rq_clock_task() in touch_core_sch...Tejun Heo1-2/+6
2024-08-30sched_ext: Use task_can_run_on_remote_rq() test in dispatch_to_local_dsq()Tejun Heo1-20/+20
2024-08-27sched_ext: Add missing cfi stub for ops.tickTejun Heo1-0/+2
2024-08-20sched_ext: Allow dequeue_task_scx to failYipeng Zou1-2/+3
2024-08-13sched_ext: Don't use double locking to migrate tasks across CPUsTejun Heo1-88/+46
2024-08-13sched_ext: define missing cfi stubs for sched_extManu Bretelle1-0/+6
2024-08-08sched_ext: Improve logging around enable/disableTejun Heo1-8/+12
2024-08-08sched_ext: Make scx_rq_online() also test cpu_active() in addition to SCX_RQ_...Tejun Heo1-1/+8
2024-08-08sched_ext: Fix unsafe list iteration in process_ddsp_deferred_locals()Tejun Heo1-4/+6
2024-08-06sched_ext: Make task_can_run_on_remote_rq() use common task_allowed_on_cpu()Tejun Heo1-5/+16
2024-08-06sched_ext: Improve comment on idle_sched_class exception in scx_task_iter_nex...Tejun Heo1-2/+23
2024-08-06sched_ext: Simplify UP support by enabling sched_class->balance() in UPTejun Heo1-40/+1
2024-08-06sched_ext: Use update_curr_common() in update_curr_scx()Tejun Heo1-10/+4
2024-08-02sched_ext: Allow p->scx.disallow only while loadingTejun Heo1-15/+20
2024-08-01sched_ext: Build fix on !CONFIG_STACKTRACE[_SUPPORT]Tejun Heo1-1/+3
2024-07-31scx: Allow calling sleepable kfuncs from BPF_PROG_TYPE_SYSCALLDavid Vernet1-16/+11
2024-07-14sched_ext: Fixes incorrect type in bpf_scx_init()Jiapeng Chong1-1/+1
2024-07-12sched_ext: Allow SCX_DSQ_LOCAL_ON for direct dispatchesTejun Heo1-18/+150
2024-07-12sched_ext: s/SCX_RQ_BALANCING/SCX_RQ_IN_BALANCE/ and add SCX_RQ_IN_WAKEUPTejun Heo1-4/+9
2024-07-12sched_ext: Unpin and repin rq lock from balance_scx()Tejun Heo1-59/+34
2024-07-12sched_ext: Open-code task_linked_on_dsq()Tejun Heo1-8/+3
2024-07-09sched_ext: Make scx_bpf_reenqueue_local() skip tasks that are being migratedTejun Heo1-0/+14
2024-07-09sched_ext: Reimplement scx_bpf_reenqueue_local()Tejun Heo1-14/+14