diff options
author | Jack Steiner <steiner@sgi.com> | 2006-04-18 15:00:45 -0500 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2006-04-20 10:16:11 -0700 |
commit | 0d9adec525b87d8ab7e64efeabffb5b3f293056e (patch) | |
tree | c257e02e298cb7ee072379f55242e13be8a163f9 | |
parent | 308a878210cde6ab19df9f392c24db53ad6f56bf (diff) |
[IA64] - Fix MAX_PXM_DOMAINS for systems with > 256 nodes
Correctly size the PXM-related arrays for systems that have more than
256 nodes.
Signed-off-by: Jack Steiner <steiner@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
-rw-r--r-- | include/asm-ia64/acpi.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/asm-ia64/acpi.h b/include/asm-ia64/acpi.h index d734585a23cf..09a5dd0e44a8 100644 --- a/include/asm-ia64/acpi.h +++ b/include/asm-ia64/acpi.h @@ -110,9 +110,8 @@ extern void prefill_possible_map(void); 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 +#if MAX_NUMNODES > 256 +#define MAX_PXM_DOMAINS MAX_NUMNODES #else #define MAX_PXM_DOMAINS (256) #endif |