xtensa: SMP: mark each possible CPU as present

[ Upstream commit 8b1c42cdd7 ]

Otherwise it is impossible to enable CPUs after booting with 'maxcpus'
parameter.

Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Max Filippov 2019-01-19 00:26:48 -08:00 committed by Greg Kroah-Hartman
parent 7b72724baf
commit c754598b5d

View file

@ -83,7 +83,7 @@ void __init smp_prepare_cpus(unsigned int max_cpus)
{
unsigned i;
for (i = 0; i < max_cpus; ++i)
for_each_possible_cpu(i)
set_cpu_present(i, true);
}