diff options
author | jhb <jhb@FreeBSD.org> | 2003-11-10 19:52:58 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2003-11-10 19:52:58 +0000 |
commit | 28b603f1f4efc0832be1564d59255ce05a5df290 (patch) | |
tree | 81930c72e9df85c9329cc05ac7a2827796a68180 /sys/amd64/acpica/madt.c | |
parent | 4eec3808af89a67e483da72033ae89ffd382105e (diff) | |
download | FreeBSD-src-28b603f1f4efc0832be1564d59255ce05a5df290.zip FreeBSD-src-28b603f1f4efc0832be1564d59255ce05a5df290.tar.gz |
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>
Diffstat (limited to 'sys/amd64/acpica/madt.c')
-rw-r--r-- | sys/amd64/acpica/madt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/acpica/madt.c b/sys/amd64/acpica/madt.c index a1652cf..436f7ad 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); |