Skip to content

Commit

Permalink
sched: Extract __schedule_loop()
Browse files Browse the repository at this point in the history
There are currently two implementations of this basic __schedule()
loop, and there is soon to be a third.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20230908162254.999499-4-bigeasy@linutronix.de
  • Loading branch information
KAGA-KOKO authored and Peter Zijlstra committed Sep 20, 2023
1 parent af9f006 commit de1474b
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions kernel/sched/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -6770,16 +6770,21 @@ static void sched_update_worker(struct task_struct *tsk)
}
}

asmlinkage __visible void __sched schedule(void)
static __always_inline void __schedule_loop(unsigned int sched_mode)
{
struct task_struct *tsk = current;

sched_submit_work(tsk);
do {
preempt_disable();
__schedule(SM_NONE);
__schedule(sched_mode);
sched_preempt_enable_no_resched();
} while (need_resched());
}

asmlinkage __visible void __sched schedule(void)
{
struct task_struct *tsk = current;

sched_submit_work(tsk);
__schedule_loop(SM_NONE);
sched_update_worker(tsk);
}
EXPORT_SYMBOL(schedule);
Expand Down Expand Up @@ -6843,11 +6848,7 @@ void __sched schedule_preempt_disabled(void)
#ifdef CONFIG_PREEMPT_RT
void __sched notrace schedule_rtlock(void)
{
do {
preempt_disable();
__schedule(SM_RTLOCK_WAIT);
sched_preempt_enable_no_resched();
} while (need_resched());
__schedule_loop(SM_RTLOCK_WAIT);
}
NOKPROBE_SYMBOL(schedule_rtlock);
#endif
Expand Down

0 comments on commit de1474b

Please sign in to comment.