diff options
author | Peter Zijlstra <peterz@infradead.org> | 2016-03-10 06:54:14 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2016-05-06 08:58:24 -0400 |
commit | b2454caa8977ade27292a71f2def5e403e24b4d5 (patch) | |
tree | aead0505616aa4402a99f4a85bf2dc6d001e2a4a /kernel/sched | |
parent | 40190a78f85fec29f0fdd21f6b4415712085711e (diff) |
sched/hotplug: Move sync_rcu to be with set_cpu_active(false)
The sync_rcu stuff is specificically for clearing bits in the active
mask, such that everybody will observe the bit cleared and will not
consider the cleared CPU for load-balancing etc.
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: rt@linutronix.de
Link: http://lkml.kernel.org/r/20160310120025.169219710@linutronix.de
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/sched')
-rw-r--r-- | kernel/sched/core.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/kernel/sched/core.c b/kernel/sched/core.c index 73bcd937d436..0a3107809972 100644 --- a/kernel/sched/core.c +++ b/kernel/sched/core.c | |||
@@ -7112,6 +7112,20 @@ int sched_cpu_deactivate(unsigned int cpu) | |||
7112 | int ret; | 7112 | int ret; |
7113 | 7113 | ||
7114 | set_cpu_active(cpu, false); | 7114 | set_cpu_active(cpu, false); |
7115 | /* | ||
7116 | * We've cleared cpu_active_mask, wait for all preempt-disabled and RCU | ||
7117 | * users of this state to go away such that all new such users will | ||
7118 | * observe it. | ||
7119 | * | ||
7120 | * For CONFIG_PREEMPT we have preemptible RCU and its sync_rcu() might | ||
7121 | * not imply sync_sched(), so wait for both. | ||
7122 | * | ||
7123 | * Do sync before park smpboot threads to take care the rcu boost case. | ||
7124 | */ | ||
7125 | if (IS_ENABLED(CONFIG_PREEMPT)) | ||
7126 | synchronize_rcu_mult(call_rcu, call_rcu_sched); | ||
7127 | else | ||
7128 | synchronize_rcu(); | ||
7115 | 7129 | ||
7116 | if (!sched_smp_initialized) | 7130 | if (!sched_smp_initialized) |
7117 | return 0; | 7131 | return 0; |