diff options
Diffstat (limited to 'mm')
-rw-r--r-- | mm/Makefile | 8 | ||||
-rw-r--r-- | mm/bootmem.c | 180 | ||||
-rw-r--r-- | mm/nobootmem.c | 435 | ||||
-rw-r--r-- | mm/page_alloc.c | 71 |
4 files changed, 485 insertions, 209 deletions
diff --git a/mm/Makefile b/mm/Makefile index 2b1b575ae712..42a8326c3e3d 100644 --- a/mm/Makefile +++ b/mm/Makefile | |||
@@ -7,7 +7,7 @@ mmu-$(CONFIG_MMU) := fremap.o highmem.o madvise.o memory.o mincore.o \ | |||
7 | mlock.o mmap.o mprotect.o mremap.o msync.o rmap.o \ | 7 | mlock.o mmap.o mprotect.o mremap.o msync.o rmap.o \ |
8 | vmalloc.o pagewalk.o pgtable-generic.o | 8 | vmalloc.o pagewalk.o pgtable-generic.o |
9 | 9 | ||
10 | obj-y := bootmem.o filemap.o mempool.o oom_kill.o fadvise.o \ | 10 | obj-y := filemap.o mempool.o oom_kill.o fadvise.o \ |
11 | maccess.o page_alloc.o page-writeback.o \ | 11 | maccess.o page_alloc.o page-writeback.o \ |
12 | readahead.o swap.o truncate.o vmscan.o shmem.o \ | 12 | readahead.o swap.o truncate.o vmscan.o shmem.o \ |
13 | prio_tree.o util.o mmzone.o vmstat.o backing-dev.o \ | 13 | prio_tree.o util.o mmzone.o vmstat.o backing-dev.o \ |
@@ -15,6 +15,12 @@ obj-y := bootmem.o filemap.o mempool.o oom_kill.o fadvise.o \ | |||
15 | $(mmu-y) | 15 | $(mmu-y) |
16 | obj-y += init-mm.o | 16 | obj-y += init-mm.o |
17 | 17 | ||
18 | ifdef CONFIG_NO_BOOTMEM | ||
19 | obj-y += nobootmem.o | ||
20 | else | ||
21 | obj-y += bootmem.o | ||
22 | endif | ||
23 | |||
18 | obj-$(CONFIG_HAVE_MEMBLOCK) += memblock.o | 24 | obj-$(CONFIG_HAVE_MEMBLOCK) += memblock.o |
19 | 25 | ||
20 | obj-$(CONFIG_BOUNCE) += bounce.o | 26 | obj-$(CONFIG_BOUNCE) += bounce.o |
diff --git a/mm/bootmem.c b/mm/bootmem.c index 13b0caa9793c..07aeb89e396e 100644 --- a/mm/bootmem.c +++ b/mm/bootmem.c | |||
@@ -23,6 +23,13 @@ | |||
23 | 23 | ||
24 | #include "internal.h" | 24 | #include "internal.h" |
25 | 25 | ||
26 | #ifndef CONFIG_NEED_MULTIPLE_NODES | ||
27 | struct pglist_data __refdata contig_page_data = { | ||
28 | .bdata = &bootmem_node_data[0] | ||
29 | }; | ||
30 | EXPORT_SYMBOL(contig_page_data); | ||
31 | #endif | ||
32 | |||
26 | unsigned long max_low_pfn; | 33 | unsigned long max_low_pfn; |
27 | unsigned long min_low_pfn; | 34 | unsigned long min_low_pfn; |
28 | unsigned long max_pfn; | 35 | unsigned long max_pfn; |
@@ -35,7 +42,6 @@ unsigned long max_pfn; | |||
35 | unsigned long saved_max_pfn; | 42 | unsigned long saved_max_pfn; |
36 | #endif | 43 | #endif |
37 | 44 | ||
38 | #ifndef CONFIG_NO_BOOTMEM | ||
39 | bootmem_data_t bootmem_node_data[MAX_NUMNODES] __initdata; | 45 | bootmem_data_t bootmem_node_data[MAX_NUMNODES] __initdata; |
40 | 46 | ||
41 | static struct list_head bdata_list __initdata = LIST_HEAD_INIT(bdata_list); | 47 | static struct list_head bdata_list __initdata = LIST_HEAD_INIT(bdata_list); |
@@ -146,7 +152,7 @@ unsigned long __init init_bootmem(unsigned long start, unsigned long pages) | |||
146 | min_low_pfn = start; | 152 | min_low_pfn = start; |
147 | return init_bootmem_core(NODE_DATA(0)->bdata, start, 0, pages); | 153 | return init_bootmem_core(NODE_DATA(0)->bdata, start, 0, pages); |
148 | } | 154 | } |
149 | #endif | 155 | |
150 | /* | 156 | /* |
151 | * free_bootmem_late - free bootmem pages directly to page allocator | 157 | * free_bootmem_late - free bootmem pages directly to page allocator |
152 | * @addr: starting address of the range | 158 | * @addr: starting address of the range |
@@ -171,53 +177,6 @@ void __init free_bootmem_late(unsigned long addr, unsigned long size) | |||
171 | } | 177 | } |
172 | } | 178 | } |
173 | 179 | ||
174 | #ifdef CONFIG_NO_BOOTMEM | ||
175 | static void __init __free_pages_memory(unsigned long start, unsigned long end) | ||
176 | { | ||
177 | int i; | ||
178 | unsigned long start_aligned, end_aligned; | ||
179 | int order = ilog2(BITS_PER_LONG); | ||
180 | |||
181 | start_aligned = (start + (BITS_PER_LONG - 1)) & ~(BITS_PER_LONG - 1); | ||
182 | end_aligned = end & ~(BITS_PER_LONG - 1); | ||
183 | |||
184 | if (end_aligned <= start_aligned) { | ||
185 | for (i = start; i < end; i++) | ||
186 | __free_pages_bootmem(pfn_to_page(i), 0); | ||
187 | |||
188 | return; | ||
189 | } | ||
190 | |||
191 | for (i = start; i < start_aligned; i++) | ||
192 | __free_pages_bootmem(pfn_to_page(i), 0); | ||
193 | |||
194 | for (i = start_aligned; i < end_aligned; i += BITS_PER_LONG) | ||
195 | __free_pages_bootmem(pfn_to_page(i), order); | ||
196 | |||
197 | for (i = end_aligned; i < end; i++) | ||
198 | __free_pages_bootmem(pfn_to_page(i), 0); | ||
199 | } | ||
200 | |||
201 | unsigned long __init free_all_memory_core_early(int nodeid) | ||
202 | { | ||
203 | int i; | ||
204 | u64 start, end; | ||
205 | unsigned long count = 0; | ||
206 | struct range *range = NULL; | ||
207 | int nr_range; | ||
208 | |||
209 | nr_range = get_free_all_memory_range(&range, nodeid); | ||
210 | |||
211 | for (i = 0; i < nr_range; i++) { | ||
212 | start = range[i].start; | ||
213 | end = range[i].end; | ||
214 | count += end - start; | ||
215 | __free_pages_memory(start, end); | ||
216 | } | ||
217 | |||
218 | return count; | ||
219 | } | ||
220 | #else | ||
221 | static unsigned long __init free_all_bootmem_core(bootmem_data_t *bdata) | 180 | static unsigned long __init free_all_bootmem_core(bootmem_data_t *bdata) |
222 | { | 181 | { |
223 | int aligned; | 182 | int aligned; |
@@ -278,7 +237,6 @@ static unsigned long __init free_all_bootmem_core(bootmem_data_t *bdata) | |||
278 | 237 | ||
279 | return count; | 238 | return count; |
280 | } | 239 | } |
281 | #endif | ||
282 | 240 | ||
283 | /** | 241 | /** |
284 | * free_all_bootmem_node - release a node's free pages to the buddy allocator | 242 | * free_all_bootmem_node - release a node's free pages to the buddy allocator |
@@ -289,12 +247,7 @@ static unsigned long __init free_all_bootmem_core(bootmem_data_t *bdata) | |||
289 | unsigned long __init free_all_bootmem_node(pg_data_t *pgdat) | 247 | unsigned long __init free_all_bootmem_node(pg_data_t *pgdat) |
290 | { | 248 | { |
291 | register_page_bootmem_info_node(pgdat); | 249 | register_page_bootmem_info_node(pgdat); |
292 | #ifdef CONFIG_NO_BOOTMEM | ||
293 | /* free_all_memory_core_early(MAX_NUMNODES) will be called later */ | ||
294 | return 0; | ||
295 | #else | ||
296 | return free_all_bootmem_core(pgdat->bdata); | 250 | return free_all_bootmem_core(pgdat->bdata); |
297 | #endif | ||
298 | } | 251 | } |
299 | 252 | ||
300 | /** | 253 | /** |
@@ -304,16 +257,6 @@ unsigned long __init free_all_bootmem_node(pg_data_t *pgdat) | |||
304 | */ | 257 | */ |
305 | unsigned long __init free_all_bootmem(void) | 258 | unsigned long __init free_all_bootmem(void) |
306 | { | 259 | { |
307 | #ifdef CONFIG_NO_BOOTMEM | ||
308 | /* | ||
309 | * We need to use MAX_NUMNODES instead of NODE_DATA(0)->node_id | ||
310 | * because in some case like Node0 doesnt have RAM installed | ||
311 | * low ram will be on Node1 | ||
312 | * Use MAX_NUMNODES will make sure all ranges in early_node_map[] | ||
313 | * will be used instead of only Node0 related | ||
314 | */ | ||
315 | return free_all_memory_core_early(MAX_NUMNODES); | ||
316 | #else | ||
317 | unsigned long total_pages = 0; | 260 | unsigned long total_pages = 0; |
318 | bootmem_data_t *bdata; | 261 | bootmem_data_t *bdata; |
319 | 262 | ||
@@ -321,10 +264,8 @@ unsigned long __init free_all_bootmem(void) | |||
321 | total_pages += free_all_bootmem_core(bdata); | 264 | total_pages += free_all_bootmem_core(bdata); |
322 | 265 | ||
323 | return total_pages; | 266 | return total_pages; |
324 | #endif | ||
325 | } | 267 | } |
326 | 268 | ||
327 | #ifndef CONFIG_NO_BOOTMEM | ||
328 | static void __init __free(bootmem_data_t *bdata, | 269 | static void __init __free(bootmem_data_t *bdata, |
329 | unsigned long sidx, unsigned long eidx) | 270 | unsigned long sidx, unsigned long eidx) |
330 | { | 271 | { |
@@ -419,7 +360,6 @@ static int __init mark_bootmem(unsigned long start, unsigned long end, | |||
419 | } | 360 | } |
420 | BUG(); | 361 | BUG(); |
421 | } | 362 | } |
422 | #endif | ||
423 | 363 | ||
424 | /** | 364 | /** |
425 | * free_bootmem_node - mark a page range as usable | 365 | * free_bootmem_node - mark a page range as usable |
@@ -434,10 +374,6 @@ static int __init mark_bootmem(unsigned long start, unsigned long end, | |||
434 | void __init free_bootmem_node(pg_data_t *pgdat, unsigned long physaddr, | 374 | void __init free_bootmem_node(pg_data_t *pgdat, unsigned long physaddr, |
435 | unsigned long size) | 375 | unsigned long size) |
436 | { | 376 | { |
437 | #ifdef CONFIG_NO_BOOTMEM | ||
438 | kmemleak_free_part(__va(physaddr), size); | ||
439 | memblock_x86_free_range(physaddr, physaddr + size); | ||
440 | #else | ||
441 | unsigned long start, end; | 377 | unsigned long start, end; |
442 | 378 | ||
443 | kmemleak_free_part(__va(physaddr), size); | 379 | kmemleak_free_part(__va(physaddr), size); |
@@ -446,7 +382,6 @@ void __init free_bootmem_node(pg_data_t *pgdat, unsigned long physaddr, | |||
446 | end = PFN_DOWN(physaddr + size); | 382 | end = PFN_DOWN(physaddr + size); |
447 | 383 | ||
448 | mark_bootmem_node(pgdat->bdata, start, end, 0, 0); | 384 | mark_bootmem_node(pgdat->bdata, start, end, 0, 0); |
449 | #endif | ||
450 | } | 385 | } |
451 | 386 | ||
452 | /** | 387 | /** |
@@ -460,10 +395,6 @@ void __init free_bootmem_node(pg_data_t *pgdat, unsigned long physaddr, | |||
460 | */ | 395 | */ |
461 | void __init free_bootmem(unsigned long addr, unsigned long size) | 396 | void __init free_bootmem(unsigned long addr, unsigned long size) |
462 | { | 397 | { |
463 | #ifdef CONFIG_NO_BOOTMEM | ||
464 | kmemleak_free_part(__va(addr), size); | ||
465 | memblock_x86_free_range(addr, addr + size); | ||
466 | #else | ||
467 | unsigned long start, end; | 398 | unsigned long start, end; |
468 | 399 | ||
469 | kmemleak_free_part(__va(addr), size); | 400 | kmemleak_free_part(__va(addr), size); |
@@ -472,7 +403,6 @@ void __init free_bootmem(unsigned long addr, unsigned long size) | |||
472 | end = PFN_DOWN(addr + size); | 403 | end = PFN_DOWN(addr + size); |
473 | 404 | ||
474 | mark_bootmem(start, end, 0, 0); | 405 | mark_bootmem(start, end, 0, 0); |
475 | #endif | ||
476 | } | 406 | } |
477 | 407 | ||
478 | /** | 408 | /** |
@@ -489,17 +419,12 @@ void __init free_bootmem(unsigned long addr, unsigned long size) | |||
489 | int __init reserve_bootmem_node(pg_data_t *pgdat, unsigned long physaddr, | 419 | int __init reserve_bootmem_node(pg_data_t *pgdat, unsigned long physaddr, |
490 | unsigned long size, int flags) | 420 | unsigned long size, int flags) |
491 | { | 421 | { |
492 | #ifdef CONFIG_NO_BOOTMEM | ||
493 | panic("no bootmem"); | ||
494 | return 0; | ||
495 | #else | ||
496 | unsigned long start, end; | 422 | unsigned long start, end; |
497 | 423 | ||
498 | start = PFN_DOWN(physaddr); | 424 | start = PFN_DOWN(physaddr); |
499 | end = PFN_UP(physaddr + size); | 425 | end = PFN_UP(physaddr + size); |
500 | 426 | ||
501 | return mark_bootmem_node(pgdat->bdata, start, end, 1, flags); | 427 | return mark_bootmem_node(pgdat->bdata, start, end, 1, flags); |
502 | #endif | ||
503 | } | 428 | } |
504 | 429 | ||
505 | /** | 430 | /** |
@@ -515,20 +440,14 @@ int __init reserve_bootmem_node(pg_data_t *pgdat, unsigned long physaddr, | |||
515 | int __init reserve_bootmem(unsigned long addr, unsigned long size, | 440 | int __init reserve_bootmem(unsigned long addr, unsigned long size, |
516 | int flags) | 441 | int flags) |
517 | { | 442 | { |
518 | #ifdef CONFIG_NO_BOOTMEM | ||
519 | panic("no bootmem"); | ||
520 | return 0; | ||
521 | #else | ||
522 | unsigned long start, end; | 443 | unsigned long start, end; |
523 | 444 | ||
524 | start = PFN_DOWN(addr); | 445 | start = PFN_DOWN(addr); |
525 | end = PFN_UP(addr + size); | 446 | end = PFN_UP(addr + size); |
526 | 447 | ||
527 | return mark_bootmem(start, end, 1, flags); | 448 | return mark_bootmem(start, end, 1, flags); |
528 | #endif | ||
529 | } | 449 | } |
530 | 450 | ||
531 | #ifndef CONFIG_NO_BOOTMEM | ||
532 | int __weak __init reserve_bootmem_generic(unsigned long phys, unsigned long len, | 451 | int __weak __init reserve_bootmem_generic(unsigned long phys, unsigned long len, |
533 | int flags) | 452 | int flags) |
534 | { | 453 | { |
@@ -685,33 +604,12 @@ static void * __init alloc_arch_preferred_bootmem(bootmem_data_t *bdata, | |||
685 | #endif | 604 | #endif |
686 | return NULL; | 605 | return NULL; |
687 | } | 606 | } |
688 | #endif | ||
689 | 607 | ||
690 | static void * __init ___alloc_bootmem_nopanic(unsigned long size, | 608 | static void * __init ___alloc_bootmem_nopanic(unsigned long size, |
691 | unsigned long align, | 609 | unsigned long align, |
692 | unsigned long goal, | 610 | unsigned long goal, |
693 | unsigned long limit) | 611 | unsigned long limit) |
694 | { | 612 | { |
695 | #ifdef CONFIG_NO_BOOTMEM | ||
696 | void *ptr; | ||
697 | |||
698 | if (WARN_ON_ONCE(slab_is_available())) | ||
699 | return kzalloc(size, GFP_NOWAIT); | ||
700 | |||
701 | restart: | ||
702 | |||
703 | ptr = __alloc_memory_core_early(MAX_NUMNODES, size, align, goal, limit); | ||
704 | |||
705 | if (ptr) | ||
706 | return ptr; | ||
707 | |||
708 | if (goal != 0) { | ||
709 | goal = 0; | ||
710 | goto restart; | ||
711 | } | ||
712 | |||
713 | return NULL; | ||
714 | #else | ||
715 | bootmem_data_t *bdata; | 613 | bootmem_data_t *bdata; |
716 | void *region; | 614 | void *region; |
717 | 615 | ||
@@ -737,7 +635,6 @@ restart: | |||
737 | } | 635 | } |
738 | 636 | ||
739 | return NULL; | 637 | return NULL; |
740 | #endif | ||
741 | } | 638 | } |
742 | 639 | ||
743 | /** | 640 | /** |
@@ -758,10 +655,6 @@ void * __init __alloc_bootmem_nopanic(unsigned long size, unsigned long align, | |||
758 | { | 655 | { |
759 | unsigned long limit = 0; | 656 | unsigned long limit = 0; |
760 | 657 | ||
761 | #ifdef CONFIG_NO_BOOTMEM | ||
762 | limit = -1UL; | ||
763 | #endif | ||
764 | |||
765 | return ___alloc_bootmem_nopanic(size, align, goal, limit); | 658 | return ___alloc_bootmem_nopanic(size, align, goal, limit); |
766 | } | 659 | } |
767 | 660 | ||
@@ -798,14 +691,9 @@ void * __init __alloc_bootmem(unsigned long size, unsigned long align, | |||
798 | { | 691 | { |
799 | unsigned long limit = 0; | 692 | unsigned long limit = 0; |
800 | 693 | ||
801 | #ifdef CONFIG_NO_BOOTMEM | ||
802 | limit = -1UL; | ||
803 | #endif | ||
804 | |||
805 | return ___alloc_bootmem(size, align, goal, limit); | 694 | return ___alloc_bootmem(size, align, goal, limit); |
806 | } | 695 | } |
807 | 696 | ||
808 | #ifndef CONFIG_NO_BOOTMEM | ||
809 | static void * __init ___alloc_bootmem_node(bootmem_data_t *bdata, | 697 | static void * __init ___alloc_bootmem_node(bootmem_data_t *bdata, |
810 | unsigned long size, unsigned long align, | 698 | unsigned long size, unsigned long align, |
811 | unsigned long goal, unsigned long limit) | 699 | unsigned long goal, unsigned long limit) |
@@ -822,7 +710,6 @@ static void * __init ___alloc_bootmem_node(bootmem_data_t *bdata, | |||
822 | 710 | ||
823 | return ___alloc_bootmem(size, align, goal, limit); | 711 | return ___alloc_bootmem(size, align, goal, limit); |
824 | } | 712 | } |
825 | #endif | ||
826 | 713 | ||
827 | /** | 714 | /** |
828 | * __alloc_bootmem_node - allocate boot memory from a specific node | 715 | * __alloc_bootmem_node - allocate boot memory from a specific node |
@@ -842,24 +729,10 @@ static void * __init ___alloc_bootmem_node(bootmem_data_t *bdata, | |||
842 | void * __init __alloc_bootmem_node(pg_data_t *pgdat, unsigned long size, | 729 | void * __init __alloc_bootmem_node(pg_data_t *pgdat, unsigned long size, |
843 | unsigned long align, unsigned long goal) | 730 | unsigned long align, unsigned long goal) |
844 | { | 731 | { |
845 | void *ptr; | ||
846 | |||
847 | if (WARN_ON_ONCE(slab_is_available())) | 732 | if (WARN_ON_ONCE(slab_is_available())) |
848 | return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id); | 733 | return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id); |
849 | 734 | ||
850 | #ifdef CONFIG_NO_BOOTMEM | 735 | return ___alloc_bootmem_node(pgdat->bdata, size, align, goal, 0); |
851 | ptr = __alloc_memory_core_early(pgdat->node_id, size, align, | ||
852 | goal, -1ULL); | ||
853 | if (ptr) | ||
854 | return ptr; | ||
855 | |||
856 | ptr = __alloc_memory_core_early(MAX_NUMNODES, size, align, | ||
857 | goal, -1ULL); | ||
858 | #else | ||
859 | ptr = ___alloc_bootmem_node(pgdat->bdata, size, align, goal, 0); | ||
860 | #endif | ||
861 | |||
862 | return ptr; | ||
863 | } | 736 | } |
864 | 737 | ||
865 | void * __init __alloc_bootmem_node_high(pg_data_t *pgdat, unsigned long size, | 738 | void * __init __alloc_bootmem_node_high(pg_data_t *pgdat, unsigned long size, |
@@ -880,13 +753,8 @@ void * __init __alloc_bootmem_node_high(pg_data_t *pgdat, unsigned long size, | |||
880 | unsigned long new_goal; | 753 | unsigned long new_goal; |
881 | 754 | ||
882 | new_goal = MAX_DMA32_PFN << PAGE_SHIFT; | 755 | new_goal = MAX_DMA32_PFN << PAGE_SHIFT; |
883 | #ifdef CONFIG_NO_BOOTMEM | ||
884 | ptr = __alloc_memory_core_early(pgdat->node_id, size, align, | ||
885 | new_goal, -1ULL); | ||
886 | #else | ||
887 | ptr = alloc_bootmem_core(pgdat->bdata, size, align, | 756 | ptr = alloc_bootmem_core(pgdat->bdata, size, align, |
888 | new_goal, 0); | 757 | new_goal, 0); |
889 | #endif | ||
890 | if (ptr) | 758 | if (ptr) |
891 | return ptr; | 759 | return ptr; |
892 | } | 760 | } |
@@ -907,16 +775,6 @@ void * __init __alloc_bootmem_node_high(pg_data_t *pgdat, unsigned long size, | |||
907 | void * __init alloc_bootmem_section(unsigned long size, | 775 | void * __init alloc_bootmem_section(unsigned long size, |
908 | unsigned long section_nr) | 776 | unsigned long section_nr) |
909 | { | 777 | { |
910 | #ifdef CONFIG_NO_BOOTMEM | ||
911 | unsigned long pfn, goal, limit; | ||
912 | |||
913 | pfn = section_nr_to_pfn(section_nr); | ||
914 | goal = pfn << PAGE_SHIFT; | ||
915 | limit = section_nr_to_pfn(section_nr + 1) << PAGE_SHIFT; | ||
916 | |||
917 | return __alloc_memory_core_early(early_pfn_to_nid(pfn), size, | ||
918 | SMP_CACHE_BYTES, goal, limit); | ||
919 | #else | ||
920 | bootmem_data_t *bdata; | 778 | bootmem_data_t *bdata; |
921 | unsigned long pfn, goal, limit; | 779 | unsigned long pfn, goal, limit; |
922 | 780 | ||
@@ -926,7 +784,6 @@ void * __init alloc_bootmem_section(unsigned long size, | |||
926 | bdata = &bootmem_node_data[early_pfn_to_nid(pfn)]; | 784 | bdata = &bootmem_node_data[early_pfn_to_nid(pfn)]; |
927 | 785 | ||
928 | return alloc_bootmem_core(bdata, size, SMP_CACHE_BYTES, goal, limit); | 786 | return alloc_bootmem_core(bdata, size, SMP_CACHE_BYTES, goal, limit); |
929 | #endif | ||
930 | } | 787 | } |
931 | #endif | 788 | #endif |
932 | 789 | ||
@@ -938,16 +795,11 @@ void * __init __alloc_bootmem_node_nopanic(pg_data_t *pgdat, unsigned long size, | |||
938 | if (WARN_ON_ONCE(slab_is_available())) | 795 | if (WARN_ON_ONCE(slab_is_available())) |
939 | return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id); | 796 | return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id); |
940 | 797 | ||
941 | #ifdef CONFIG_NO_BOOTMEM | ||
942 | ptr = __alloc_memory_core_early(pgdat->node_id, size, align, | ||
943 | goal, -1ULL); | ||
944 | #else | ||
945 | ptr = alloc_arch_preferred_bootmem(pgdat->bdata, size, align, goal, 0); | 798 | ptr = alloc_arch_preferred_bootmem(pgdat->bdata, size, align, goal, 0); |
946 | if (ptr) | 799 | if (ptr) |
947 | return ptr; | 800 | return ptr; |
948 | 801 | ||
949 | ptr = alloc_bootmem_core(pgdat->bdata, size, align, goal, 0); | 802 | ptr = alloc_bootmem_core(pgdat->bdata, size, align, goal, 0); |
950 | #endif | ||
951 | if (ptr) | 803 | if (ptr) |
952 | return ptr; | 804 | return ptr; |
953 | 805 | ||
@@ -995,21 +847,9 @@ void * __init __alloc_bootmem_low(unsigned long size, unsigned long align, | |||
995 | void * __init __alloc_bootmem_low_node(pg_data_t *pgdat, unsigned long size, | 847 | void * __init __alloc_bootmem_low_node(pg_data_t *pgdat, unsigned long size, |
996 | unsigned long align, unsigned long goal) | 848 | unsigned long align, unsigned long goal) |
997 | { | 849 | { |
998 | void *ptr; | ||
999 | |||
1000 | if (WARN_ON_ONCE(slab_is_available())) | 850 | if (WARN_ON_ONCE(slab_is_available())) |
1001 | return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id); | 851 | return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id); |
1002 | 852 | ||
1003 | #ifdef CONFIG_NO_BOOTMEM | 853 | return ___alloc_bootmem_node(pgdat->bdata, size, align, |
1004 | ptr = __alloc_memory_core_early(pgdat->node_id, size, align, | ||
1005 | goal, ARCH_LOW_ADDRESS_LIMIT); | 854 | goal, ARCH_LOW_ADDRESS_LIMIT); |
1006 | if (ptr) | ||
1007 | return ptr; | ||
1008 | ptr = __alloc_memory_core_early(MAX_NUMNODES, size, align, | ||
1009 | goal, ARCH_LOW_ADDRESS_LIMIT); | ||
1010 | #else | ||
1011 | ptr = ___alloc_bootmem_node(pgdat->bdata, size, align, | ||
1012 | goal, ARCH_LOW_ADDRESS_LIMIT); | ||
1013 | #endif | ||
1014 | return ptr; | ||
1015 | } | 855 | } |
diff --git a/mm/nobootmem.c b/mm/nobootmem.c new file mode 100644 index 000000000000..e2bdb07079ce --- /dev/null +++ b/mm/nobootmem.c | |||
@@ -0,0 +1,435 @@ | |||
1 | /* | ||
2 | * bootmem - A boot-time physical memory allocator and configurator | ||
3 | * | ||
4 | * Copyright (C) 1999 Ingo Molnar | ||
5 | * 1999 Kanoj Sarcar, SGI | ||
6 | * 2008 Johannes Weiner | ||
7 | * | ||
8 | * Access to this subsystem has to be serialized externally (which is true | ||
9 | * for the boot process anyway). | ||
10 | */ | ||
11 | #include <linux/init.h> | ||
12 | #include <linux/pfn.h> | ||
13 | #include <linux/slab.h> | ||
14 | #include <linux/bootmem.h> | ||
15 | #include <linux/module.h> | ||
16 | #include <linux/kmemleak.h> | ||
17 | #include <linux/range.h> | ||
18 | #include <linux/memblock.h> | ||
19 | |||
20 | #include <asm/bug.h> | ||
21 | #include <asm/io.h> | ||
22 | #include <asm/processor.h> | ||
23 | |||
24 | #include "internal.h" | ||
25 | |||
26 | #ifndef CONFIG_NEED_MULTIPLE_NODES | ||
27 | struct pglist_data __refdata contig_page_data; | ||
28 | EXPORT_SYMBOL(contig_page_data); | ||
29 | #endif | ||
30 | |||
31 | unsigned long max_low_pfn; | ||
32 | unsigned long min_low_pfn; | ||
33 | unsigned long max_pfn; | ||
34 | |||
35 | #ifdef CONFIG_CRASH_DUMP | ||
36 | /* | ||
37 | * If we have booted due to a crash, max_pfn will be a very low value. We need | ||
38 | * to know the amount of memory that the previous kernel used. | ||
39 | */ | ||
40 | unsigned long saved_max_pfn; | ||
41 | #endif | ||
42 | |||
43 | static void * __init __alloc_memory_core_early(int nid, u64 size, u64 align, | ||
44 | u64 goal, u64 limit) | ||
45 | { | ||
46 | void *ptr; | ||
47 | u64 addr; | ||
48 | |||
49 | if (limit > memblock.current_limit) | ||
50 | limit = memblock.current_limit; | ||
51 | |||
52 | addr = find_memory_core_early(nid, size, align, goal, limit); | ||
53 | |||
54 | if (addr == MEMBLOCK_ERROR) | ||
55 | return NULL; | ||
56 | |||
57 | ptr = phys_to_virt(addr); | ||
58 | memset(ptr, 0, size); | ||
59 | memblock_x86_reserve_range(addr, addr + size, "BOOTMEM"); | ||
60 | /* | ||
61 | * The min_count is set to 0 so that bootmem allocated blocks | ||
62 | * are never reported as leaks. | ||
63 | */ | ||
64 | kmemleak_alloc(ptr, size, 0, 0); | ||
65 | return ptr; | ||
66 | } | ||
67 | |||
68 | /* | ||
69 | * free_bootmem_late - free bootmem pages directly to page allocator | ||
70 | * @addr: starting address of the range | ||
71 | * @size: size of the range in bytes | ||
72 | * | ||
73 | * This is only useful when the bootmem allocator has already been torn | ||
74 | * down, but we are still initializing the system. Pages are given directly | ||
75 | * to the page allocator, no bootmem metadata is updated because it is gone. | ||
76 | */ | ||
77 | void __init free_bootmem_late(unsigned long addr, unsigned long size) | ||
78 | { | ||
79 | unsigned long cursor, end; | ||
80 | |||
81 | kmemleak_free_part(__va(addr), size); | ||
82 | |||
83 | cursor = PFN_UP(addr); | ||
84 | end = PFN_DOWN(addr + size); | ||
85 | |||
86 | for (; cursor < end; cursor++) { | ||
87 | __free_pages_bootmem(pfn_to_page(cursor), 0); | ||
88 | totalram_pages++; | ||
89 | } | ||
90 | } | ||
91 | |||
92 | static void __init __free_pages_memory(unsigned long start, unsigned long end) | ||
93 | { | ||
94 | int i; | ||
95 | unsigned long start_aligned, end_aligned; | ||
96 | int order = ilog2(BITS_PER_LONG); | ||
97 | |||
98 | start_aligned = (start + (BITS_PER_LONG - 1)) & ~(BITS_PER_LONG - 1); | ||
99 | end_aligned = end & ~(BITS_PER_LONG - 1); | ||
100 | |||
101 | if (end_aligned <= start_aligned) { | ||
102 | for (i = start; i < end; i++) | ||
103 | __free_pages_bootmem(pfn_to_page(i), 0); | ||
104 | |||
105 | return; | ||
106 | } | ||
107 | |||
108 | for (i = start; i < start_aligned; i++) | ||
109 | __free_pages_bootmem(pfn_to_page(i), 0); | ||
110 | |||
111 | for (i = start_aligned; i < end_aligned; i += BITS_PER_LONG) | ||
112 | __free_pages_bootmem(pfn_to_page(i), order); | ||
113 | |||
114 | for (i = end_aligned; i < end; i++) | ||
115 | __free_pages_bootmem(pfn_to_page(i), 0); | ||
116 | } | ||
117 | |||
118 | unsigned long __init free_all_memory_core_early(int nodeid) | ||
119 | { | ||
120 | int i; | ||
121 | u64 start, end; | ||
122 | unsigned long count = 0; | ||
123 | struct range *range = NULL; | ||
124 | int nr_range; | ||
125 | |||
126 | nr_range = get_free_all_memory_range(&range, nodeid); | ||
127 | |||
128 | for (i = 0; i < nr_range; i++) { | ||
129 | start = range[i].start; | ||
130 | end = range[i].end; | ||
131 | count += end - start; | ||
132 | __free_pages_memory(start, end); | ||
133 | } | ||
134 | |||
135 | return count; | ||
136 | } | ||
137 | |||
138 | /** | ||
139 | * free_all_bootmem_node - release a node's free pages to the buddy allocator | ||
140 | * @pgdat: node to be released | ||
141 | * | ||
142 | * Returns the number of pages actually released. | ||
143 | */ | ||
144 | unsigned long __init free_all_bootmem_node(pg_data_t *pgdat) | ||
145 | { | ||
146 | register_page_bootmem_info_node(pgdat); | ||
147 | |||
148 | /* free_all_memory_core_early(MAX_NUMNODES) will be called later */ | ||
149 | return 0; | ||
150 | } | ||
151 | |||
152 | /** | ||
153 | * free_all_bootmem - release free pages to the buddy allocator | ||
154 | * | ||
155 | * Returns the number of pages actually released. | ||
156 | */ | ||
157 | unsigned long __init free_all_bootmem(void) | ||
158 | { | ||
159 | /* | ||
160 | * We need to use MAX_NUMNODES instead of NODE_DATA(0)->node_id | ||
161 | * because in some case like Node0 doesnt have RAM installed | ||
162 | * low ram will be on Node1 | ||
163 | * Use MAX_NUMNODES will make sure all ranges in early_node_map[] | ||
164 | * will be used instead of only Node0 related | ||
165 | */ | ||
166 | return free_all_memory_core_early(MAX_NUMNODES); | ||
167 | } | ||
168 | |||
169 | /** | ||
170 | * free_bootmem_node - mark a page range as usable | ||
171 | * @pgdat: node the range resides on | ||
172 | * @physaddr: starting address of the range | ||
173 | * @size: size of the range in bytes | ||
174 | * | ||
175 | * Partial pages will be considered reserved and left as they are. | ||
176 | * | ||
177 | * The range must reside completely on the specified node. | ||
178 | */ | ||
179 | void __init free_bootmem_node(pg_data_t *pgdat, unsigned long physaddr, | ||
180 | unsigned long size) | ||
181 | { | ||
182 | kmemleak_free_part(__va(physaddr), size); | ||
183 | memblock_x86_free_range(physaddr, physaddr + size); | ||
184 | } | ||
185 | |||
186 | /** | ||
187 | * free_bootmem - mark a page range as usable | ||
188 | * @addr: starting address of the range | ||
189 | * @size: size of the range in bytes | ||
190 | * | ||
191 | * Partial pages will be considered reserved and left as they are. | ||
192 | * | ||
193 | * The range must be contiguous but may span node boundaries. | ||
194 | */ | ||
195 | void __init free_bootmem(unsigned long addr, unsigned long size) | ||
196 | { | ||
197 | kmemleak_free_part(__va(addr), size); | ||
198 | memblock_x86_free_range(addr, addr + size); | ||
199 | } | ||
200 | |||
201 | static void * __init ___alloc_bootmem_nopanic(unsigned long size, | ||
202 | unsigned long align, | ||
203 | unsigned long goal, | ||
204 | unsigned long limit) | ||
205 | { | ||
206 | void *ptr; | ||
207 | |||
208 | if (WARN_ON_ONCE(slab_is_available())) | ||
209 | return kzalloc(size, GFP_NOWAIT); | ||
210 | |||
211 | restart: | ||
212 | |||
213 | ptr = __alloc_memory_core_early(MAX_NUMNODES, size, align, goal, limit); | ||
214 | |||
215 | if (ptr) | ||
216 | return ptr; | ||
217 | |||
218 | if (goal != 0) { | ||
219 | goal = 0; | ||
220 | goto restart; | ||
221 | } | ||
222 | |||
223 | return NULL; | ||
224 | } | ||
225 | |||
226 | /** | ||
227 | * __alloc_bootmem_nopanic - allocate boot memory without panicking | ||
228 | * @size: size of the request in bytes | ||
229 | * @align: alignment of the region | ||
230 | * @goal: preferred starting address of the region | ||
231 | * | ||
232 | * The goal is dropped if it can not be satisfied and the allocation will | ||
233 | * fall back to memory below @goal. | ||
234 | * | ||
235 | * Allocation may happen on any node in the system. | ||
236 | * | ||
237 | * Returns NULL on failure. | ||
238 | */ | ||
239 | void * __init __alloc_bootmem_nopanic(unsigned long size, unsigned long align, | ||
240 | unsigned long goal) | ||
241 | { | ||
242 | unsigned long limit = -1UL; | ||
243 | |||
244 | return ___alloc_bootmem_nopanic(size, align, goal, limit); | ||
245 | } | ||
246 | |||
247 | static void * __init ___alloc_bootmem(unsigned long size, unsigned long align, | ||
248 | unsigned long goal, unsigned long limit) | ||
249 | { | ||
250 | void *mem = ___alloc_bootmem_nopanic(size, align, goal, limit); | ||
251 | |||
252 | if (mem) | ||
253 | return mem; | ||
254 | /* | ||
255 | * Whoops, we cannot satisfy the allocation request. | ||
256 | */ | ||
257 | printk(KERN_ALERT "bootmem alloc of %lu bytes failed!\n", size); | ||
258 | panic("Out of memory"); | ||
259 | return NULL; | ||
260 | } | ||
261 | |||
262 | /** | ||
263 | * __alloc_bootmem - allocate boot memory | ||
264 | * @size: size of the request in bytes | ||
265 | * @align: alignment of the region | ||
266 | * @goal: preferred starting address of the region | ||
267 | * | ||
268 | * The goal is dropped if it can not be satisfied and the allocation will | ||
269 | * fall back to memory below @goal. | ||
270 | * | ||
271 | * Allocation may happen on any node in the system. | ||
272 | * | ||
273 | * The function panics if the request can not be satisfied. | ||
274 | */ | ||
275 | void * __init __alloc_bootmem(unsigned long size, unsigned long align, | ||
276 | unsigned long goal) | ||
277 | { | ||
278 | unsigned long limit = -1UL; | ||
279 | |||
280 | return ___alloc_bootmem(size, align, goal, limit); | ||
281 | } | ||
282 | |||
283 | /** | ||
284 | * __alloc_bootmem_node - allocate boot memory from a specific node | ||
285 | * @pgdat: node to allocate from | ||
286 | * @size: size of the request in bytes | ||
287 | * @align: alignment of the region | ||
288 | * @goal: preferred starting address of the region | ||
289 | * | ||
290 | * The goal is dropped if it can not be satisfied and the allocation will | ||
291 | * fall back to memory below @goal. | ||
292 | * | ||
293 | * Allocation may fall back to any node in the system if the specified node | ||
294 | * can not hold the requested memory. | ||
295 | * | ||
296 | * The function panics if the request can not be satisfied. | ||
297 | */ | ||
298 | void * __init __alloc_bootmem_node(pg_data_t *pgdat, unsigned long size, | ||
299 | unsigned long align, unsigned long goal) | ||
300 | { | ||
301 | void *ptr; | ||
302 | |||
303 | if (WARN_ON_ONCE(slab_is_available())) | ||
304 | return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id); | ||
305 | |||
306 | ptr = __alloc_memory_core_early(pgdat->node_id, size, align, | ||
307 | goal, -1ULL); | ||
308 | if (ptr) | ||
309 | return ptr; | ||
310 | |||
311 | return __alloc_memory_core_early(MAX_NUMNODES, size, align, | ||
312 | goal, -1ULL); | ||
313 | } | ||
314 | |||
315 | void * __init __alloc_bootmem_node_high(pg_data_t *pgdat, unsigned long size, | ||
316 | unsigned long align, unsigned long goal) | ||
317 | { | ||
318 | #ifdef MAX_DMA32_PFN | ||
319 | unsigned long end_pfn; | ||
320 | |||
321 | if (WARN_ON_ONCE(slab_is_available())) | ||
322 | return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id); | ||
323 | |||
324 | /* update goal according ...MAX_DMA32_PFN */ | ||
325 | end_pfn = pgdat->node_start_pfn + pgdat->node_spanned_pages; | ||
326 | |||
327 | if (end_pfn > MAX_DMA32_PFN + (128 >> (20 - PAGE_SHIFT)) && | ||
328 | (goal >> PAGE_SHIFT) < MAX_DMA32_PFN) { | ||
329 | void *ptr; | ||
330 | unsigned long new_goal; | ||
331 | |||
332 | new_goal = MAX_DMA32_PFN << PAGE_SHIFT; | ||
333 | ptr = __alloc_memory_core_early(pgdat->node_id, size, align, | ||
334 | new_goal, -1ULL); | ||
335 | if (ptr) | ||
336 | return ptr; | ||
337 | } | ||
338 | #endif | ||
339 | |||
340 | return __alloc_bootmem_node(pgdat, size, align, goal); | ||
341 | |||
342 | } | ||
343 | |||
344 | #ifdef CONFIG_SPARSEMEM | ||
345 | /** | ||
346 | * alloc_bootmem_section - allocate boot memory from a specific section | ||
347 | * @size: size of the request in bytes | ||
348 | * @section_nr: sparse map section to allocate from | ||
349 | * | ||
350 | * Return NULL on failure. | ||
351 | */ | ||
352 | void * __init alloc_bootmem_section(unsigned long size, | ||
353 | unsigned long section_nr) | ||
354 | { | ||
355 | unsigned long pfn, goal, limit; | ||
356 | |||
357 | pfn = section_nr_to_pfn(section_nr); | ||
358 | goal = pfn << PAGE_SHIFT; | ||
359 | limit = section_nr_to_pfn(section_nr + 1) << PAGE_SHIFT; | ||
360 | |||
361 | return __alloc_memory_core_early(early_pfn_to_nid(pfn), size, | ||
362 | SMP_CACHE_BYTES, goal, limit); | ||
363 | } | ||
364 | #endif | ||
365 | |||
366 | void * __init __alloc_bootmem_node_nopanic(pg_data_t *pgdat, unsigned long size, | ||
367 | unsigned long align, unsigned long goal) | ||
368 | { | ||
369 | void *ptr; | ||
370 | |||
371 | if (WARN_ON_ONCE(slab_is_available())) | ||
372 | return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id); | ||
373 | |||
374 | ptr = __alloc_memory_core_early(pgdat->node_id, size, align, | ||
375 | goal, -1ULL); | ||
376 | if (ptr) | ||
377 | return ptr; | ||
378 | |||
379 | return __alloc_bootmem_nopanic(size, align, goal); | ||
380 | } | ||
381 | |||
382 | #ifndef ARCH_LOW_ADDRESS_LIMIT | ||
383 | #define ARCH_LOW_ADDRESS_LIMIT 0xffffffffUL | ||
384 | #endif | ||
385 | |||
386 | /** | ||
387 | * __alloc_bootmem_low - allocate low boot memory | ||
388 | * @size: size of the request in bytes | ||
389 | * @align: alignment of the region | ||
390 | * @goal: preferred starting address of the region | ||
391 | * | ||
392 | * The goal is dropped if it can not be satisfied and the allocation will | ||
393 | * fall back to memory below @goal. | ||
394 | * | ||
395 | * Allocation may happen on any node in the system. | ||
396 | * | ||
397 | * The function panics if the request can not be satisfied. | ||
398 | */ | ||
399 | void * __init __alloc_bootmem_low(unsigned long size, unsigned long align, | ||
400 | unsigned long goal) | ||
401 | { | ||
402 | return ___alloc_bootmem(size, align, goal, ARCH_LOW_ADDRESS_LIMIT); | ||
403 | } | ||
404 | |||
405 | /** | ||
406 | * __alloc_bootmem_low_node - allocate low boot memory from a specific node | ||
407 | * @pgdat: node to allocate from | ||
408 | * @size: size of the request in bytes | ||
409 | * @align: alignment of the region | ||
410 | * @goal: preferred starting address of the region | ||
411 | * | ||
412 | * The goal is dropped if it can not be satisfied and the allocation will | ||
413 | * fall back to memory below @goal. | ||
414 | * | ||
415 | * Allocation may fall back to any node in the system if the specified node | ||
416 | * can not hold the requested memory. | ||
417 | * | ||
418 | * The function panics if the request can not be satisfied. | ||
419 | */ | ||
420 | void * __init __alloc_bootmem_low_node(pg_data_t *pgdat, unsigned long size, | ||
421 | unsigned long align, unsigned long goal) | ||
422 | { | ||
423 | void *ptr; | ||
424 | |||
425 | if (WARN_ON_ONCE(slab_is_available())) | ||
426 | return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id); | ||
427 | |||
428 | ptr = __alloc_memory_core_early(pgdat->node_id, size, align, | ||
429 | goal, ARCH_LOW_ADDRESS_LIMIT); | ||
430 | if (ptr) | ||
431 | return ptr; | ||
432 | |||
433 | return __alloc_memory_core_early(MAX_NUMNODES, size, align, | ||
434 | goal, ARCH_LOW_ADDRESS_LIMIT); | ||
435 | } | ||
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index cdef1d4b4e47..bd7625676a64 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -3699,13 +3699,45 @@ void __init free_bootmem_with_active_regions(int nid, | |||
3699 | } | 3699 | } |
3700 | 3700 | ||
3701 | #ifdef CONFIG_HAVE_MEMBLOCK | 3701 | #ifdef CONFIG_HAVE_MEMBLOCK |
3702 | /* | ||
3703 | * Basic iterator support. Return the last range of PFNs for a node | ||
3704 | * Note: nid == MAX_NUMNODES returns last region regardless of node | ||
3705 | */ | ||
3706 | static int __meminit last_active_region_index_in_nid(int nid) | ||
3707 | { | ||
3708 | int i; | ||
3709 | |||
3710 | for (i = nr_nodemap_entries - 1; i >= 0; i--) | ||
3711 | if (nid == MAX_NUMNODES || early_node_map[i].nid == nid) | ||
3712 | return i; | ||
3713 | |||
3714 | return -1; | ||
3715 | } | ||
3716 | |||
3717 | /* | ||
3718 | * Basic iterator support. Return the previous active range of PFNs for a node | ||
3719 | * Note: nid == MAX_NUMNODES returns next region regardless of node | ||
3720 | */ | ||
3721 | static int __meminit previous_active_region_index_in_nid(int index, int nid) | ||
3722 | { | ||
3723 | for (index = index - 1; index >= 0; index--) | ||
3724 | if (nid == MAX_NUMNODES || early_node_map[index].nid == nid) | ||
3725 | return index; | ||
3726 | |||
3727 | return -1; | ||
3728 | } | ||
3729 | |||
3730 | #define for_each_active_range_index_in_nid_reverse(i, nid) \ | ||
3731 | for (i = last_active_region_index_in_nid(nid); i != -1; \ | ||
3732 | i = previous_active_region_index_in_nid(i, nid)) | ||
3733 | |||
3702 | u64 __init find_memory_core_early(int nid, u64 size, u64 align, | 3734 | u64 __init find_memory_core_early(int nid, u64 size, u64 align, |
3703 | u64 goal, u64 limit) | 3735 | u64 goal, u64 limit) |
3704 | { | 3736 | { |
3705 | int i; | 3737 | int i; |
3706 | 3738 | ||
3707 | /* Need to go over early_node_map to find out good range for node */ | 3739 | /* Need to go over early_node_map to find out good range for node */ |
3708 | for_each_active_range_index_in_nid(i, nid) { | 3740 | for_each_active_range_index_in_nid_reverse(i, nid) { |
3709 | u64 addr; | 3741 | u64 addr; |
3710 | u64 ei_start, ei_last; | 3742 | u64 ei_start, ei_last; |
3711 | u64 final_start, final_end; | 3743 | u64 final_start, final_end; |
@@ -3748,34 +3780,6 @@ int __init add_from_early_node_map(struct range *range, int az, | |||
3748 | return nr_range; | 3780 | return nr_range; |
3749 | } | 3781 | } |
3750 | 3782 | ||
3751 | #ifdef CONFIG_NO_BOOTMEM | ||
3752 | void * __init __alloc_memory_core_early(int nid, u64 size, u64 align, | ||
3753 | u64 goal, u64 limit) | ||
3754 | { | ||
3755 | void *ptr; | ||
3756 | u64 addr; | ||
3757 | |||
3758 | if (limit > memblock.current_limit) | ||
3759 | limit = memblock.current_limit; | ||
3760 | |||
3761 | addr = find_memory_core_early(nid, size, align, goal, limit); | ||
3762 | |||
3763 | if (addr == MEMBLOCK_ERROR) | ||
3764 | return NULL; | ||
3765 | |||
3766 | ptr = phys_to_virt(addr); | ||
3767 | memset(ptr, 0, size); | ||
3768 | memblock_x86_reserve_range(addr, addr + size, "BOOTMEM"); | ||
3769 | /* | ||
3770 | * The min_count is set to 0 so that bootmem allocated blocks | ||
3771 | * are never reported as leaks. | ||
3772 | */ | ||
3773 | kmemleak_alloc(ptr, size, 0, 0); | ||
3774 | return ptr; | ||
3775 | } | ||
3776 | #endif | ||
3777 | |||
3778 | |||
3779 | void __init work_with_active_regions(int nid, work_fn_t work_fn, void *data) | 3783 | void __init work_with_active_regions(int nid, work_fn_t work_fn, void *data) |
3780 | { | 3784 | { |
3781 | int i; | 3785 | int i; |
@@ -4809,15 +4813,6 @@ void __init set_dma_reserve(unsigned long new_dma_reserve) | |||
4809 | dma_reserve = new_dma_reserve; | 4813 | dma_reserve = new_dma_reserve; |
4810 | } | 4814 | } |
4811 | 4815 | ||
4812 | #ifndef CONFIG_NEED_MULTIPLE_NODES | ||
4813 | struct pglist_data __refdata contig_page_data = { | ||
4814 | #ifndef CONFIG_NO_BOOTMEM | ||
4815 | .bdata = &bootmem_node_data[0] | ||
4816 | #endif | ||
4817 | }; | ||
4818 | EXPORT_SYMBOL(contig_page_data); | ||
4819 | #endif | ||
4820 | |||
4821 | void __init free_area_init(unsigned long *zones_size) | 4816 | void __init free_area_init(unsigned long *zones_size) |
4822 | { | 4817 | { |
4823 | free_area_init_node(0, zones_size, | 4818 | free_area_init_node(0, zones_size, |