mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Only saying you're launching other CPUs if there are more than one to launch.
This commit is contained in:
parent
895567ca47
commit
cc8371bc71
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=96233
1 changed files with 1 additions and 1 deletions
|
@ -532,7 +532,7 @@ smp_handle_ipi(struct trapframe *frame)
|
|||
static void
|
||||
release_aps(void *dummy __unused)
|
||||
{
|
||||
if (bootverbose)
|
||||
if (bootverbose && mp_ncpus > 1)
|
||||
printf("%s: releasing secondary CPUs\n", __func__);
|
||||
atomic_store_rel_int(&aps_ready, 1);
|
||||
|
||||
|
|
Loading…
Reference in a new issue