diff options
author | Jack Steiner <steiner@sgi.com> | 2006-03-02 16:02:25 -0600 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2006-03-24 13:14:21 -0800 |
commit | 3ad5ef8b9d0d0cc2d4b2c63e766ef903d482dfc7 (patch) | |
tree | c17d6073e4629bdf59972d5800368c12c5147aff /include/asm-ia64/acpi.h | |
parent | b354a8388891adc5dc5e5fb0130f000152f3fb94 (diff) | |
download | talos-op-linux-3ad5ef8b9d0d0cc2d4b2c63e766ef903d482dfc7.tar.gz talos-op-linux-3ad5ef8b9d0d0cc2d4b2c63e766ef903d482dfc7.zip |
[IA64] Increase max node count on SN platforms
Add support in IA64 acpi for platforms that support more than
256 nodes. Currently, ACPI is limited to 256 nodes because the
proximity domain number is 8-bits.
Long term, we expect to use ACPI3.0 to support >256 nodes.
This patch is an interim solution that works with platforms
that pass the high order bits of the proximity domain in
"reserved" fields of the ACPI tables. This code is enabled
ONLY on SN platforms.
Signed-off-by: Jack Steiner <steiner@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'include/asm-ia64/acpi.h')
-rw-r--r-- | include/asm-ia64/acpi.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-ia64/acpi.h b/include/asm-ia64/acpi.h index f7a517654308..d734585a23cf 100644 --- a/include/asm-ia64/acpi.h +++ b/include/asm-ia64/acpi.h @@ -111,7 +111,11 @@ extern int additional_cpus; #ifdef CONFIG_ACPI_NUMA /* Proximity bitmap length; _PXM is at most 255 (8 bit)*/ +#ifdef CONFIG_IA64_NR_NODES +#define MAX_PXM_DOMAINS CONFIG_IA64_NR_NODES +#else #define MAX_PXM_DOMAINS (256) +#endif extern int __devinitdata pxm_to_nid_map[MAX_PXM_DOMAINS]; extern int __initdata nid_to_pxm_map[MAX_NUMNODES]; #endif |