mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Allow SMP kernels (like GENERIC..) to boot on UP kernels on the alpha.
Pointy hat to: jeff
This commit is contained in:
parent
23186fc1dd
commit
496ffc90e4
1 changed files with 1 additions and 1 deletions
|
|
@ -536,7 +536,7 @@ release_aps(void *dummy __unused)
|
|||
printf("%s: releasing secondary CPUs\n", __func__);
|
||||
atomic_store_rel_int(&aps_ready, 1);
|
||||
|
||||
while (smp_started == 0)
|
||||
while (mp_ncpus > 1 && smp_started == 0)
|
||||
; /* nothing */
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue