diff options
author | Yinghai Lu <yhlu.kernel@gmail.com> | 2008-06-01 01:51:51 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-06-03 07:26:24 -0400 |
commit | ba924c81dd5a7a7fb5ded025af7fdd3b61f8ca67 (patch) | |
tree | a451d273a87c813782bbe1cb171af0c1d9b7d4d9 /include/asm-x86/mmzone_32.h | |
parent | 4c1cbafb88490757a38119c41229251369bcecbc (diff) |
x86, numa, 32-bit: increase max_elements to 1024
so every element will represent 64M instead of 256M.
AMD opteron could have HW memory hole remapping, so could have
[0, 8g + 64M) on node0. Reduce element size to 64M to keep that on node 0
Later we need to use find_e820_area() to allocate memory_node_map like
on 64-bit. But need to move memory_present out of populate_mem_map...
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/mmzone_32.h')
-rw-r--r-- | include/asm-x86/mmzone_32.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-x86/mmzone_32.h b/include/asm-x86/mmzone_32.h index faef751181b7..ab0012888c44 100644 --- a/include/asm-x86/mmzone_32.h +++ b/include/asm-x86/mmzone_32.h | |||
@@ -51,14 +51,14 @@ extern int early_pfn_to_nid(unsigned long pfn); | |||
51 | /* | 51 | /* |
52 | * generic node memory support, the following assumptions apply: | 52 | * generic node memory support, the following assumptions apply: |
53 | * | 53 | * |
54 | * 1) memory comes in 256Mb contigious chunks which are either present or not | 54 | * 1) memory comes in 64Mb contigious chunks which are either present or not |
55 | * 2) we will not have more than 64Gb in total | 55 | * 2) we will not have more than 64Gb in total |
56 | * | 56 | * |
57 | * for now assume that 64Gb is max amount of RAM for whole system | 57 | * for now assume that 64Gb is max amount of RAM for whole system |
58 | * 64Gb / 4096bytes/page = 16777216 pages | 58 | * 64Gb / 4096bytes/page = 16777216 pages |
59 | */ | 59 | */ |
60 | #define MAX_NR_PAGES 16777216 | 60 | #define MAX_NR_PAGES 16777216 |
61 | #define MAX_ELEMENTS 256 | 61 | #define MAX_ELEMENTS 1024 |
62 | #define PAGES_PER_ELEMENT (MAX_NR_PAGES/MAX_ELEMENTS) | 62 | #define PAGES_PER_ELEMENT (MAX_NR_PAGES/MAX_ELEMENTS) |
63 | 63 | ||
64 | extern s8 physnode_map[]; | 64 | extern s8 physnode_map[]; |