parisc: Check return value of smp_boot_one_cpu()

Check return value of smp_boot_one_cpu() whether CPU could be brought up.

Reported-by: John David Anglin <dave.anglin@bell.net>
Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
Helge Deller 2016-09-20 17:29:32 +02:00
Родитель b5d5cf2b8a
Коммит 5baf919dd7
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -412,8 +412,8 @@ void smp_cpus_done(unsigned int cpu_max)
int __cpu_up(unsigned int cpu, struct task_struct *tidle)
{
if (cpu != 0 && cpu < parisc_max_cpus)
smp_boot_one_cpu(cpu, tidle);
if (cpu != 0 && cpu < parisc_max_cpus && smp_boot_one_cpu(cpu, tidle))
return -ENOSYS;
return cpu_online(cpu) ? 0 : -ENOSYS;
}