Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Feb 1999 03:45:29 +0100
From:      Tor.Egge@fast.no
To:        sigpet@islandia.is
Cc:        freebsd-smp@FreeBSD.ORG
Subject:   Re: Problem - Compaq Proliant 2500 and SMP
Message-ID:  <199902260245.DAA08303@midten.fast.no>
In-Reply-To: Your message of "Wed, 24 Feb 1999 14:25:38 %2B0000"
References:  <00256722.004F40F3.00@exch.islandia.is>

next in thread | previous in thread | raw e-mail | index | archive | help
> Hi.
> I've bean scrolling throug the archives and I cant find any solution to my
> problem.
> 
> I have Compaq Proliant 2500 with 2x200 Mhz Pentium Pro CPUs. 128 Mb RAM
> I have configured the APIC option in System Configuration ( BIOS ) to FULL
> TABLE but still it crashes on boot up with this:
> 
> assign_apic_irq:inconsistent table
> MP_LOCK=0000001 ; CPUID=0 ; lapic=01000000

Try this patch:

Index: mp_machdep.c
===================================================================
RCS file: /home/ncvs/src/sys/i386/i386/mp_machdep.c,v
retrieving revision 1.89
diff -u -r1.89 mp_machdep.c
--- mp_machdep.c	1999/01/28 01:59:50	1.89
+++ mp_machdep.c	1999/02/26 02:43:04
@@ -1090,7 +1090,7 @@
 		int_to_apicintpin[x].redirindex = 0;
 	}
 	for (x = 0; x < nintrs; x++) {
-		if (io_apic_ints[x].dst_apic_int <= APIC_INTMAPSIZE &&
+		if (io_apic_ints[x].dst_apic_int < APIC_INTMAPSIZE &&
 		    io_apic_ints[x].dst_apic_id == IO_TO_ID(0) &&
 		    io_apic_ints[x].int_vector == 0xff && 
 		    (io_apic_ints[x].int_type == 0 ||

- Tor Egge


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-smp" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199902260245.DAA08303>