2 * bootmem - A boot-time physical memory allocator and configurator
4 * Copyright (C) 1999 Ingo Molnar
5 * 1999 Kanoj Sarcar, SGI
8 * Access to this subsystem has to be serialized externally (which is true
9 * for the boot process anyway).
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>
21 #include <asm/processor.h>
25 unsigned long max_low_pfn;
26 unsigned long min_low_pfn;
27 unsigned long max_pfn;
29 #ifdef CONFIG_CRASH_DUMP
31 * If we have booted due to a crash, max_pfn will be a very low value. We need
32 * to know the amount of memory that the previous kernel used.
34 unsigned long saved_max_pfn;
37 #ifndef CONFIG_NO_BOOTMEM
38 bootmem_data_t bootmem_node_data[MAX_NUMNODES] __initdata;
40 static struct list_head bdata_list __initdata = LIST_HEAD_INIT(bdata_list);
42 static int bootmem_debug;
44 static int __init bootmem_debug_setup(char *buf)
49 early_param("bootmem_debug", bootmem_debug_setup);
51 #define bdebug(fmt, args...) ({ \
52 if (unlikely(bootmem_debug)) \
58 static unsigned long __init bootmap_bytes(unsigned long pages)
60 unsigned long bytes = (pages + 7) / 8;
62 return ALIGN(bytes, sizeof(long));
66 * bootmem_bootmap_pages - calculate bitmap size in pages
67 * @pages: number of pages the bitmap has to represent
69 unsigned long __init bootmem_bootmap_pages(unsigned long pages)
71 unsigned long bytes = bootmap_bytes(pages);
73 return PAGE_ALIGN(bytes) >> PAGE_SHIFT;
79 static void __init link_bootmem(bootmem_data_t *bdata)
81 struct list_head *iter;
83 list_for_each(iter, &bdata_list) {
86 ent = list_entry(iter, bootmem_data_t, list);
87 if (bdata->node_min_pfn < ent->node_min_pfn)
90 list_add_tail(&bdata->list, iter);
94 * Called once to set up the allocator itself.
96 static unsigned long __init init_bootmem_core(bootmem_data_t *bdata,
97 unsigned long mapstart, unsigned long start, unsigned long end)
99 unsigned long mapsize;
101 mminit_validate_memmodel_limits(&start, &end);
102 bdata->node_bootmem_map = phys_to_virt(PFN_PHYS(mapstart));
103 bdata->node_min_pfn = start;
104 bdata->node_low_pfn = end;
108 * Initially all pages are reserved - setup_arch() has to
109 * register free RAM areas explicitly.
111 mapsize = bootmap_bytes(end - start);
112 memset(bdata->node_bootmem_map, 0xff, mapsize);
114 bdebug("nid=%td start=%lx map=%lx end=%lx mapsize=%lx\n",
115 bdata - bootmem_node_data, start, mapstart, end, mapsize);
121 * init_bootmem_node - register a node as boot memory
122 * @pgdat: node to register
123 * @freepfn: pfn where the bitmap for this node is to be placed
124 * @startpfn: first pfn on the node
125 * @endpfn: first pfn after the node
127 * Returns the number of bytes needed to hold the bitmap for this node.
129 unsigned long __init init_bootmem_node(pg_data_t *pgdat, unsigned long freepfn,
130 unsigned long startpfn, unsigned long endpfn)
132 return init_bootmem_core(pgdat->bdata, freepfn, startpfn, endpfn);
136 * init_bootmem - register boot memory
137 * @start: pfn where the bitmap is to be placed
138 * @pages: number of available physical pages
140 * Returns the number of bytes needed to hold the bitmap.
142 unsigned long __init init_bootmem(unsigned long start, unsigned long pages)
146 return init_bootmem_core(NODE_DATA(0)->bdata, start, 0, pages);
150 * free_bootmem_late - free bootmem pages directly to page allocator
151 * @addr: starting address of the range
152 * @size: size of the range in bytes
154 * This is only useful when the bootmem allocator has already been torn
155 * down, but we are still initializing the system. Pages are given directly
156 * to the page allocator, no bootmem metadata is updated because it is gone.
158 void __init free_bootmem_late(unsigned long addr, unsigned long size)
160 unsigned long cursor, end;
162 kmemleak_free_part(__va(addr), size);
164 cursor = PFN_UP(addr);
165 end = PFN_DOWN(addr + size);
167 for (; cursor < end; cursor++) {
168 __free_pages_bootmem(pfn_to_page(cursor), 0);
173 #ifdef CONFIG_NO_BOOTMEM
174 static void __init __free_pages_memory(unsigned long start, unsigned long end)
177 unsigned long start_aligned, end_aligned;
178 int order = ilog2(BITS_PER_LONG);
180 start_aligned = (start + (BITS_PER_LONG - 1)) & ~(BITS_PER_LONG - 1);
181 end_aligned = end & ~(BITS_PER_LONG - 1);
183 if (end_aligned <= start_aligned) {
184 for (i = start; i < end; i++)
185 __free_pages_bootmem(pfn_to_page(i), 0);
190 for (i = start; i < start_aligned; i++)
191 __free_pages_bootmem(pfn_to_page(i), 0);
193 for (i = start_aligned; i < end_aligned; i += BITS_PER_LONG)
194 __free_pages_bootmem(pfn_to_page(i), order);
196 for (i = end_aligned; i < end; i++)
197 __free_pages_bootmem(pfn_to_page(i), 0);
200 unsigned long __init free_all_memory_core_early(int nodeid)
204 unsigned long count = 0;
205 struct range *range = NULL;
208 nr_range = get_free_all_memory_range(&range, nodeid);
210 for (i = 0; i < nr_range; i++) {
211 start = range[i].start;
213 count += end - start;
214 __free_pages_memory(start, end);
220 static unsigned long __init free_all_bootmem_core(bootmem_data_t *bdata)
224 unsigned long start, end, pages, count = 0;
226 if (!bdata->node_bootmem_map)
229 start = bdata->node_min_pfn;
230 end = bdata->node_low_pfn;
233 * If the start is aligned to the machines wordsize, we might
234 * be able to free pages in bulks of that order.
236 aligned = !(start & (BITS_PER_LONG - 1));
238 bdebug("nid=%td start=%lx end=%lx aligned=%d\n",
239 bdata - bootmem_node_data, start, end, aligned);
241 while (start < end) {
242 unsigned long *map, idx, vec;
244 map = bdata->node_bootmem_map;
245 idx = start - bdata->node_min_pfn;
246 vec = ~map[idx / BITS_PER_LONG];
248 if (aligned && vec == ~0UL && start + BITS_PER_LONG < end) {
249 int order = ilog2(BITS_PER_LONG);
251 __free_pages_bootmem(pfn_to_page(start), order);
252 count += BITS_PER_LONG;
254 unsigned long off = 0;
256 while (vec && off < BITS_PER_LONG) {
258 page = pfn_to_page(start + off);
259 __free_pages_bootmem(page, 0);
266 start += BITS_PER_LONG;
269 page = virt_to_page(bdata->node_bootmem_map);
270 pages = bdata->node_low_pfn - bdata->node_min_pfn;
271 pages = bootmem_bootmap_pages(pages);
274 __free_pages_bootmem(page++, 0);
276 bdebug("nid=%td released=%lx\n", bdata - bootmem_node_data, count);
283 * free_all_bootmem_node - release a node's free pages to the buddy allocator
284 * @pgdat: node to be released
286 * Returns the number of pages actually released.
288 unsigned long __init free_all_bootmem_node(pg_data_t *pgdat)
290 register_page_bootmem_info_node(pgdat);
291 #ifdef CONFIG_NO_BOOTMEM
292 /* free_all_memory_core_early(MAX_NUMNODES) will be called later */
295 return free_all_bootmem_core(pgdat->bdata);
300 * free_all_bootmem - release free pages to the buddy allocator
302 * Returns the number of pages actually released.
304 unsigned long __init free_all_bootmem(void)
306 #ifdef CONFIG_NO_BOOTMEM
308 * We need to use MAX_NUMNODES instead of NODE_DATA(0)->node_id
309 * because in some case like Node0 doesnt have RAM installed
310 * low ram will be on Node1
311 * Use MAX_NUMNODES will make sure all ranges in early_node_map[]
312 * will be used instead of only Node0 related
314 return free_all_memory_core_early(MAX_NUMNODES);
316 unsigned long total_pages = 0;
317 bootmem_data_t *bdata;
319 list_for_each_entry(bdata, &bdata_list, list)
320 total_pages += free_all_bootmem_core(bdata);
326 #ifndef CONFIG_NO_BOOTMEM
327 static void __init __free(bootmem_data_t *bdata,
328 unsigned long sidx, unsigned long eidx)
332 bdebug("nid=%td start=%lx end=%lx\n", bdata - bootmem_node_data,
333 sidx + bdata->node_min_pfn,
334 eidx + bdata->node_min_pfn);
336 if (bdata->hint_idx > sidx)
337 bdata->hint_idx = sidx;
339 for (idx = sidx; idx < eidx; idx++)
340 if (!test_and_clear_bit(idx, bdata->node_bootmem_map))
344 static int __init __reserve(bootmem_data_t *bdata, unsigned long sidx,
345 unsigned long eidx, int flags)
348 int exclusive = flags & BOOTMEM_EXCLUSIVE;
350 bdebug("nid=%td start=%lx end=%lx flags=%x\n",
351 bdata - bootmem_node_data,
352 sidx + bdata->node_min_pfn,
353 eidx + bdata->node_min_pfn,
356 for (idx = sidx; idx < eidx; idx++)
357 if (test_and_set_bit(idx, bdata->node_bootmem_map)) {
359 __free(bdata, sidx, idx);
362 bdebug("silent double reserve of PFN %lx\n",
363 idx + bdata->node_min_pfn);
368 static int __init mark_bootmem_node(bootmem_data_t *bdata,
369 unsigned long start, unsigned long end,
370 int reserve, int flags)
372 unsigned long sidx, eidx;
374 bdebug("nid=%td start=%lx end=%lx reserve=%d flags=%x\n",
375 bdata - bootmem_node_data, start, end, reserve, flags);
377 BUG_ON(start < bdata->node_min_pfn);
378 BUG_ON(end > bdata->node_low_pfn);
380 sidx = start - bdata->node_min_pfn;
381 eidx = end - bdata->node_min_pfn;
384 return __reserve(bdata, sidx, eidx, flags);
386 __free(bdata, sidx, eidx);
390 static int __init mark_bootmem(unsigned long start, unsigned long end,
391 int reserve, int flags)
394 bootmem_data_t *bdata;
397 list_for_each_entry(bdata, &bdata_list, list) {
401 if (pos < bdata->node_min_pfn ||
402 pos >= bdata->node_low_pfn) {
403 BUG_ON(pos != start);
407 max = min(bdata->node_low_pfn, end);
409 err = mark_bootmem_node(bdata, pos, max, reserve, flags);
410 if (reserve && err) {
411 mark_bootmem(start, pos, 0, 0);
417 pos = bdata->node_low_pfn;
424 * free_bootmem_node - mark a page range as usable
425 * @pgdat: node the range resides on
426 * @physaddr: starting address of the range
427 * @size: size of the range in bytes
429 * Partial pages will be considered reserved and left as they are.
431 * The range must reside completely on the specified node.
433 void __init free_bootmem_node(pg_data_t *pgdat, unsigned long physaddr,
436 #ifdef CONFIG_NO_BOOTMEM
437 free_early(physaddr, physaddr + size);
439 unsigned long start, end;
441 kmemleak_free_part(__va(physaddr), size);
443 start = PFN_UP(physaddr);
444 end = PFN_DOWN(physaddr + size);
446 mark_bootmem_node(pgdat->bdata, start, end, 0, 0);
451 * free_bootmem - mark a page range as usable
452 * @addr: starting address of the range
453 * @size: size of the range in bytes
455 * Partial pages will be considered reserved and left as they are.
457 * The range must be contiguous but may span node boundaries.
459 void __init free_bootmem(unsigned long addr, unsigned long size)
461 #ifdef CONFIG_NO_BOOTMEM
462 free_early(addr, addr + size);
464 unsigned long start, end;
466 kmemleak_free_part(__va(addr), size);
468 start = PFN_UP(addr);
469 end = PFN_DOWN(addr + size);
471 mark_bootmem(start, end, 0, 0);
476 * reserve_bootmem_node - mark a page range as reserved
477 * @pgdat: node the range resides on
478 * @physaddr: starting address of the range
479 * @size: size of the range in bytes
480 * @flags: reservation flags (see linux/bootmem.h)
482 * Partial pages will be reserved.
484 * The range must reside completely on the specified node.
486 int __init reserve_bootmem_node(pg_data_t *pgdat, unsigned long physaddr,
487 unsigned long size, int flags)
489 #ifdef CONFIG_NO_BOOTMEM
493 unsigned long start, end;
495 start = PFN_DOWN(physaddr);
496 end = PFN_UP(physaddr + size);
498 return mark_bootmem_node(pgdat->bdata, start, end, 1, flags);
503 * reserve_bootmem - mark a page range as usable
504 * @addr: starting address of the range
505 * @size: size of the range in bytes
506 * @flags: reservation flags (see linux/bootmem.h)
508 * Partial pages will be reserved.
510 * The range must be contiguous but may span node boundaries.
512 int __init reserve_bootmem(unsigned long addr, unsigned long size,
515 #ifdef CONFIG_NO_BOOTMEM
519 unsigned long start, end;
521 start = PFN_DOWN(addr);
522 end = PFN_UP(addr + size);
524 return mark_bootmem(start, end, 1, flags);
528 #ifndef CONFIG_NO_BOOTMEM
529 static unsigned long __init align_idx(struct bootmem_data *bdata,
530 unsigned long idx, unsigned long step)
532 unsigned long base = bdata->node_min_pfn;
535 * Align the index with respect to the node start so that the
536 * combination of both satisfies the requested alignment.
539 return ALIGN(base + idx, step) - base;
542 static unsigned long __init align_off(struct bootmem_data *bdata,
543 unsigned long off, unsigned long align)
545 unsigned long base = PFN_PHYS(bdata->node_min_pfn);
547 /* Same as align_idx for byte offsets */
549 return ALIGN(base + off, align) - base;
552 static void * __init alloc_bootmem_core(struct bootmem_data *bdata,
553 unsigned long size, unsigned long align,
554 unsigned long goal, unsigned long limit)
556 unsigned long fallback = 0;
557 unsigned long min, max, start, sidx, midx, step;
559 bdebug("nid=%td size=%lx [%lu pages] align=%lx goal=%lx limit=%lx\n",
560 bdata - bootmem_node_data, size, PAGE_ALIGN(size) >> PAGE_SHIFT,
564 BUG_ON(align & (align - 1));
565 BUG_ON(limit && goal + size > limit);
567 if (!bdata->node_bootmem_map)
570 min = bdata->node_min_pfn;
571 max = bdata->node_low_pfn;
574 limit >>= PAGE_SHIFT;
576 if (limit && max > limit)
581 step = max(align >> PAGE_SHIFT, 1UL);
583 if (goal && min < goal && goal < max)
584 start = ALIGN(goal, step);
586 start = ALIGN(min, step);
588 sidx = start - bdata->node_min_pfn;
589 midx = max - bdata->node_min_pfn;
591 if (bdata->hint_idx > sidx) {
593 * Handle the valid case of sidx being zero and still
594 * catch the fallback below.
597 sidx = align_idx(bdata, bdata->hint_idx, step);
603 unsigned long eidx, i, start_off, end_off;
605 sidx = find_next_zero_bit(bdata->node_bootmem_map, midx, sidx);
606 sidx = align_idx(bdata, sidx, step);
607 eidx = sidx + PFN_UP(size);
609 if (sidx >= midx || eidx > midx)
612 for (i = sidx; i < eidx; i++)
613 if (test_bit(i, bdata->node_bootmem_map)) {
614 sidx = align_idx(bdata, i, step);
620 if (bdata->last_end_off & (PAGE_SIZE - 1) &&
621 PFN_DOWN(bdata->last_end_off) + 1 == sidx)
622 start_off = align_off(bdata, bdata->last_end_off, align);
624 start_off = PFN_PHYS(sidx);
626 merge = PFN_DOWN(start_off) < sidx;
627 end_off = start_off + size;
629 bdata->last_end_off = end_off;
630 bdata->hint_idx = PFN_UP(end_off);
633 * Reserve the area now:
635 if (__reserve(bdata, PFN_DOWN(start_off) + merge,
636 PFN_UP(end_off), BOOTMEM_EXCLUSIVE))
639 region = phys_to_virt(PFN_PHYS(bdata->node_min_pfn) +
641 memset(region, 0, size);
643 * The min_count is set to 0 so that bootmem allocated blocks
644 * are never reported as leaks.
646 kmemleak_alloc(region, size, 0, 0);
651 sidx = align_idx(bdata, fallback - 1, step);
659 static void * __init alloc_arch_preferred_bootmem(bootmem_data_t *bdata,
660 unsigned long size, unsigned long align,
661 unsigned long goal, unsigned long limit)
663 if (WARN_ON_ONCE(slab_is_available()))
664 return kzalloc(size, GFP_NOWAIT);
666 #ifdef CONFIG_HAVE_ARCH_BOOTMEM
668 bootmem_data_t *p_bdata;
670 p_bdata = bootmem_arch_preferred_node(bdata, size, align,
673 return alloc_bootmem_core(p_bdata, size, align,
681 static void * __init ___alloc_bootmem_nopanic(unsigned long size,
686 #ifdef CONFIG_NO_BOOTMEM
689 if (WARN_ON_ONCE(slab_is_available()))
690 return kzalloc(size, GFP_NOWAIT);
694 ptr = __alloc_memory_core_early(MAX_NUMNODES, size, align, goal, limit);
706 bootmem_data_t *bdata;
710 region = alloc_arch_preferred_bootmem(NULL, size, align, goal, limit);
714 list_for_each_entry(bdata, &bdata_list, list) {
715 if (goal && bdata->node_low_pfn <= PFN_DOWN(goal))
717 if (limit && bdata->node_min_pfn >= PFN_DOWN(limit))
720 region = alloc_bootmem_core(bdata, size, align, goal, limit);
735 * __alloc_bootmem_nopanic - allocate boot memory without panicking
736 * @size: size of the request in bytes
737 * @align: alignment of the region
738 * @goal: preferred starting address of the region
740 * The goal is dropped if it can not be satisfied and the allocation will
741 * fall back to memory below @goal.
743 * Allocation may happen on any node in the system.
745 * Returns NULL on failure.
747 void * __init __alloc_bootmem_nopanic(unsigned long size, unsigned long align,
750 unsigned long limit = 0;
752 #ifdef CONFIG_NO_BOOTMEM
756 return ___alloc_bootmem_nopanic(size, align, goal, limit);
759 static void * __init ___alloc_bootmem(unsigned long size, unsigned long align,
760 unsigned long goal, unsigned long limit)
762 void *mem = ___alloc_bootmem_nopanic(size, align, goal, limit);
767 * Whoops, we cannot satisfy the allocation request.
769 printk(KERN_ALERT "bootmem alloc of %lu bytes failed!\n", size);
770 panic("Out of memory");
775 * __alloc_bootmem - allocate boot memory
776 * @size: size of the request in bytes
777 * @align: alignment of the region
778 * @goal: preferred starting address of the region
780 * The goal is dropped if it can not be satisfied and the allocation will
781 * fall back to memory below @goal.
783 * Allocation may happen on any node in the system.
785 * The function panics if the request can not be satisfied.
787 void * __init __alloc_bootmem(unsigned long size, unsigned long align,
790 unsigned long limit = 0;
792 #ifdef CONFIG_NO_BOOTMEM
796 return ___alloc_bootmem(size, align, goal, limit);
799 #ifndef CONFIG_NO_BOOTMEM
800 static void * __init ___alloc_bootmem_node(bootmem_data_t *bdata,
801 unsigned long size, unsigned long align,
802 unsigned long goal, unsigned long limit)
806 ptr = alloc_arch_preferred_bootmem(bdata, size, align, goal, limit);
810 ptr = alloc_bootmem_core(bdata, size, align, goal, limit);
814 return ___alloc_bootmem(size, align, goal, limit);
819 * __alloc_bootmem_node - allocate boot memory from a specific node
820 * @pgdat: node to allocate from
821 * @size: size of the request in bytes
822 * @align: alignment of the region
823 * @goal: preferred starting address of the region
825 * The goal is dropped if it can not be satisfied and the allocation will
826 * fall back to memory below @goal.
828 * Allocation may fall back to any node in the system if the specified node
829 * can not hold the requested memory.
831 * The function panics if the request can not be satisfied.
833 void * __init __alloc_bootmem_node(pg_data_t *pgdat, unsigned long size,
834 unsigned long align, unsigned long goal)
836 if (WARN_ON_ONCE(slab_is_available()))
837 return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id);
839 #ifdef CONFIG_NO_BOOTMEM
840 return __alloc_memory_core_early(pgdat->node_id, size, align,
843 return ___alloc_bootmem_node(pgdat->bdata, size, align, goal, 0);
847 void * __init __alloc_bootmem_node_high(pg_data_t *pgdat, unsigned long size,
848 unsigned long align, unsigned long goal)
851 unsigned long end_pfn;
853 if (WARN_ON_ONCE(slab_is_available()))
854 return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id);
856 /* update goal according ...MAX_DMA32_PFN */
857 end_pfn = pgdat->node_start_pfn + pgdat->node_spanned_pages;
859 if (end_pfn > MAX_DMA32_PFN + (128 >> (20 - PAGE_SHIFT)) &&
860 (goal >> PAGE_SHIFT) < MAX_DMA32_PFN) {
862 unsigned long new_goal;
864 new_goal = MAX_DMA32_PFN << PAGE_SHIFT;
865 #ifdef CONFIG_NO_BOOTMEM
866 ptr = __alloc_memory_core_early(pgdat->node_id, size, align,
869 ptr = alloc_bootmem_core(pgdat->bdata, size, align,
877 return __alloc_bootmem_node(pgdat, size, align, goal);
881 #ifdef CONFIG_SPARSEMEM
883 * alloc_bootmem_section - allocate boot memory from a specific section
884 * @size: size of the request in bytes
885 * @section_nr: sparse map section to allocate from
887 * Return NULL on failure.
889 void * __init alloc_bootmem_section(unsigned long size,
890 unsigned long section_nr)
892 #ifdef CONFIG_NO_BOOTMEM
893 unsigned long pfn, goal, limit;
895 pfn = section_nr_to_pfn(section_nr);
896 goal = pfn << PAGE_SHIFT;
897 limit = section_nr_to_pfn(section_nr + 1) << PAGE_SHIFT;
899 return __alloc_memory_core_early(early_pfn_to_nid(pfn), size,
900 SMP_CACHE_BYTES, goal, limit);
902 bootmem_data_t *bdata;
903 unsigned long pfn, goal, limit;
905 pfn = section_nr_to_pfn(section_nr);
906 goal = pfn << PAGE_SHIFT;
907 limit = section_nr_to_pfn(section_nr + 1) << PAGE_SHIFT;
908 bdata = &bootmem_node_data[early_pfn_to_nid(pfn)];
910 return alloc_bootmem_core(bdata, size, SMP_CACHE_BYTES, goal, limit);
915 void * __init __alloc_bootmem_node_nopanic(pg_data_t *pgdat, unsigned long size,
916 unsigned long align, unsigned long goal)
920 if (WARN_ON_ONCE(slab_is_available()))
921 return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id);
923 #ifdef CONFIG_NO_BOOTMEM
924 ptr = __alloc_memory_core_early(pgdat->node_id, size, align,
927 ptr = alloc_arch_preferred_bootmem(pgdat->bdata, size, align, goal, 0);
931 ptr = alloc_bootmem_core(pgdat->bdata, size, align, goal, 0);
936 return __alloc_bootmem_nopanic(size, align, goal);
939 #ifndef ARCH_LOW_ADDRESS_LIMIT
940 #define ARCH_LOW_ADDRESS_LIMIT 0xffffffffUL
944 * __alloc_bootmem_low - allocate low boot memory
945 * @size: size of the request in bytes
946 * @align: alignment of the region
947 * @goal: preferred starting address of the region
949 * The goal is dropped if it can not be satisfied and the allocation will
950 * fall back to memory below @goal.
952 * Allocation may happen on any node in the system.
954 * The function panics if the request can not be satisfied.
956 void * __init __alloc_bootmem_low(unsigned long size, unsigned long align,
959 return ___alloc_bootmem(size, align, goal, ARCH_LOW_ADDRESS_LIMIT);
963 * __alloc_bootmem_low_node - allocate low boot memory from a specific node
964 * @pgdat: node to allocate from
965 * @size: size of the request in bytes
966 * @align: alignment of the region
967 * @goal: preferred starting address of the region
969 * The goal is dropped if it can not be satisfied and the allocation will
970 * fall back to memory below @goal.
972 * Allocation may fall back to any node in the system if the specified node
973 * can not hold the requested memory.
975 * The function panics if the request can not be satisfied.
977 void * __init __alloc_bootmem_low_node(pg_data_t *pgdat, unsigned long size,
978 unsigned long align, unsigned long goal)
980 if (WARN_ON_ONCE(slab_is_available()))
981 return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id);
983 #ifdef CONFIG_NO_BOOTMEM
984 return __alloc_memory_core_early(pgdat->node_id, size, align,
985 goal, ARCH_LOW_ADDRESS_LIMIT);
987 return ___alloc_bootmem_node(pgdat->bdata, size, align,
988 goal, ARCH_LOW_ADDRESS_LIMIT);