From 75877d5a939f21ec9c0a1ae05582ab8fbfb3c2b3 Mon Sep 17 00:00:00 2001 From: Steve Passe Date: Tue, 6 May 1997 07:10:06 +0000 Subject: [PATCH] removed the "#error ..." line preventing casual invokation of SMP_AUTOSTART. autostart appears to be working now, at least on my dual P6. I have no explanation why.... --- sys/kern/init_smp.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sys/kern/init_smp.c b/sys/kern/init_smp.c index ea38c0007e3c..0751f153ab84 100644 --- a/sys/kern/init_smp.c +++ b/sys/kern/init_smp.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: init_smp.c,v 1.4 1997/05/03 18:24:25 fsmp Exp $ + * $Id: init_smp.c,v 1.5 1997/05/04 02:08:09 peter Exp $ */ #include "opt_smp.h" @@ -203,8 +203,7 @@ void *dummy; printf("SMP: All idle procs online.\n"); #if defined(SMP_AUTOSTART) -#error WARNING: this code is broken, remove this line at your own risk! - printf("SMP: Starting 1st AP!\n"); + printf("SMP: *** AUTO *** starting 1st AP!\n"); smp_cpus = 1; smp_active = mp_ncpus; /* XXX */ boot_unlock();