Commit d385febc authored by Phil Auld's avatar Phil Auld Committed by Thomas Gleixner
Browse files

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: default avatarPhil Auld <pauld@redhat.com>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Reviewed-by: default avatarValentin Schneider <vschneid@redhat.com>
Link: https://lore.kernel.org/r/20221117162329.3164999-3-pauld@redhat.com
parent 64ea6e44
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2690,6 +2690,7 @@ void __init boot_cpu_hotplug_init(void)
	cpumask_set_cpu(smp_processor_id(), &cpus_booted_once_mask);
#endif
	this_cpu_write(cpuhp_state.state, CPUHP_ONLINE);
	this_cpu_write(cpuhp_state.target, CPUHP_ONLINE);
}

/*