]> bbs.cooldavid.org Git - net-next-2.6.git/blame - mm/bootmem.c
bootmem: revisit alloc_bootmem_section
[net-next-2.6.git] / mm / bootmem.c
CommitLineData
1da177e4 1/*
57cfc29e 2 * bootmem - A boot-time physical memory allocator and configurator
1da177e4
LT
3 *
4 * Copyright (C) 1999 Ingo Molnar
57cfc29e
JW
5 * 1999 Kanoj Sarcar, SGI
6 * 2008 Johannes Weiner
1da177e4 7 *
57cfc29e
JW
8 * Access to this subsystem has to be serialized externally (which is true
9 * for the boot process anyway).
1da177e4 10 */
1da177e4 11#include <linux/init.h>
bbc7b92e 12#include <linux/pfn.h>
1da177e4 13#include <linux/bootmem.h>
1da177e4 14#include <linux/module.h>
e786e86a
FBH
15
16#include <asm/bug.h>
1da177e4 17#include <asm/io.h>
dfd54cbc 18#include <asm/processor.h>
e786e86a 19
1da177e4
LT
20#include "internal.h"
21
1da177e4
LT
22unsigned long max_low_pfn;
23unsigned long min_low_pfn;
24unsigned long max_pfn;
25
92aa63a5
VG
26#ifdef CONFIG_CRASH_DUMP
27/*
28 * If we have booted due to a crash, max_pfn will be a very low value. We need
29 * to know the amount of memory that the previous kernel used.
30 */
31unsigned long saved_max_pfn;
32#endif
33
b61bfa3c
JW
34bootmem_data_t bootmem_node_data[MAX_NUMNODES] __initdata;
35
636cc40c
JW
36static struct list_head bdata_list __initdata = LIST_HEAD_INIT(bdata_list);
37
2e5237da
JW
38static int bootmem_debug;
39
40static int __init bootmem_debug_setup(char *buf)
41{
42 bootmem_debug = 1;
43 return 0;
44}
45early_param("bootmem_debug", bootmem_debug_setup);
46
47#define bdebug(fmt, args...) ({ \
48 if (unlikely(bootmem_debug)) \
49 printk(KERN_INFO \
50 "bootmem::%s " fmt, \
51 __FUNCTION__, ## args); \
52})
53
df049a5f 54static unsigned long __init bootmap_bytes(unsigned long pages)
223e8dc9 55{
df049a5f 56 unsigned long bytes = (pages + 7) / 8;
223e8dc9 57
df049a5f 58 return ALIGN(bytes, sizeof(long));
223e8dc9
JW
59}
60
a66fd7da
JW
61/**
62 * bootmem_bootmap_pages - calculate bitmap size in pages
63 * @pages: number of pages the bitmap has to represent
64 */
f71bf0ca 65unsigned long __init bootmem_bootmap_pages(unsigned long pages)
1da177e4 66{
df049a5f 67 unsigned long bytes = bootmap_bytes(pages);
1da177e4 68
df049a5f 69 return PAGE_ALIGN(bytes) >> PAGE_SHIFT;
1da177e4 70}
f71bf0ca 71
679bc9fb
KH
72/*
73 * link bdata in order
74 */
69d49e68 75static void __init link_bootmem(bootmem_data_t *bdata)
679bc9fb 76{
636cc40c 77 struct list_head *iter;
f71bf0ca 78
636cc40c
JW
79 list_for_each(iter, &bdata_list) {
80 bootmem_data_t *ent;
81
82 ent = list_entry(iter, bootmem_data_t, list);
83 if (bdata->node_boot_start < ent->node_boot_start)
84 break;
679bc9fb 85 }
636cc40c 86 list_add_tail(&bdata->list, iter);
679bc9fb
KH
87}
88
1da177e4
LT
89/*
90 * Called once to set up the allocator itself.
91 */
8ae04463 92static unsigned long __init init_bootmem_core(bootmem_data_t *bdata,
1da177e4
LT
93 unsigned long mapstart, unsigned long start, unsigned long end)
94{
bbc7b92e 95 unsigned long mapsize;
1da177e4 96
2dbb51c4 97 mminit_validate_memmodel_limits(&start, &end);
bbc7b92e
FBH
98 bdata->node_bootmem_map = phys_to_virt(PFN_PHYS(mapstart));
99 bdata->node_boot_start = PFN_PHYS(start);
1da177e4 100 bdata->node_low_pfn = end;
679bc9fb 101 link_bootmem(bdata);
1da177e4
LT
102
103 /*
104 * Initially all pages are reserved - setup_arch() has to
105 * register free RAM areas explicitly.
106 */
df049a5f 107 mapsize = bootmap_bytes(end - start);
1da177e4
LT
108 memset(bdata->node_bootmem_map, 0xff, mapsize);
109
2e5237da
JW
110 bdebug("nid=%td start=%lx map=%lx end=%lx mapsize=%lx\n",
111 bdata - bootmem_node_data, start, mapstart, end, mapsize);
112
1da177e4
LT
113 return mapsize;
114}
115
a66fd7da
JW
116/**
117 * init_bootmem_node - register a node as boot memory
118 * @pgdat: node to register
119 * @freepfn: pfn where the bitmap for this node is to be placed
120 * @startpfn: first pfn on the node
121 * @endpfn: first pfn after the node
122 *
123 * Returns the number of bytes needed to hold the bitmap for this node.
124 */
223e8dc9
JW
125unsigned long __init init_bootmem_node(pg_data_t *pgdat, unsigned long freepfn,
126 unsigned long startpfn, unsigned long endpfn)
127{
128 return init_bootmem_core(pgdat->bdata, freepfn, startpfn, endpfn);
129}
130
a66fd7da
JW
131/**
132 * init_bootmem - register boot memory
133 * @start: pfn where the bitmap is to be placed
134 * @pages: number of available physical pages
135 *
136 * Returns the number of bytes needed to hold the bitmap.
137 */
223e8dc9
JW
138unsigned long __init init_bootmem(unsigned long start, unsigned long pages)
139{
140 max_low_pfn = pages;
141 min_low_pfn = start;
142 return init_bootmem_core(NODE_DATA(0)->bdata, start, 0, pages);
143}
144
145static unsigned long __init free_all_bootmem_core(bootmem_data_t *bdata)
146{
41546c17 147 int aligned;
223e8dc9 148 struct page *page;
41546c17
JW
149 unsigned long start, end, pages, count = 0;
150
151 if (!bdata->node_bootmem_map)
152 return 0;
153
154 start = PFN_DOWN(bdata->node_boot_start);
155 end = bdata->node_low_pfn;
156
223e8dc9 157 /*
41546c17
JW
158 * If the start is aligned to the machines wordsize, we might
159 * be able to free pages in bulks of that order.
223e8dc9 160 */
41546c17 161 aligned = !(start & (BITS_PER_LONG - 1));
223e8dc9 162
41546c17
JW
163 bdebug("nid=%td start=%lx end=%lx aligned=%d\n",
164 bdata - bootmem_node_data, start, end, aligned);
223e8dc9 165
41546c17
JW
166 while (start < end) {
167 unsigned long *map, idx, vec;
223e8dc9 168
41546c17
JW
169 map = bdata->node_bootmem_map;
170 idx = start - PFN_DOWN(bdata->node_boot_start);
171 vec = ~map[idx / BITS_PER_LONG];
172
173 if (aligned && vec == ~0UL && start + BITS_PER_LONG < end) {
174 int order = ilog2(BITS_PER_LONG);
175
176 __free_pages_bootmem(pfn_to_page(start), order);
223e8dc9 177 count += BITS_PER_LONG;
41546c17
JW
178 } else {
179 unsigned long off = 0;
180
181 while (vec && off < BITS_PER_LONG) {
182 if (vec & 1) {
183 page = pfn_to_page(start + off);
223e8dc9 184 __free_pages_bootmem(page, 0);
41546c17 185 count++;
223e8dc9 186 }
41546c17
JW
187 vec >>= 1;
188 off++;
223e8dc9 189 }
223e8dc9 190 }
41546c17 191 start += BITS_PER_LONG;
223e8dc9
JW
192 }
193
223e8dc9 194 page = virt_to_page(bdata->node_bootmem_map);
df049a5f 195 pages = bdata->node_low_pfn - PFN_DOWN(bdata->node_boot_start);
41546c17
JW
196 pages = bootmem_bootmap_pages(pages);
197 count += pages;
198 while (pages--)
199 __free_pages_bootmem(page++, 0);
223e8dc9 200
2e5237da
JW
201 bdebug("nid=%td released=%lx\n", bdata - bootmem_node_data, count);
202
223e8dc9
JW
203 return count;
204}
205
a66fd7da
JW
206/**
207 * free_all_bootmem_node - release a node's free pages to the buddy allocator
208 * @pgdat: node to be released
209 *
210 * Returns the number of pages actually released.
211 */
223e8dc9
JW
212unsigned long __init free_all_bootmem_node(pg_data_t *pgdat)
213{
214 register_page_bootmem_info_node(pgdat);
215 return free_all_bootmem_core(pgdat->bdata);
216}
217
a66fd7da
JW
218/**
219 * free_all_bootmem - release free pages to the buddy allocator
220 *
221 * Returns the number of pages actually released.
222 */
223e8dc9
JW
223unsigned long __init free_all_bootmem(void)
224{
225 return free_all_bootmem_core(NODE_DATA(0)->bdata);
226}
227
d747fa4b
JW
228static void __init __free(bootmem_data_t *bdata,
229 unsigned long sidx, unsigned long eidx)
230{
231 unsigned long idx;
232
233 bdebug("nid=%td start=%lx end=%lx\n", bdata - bootmem_node_data,
234 sidx + PFN_DOWN(bdata->node_boot_start),
235 eidx + PFN_DOWN(bdata->node_boot_start));
236
e2bf3cae
JW
237 if (bdata->hint_idx > sidx)
238 bdata->hint_idx = sidx;
239
d747fa4b
JW
240 for (idx = sidx; idx < eidx; idx++)
241 if (!test_and_clear_bit(idx, bdata->node_bootmem_map))
242 BUG();
243}
244
245static int __init __reserve(bootmem_data_t *bdata, unsigned long sidx,
246 unsigned long eidx, int flags)
247{
248 unsigned long idx;
249 int exclusive = flags & BOOTMEM_EXCLUSIVE;
250
251 bdebug("nid=%td start=%lx end=%lx flags=%x\n",
252 bdata - bootmem_node_data,
253 sidx + PFN_DOWN(bdata->node_boot_start),
254 eidx + PFN_DOWN(bdata->node_boot_start),
255 flags);
256
257 for (idx = sidx; idx < eidx; idx++)
258 if (test_and_set_bit(idx, bdata->node_bootmem_map)) {
259 if (exclusive) {
260 __free(bdata, sidx, idx);
261 return -EBUSY;
262 }
263 bdebug("silent double reserve of PFN %lx\n",
264 idx + PFN_DOWN(bdata->node_boot_start));
265 }
266 return 0;
267}
268
e2bf3cae
JW
269static int __init mark_bootmem_node(bootmem_data_t *bdata,
270 unsigned long start, unsigned long end,
271 int reserve, int flags)
223e8dc9
JW
272{
273 unsigned long sidx, eidx;
223e8dc9 274
e2bf3cae
JW
275 bdebug("nid=%td start=%lx end=%lx reserve=%d flags=%x\n",
276 bdata - bootmem_node_data, start, end, reserve, flags);
223e8dc9 277
e2bf3cae
JW
278 BUG_ON(start < PFN_DOWN(bdata->node_boot_start));
279 BUG_ON(end > bdata->node_low_pfn);
223e8dc9 280
e2bf3cae
JW
281 sidx = start - PFN_DOWN(bdata->node_boot_start);
282 eidx = end - PFN_DOWN(bdata->node_boot_start);
223e8dc9 283
e2bf3cae
JW
284 if (reserve)
285 return __reserve(bdata, sidx, eidx, flags);
223e8dc9 286 else
e2bf3cae
JW
287 __free(bdata, sidx, eidx);
288 return 0;
289}
290
291static int __init mark_bootmem(unsigned long start, unsigned long end,
292 int reserve, int flags)
293{
294 unsigned long pos;
295 bootmem_data_t *bdata;
296
297 pos = start;
298 list_for_each_entry(bdata, &bdata_list, list) {
299 int err;
300 unsigned long max;
301
302 if (pos < PFN_DOWN(bdata->node_boot_start)) {
303 BUG_ON(pos != start);
304 continue;
305 }
306
307 max = min(bdata->node_low_pfn, end);
223e8dc9 308
e2bf3cae
JW
309 err = mark_bootmem_node(bdata, pos, max, reserve, flags);
310 if (reserve && err) {
311 mark_bootmem(start, pos, 0, 0);
312 return err;
313 }
223e8dc9 314
e2bf3cae
JW
315 if (max == end)
316 return 0;
317 pos = bdata->node_low_pfn;
318 }
319 BUG();
223e8dc9
JW
320}
321
a66fd7da
JW
322/**
323 * free_bootmem_node - mark a page range as usable
324 * @pgdat: node the range resides on
325 * @physaddr: starting address of the range
326 * @size: size of the range in bytes
327 *
328 * Partial pages will be considered reserved and left as they are.
329 *
e2bf3cae 330 * The range must reside completely on the specified node.
a66fd7da 331 */
223e8dc9
JW
332void __init free_bootmem_node(pg_data_t *pgdat, unsigned long physaddr,
333 unsigned long size)
334{
e2bf3cae
JW
335 unsigned long start, end;
336
337 start = PFN_UP(physaddr);
338 end = PFN_DOWN(physaddr + size);
339
340 mark_bootmem_node(pgdat->bdata, start, end, 0, 0);
223e8dc9
JW
341}
342
a66fd7da
JW
343/**
344 * free_bootmem - mark a page range as usable
345 * @addr: starting address of the range
346 * @size: size of the range in bytes
347 *
348 * Partial pages will be considered reserved and left as they are.
349 *
e2bf3cae 350 * The range must be contiguous but may span node boundaries.
a66fd7da 351 */
223e8dc9
JW
352void __init free_bootmem(unsigned long addr, unsigned long size)
353{
e2bf3cae 354 unsigned long start, end;
a5645a61 355
e2bf3cae
JW
356 start = PFN_UP(addr);
357 end = PFN_DOWN(addr + size);
1da177e4 358
e2bf3cae 359 mark_bootmem(start, end, 0, 0);
1da177e4
LT
360}
361
a66fd7da
JW
362/**
363 * reserve_bootmem_node - mark a page range as reserved
364 * @pgdat: node the range resides on
365 * @physaddr: starting address of the range
366 * @size: size of the range in bytes
367 * @flags: reservation flags (see linux/bootmem.h)
368 *
369 * Partial pages will be reserved.
370 *
e2bf3cae 371 * The range must reside completely on the specified node.
a66fd7da 372 */
223e8dc9
JW
373int __init reserve_bootmem_node(pg_data_t *pgdat, unsigned long physaddr,
374 unsigned long size, int flags)
1da177e4 375{
e2bf3cae 376 unsigned long start, end;
1da177e4 377
e2bf3cae
JW
378 start = PFN_DOWN(physaddr);
379 end = PFN_UP(physaddr + size);
380
381 return mark_bootmem_node(pgdat->bdata, start, end, 1, flags);
223e8dc9 382}
5a982cbc 383
223e8dc9 384#ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE
a66fd7da
JW
385/**
386 * reserve_bootmem - mark a page range as usable
387 * @addr: starting address of the range
388 * @size: size of the range in bytes
389 * @flags: reservation flags (see linux/bootmem.h)
390 *
391 * Partial pages will be reserved.
392 *
e2bf3cae 393 * The range must be contiguous but may span node boundaries.
a66fd7da 394 */
223e8dc9
JW
395int __init reserve_bootmem(unsigned long addr, unsigned long size,
396 int flags)
397{
e2bf3cae 398 unsigned long start, end;
1da177e4 399
e2bf3cae
JW
400 start = PFN_DOWN(addr);
401 end = PFN_UP(addr + size);
223e8dc9 402
e2bf3cae 403 return mark_bootmem(start, end, 1, flags);
1da177e4 404}
223e8dc9 405#endif /* !CONFIG_HAVE_ARCH_BOOTMEM_NODE */
1da177e4 406
5f2809e6
JW
407static void * __init alloc_bootmem_core(struct bootmem_data *bdata,
408 unsigned long size, unsigned long align,
409 unsigned long goal, unsigned long limit)
1da177e4 410{
0f3caba2 411 unsigned long fallback = 0;
5f2809e6
JW
412 unsigned long min, max, start, sidx, midx, step;
413
414 BUG_ON(!size);
415 BUG_ON(align & (align - 1));
416 BUG_ON(limit && goal + size > limit);
1da177e4 417
7c309a64
CK
418 if (!bdata->node_bootmem_map)
419 return NULL;
420
2e5237da
JW
421 bdebug("nid=%td size=%lx [%lu pages] align=%lx goal=%lx limit=%lx\n",
422 bdata - bootmem_node_data, size, PAGE_ALIGN(size) >> PAGE_SHIFT,
423 align, goal, limit);
424
5f2809e6
JW
425 min = PFN_DOWN(bdata->node_boot_start);
426 max = bdata->node_low_pfn;
9a2dc04c 427
5f2809e6
JW
428 goal >>= PAGE_SHIFT;
429 limit >>= PAGE_SHIFT;
430
431 if (limit && max > limit)
432 max = limit;
433 if (max <= min)
9a2dc04c
YL
434 return NULL;
435
5f2809e6 436 step = max(align >> PAGE_SHIFT, 1UL);
281dd25c 437
5f2809e6
JW
438 if (goal && min < goal && goal < max)
439 start = ALIGN(goal, step);
440 else
441 start = ALIGN(min, step);
1da177e4 442
5f2809e6
JW
443 sidx = start - PFN_DOWN(bdata->node_boot_start);
444 midx = max - PFN_DOWN(bdata->node_boot_start);
1da177e4 445
5f2809e6 446 if (bdata->hint_idx > sidx) {
0f3caba2
JW
447 /*
448 * Handle the valid case of sidx being zero and still
449 * catch the fallback below.
450 */
451 fallback = sidx + 1;
5f2809e6
JW
452 sidx = ALIGN(bdata->hint_idx, step);
453 }
1da177e4 454
5f2809e6
JW
455 while (1) {
456 int merge;
457 void *region;
458 unsigned long eidx, i, start_off, end_off;
459find_block:
460 sidx = find_next_zero_bit(bdata->node_bootmem_map, midx, sidx);
461 sidx = ALIGN(sidx, step);
462 eidx = sidx + PFN_UP(size);
ad09315c 463
5f2809e6 464 if (sidx >= midx || eidx > midx)
66d43e98 465 break;
1da177e4 466
5f2809e6
JW
467 for (i = sidx; i < eidx; i++)
468 if (test_bit(i, bdata->node_bootmem_map)) {
469 sidx = ALIGN(i, step);
470 if (sidx == i)
471 sidx += step;
472 goto find_block;
473 }
1da177e4 474
5f2809e6
JW
475 if (bdata->last_end_off &&
476 PFN_DOWN(bdata->last_end_off) + 1 == sidx)
477 start_off = ALIGN(bdata->last_end_off, align);
478 else
479 start_off = PFN_PHYS(sidx);
480
481 merge = PFN_DOWN(start_off) < sidx;
482 end_off = start_off + size;
483
484 bdata->last_end_off = end_off;
485 bdata->hint_idx = PFN_UP(end_off);
486
487 /*
488 * Reserve the area now:
489 */
d747fa4b
JW
490 if (__reserve(bdata, PFN_DOWN(start_off) + merge,
491 PFN_UP(end_off), BOOTMEM_EXCLUSIVE))
492 BUG();
5f2809e6
JW
493
494 region = phys_to_virt(bdata->node_boot_start + start_off);
495 memset(region, 0, size);
496 return region;
1da177e4
LT
497 }
498
0f3caba2
JW
499 if (fallback) {
500 sidx = ALIGN(fallback - 1, step);
501 fallback = 0;
502 goto find_block;
503 }
504
505 return NULL;
506}
507
508static void * __init ___alloc_bootmem_nopanic(unsigned long size,
509 unsigned long align,
510 unsigned long goal,
511 unsigned long limit)
512{
513 bootmem_data_t *bdata;
514
515restart:
516 list_for_each_entry(bdata, &bdata_list, list) {
517 void *region;
518
519 if (goal && bdata->node_low_pfn <= PFN_DOWN(goal))
520 continue;
521 if (limit && bdata->node_boot_start >= limit)
522 break;
523
524 region = alloc_bootmem_core(bdata, size, align, goal, limit);
525 if (region)
526 return region;
527 }
528
5f2809e6
JW
529 if (goal) {
530 goal = 0;
0f3caba2 531 goto restart;
5f2809e6 532 }
2e5237da 533
5f2809e6 534 return NULL;
1da177e4
LT
535}
536
a66fd7da
JW
537/**
538 * __alloc_bootmem_nopanic - allocate boot memory without panicking
539 * @size: size of the request in bytes
540 * @align: alignment of the region
541 * @goal: preferred starting address of the region
542 *
543 * The goal is dropped if it can not be satisfied and the allocation will
544 * fall back to memory below @goal.
545 *
546 * Allocation may happen on any node in the system.
547 *
548 * Returns NULL on failure.
549 */
bb0923a6 550void * __init __alloc_bootmem_nopanic(unsigned long size, unsigned long align,
0f3caba2 551 unsigned long goal)
1da177e4 552{
0f3caba2
JW
553 return ___alloc_bootmem_nopanic(size, align, goal, 0);
554}
1da177e4 555
0f3caba2
JW
556static void * __init ___alloc_bootmem(unsigned long size, unsigned long align,
557 unsigned long goal, unsigned long limit)
558{
559 void *mem = ___alloc_bootmem_nopanic(size, align, goal, limit);
560
561 if (mem)
562 return mem;
563 /*
564 * Whoops, we cannot satisfy the allocation request.
565 */
566 printk(KERN_ALERT "bootmem alloc of %lu bytes failed!\n", size);
567 panic("Out of memory");
a8062231
AK
568 return NULL;
569}
1da177e4 570
a66fd7da
JW
571/**
572 * __alloc_bootmem - allocate boot memory
573 * @size: size of the request in bytes
574 * @align: alignment of the region
575 * @goal: preferred starting address of the region
576 *
577 * The goal is dropped if it can not be satisfied and the allocation will
578 * fall back to memory below @goal.
579 *
580 * Allocation may happen on any node in the system.
581 *
582 * The function panics if the request can not be satisfied.
583 */
bb0923a6
FBH
584void * __init __alloc_bootmem(unsigned long size, unsigned long align,
585 unsigned long goal)
a8062231 586{
0f3caba2 587 return ___alloc_bootmem(size, align, goal, 0);
1da177e4
LT
588}
589
4cc278b7
JW
590static void * __init ___alloc_bootmem_node(bootmem_data_t *bdata,
591 unsigned long size, unsigned long align,
592 unsigned long goal, unsigned long limit)
593{
594 void *ptr;
595
596 ptr = alloc_bootmem_core(bdata, size, align, goal, limit);
597 if (ptr)
598 return ptr;
599
600 return ___alloc_bootmem(size, align, goal, limit);
601}
602
a66fd7da
JW
603/**
604 * __alloc_bootmem_node - allocate boot memory from a specific node
605 * @pgdat: node to allocate from
606 * @size: size of the request in bytes
607 * @align: alignment of the region
608 * @goal: preferred starting address of the region
609 *
610 * The goal is dropped if it can not be satisfied and the allocation will
611 * fall back to memory below @goal.
612 *
613 * Allocation may fall back to any node in the system if the specified node
614 * can not hold the requested memory.
615 *
616 * The function panics if the request can not be satisfied.
617 */
bb0923a6
FBH
618void * __init __alloc_bootmem_node(pg_data_t *pgdat, unsigned long size,
619 unsigned long align, unsigned long goal)
1da177e4 620{
4cc278b7 621 return ___alloc_bootmem_node(pgdat->bdata, size, align, goal, 0);
1da177e4
LT
622}
623
e70260aa 624#ifdef CONFIG_SPARSEMEM
a66fd7da
JW
625/**
626 * alloc_bootmem_section - allocate boot memory from a specific section
627 * @size: size of the request in bytes
628 * @section_nr: sparse map section to allocate from
629 *
630 * Return NULL on failure.
631 */
e70260aa
YG
632void * __init alloc_bootmem_section(unsigned long size,
633 unsigned long section_nr)
634{
75a56cfe
JW
635 bootmem_data_t *bdata;
636 unsigned long pfn, goal, limit;
e70260aa
YG
637
638 pfn = section_nr_to_pfn(section_nr);
75a56cfe
JW
639 goal = pfn << PAGE_SHIFT;
640 limit = section_nr_to_pfn(section_nr + 1) << PAGE_SHIFT;
641 bdata = &bootmem_node_data[early_pfn_to_nid(pfn)];
e70260aa 642
75a56cfe 643 return alloc_bootmem_core(bdata, size, SMP_CACHE_BYTES, goal, limit);
e70260aa
YG
644}
645#endif
646
b54bbf7b
AK
647void * __init __alloc_bootmem_node_nopanic(pg_data_t *pgdat, unsigned long size,
648 unsigned long align, unsigned long goal)
649{
650 void *ptr;
651
652 ptr = alloc_bootmem_core(pgdat->bdata, size, align, goal, 0);
653 if (ptr)
654 return ptr;
655
656 return __alloc_bootmem_nopanic(size, align, goal);
657}
658
dfd54cbc
HC
659#ifndef ARCH_LOW_ADDRESS_LIMIT
660#define ARCH_LOW_ADDRESS_LIMIT 0xffffffffUL
661#endif
008857c1 662
a66fd7da
JW
663/**
664 * __alloc_bootmem_low - allocate low boot memory
665 * @size: size of the request in bytes
666 * @align: alignment of the region
667 * @goal: preferred starting address of the region
668 *
669 * The goal is dropped if it can not be satisfied and the allocation will
670 * fall back to memory below @goal.
671 *
672 * Allocation may happen on any node in the system.
673 *
674 * The function panics if the request can not be satisfied.
675 */
bb0923a6
FBH
676void * __init __alloc_bootmem_low(unsigned long size, unsigned long align,
677 unsigned long goal)
008857c1 678{
0f3caba2 679 return ___alloc_bootmem(size, align, goal, ARCH_LOW_ADDRESS_LIMIT);
008857c1
RT
680}
681
a66fd7da
JW
682/**
683 * __alloc_bootmem_low_node - allocate low boot memory from a specific node
684 * @pgdat: node to allocate from
685 * @size: size of the request in bytes
686 * @align: alignment of the region
687 * @goal: preferred starting address of the region
688 *
689 * The goal is dropped if it can not be satisfied and the allocation will
690 * fall back to memory below @goal.
691 *
692 * Allocation may fall back to any node in the system if the specified node
693 * can not hold the requested memory.
694 *
695 * The function panics if the request can not be satisfied.
696 */
008857c1
RT
697void * __init __alloc_bootmem_low_node(pg_data_t *pgdat, unsigned long size,
698 unsigned long align, unsigned long goal)
699{
4cc278b7
JW
700 return ___alloc_bootmem_node(pgdat->bdata, size, align,
701 goal, ARCH_LOW_ADDRESS_LIMIT);
008857c1 702}