]> git.ipfire.org Git - thirdparty/linux.git/commit
sched_ext: Use the resched_cpu() to replace resched_curr() in the bypass_lb_node()
authorZqiang <qiang.zhang@linux.dev>
Mon, 22 Dec 2025 11:53:17 +0000 (19:53 +0800)
committerTejun Heo <tj@kernel.org>
Tue, 23 Dec 2025 03:51:51 +0000 (17:51 -1000)
commitccaeeb585c7c2a0ac67ee1af9acb4d1411dc409e
treedf022dd1c3c1bcda42dcdef5133307cf48c78313
parent12494e5e2aea17dac54c0356e53e40a31c2a31e4
sched_ext: Use the resched_cpu() to replace resched_curr() in the bypass_lb_node()

For the PREEMPT_RT kernels, the scx_bypass_lb_timerfn() running in the
preemptible per-CPU ktimer kthread context, this means that the following
scenarios will occur(for x86 platform):

       cpu1                          cpu2
 ktimer kthread:
                                 ->scx_bypass_lb_timerfn
                                   ->bypass_lb_node
                                     ->for_each_cpu(cpu, resched_mask)

    migration/1:                       by preempt by migration/2:
    multi_cpu_stop()                     multi_cpu_stop()
    ->take_cpu_down()
      ->__cpu_disable()
->set cpu1 offline

                                       ->rq1 = cpu_rq(cpu1)
                                       ->resched_curr(rq1)
                                         ->smp_send_reschedule(cpu1)
   ->native_smp_send_reschedule(cpu1)
     ->if(unlikely(cpu_is_offline(cpu))) {
                 WARN(1, "sched: Unexpected
reschedule of offline CPU#%d!\n", cpu);
                 return;
         }

This commit therefore use the resched_cpu() to replace resched_curr()
in the bypass_lb_node() to avoid send-ipi to offline CPUs.

Signed-off-by: Zqiang <qiang.zhang@linux.dev>
Reviewed-by: Andrea Righi <arighi@nvidia.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
kernel/sched/ext.c