Subject: new kernel w/ acpi fails on i386
To: None <current-users@netbsd.org>
From: Kurt Schreiner <ks@ub.uni-mainz.de>
List: current-users
Date: 09/29/2006 10:14:33
Hi,

with rev 1.41 of sys/arch/x86/x86/mpacpi.c I get some "mysterious" lost
interupt errors, failing usb devices etc... Turns out, that the
patch below remedies this (as NLAPIC is needed now, lapic.h has to be
included; maybe ioapic.h can be left out now...)

Kurt

cvs diff -uN mpacpi.c
Index: mpacpi.c
===================================================================
RCS file: /cvsroot/src/sys/arch/x86/x86/mpacpi.c,v
retrieving revision 1.41
diff -u -r1.41 mpacpi.c
--- mpacpi.c    28 Sep 2006 18:01:24 -0000      1.41
+++ mpacpi.c    29 Sep 2006 08:07:40 -0000
@@ -76,6 +76,7 @@
 
 #include "pci.h"
 #include "ioapic.h"
+#include "lapic.h"
 
 /* XXX room for PCI-to-PCI bus */
 #define BUS_BUFFER (16)