diff options
| author | Peter Zijlstra <[email protected]> | 2017-09-07 15:03:51 +0000 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2017-09-12 15:41:04 +0000 |
| commit | edd8e41d2e3cbd6ebe13ead30eb1adc6f48cbb33 (patch) | |
| tree | 3a7dca8c3058d0513b20657e4f1eb30506876f5f /lib/test_bitmap.c | |
| parent | sched/fair: Avoid newidle balance for !active CPUs (diff) | |
| download | kernel-edd8e41d2e3cbd6ebe13ead30eb1adc6f48cbb33.tar.gz kernel-edd8e41d2e3cbd6ebe13ead30eb1adc6f48cbb33.zip | |
sched/fair: Plug hole between hotplug and active_load_balance()
The load balancer applies cpu_active_mask to whatever sched_domains it
finds, however in the case of active_balance there is a hole between
setting rq->{active_balance,push_cpu} and running the stop_machine
work doing the actual migration.
The @push_cpu can go offline in this window, which would result in us
moving a task onto a dead cpu, which is a fairly bad thing.
Double check the active mask before the stop work does the migration.
CPU0 CPU1
<SoftIRQ>
stop_machine(takedown_cpu)
load_balance() cpu_stopper_thread()
... work = multi_cpu_stop
stop_one_cpu_nowait( /* wait for CPU0 */
.func = active_load_balance_cpu_stop
);
</SoftIRQ>
cpu_stopper_thread()
work = multi_cpu_stop
/* sync with CPU1 */
take_cpu_down()
<idle>
play_dead();
work = active_load_balance_cpu_stop
set_task_cpu(p, CPU1); /* oops!! */
Reported-by: Thomas Gleixner <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
Diffstat (limited to 'lib/test_bitmap.c')
0 files changed, 0 insertions, 0 deletions
