1
0
Fork 0

cpumask: Use modern cpumask style in Xen

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Cc: Jeremy Fitzhardinge <jeremy@xensource.com>
LKML-Reference: <200911031458.38406.rusty@rustcorp.com.au>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
hifive-unleashed-5.1
Rusty Russell 2009-11-03 14:58:38 +10:30 committed by Ingo Molnar
parent 51bb296b09
commit d7d3756c5b
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ static __cpuinit void cpu_bringup(void)
xen_setup_cpu_clockevents();
cpu_set(cpu, cpu_online_map);
set_cpu_online(cpu, true);
percpu_write(cpu_state, CPU_ONLINE);
wmb();

View File

@ -86,7 +86,7 @@ static int setup_cpu_watcher(struct notifier_block *notifier,
for_each_possible_cpu(cpu) {
if (vcpu_online(cpu) == 0) {
(void)cpu_down(cpu);
cpu_clear(cpu, cpu_present_map);
set_cpu_present(cpu, false);
}
}