summaryrefslogtreecommitdiff
path: root/sys/arch/i386
diff options
context:
space:
mode:
authorMike Larkin <mlarkin@cvs.openbsd.org>2013-08-24 23:43:37 +0000
committerMike Larkin <mlarkin@cvs.openbsd.org>2013-08-24 23:43:37 +0000
commit2a6b855f605f4c50b1fa03525bb56b650620e9ab (patch)
tree081dfe744ac84367bd5937ab9bb855a8b0287670 /sys/arch/i386
parent919f41e9bf6a11612918979f0e13f89b21957f58 (diff)
Remove call to sched_start_secondary_cpus in MP unhibernate case until we
can more fully understand the side-effects. Tested by various people back at t2k13, been sitting in my tree since then.
Diffstat (limited to 'sys/arch/i386')
-rw-r--r--sys/arch/i386/i386/hibernate_machdep.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/hibernate_machdep.c b/sys/arch/i386/i386/hibernate_machdep.c
index c5c496b0810..2262a1b07da 100644
--- a/sys/arch/i386/i386/hibernate_machdep.c
+++ b/sys/arch/i386/i386/hibernate_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hibernate_machdep.c,v 1.25 2013/06/04 01:20:23 pirofti Exp $ */
+/* $OpenBSD: hibernate_machdep.c,v 1.26 2013/08/24 23:43:36 mlarkin Exp $ */
/*
* Copyright (c) 2011 Mike Larkin <mlarkin@openbsd.org>
@@ -343,7 +343,6 @@ hibernate_quiesce_cpus(void)
{
/* Start the hatched (but idling) APs */
cpu_boot_secondary_processors();
- sched_start_secondary_cpus();
/* Now shut them down */
acpi_sleep_mp();