Increase NUMA hash function nodemap Needed for some big Opteron systems to compute a numa hash function They have more than 12 bits significant address. TBD switch this over to dynamic allocation or use better hash Signed-off-by: Andi Kleen --- include/asm-x86_64/mmzone.h | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Index: linux/include/asm-x86_64/mmzone.h =================================================================== --- linux.orig/include/asm-x86_64/mmzone.h +++ linux/include/asm-x86_64/mmzone.h @@ -12,7 +12,8 @@ #include -#define NODEMAPSIZE 0xfff +/* Should really switch to dynamic allocation at some point */ +#define NODEMAPSIZE 0x4fff /* Simple perfect hash to map physical addresses to node numbers */ struct memnode {