Commit 5b505b90 authored by Dave Hansen's avatar Dave Hansen Committed by Linus Torvalds

[PATCH] sparsemem base: teach discontig about sparse ranges

discontig.c has some assumptions that mem_map[]s inside of a node are
contiguous.  Teach it to make sure that each region that it's bringing online
is actually made up of valid ranges of ram.
Written-by: default avatarAndy Whitcroft <apw@shadowen.org>
Signed-off-by: default avatarDave Hansen <haveblue@us.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 348f8b6c
...@@ -216,6 +216,7 @@ static unsigned long calculate_numa_remap_pages(void) ...@@ -216,6 +216,7 @@ static unsigned long calculate_numa_remap_pages(void)
{ {
int nid; int nid;
unsigned long size, reserve_pages = 0; unsigned long size, reserve_pages = 0;
unsigned long pfn;
for_each_online_node(nid) { for_each_online_node(nid) {
/* /*
...@@ -234,6 +235,19 @@ static unsigned long calculate_numa_remap_pages(void) ...@@ -234,6 +235,19 @@ static unsigned long calculate_numa_remap_pages(void)
size = (size + LARGE_PAGE_BYTES - 1) / LARGE_PAGE_BYTES; size = (size + LARGE_PAGE_BYTES - 1) / LARGE_PAGE_BYTES;
/* now the roundup is correct, convert to PAGE_SIZE pages */ /* now the roundup is correct, convert to PAGE_SIZE pages */
size = size * PTRS_PER_PTE; size = size * PTRS_PER_PTE;
/*
* Validate the region we are allocating only contains valid
* pages.
*/
for (pfn = node_end_pfn[nid] - size;
pfn < node_end_pfn[nid]; pfn++)
if (!page_is_ram(pfn))
break;
if (pfn != node_end_pfn[nid])
size = 0;
printk("Reserving %ld pages of KVA for lmem_map of node %d\n", printk("Reserving %ld pages of KVA for lmem_map of node %d\n",
size, nid); size, nid);
node_remap_size[nid] = size; node_remap_size[nid] = size;
......
...@@ -191,7 +191,7 @@ static inline int page_kills_ppro(unsigned long pagenr) ...@@ -191,7 +191,7 @@ static inline int page_kills_ppro(unsigned long pagenr)
extern int is_available_memory(efi_memory_desc_t *); extern int is_available_memory(efi_memory_desc_t *);
static inline int page_is_ram(unsigned long pagenr) int page_is_ram(unsigned long pagenr)
{ {
int i; int i;
unsigned long addr, end; unsigned long addr, end;
......
...@@ -120,6 +120,8 @@ static __inline__ int get_order(unsigned long size) ...@@ -120,6 +120,8 @@ static __inline__ int get_order(unsigned long size)
extern int sysctl_legacy_va_layout; extern int sysctl_legacy_va_layout;
extern int page_is_ram(unsigned long pagenr);
#endif /* __ASSEMBLY__ */ #endif /* __ASSEMBLY__ */
#ifdef __ASSEMBLY__ #ifdef __ASSEMBLY__
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment