From: Dave Hansen memory_present() is how each arch/subarch will tell sparsemem and discontigmem where all of its memory is. This is what triggers sparse to go out and create its mappings for the memory, as well as allocate the mem_map[]. By: Andy Whitcroft Signed-off-by: Dave Hansen Signed-off-by: Andrew Morton --- 25-akpm/arch/i386/Kconfig | 10 +++++++ 25-akpm/arch/i386/kernel/numaq.c | 8 +++++- 25-akpm/arch/i386/kernel/srat.c | 9 ++++++- 25-akpm/arch/i386/mm/discontig.c | 50 ++++++++++++++++++++++++--------------- 25-akpm/include/linux/mmzone.h | 11 ++++++++ 5 files changed, 67 insertions(+), 21 deletions(-) diff -puN arch/i386/Kconfig~x86-abstract-discontigmem-setup arch/i386/Kconfig --- 25/arch/i386/Kconfig~x86-abstract-discontigmem-setup Wed Mar 2 15:25:05 2005 +++ 25-akpm/arch/i386/Kconfig Wed Mar 2 15:25:05 2005 @@ -777,6 +777,16 @@ config HAVE_ARCH_BOOTMEM_NODE depends on NUMA default y +config HAVE_MEMORY_PRESENT + bool + depends on DISCONTIGMEM + default y + +config NEED_NODE_MEMMAP_SIZE + bool + depends on DISCONTIGMEM + default y + config HIGHPTE bool "Allocate 3rd-level pagetables from highmem" depends on HIGHMEM4G || HIGHMEM64G diff -puN arch/i386/kernel/numaq.c~x86-abstract-discontigmem-setup arch/i386/kernel/numaq.c --- 25/arch/i386/kernel/numaq.c~x86-abstract-discontigmem-setup Wed Mar 2 15:25:05 2005 +++ 25-akpm/arch/i386/kernel/numaq.c Wed Mar 2 15:25:05 2005 @@ -32,7 +32,7 @@ #include /* These are needed before the pgdat's are created */ -extern long node_start_pfn[], node_end_pfn[]; +extern long node_start_pfn[], node_end_pfn[], node_remap_size[]; #define MB_TO_PAGES(addr) ((addr) << (20 - PAGE_SHIFT)) @@ -59,6 +59,12 @@ static void __init smp_dump_qct(void) eq->hi_shrd_mem_start - eq->priv_mem_size); node_end_pfn[node] = MB_TO_PAGES( eq->hi_shrd_mem_start + eq->hi_shrd_mem_size); + + memory_present(node, + node_start_pfn[node], node_end_pfn[node]); + node_remap_size[node] = node_memmap_size_bytes(node, + node_start_pfn[node], + node_end_pfn[node]); } } } diff -puN arch/i386/kernel/srat.c~x86-abstract-discontigmem-setup arch/i386/kernel/srat.c --- 25/arch/i386/kernel/srat.c~x86-abstract-discontigmem-setup Wed Mar 2 15:25:05 2005 +++ 25-akpm/arch/i386/kernel/srat.c Wed Mar 2 15:25:05 2005 @@ -58,7 +58,7 @@ static int num_memory_chunks; /* total static int zholes_size_init; static unsigned long zholes_size[MAX_NUMNODES * MAX_NR_ZONES]; -extern unsigned long node_start_pfn[], node_end_pfn[]; +extern unsigned long node_start_pfn[], node_end_pfn[], node_remap_size[]; extern void * boot_ioremap(unsigned long, unsigned long); @@ -286,6 +286,13 @@ static int __init acpi20_parse_srat(stru } } } + for_each_online_node(nid) { + unsigned long start = node_start_pfn[nid]; + unsigned long end = node_end_pfn[nid]; + + memory_present(nid, start, end); + node_remap_size[nid] = node_memmap_size_bytes(nid, start, end); + } return 1; out_fail: return 0; diff -puN arch/i386/mm/discontig.c~x86-abstract-discontigmem-setup arch/i386/mm/discontig.c --- 25/arch/i386/mm/discontig.c~x86-abstract-discontigmem-setup Wed Mar 2 15:25:05 2005 +++ 25-akpm/arch/i386/mm/discontig.c Wed Mar 2 15:26:08 2005 @@ -60,6 +60,32 @@ bootmem_data_t node0_bdata; */ s8 physnode_map[MAX_ELEMENTS] = { [0 ... (MAX_ELEMENTS - 1)] = -1}; +void memory_present(int nid, unsigned long start, unsigned long end) +{ + unsigned long pfn; + + printk(KERN_INFO "Node: %d, start_pfn: %ld, end_pfn: %ld\n", + nid, start, end); + printk(KERN_DEBUG " Setting physnode_map array to node %d for pfns:\n", nid); + printk(KERN_DEBUG " "); + for (pfn = start; pfn < end; pfn += PAGES_PER_ELEMENT) { + physnode_map[pfn / PAGES_PER_ELEMENT] = nid; + printk(KERN_DEBUG "%ld ", pfn); + } + printk(KERN_DEBUG "\n"); +} + +unsigned long node_memmap_size_bytes(int nid, unsigned long start_pfn, + unsigned long end_pfn) +{ + unsigned long nr_pages = end_pfn - start_pfn; + + if (!nr_pages) + return 0; + + return (nr_pages + 1) * sizeof(struct page); +} + unsigned long node_start_pfn[MAX_NUMNODES]; unsigned long node_end_pfn[MAX_NUMNODES]; @@ -171,9 +197,9 @@ static unsigned long calculate_numa_rema if (node_end_pfn[nid] > max_pfn) node_end_pfn[nid] = max_pfn; - /* calculate the size of the mem_map needed in bytes */ - size = (node_end_pfn[nid] - node_start_pfn[nid] + 1) - * sizeof(struct page) + sizeof(pg_data_t); + /* ensure the remap includes space for the pgdat. */ + size = node_remap_size[nid] + sizeof(pg_data_t); + /* convert size to large (pmd size) pages, rounding up */ size = (size + LARGE_PAGE_BYTES - 1) / LARGE_PAGE_BYTES; /* now the roundup is correct, convert to PAGE_SIZE pages */ @@ -198,7 +224,7 @@ unsigned long __init setup_memory(void) { int nid; unsigned long system_start_pfn, system_max_low_pfn; - unsigned long reserve_pages, pfn; + unsigned long reserve_pages; /* * When mapping a NUMA machine we allocate the node_mem_map arrays @@ -207,23 +233,9 @@ unsigned long __init setup_memory(void) * this space and use it to adjust the boundry between ZONE_NORMAL * and ZONE_HIGHMEM. */ + find_max_pfn(); get_memcfg_numa(); - /* Fill in the physnode_map */ - for_each_online_node(nid) { - printk("Node: %d, start_pfn: %ld, end_pfn: %ld\n", - nid, node_start_pfn[nid], node_end_pfn[nid]); - printk(" Setting physnode_map array to node %d for pfns:\n ", - nid); - for (pfn = node_start_pfn[nid]; pfn < node_end_pfn[nid]; - pfn += PAGES_PER_ELEMENT) { - physnode_map[pfn / PAGES_PER_ELEMENT] = nid; - printk("%ld ", pfn); - } - printk("\n"); - } - - find_max_pfn(); reserve_pages = calculate_numa_remap_pages(); /* partially used pages are not usable - thus round upwards */ diff -puN include/linux/mmzone.h~x86-abstract-discontigmem-setup include/linux/mmzone.h --- 25/include/linux/mmzone.h~x86-abstract-discontigmem-setup Wed Mar 2 15:25:05 2005 +++ 25-akpm/include/linux/mmzone.h Wed Mar 2 15:25:05 2005 @@ -11,6 +11,7 @@ #include #include #include +#include #include /* Free memory management - zoned buddy allocator. */ @@ -278,6 +279,16 @@ void wakeup_kswapd(struct zone *zone, in int zone_watermark_ok(struct zone *z, int order, unsigned long mark, int alloc_type, int can_try_harder, int gfp_high); +#ifdef CONFIG_HAVE_MEMORY_PRESENT +void memory_present(int nid, unsigned long start, unsigned long end); +#else +static inline void memory_present(int nid, unsigned long start, unsigned long end) {} +#endif + +#ifdef CONFIG_NEED_NODE_MEMMAP_SIZE +unsigned long __init node_memmap_size_bytes(int, unsigned long, unsigned long); +#endif + /* * zone_idx() returns 0 for the ZONE_DMA zone, 1 for the ZONE_NORMAL zone, etc. */ _