This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / arch / i386 / mm / discontig.c
index 569e08e..c1de090 100644 (file)
@@ -56,7 +56,7 @@ bootmem_data_t node0_bdata;
  *     physnode_map[4-7] = 1;
  *     physnode_map[8- ] = -1;
  */
-s8 physnode_map[MAX_ELEMENTS] = { [0 ... (MAX_ELEMENTS - 1)] = -1};
+u8 physnode_map[MAX_ELEMENTS] = { [0 ... (MAX_ELEMENTS - 1)] = -1};
 
 unsigned long node_start_pfn[MAX_NUMNODES];
 unsigned long node_end_pfn[MAX_NUMNODES];
@@ -87,6 +87,8 @@ void set_pmd_pfn(unsigned long vaddr, unsigned long pfn, pgprot_t flags);
  */
 int __init get_memcfg_numa_flat(void)
 {
+       int pfn;
+
        printk("NUMA - single node, flat memory mode\n");
 
        /* Run the memory configuration and find the top of memory. */
@@ -94,7 +96,16 @@ int __init get_memcfg_numa_flat(void)
        node_start_pfn[0]  = 0;
        node_end_pfn[0]   = max_pfn;
 
-        /* Indicate there is one node available. */
+       /* Fill in the physnode_map with our simplistic memory model,
+       * all memory is in node 0.
+       */
+       for (pfn = node_start_pfn[0]; pfn <= node_end_pfn[0];
+              pfn += PAGES_PER_ELEMENT)
+       {
+               physnode_map[pfn / PAGES_PER_ELEMENT] = 0;
+       }
+
+         /* Indicate there is one node available. */
        node_set_online(0);
        numnodes = 1;
        return 1;
@@ -118,11 +129,8 @@ static void __init find_max_pfn_node(int nid)
 }
 
 /* 
- * Allocate memory for the pg_data_t for this node via a crude pre-bootmem
- * method.  For node zero take this from the bottom of memory, for
- * subsequent nodes place them at node_remap_start_vaddr which contains
- * node local data in physically node local memory.  See setup_memory()
- * for details.
+ * Allocate memory for the pg_data_t via a crude pre-bootmem method
+ * We ought to relocate these onto their own node later on during boot.
  */
 static void __init allocate_pgdat(int nid)
 {
@@ -223,41 +231,16 @@ unsigned long __init setup_memory(void)
 {
        int nid;
        unsigned long bootmap_size, 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
-        * from node local memory.  They are then mapped directly into KVA
-        * between zone normal and vmalloc space.  Calculate the size of
-        * this space and use it to adjust the boundry between ZONE_NORMAL
-        * and ZONE_HIGHMEM.
-        */
        get_memcfg_numa();
-
-       /* Fill in the physnode_map */
-       for (nid = 0; nid < numnodes; 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");
-       }
-
        reserve_pages = calculate_numa_remap_pages();
 
        /* partially used pages are not usable - thus round upwards */
        system_start_pfn = min_low_pfn = PFN_UP(init_pg_tables_end);
 
        find_max_pfn();
-       system_max_low_pfn = max_low_pfn = find_max_low_pfn() - reserve_pages;
-       printk("reserve_pages = %ld find_max_low_pfn() ~ %ld\n",
-                       reserve_pages, max_low_pfn + reserve_pages);
-       printk("max_pfn = %ld\n", max_pfn);
+       system_max_low_pfn = max_low_pfn = find_max_low_pfn();
 #ifdef CONFIG_HIGHMEM
        highstart_pfn = highend_pfn = max_pfn;
        if (max_pfn > system_max_low_pfn)
@@ -265,6 +248,7 @@ unsigned long __init setup_memory(void)
        printk(KERN_NOTICE "%ldMB HIGHMEM available.\n",
               pages_to_mb(highend_pfn - highstart_pfn));
 #endif
+       system_max_low_pfn = max_low_pfn = max_low_pfn - reserve_pages;
        printk(KERN_NOTICE "%ldMB LOWMEM available.\n",
                        pages_to_mb(system_max_low_pfn));
        printk("min_low_pfn = %ld, max_low_pfn = %ld, highstart_pfn = %ld\n", 
@@ -274,16 +258,15 @@ unsigned long __init setup_memory(void)
                        (ulong) pfn_to_kaddr(max_low_pfn));
        for (nid = 0; nid < numnodes; nid++) {
                node_remap_start_vaddr[nid] = pfn_to_kaddr(
-                       (highstart_pfn + reserve_pages) - node_remap_offset[nid]);
+                       highstart_pfn - node_remap_offset[nid]);
                allocate_pgdat(nid);
                printk ("node %d will remap to vaddr %08lx - %08lx\n", nid,
                        (ulong) node_remap_start_vaddr[nid],
-                       (ulong) pfn_to_kaddr(highstart_pfn + reserve_pages
+                       (ulong) pfn_to_kaddr(highstart_pfn
                            - node_remap_offset[nid] + node_remap_size[nid]));
        }
        printk("High memory starts at vaddr %08lx\n",
                        (ulong) pfn_to_kaddr(highstart_pfn));
-       vmalloc_earlyreserve = reserve_pages * PAGE_SIZE;
        for (nid = 0; nid < numnodes; nid++)
                find_max_pfn_node(nid);
 
@@ -420,22 +403,17 @@ void __init zone_sizes_init(void)
 void __init set_highmem_pages_init(int bad_ppro) 
 {
 #ifdef CONFIG_HIGHMEM
-       struct zone *zone;
+       int nid;
 
-       for_each_zone(zone) {
+       for (nid = 0; nid < numnodes; nid++) {
                unsigned long node_pfn, node_high_size, zone_start_pfn;
                struct page * zone_mem_map;
                
-               if (!is_highmem(zone))
-                       continue;
-
-               printk("Initializing %s for node %d\n", zone->name,
-                       zone->zone_pgdat->node_id);
-
-               node_high_size = zone->spanned_pages;
-               zone_mem_map = zone->zone_mem_map;
-               zone_start_pfn = zone->zone_start_pfn;
+               node_high_size = NODE_DATA(nid)->node_zones[ZONE_HIGHMEM].spanned_pages;
+               zone_mem_map = NODE_DATA(nid)->node_zones[ZONE_HIGHMEM].zone_mem_map;
+               zone_start_pfn = NODE_DATA(nid)->node_zones[ZONE_HIGHMEM].zone_start_pfn;
 
+               printk("Initializing highpages for node %d\n", nid);
                for (node_pfn = 0; node_pfn < node_high_size; node_pfn++) {
                        one_highpage_init((struct page *)(zone_mem_map + node_pfn),
                                          zone_start_pfn + node_pfn, bad_ppro);
@@ -448,11 +426,7 @@ void __init set_highmem_pages_init(int bad_ppro)
 void __init set_max_mapnr_init(void)
 {
 #ifdef CONFIG_HIGHMEM
-       struct zone *high0 = &NODE_DATA(0)->node_zones[ZONE_HIGHMEM];
-       if (high0->spanned_pages > 0)
-               highmem_start_page = high0->zone_mem_map;
-       else
-               highmem_start_page = pfn_to_page(max_low_pfn+1); 
+       highmem_start_page = NODE_DATA(0)->node_zones[ZONE_HIGHMEM].zone_mem_map;
        num_physpages = highend_pfn;
 #else
        num_physpages = max_low_pfn;