Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 80271
b: refs/heads/master
c: a261670
h: refs/heads/master
i:
  80269: 537222b
  80267: ff66f4c
  80263: 047a5ad
  80255: 6e7548f
v: v3
  • Loading branch information
Yinghai Lu authored and Ingo Molnar committed Jan 30, 2008
1 parent 48ea0c3 commit 6254a93
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 94878efdd0815fe3a4159007b1454b25c7696d53
refs/heads/master: a261670aed2b5b77a20ce9b15fed57abeb126c0e
11 changes: 7 additions & 4 deletions trunk/arch/x86/mm/numa_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,9 @@ void __init setup_node_bootmem(int nodeid, unsigned long start,
node_set_online(nodeid);
}

#ifdef CONFIG_FLAT_NODE_MEM_MAP
/* Initialize final allocator for a zone */
void __init setup_node_zones(int nodeid)
static void __init flat_setup_node_zones(int nodeid)
{
unsigned long start_pfn, end_pfn, memmapsize, limit;

Expand All @@ -250,14 +251,16 @@ void __init setup_node_zones(int nodeid)
*/
memmapsize = sizeof(struct page) * (end_pfn-start_pfn);
limit = end_pfn << PAGE_SHIFT;
#ifdef CONFIG_FLAT_NODE_MEM_MAP

NODE_DATA(nodeid)->node_mem_map =
__alloc_bootmem_core(NODE_DATA(nodeid)->bdata,
memmapsize, SMP_CACHE_BYTES,
round_down(limit - memmapsize, PAGE_SIZE),
limit);
#endif
}
#else
#define flat_setup_node_zones(i) do {} while (0)
#endif

/*
* There are unfortunately some poorly designed mainboards around that
Expand Down Expand Up @@ -581,7 +584,7 @@ void __init paging_init(void)
sparse_init();

for_each_online_node(i)
setup_node_zones(i);
flat_setup_node_zones(i);

free_area_init_nodes(max_zone_pfns);
}
Expand Down

0 comments on commit 6254a93

Please sign in to comment.