cpu/hotplug: Set cpuhp target for boot cpu
Since the boot cpu does not go through the hotplug process it ends up with state == CPUHP_ONLINE but target == CPUHP_OFFLINE. So set the target to match in boot_cpu_hotplug_init(). Signed-off-by: Phil Auld <pauld@redhat.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Valentin Schneider <vschneid@redhat.com> Link: https://lore.kernel.org/r/20221117162329.3164999-3-pauld@redhat.com
This commit is contained in:
parent
64ea6e44f8
commit
d385febc9a
|
@ -2690,6 +2690,7 @@ void __init boot_cpu_hotplug_init(void)
|
||||||
cpumask_set_cpu(smp_processor_id(), &cpus_booted_once_mask);
|
cpumask_set_cpu(smp_processor_id(), &cpus_booted_once_mask);
|
||||||
#endif
|
#endif
|
||||||
this_cpu_write(cpuhp_state.state, CPUHP_ONLINE);
|
this_cpu_write(cpuhp_state.state, CPUHP_ONLINE);
|
||||||
|
this_cpu_write(cpuhp_state.target, CPUHP_ONLINE);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue