mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-10 07:10:27 +00:00
- Use the correct static key checking primitive on the IRQ exit path
- Two fixes for the new forceidle balancer -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEzv7L6UO9uDPlPSfHEsHwGGHeVUoFAmJSsskACgkQEsHwGGHe VUqHRg//UvcM+Ygrx17yhWzHAKi5Mm5sVxSbsY08WU9cQsAQTZ4c9I8Rs2OHkyKC 8k0uQDxrrOeJRcuJoP87pRPqefvep+Gk1873KEvBRUe7+sQATGO6KMshoiPrnYO5 kQzd98rK9vrNu5ZwZFWADnCAYco+5nlsyFVXkRY0ZXhDUvfInus2OLkAm4ULXrt1 FVtO69QXDK3y42NzLSPDCoQyeM/bcCCts6wpR2WWHE2F9zD8tiM8A4DBNpu6Iker wli2la27V4U0236ar7Md2HwD8AkQUuOSGYh9JD5RBNZjJpoHKPNNIv35dI7r9yXz 6/r52pM+idMmfV7MjDWg7cIyHgJKbfBJ54+ibvoqd3Gi5R9IZLJOXGEQaaPLaMT0 7movvEm/NDzHbQDGKmPoiRr4PYinRKFN85zTuzirscbHInMkmshciHmK2TG9Qt9m 2L5DG/LnA0EQkhFyrGoxXTgnZwGWpmpWu7tRZfFTUsjbri4CRGThmQYpl7tAEzF7 TC60WA2RfYXaJgtguZJZfiHXSYfzQriXLd4Mj1WRv6FU+IKedZmAPgjYO2dKu++y We8ZOER8Ysy2lJR/DDQ0waDp5UrTarX/WCFzIWNLKcFLvgLEPKrfeO8AtFHDVUZd 58g9DCn1Jed8ZEYwxpPYpbLVcqQ790oShlU+/EA+FwN5pehuJNU= =elMK -----END PGP SIGNATURE----- Merge tag 'sched_urgent_for_v5.18_rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip Pull scheduler fixes from Borislav Petkov: - Use the correct static key checking primitive on the IRQ exit path - Two fixes for the new forceidle balancer * tag 'sched_urgent_for_v5.18_rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: entry: Fix compile error in dynamic_irqentry_exit_cond_resched() sched: Teach the forced-newidle balancer about CPU affinity limitation. sched/core: Fix forceidle balancing
This commit is contained in:
commit
7136849ea9
@ -392,7 +392,7 @@ DEFINE_STATIC_CALL(irqentry_exit_cond_resched, raw_irqentry_exit_cond_resched);
|
||||
DEFINE_STATIC_KEY_TRUE(sk_dynamic_irqentry_exit_cond_resched);
|
||||
void dynamic_irqentry_exit_cond_resched(void)
|
||||
{
|
||||
if (!static_key_unlikely(&sk_dynamic_irqentry_exit_cond_resched))
|
||||
if (!static_branch_unlikely(&sk_dynamic_irqentry_exit_cond_resched))
|
||||
return;
|
||||
raw_irqentry_exit_cond_resched();
|
||||
}
|
||||
|
@ -5752,6 +5752,8 @@ static inline struct task_struct *pick_task(struct rq *rq)
|
||||
|
||||
extern void task_vruntime_update(struct rq *rq, struct task_struct *p, bool in_fi);
|
||||
|
||||
static void queue_core_balance(struct rq *rq);
|
||||
|
||||
static struct task_struct *
|
||||
pick_next_task(struct rq *rq, struct task_struct *prev, struct rq_flags *rf)
|
||||
{
|
||||
@ -5801,7 +5803,7 @@ pick_next_task(struct rq *rq, struct task_struct *prev, struct rq_flags *rf)
|
||||
}
|
||||
|
||||
rq->core_pick = NULL;
|
||||
return next;
|
||||
goto out;
|
||||
}
|
||||
|
||||
put_prev_task_balance(rq, prev, rf);
|
||||
@ -5851,7 +5853,7 @@ pick_next_task(struct rq *rq, struct task_struct *prev, struct rq_flags *rf)
|
||||
*/
|
||||
WARN_ON_ONCE(fi_before);
|
||||
task_vruntime_update(rq, next, false);
|
||||
goto done;
|
||||
goto out_set_next;
|
||||
}
|
||||
}
|
||||
|
||||
@ -5970,8 +5972,12 @@ pick_next_task(struct rq *rq, struct task_struct *prev, struct rq_flags *rf)
|
||||
resched_curr(rq_i);
|
||||
}
|
||||
|
||||
done:
|
||||
out_set_next:
|
||||
set_next_task(rq, next);
|
||||
out:
|
||||
if (rq->core->core_forceidle_count && next == rq->idle)
|
||||
queue_core_balance(rq);
|
||||
|
||||
return next;
|
||||
}
|
||||
|
||||
@ -6000,7 +6006,7 @@ static bool try_steal_cookie(int this, int that)
|
||||
if (p == src->core_pick || p == src->curr)
|
||||
goto next;
|
||||
|
||||
if (!cpumask_test_cpu(this, &p->cpus_mask))
|
||||
if (!is_cpu_allowed(p, this))
|
||||
goto next;
|
||||
|
||||
if (p->core_occupation > dst->idle->core_occupation)
|
||||
@ -6066,7 +6072,7 @@ static void sched_core_balance(struct rq *rq)
|
||||
|
||||
static DEFINE_PER_CPU(struct callback_head, core_balance_head);
|
||||
|
||||
void queue_core_balance(struct rq *rq)
|
||||
static void queue_core_balance(struct rq *rq)
|
||||
{
|
||||
if (!sched_core_enabled(rq))
|
||||
return;
|
||||
|
@ -434,7 +434,6 @@ static void set_next_task_idle(struct rq *rq, struct task_struct *next, bool fir
|
||||
{
|
||||
update_idle_core(rq);
|
||||
schedstat_inc(rq->sched_goidle);
|
||||
queue_core_balance(rq);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_SMP
|
||||
|
@ -1232,8 +1232,6 @@ static inline bool sched_group_cookie_match(struct rq *rq,
|
||||
return false;
|
||||
}
|
||||
|
||||
extern void queue_core_balance(struct rq *rq);
|
||||
|
||||
static inline bool sched_core_enqueued(struct task_struct *p)
|
||||
{
|
||||
return !RB_EMPTY_NODE(&p->core_node);
|
||||
@ -1267,10 +1265,6 @@ static inline raw_spinlock_t *__rq_lockp(struct rq *rq)
|
||||
return &rq->__lock;
|
||||
}
|
||||
|
||||
static inline void queue_core_balance(struct rq *rq)
|
||||
{
|
||||
}
|
||||
|
||||
static inline bool sched_cpu_cookie_match(struct rq *rq, struct task_struct *p)
|
||||
{
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user