Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1728263 > unrolled thread

[PATCH 1/4] sched/fair: Avoid newidle balance for !active CPUs

Started byPeter Zijlstra <peterz@infradead.org>
First post2017-09-07 17:20 +0200
Last post2017-09-07 17:20 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 1/4] sched/fair: Avoid newidle balance for !active CPUs Peter Zijlstra <peterz@infradead.org> - 2017-09-07 17:20 +0200

#1728263 — [PATCH 1/4] sched/fair: Avoid newidle balance for !active CPUs

FromPeter Zijlstra <peterz@infradead.org>
Date2017-09-07 17:20 +0200
Subject[PATCH 1/4] sched/fair: Avoid newidle balance for !active CPUs
Message-ID<un6L0-1Qb-19@gated-at.bofh.it>
On CPU hot unplug, when parking the last kthread we'll try and
schedule into idle to kill the CPU. This last schedule can (and does)
trigger newidle balance because at this point the sched domains are
still up because of commit:

  77d1dfda0e79 ("sched/topology, cpuset: Avoid spurious/wrong domain rebuilds")

Obviously pulling tasks to an already offline CPU is a bad idea, and
all balancing operations _should_ be subject to cpu_active_mask, make
it so.

Reported-by: Thomas Gleixner <tglx@linutronix.de>
Fixes: 77d1dfda0e79 ("sched/topology, cpuset: Avoid spurious/wrong domain rebuilds")
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
---
 kernel/sched/fair.c |    6 ++++++
 1 file changed, 6 insertions(+)

--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -8448,6 +8448,12 @@ static int idle_balance(struct rq *this_
 	this_rq->idle_stamp = rq_clock(this_rq);
 
 	/*
+	 * Do not pull tasks towards !active CPUs...
+	 */
+	if (!cpu_active(this_cpu))
+		return 0;
+
+	/*
 	 * This is OK, because current is on_cpu, which avoids it being picked
 	 * for load-balance and preemption/IRQs are still disabled avoiding
 	 * further scheduler activity on it and we're being very careful to

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web