mirror of
https://github.com/opnsense/src.git
synced 2026-06-14 19:20:18 -04:00
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>
This commit is contained in:
parent
c00209396c
commit
95020215db
4 changed files with 6 additions and 6 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ __FBSDID("$FreeBSD$");
|
|||
/* string defined by the Intel MP Spec as identifying the MP table */
|
||||
#define MP_SIG 0x5f504d5f /* _MP_ */
|
||||
|
||||
#define NAPICID 16 /* Max number of I/O APIC's */
|
||||
#define NAPICID 32 /* Max number of I/O APIC's */
|
||||
|
||||
#ifdef PC98
|
||||
#define BIOS_BASE (0xe8000)
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ __FBSDID("$FreeBSD$");
|
|||
/* string defined by the Intel MP Spec as identifying the MP table */
|
||||
#define MP_SIG 0x5f504d5f /* _MP_ */
|
||||
|
||||
#define NAPICID 16 /* Max number of I/O APIC's */
|
||||
#define NAPICID 32 /* Max number of I/O APIC's */
|
||||
|
||||
#ifdef PC98
|
||||
#define BIOS_BASE (0xe8000)
|
||||
|
|
|
|||
Loading…
Reference in a new issue