]> Git Repo - linux.git/commitdiff
sched, sched_ext: Disable SM_IDLE/rq empty path when scx_enabled()
authorPat Somaru <[email protected]>
Fri, 20 Sep 2024 19:41:59 +0000 (15:41 -0400)
committerTejun Heo <[email protected]>
Mon, 23 Sep 2024 15:40:53 +0000 (05:40 -1000)
Disable the rq empty path when scx is enabled. SCX must consult the BPF
scheduler (via the dispatch path in balance) to determine if rq is empty.

This fixes stalls when scx is enabled.

Signed-off-by: Pat Somaru <[email protected]>
Fixes: 3dcac251b066 ("sched/core: Introduce SM_IDLE and an idle re-entry fast-path in __schedule()")
Signed-off-by: Tejun Heo <[email protected]>
kernel/sched/core.c

index b6cc1cf499d68e8c9244c7fe594aa6669ead8128..43e453ab7e20f81ea239919af19ef20c5358c93d 100644 (file)
@@ -6591,7 +6591,8 @@ static void __sched notrace __schedule(int sched_mode)
         */
        prev_state = READ_ONCE(prev->__state);
        if (sched_mode == SM_IDLE) {
-               if (!rq->nr_running) {
+               /* SCX must consult the BPF scheduler to tell if rq is empty */
+               if (!rq->nr_running && !scx_enabled()) {
                        next = prev;
                        goto picked;
                }
This page took 0.053279 seconds and 4 git commands to generate.