diff options
Diffstat (limited to 'arch/i386/mm/discontig.c')
-rw-r--r-- | arch/i386/mm/discontig.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/i386/mm/discontig.c b/arch/i386/mm/discontig.c index dcc71f969b01..088ca4722183 100644 --- a/arch/i386/mm/discontig.c +++ b/arch/i386/mm/discontig.c | |||
@@ -216,6 +216,7 @@ static unsigned long calculate_numa_remap_pages(void) | |||
216 | { | 216 | { |
217 | int nid; | 217 | int nid; |
218 | unsigned long size, reserve_pages = 0; | 218 | unsigned long size, reserve_pages = 0; |
219 | unsigned long pfn; | ||
219 | 220 | ||
220 | for_each_online_node(nid) { | 221 | for_each_online_node(nid) { |
221 | /* | 222 | /* |
@@ -234,6 +235,19 @@ static unsigned long calculate_numa_remap_pages(void) | |||
234 | size = (size + LARGE_PAGE_BYTES - 1) / LARGE_PAGE_BYTES; | 235 | size = (size + LARGE_PAGE_BYTES - 1) / LARGE_PAGE_BYTES; |
235 | /* now the roundup is correct, convert to PAGE_SIZE pages */ | 236 | /* now the roundup is correct, convert to PAGE_SIZE pages */ |
236 | size = size * PTRS_PER_PTE; | 237 | size = size * PTRS_PER_PTE; |
238 | |||
239 | /* | ||
240 | * Validate the region we are allocating only contains valid | ||
241 | * pages. | ||
242 | */ | ||
243 | for (pfn = node_end_pfn[nid] - size; | ||
244 | pfn < node_end_pfn[nid]; pfn++) | ||
245 | if (!page_is_ram(pfn)) | ||
246 | break; | ||
247 | |||
248 | if (pfn != node_end_pfn[nid]) | ||
249 | size = 0; | ||
250 | |||
237 | printk("Reserving %ld pages of KVA for lmem_map of node %d\n", | 251 | printk("Reserving %ld pages of KVA for lmem_map of node %d\n", |
238 | size, nid); | 252 | size, nid); |
239 | node_remap_size[nid] = size; | 253 | node_remap_size[nid] = size; |