aboutsummaryrefslogtreecommitdiff
path: root/sys/amd64/acpica/madt.c
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2003-11-10 19:52:58 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2003-11-10 19:52:58 +0000
commit95020215dbbf9b4f7f67a6bf5fe155d484448ec0 (patch)
tree81930c72e9df85c9329cc05ac7a2827796a68180 /sys/amd64/acpica/madt.c
parentc00209396cd8d7551fb6b8ddf98bab5b14aef96b (diff)
downloadsrc-95020215dbbf9b4f7f67a6bf5fe155d484448ec0.tar.gz
src-95020215dbbf9b4f7f67a6bf5fe155d484448ec0.zip
Bump APIC ID limits up to 32 since a machine with 16 CPUs will have APIC
IDs for the I/O APICs that are greater than 16. Reported by: John Cagle <john.cagle@hp.com>
Notes
Notes: svn path=/head/; revision=122434
Diffstat (limited to 'sys/amd64/acpica/madt.c')
-rw-r--r--sys/amd64/acpica/madt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/acpica/madt.c b/sys/amd64/acpica/madt.c
index a1652cfd1f4b..436f7ad791db 100644
--- a/sys/amd64/acpica/madt.c
+++ b/sys/amd64/acpica/madt.c
@@ -53,8 +53,8 @@ __FBSDID("$FreeBSD$");
#include <dev/acpica/madt.h>
#include <dev/pci/pcivar.h>
-#define NIOAPICS 16 /* Max number of I/O APICs */
-#define NLAPICS 16 /* Max number of local APICs */
+#define NIOAPICS 32 /* Max number of I/O APICs */
+#define NLAPICS 32 /* Max number of local APICs */
typedef void madt_entry_handler(APIC_HEADER *entry, void *arg);