blob: 9e197987b67ddce7bd80adf8e7ff4582d7db3ca5 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Johannes Weiner57cfc292008-07-23 21:28:00 -07003 * bootmem - A boot-time physical memory allocator and configurator
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Copyright (C) 1999 Ingo Molnar
Johannes Weiner57cfc292008-07-23 21:28:00 -07006 * 1999 Kanoj Sarcar, SGI
7 * 2008 Johannes Weiner
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Johannes Weiner57cfc292008-07-23 21:28:00 -07009 * Access to this subsystem has to be serialized externally (which is true
10 * for the boot process anyway).
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/init.h>
Franck Bui-Huubbc7b922006-09-25 23:31:07 -070013#include <linux/pfn.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040015#include <linux/export.h>
Catalin Marinasec3a3542009-07-07 10:33:01 +010016#include <linux/kmemleak.h>
Yinghai Lu08677212010-02-10 01:20:20 -080017#include <linux/range.h>
Paul McQuaded85fbee2014-10-09 15:29:05 -070018#include <linux/bug.h>
19#include <linux/io.h>
zijun_hu1d8bf922016-10-07 16:59:27 -070020#include <linux/bootmem.h>
Franck Bui-Huue786e862006-09-25 23:31:06 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "internal.h"
23
Yinghai Lue782ab42011-02-24 14:43:06 +010024#ifndef CONFIG_NEED_MULTIPLE_NODES
25struct pglist_data __refdata contig_page_data = {
26 .bdata = &bootmem_node_data[0]
27};
28EXPORT_SYMBOL(contig_page_data);
29#endif
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031unsigned long max_low_pfn;
32unsigned long min_low_pfn;
33unsigned long max_pfn;
Igor Mammedov8dd33032015-12-04 14:07:05 +010034unsigned long long max_possible_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Johannes Weinerb61bfa32008-07-23 21:26:55 -070036bootmem_data_t bootmem_node_data[MAX_NUMNODES] __initdata;
37
Johannes Weiner636cc402008-07-23 21:28:03 -070038static struct list_head bdata_list __initdata = LIST_HEAD_INIT(bdata_list);
39
Johannes Weiner2e5237d2008-07-23 21:28:02 -070040static int bootmem_debug;
41
42static int __init bootmem_debug_setup(char *buf)
43{
44 bootmem_debug = 1;
45 return 0;
46}
47early_param("bootmem_debug", bootmem_debug_setup);
48
49#define bdebug(fmt, args...) ({ \
50 if (unlikely(bootmem_debug)) \
Joe Perches11705322016-03-17 14:19:50 -070051 pr_info("bootmem::%s " fmt, \
Harvey Harrison80a914d2008-10-15 22:01:25 -070052 __func__, ## args); \
Johannes Weiner2e5237d2008-07-23 21:28:02 -070053})
54
Johannes Weinerdf049a52008-07-23 21:28:02 -070055static unsigned long __init bootmap_bytes(unsigned long pages)
Johannes Weiner223e8dc2008-07-23 21:28:00 -070056{
Adygzhy Ondard3a9d7a32017-02-22 15:44:58 -080057 unsigned long bytes = DIV_ROUND_UP(pages, BITS_PER_BYTE);
Johannes Weiner223e8dc2008-07-23 21:28:00 -070058
Johannes Weinerdf049a52008-07-23 21:28:02 -070059 return ALIGN(bytes, sizeof(long));
Johannes Weiner223e8dc2008-07-23 21:28:00 -070060}
61
Johannes Weinera66fd7d2008-07-23 21:28:01 -070062/**
63 * bootmem_bootmap_pages - calculate bitmap size in pages
64 * @pages: number of pages the bitmap has to represent
65 */
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070066unsigned long __init bootmem_bootmap_pages(unsigned long pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Johannes Weinerdf049a52008-07-23 21:28:02 -070068 unsigned long bytes = bootmap_bytes(pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Johannes Weinerdf049a52008-07-23 21:28:02 -070070 return PAGE_ALIGN(bytes) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070072
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080073/*
74 * link bdata in order
75 */
Franck Bui-Huu69d49e62006-09-25 23:31:04 -070076static void __init link_bootmem(bootmem_data_t *bdata)
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080077{
Gavin Shan5c2b8a12012-05-29 15:06:46 -070078 bootmem_data_t *ent;
Franck Bui-Huuf71bf0c2006-09-25 23:31:08 -070079
Gavin Shan5c2b8a12012-05-29 15:06:46 -070080 list_for_each_entry(ent, &bdata_list, list) {
81 if (bdata->node_min_pfn < ent->node_min_pfn) {
82 list_add_tail(&bdata->list, &ent->list);
83 return;
84 }
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080085 }
Gavin Shan5c2b8a12012-05-29 15:06:46 -070086
87 list_add_tail(&bdata->list, &bdata_list);
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -080088}
89
Franck Bui-Huubbc7b922006-09-25 23:31:07 -070090/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 * Called once to set up the allocator itself.
92 */
Johannes Weiner8ae04462008-07-23 21:26:59 -070093static unsigned long __init init_bootmem_core(bootmem_data_t *bdata,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 unsigned long mapstart, unsigned long start, unsigned long end)
95{
Franck Bui-Huubbc7b922006-09-25 23:31:07 -070096 unsigned long mapsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Mel Gorman2dbb51c2008-07-23 21:26:52 -070098 mminit_validate_memmodel_limits(&start, &end);
Franck Bui-Huubbc7b922006-09-25 23:31:07 -070099 bdata->node_bootmem_map = phys_to_virt(PFN_PHYS(mapstart));
Johannes Weiner3560e242008-07-23 21:28:09 -0700100 bdata->node_min_pfn = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 bdata->node_low_pfn = end;
KAMEZAWA Hiroyuki679bc9f2006-03-27 01:15:58 -0800102 link_bootmem(bdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 /*
105 * Initially all pages are reserved - setup_arch() has to
106 * register free RAM areas explicitly.
107 */
Johannes Weinerdf049a52008-07-23 21:28:02 -0700108 mapsize = bootmap_bytes(end - start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 memset(bdata->node_bootmem_map, 0xff, mapsize);
110
Johannes Weiner2e5237d2008-07-23 21:28:02 -0700111 bdebug("nid=%td start=%lx map=%lx end=%lx mapsize=%lx\n",
112 bdata - bootmem_node_data, start, mapstart, end, mapsize);
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return mapsize;
115}
116
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700117/**
118 * init_bootmem_node - register a node as boot memory
119 * @pgdat: node to register
120 * @freepfn: pfn where the bitmap for this node is to be placed
121 * @startpfn: first pfn on the node
122 * @endpfn: first pfn after the node
123 *
124 * Returns the number of bytes needed to hold the bitmap for this node.
125 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700126unsigned long __init init_bootmem_node(pg_data_t *pgdat, unsigned long freepfn,
127 unsigned long startpfn, unsigned long endpfn)
128{
129 return init_bootmem_core(pgdat->bdata, freepfn, startpfn, endpfn);
130}
131
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700132/**
133 * init_bootmem - register boot memory
134 * @start: pfn where the bitmap is to be placed
135 * @pages: number of available physical pages
136 *
137 * Returns the number of bytes needed to hold the bitmap.
138 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700139unsigned long __init init_bootmem(unsigned long start, unsigned long pages)
140{
141 max_low_pfn = pages;
142 min_low_pfn = start;
143 return init_bootmem_core(NODE_DATA(0)->bdata, start, 0, pages);
144}
Yinghai Lu09325872011-02-24 14:43:05 +0100145
FUJITA Tomonori9f993ac2009-11-10 19:46:17 +0900146/*
147 * free_bootmem_late - free bootmem pages directly to page allocator
Joonsoo Kim81df9bf2012-12-11 16:03:10 -0800148 * @addr: starting physical address of the range
FUJITA Tomonori9f993ac2009-11-10 19:46:17 +0900149 * @size: size of the range in bytes
150 *
151 * This is only useful when the bootmem allocator has already been torn
152 * down, but we are still initializing the system. Pages are given directly
153 * to the page allocator, no bootmem metadata is updated because it is gone.
154 */
Joonsoo Kim81df9bf2012-12-11 16:03:10 -0800155void __init free_bootmem_late(unsigned long physaddr, unsigned long size)
FUJITA Tomonori9f993ac2009-11-10 19:46:17 +0900156{
157 unsigned long cursor, end;
158
Catalin Marinas9099dae2016-10-11 13:55:11 -0700159 kmemleak_free_part_phys(physaddr, size);
FUJITA Tomonori9f993ac2009-11-10 19:46:17 +0900160
Joonsoo Kim81df9bf2012-12-11 16:03:10 -0800161 cursor = PFN_UP(physaddr);
162 end = PFN_DOWN(physaddr + size);
FUJITA Tomonori9f993ac2009-11-10 19:46:17 +0900163
164 for (; cursor < end; cursor++) {
Mel Gormand70ddd72015-06-30 14:56:52 -0700165 __free_pages_bootmem(pfn_to_page(cursor), cursor, 0);
FUJITA Tomonori9f993ac2009-11-10 19:46:17 +0900166 totalram_pages++;
167 }
168}
169
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700170static unsigned long __init free_all_bootmem_core(bootmem_data_t *bdata)
171{
172 struct page *page;
Mel Gormand70ddd72015-06-30 14:56:52 -0700173 unsigned long *map, start, end, pages, cur, count = 0;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700174
Johannes Weiner41546c12008-07-23 21:28:03 -0700175 if (!bdata->node_bootmem_map)
176 return 0;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700177
Daeseok Youn4a099fb2013-11-12 15:08:14 -0800178 map = bdata->node_bootmem_map;
Johannes Weiner3560e242008-07-23 21:28:09 -0700179 start = bdata->node_min_pfn;
Johannes Weiner41546c12008-07-23 21:28:03 -0700180 end = bdata->node_low_pfn;
181
Johannes Weiner799f9332012-01-10 15:08:15 -0800182 bdebug("nid=%td start=%lx end=%lx\n",
183 bdata - bootmem_node_data, start, end);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700184
Johannes Weiner41546c12008-07-23 21:28:03 -0700185 while (start < end) {
Daeseok Youn4a099fb2013-11-12 15:08:14 -0800186 unsigned long idx, vec;
Max Filippov10d73e62013-01-11 14:31:52 -0800187 unsigned shift;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700188
Johannes Weiner3560e242008-07-23 21:28:09 -0700189 idx = start - bdata->node_min_pfn;
Max Filippov10d73e62013-01-11 14:31:52 -0800190 shift = idx & (BITS_PER_LONG - 1);
191 /*
192 * vec holds at most BITS_PER_LONG map bits,
193 * bit 0 corresponds to start.
194 */
Johannes Weiner41546c12008-07-23 21:28:03 -0700195 vec = ~map[idx / BITS_PER_LONG];
Max Filippov10d73e62013-01-11 14:31:52 -0800196
197 if (shift) {
198 vec >>= shift;
199 if (end - start >= BITS_PER_LONG)
200 vec |= ~map[idx / BITS_PER_LONG + 1] <<
201 (BITS_PER_LONG - shift);
202 }
Johannes Weiner799f9332012-01-10 15:08:15 -0800203 /*
204 * If we have a properly aligned and fully unreserved
205 * BITS_PER_LONG block of pages in front of us, free
206 * it in one go.
207 */
208 if (IS_ALIGNED(start, BITS_PER_LONG) && vec == ~0UL) {
Johannes Weiner41546c12008-07-23 21:28:03 -0700209 int order = ilog2(BITS_PER_LONG);
210
Mel Gormand70ddd72015-06-30 14:56:52 -0700211 __free_pages_bootmem(pfn_to_page(start), start, order);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700212 count += BITS_PER_LONG;
Johannes Weiner799f9332012-01-10 15:08:15 -0800213 start += BITS_PER_LONG;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700214 } else {
Mel Gormand70ddd72015-06-30 14:56:52 -0700215 cur = start;
Johannes Weiner41546c12008-07-23 21:28:03 -0700216
Max Filippov10d73e62013-01-11 14:31:52 -0800217 start = ALIGN(start + 1, BITS_PER_LONG);
218 while (vec && cur != start) {
Johannes Weiner41546c12008-07-23 21:28:03 -0700219 if (vec & 1) {
Max Filippov10d73e62013-01-11 14:31:52 -0800220 page = pfn_to_page(cur);
Mel Gormand70ddd72015-06-30 14:56:52 -0700221 __free_pages_bootmem(page, cur, 0);
Johannes Weiner41546c12008-07-23 21:28:03 -0700222 count++;
223 }
224 vec >>= 1;
Max Filippov10d73e62013-01-11 14:31:52 -0800225 ++cur;
Johannes Weiner41546c12008-07-23 21:28:03 -0700226 }
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700227 }
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700228 }
229
Mel Gormand70ddd72015-06-30 14:56:52 -0700230 cur = bdata->node_min_pfn;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700231 page = virt_to_page(bdata->node_bootmem_map);
Johannes Weiner3560e242008-07-23 21:28:09 -0700232 pages = bdata->node_low_pfn - bdata->node_min_pfn;
Johannes Weiner41546c12008-07-23 21:28:03 -0700233 pages = bootmem_bootmap_pages(pages);
234 count += pages;
Andrew Morton55766462012-11-16 14:15:06 -0800235 while (pages--)
Mel Gormand70ddd72015-06-30 14:56:52 -0700236 __free_pages_bootmem(page++, cur++, 0);
Chris Metcalf1b4ace42015-09-08 15:02:12 -0700237 bdata->node_bootmem_map = NULL;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700238
Johannes Weiner2e5237d2008-07-23 21:28:02 -0700239 bdebug("nid=%td released=%lx\n", bdata - bootmem_node_data, count);
240
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700241 return count;
242}
243
Jiang Liu7b4b2a02013-07-03 15:03:11 -0700244static int reset_managed_pages_done __initdata;
245
Tang Chenf784a3f2014-11-13 15:19:39 -0800246void reset_node_managed_pages(pg_data_t *pgdat)
Jiang Liu9feedc92012-12-12 13:52:12 -0800247{
248 struct zone *z;
249
Jiang Liu9feedc92012-12-12 13:52:12 -0800250 for (z = pgdat->node_zones; z < pgdat->node_zones + MAX_NR_ZONES; z++)
Jiang Liu7b4b2a02013-07-03 15:03:11 -0700251 z->managed_pages = 0;
252}
253
254void __init reset_all_zones_managed_pages(void)
255{
256 struct pglist_data *pgdat;
257
Tang Chenf784a3f2014-11-13 15:19:39 -0800258 if (reset_managed_pages_done)
259 return;
260
Jiang Liu7b4b2a02013-07-03 15:03:11 -0700261 for_each_online_pgdat(pgdat)
262 reset_node_managed_pages(pgdat);
Tang Chenf784a3f2014-11-13 15:19:39 -0800263
Jiang Liu7b4b2a02013-07-03 15:03:11 -0700264 reset_managed_pages_done = 1;
Jiang Liu9feedc92012-12-12 13:52:12 -0800265}
266
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700267/**
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700268 * free_all_bootmem - release free pages to the buddy allocator
269 *
270 * Returns the number of pages actually released.
271 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700272unsigned long __init free_all_bootmem(void)
273{
Yinghai Luaa235fc2010-03-31 20:45:27 -0700274 unsigned long total_pages = 0;
275 bootmem_data_t *bdata;
Jiang Liu9feedc92012-12-12 13:52:12 -0800276
Jiang Liu7b4b2a02013-07-03 15:03:11 -0700277 reset_all_zones_managed_pages();
Yinghai Luaa235fc2010-03-31 20:45:27 -0700278
279 list_for_each_entry(bdata, &bdata_list, list)
280 total_pages += free_all_bootmem_core(bdata);
281
Jiang Liu0c988532013-07-03 15:03:24 -0700282 totalram_pages += total_pages;
283
Yinghai Luaa235fc2010-03-31 20:45:27 -0700284 return total_pages;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700285}
286
Johannes Weinerd747fa42008-07-23 21:28:05 -0700287static void __init __free(bootmem_data_t *bdata,
288 unsigned long sidx, unsigned long eidx)
289{
290 unsigned long idx;
291
292 bdebug("nid=%td start=%lx end=%lx\n", bdata - bootmem_node_data,
Johannes Weiner3560e242008-07-23 21:28:09 -0700293 sidx + bdata->node_min_pfn,
294 eidx + bdata->node_min_pfn);
Johannes Weinerd747fa42008-07-23 21:28:05 -0700295
Chris Metcalf1b4ace42015-09-08 15:02:12 -0700296 if (WARN_ON(bdata->node_bootmem_map == NULL))
297 return;
298
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700299 if (bdata->hint_idx > sidx)
300 bdata->hint_idx = sidx;
301
Johannes Weinerd747fa42008-07-23 21:28:05 -0700302 for (idx = sidx; idx < eidx; idx++)
303 if (!test_and_clear_bit(idx, bdata->node_bootmem_map))
304 BUG();
305}
306
307static int __init __reserve(bootmem_data_t *bdata, unsigned long sidx,
308 unsigned long eidx, int flags)
309{
310 unsigned long idx;
311 int exclusive = flags & BOOTMEM_EXCLUSIVE;
312
313 bdebug("nid=%td start=%lx end=%lx flags=%x\n",
314 bdata - bootmem_node_data,
Johannes Weiner3560e242008-07-23 21:28:09 -0700315 sidx + bdata->node_min_pfn,
316 eidx + bdata->node_min_pfn,
Johannes Weinerd747fa42008-07-23 21:28:05 -0700317 flags);
318
Chris Metcalf1b4ace42015-09-08 15:02:12 -0700319 if (WARN_ON(bdata->node_bootmem_map == NULL))
320 return 0;
321
Johannes Weinerd747fa42008-07-23 21:28:05 -0700322 for (idx = sidx; idx < eidx; idx++)
323 if (test_and_set_bit(idx, bdata->node_bootmem_map)) {
324 if (exclusive) {
325 __free(bdata, sidx, idx);
326 return -EBUSY;
327 }
328 bdebug("silent double reserve of PFN %lx\n",
Johannes Weiner3560e242008-07-23 21:28:09 -0700329 idx + bdata->node_min_pfn);
Johannes Weinerd747fa42008-07-23 21:28:05 -0700330 }
331 return 0;
332}
333
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700334static int __init mark_bootmem_node(bootmem_data_t *bdata,
335 unsigned long start, unsigned long end,
336 int reserve, int flags)
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700337{
338 unsigned long sidx, eidx;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700339
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700340 bdebug("nid=%td start=%lx end=%lx reserve=%d flags=%x\n",
341 bdata - bootmem_node_data, start, end, reserve, flags);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700342
Johannes Weiner3560e242008-07-23 21:28:09 -0700343 BUG_ON(start < bdata->node_min_pfn);
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700344 BUG_ON(end > bdata->node_low_pfn);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700345
Johannes Weiner3560e242008-07-23 21:28:09 -0700346 sidx = start - bdata->node_min_pfn;
347 eidx = end - bdata->node_min_pfn;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700348
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700349 if (reserve)
350 return __reserve(bdata, sidx, eidx, flags);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700351 else
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700352 __free(bdata, sidx, eidx);
353 return 0;
354}
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700355
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700356static int __init mark_bootmem(unsigned long start, unsigned long end,
357 int reserve, int flags)
358{
359 unsigned long pos;
360 bootmem_data_t *bdata;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700361
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700362 pos = start;
363 list_for_each_entry(bdata, &bdata_list, list) {
364 int err;
365 unsigned long max;
366
Johannes Weiner3560e242008-07-23 21:28:09 -0700367 if (pos < bdata->node_min_pfn ||
368 pos >= bdata->node_low_pfn) {
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700369 BUG_ON(pos != start);
370 continue;
371 }
372
373 max = min(bdata->node_low_pfn, end);
374
375 err = mark_bootmem_node(bdata, pos, max, reserve, flags);
376 if (reserve && err) {
377 mark_bootmem(start, pos, 0, 0);
378 return err;
379 }
380
381 if (max == end)
382 return 0;
383 pos = bdata->node_low_pfn;
384 }
385 BUG();
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700386}
387
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700388/**
389 * free_bootmem_node - mark a page range as usable
390 * @pgdat: node the range resides on
391 * @physaddr: starting address of the range
392 * @size: size of the range in bytes
393 *
394 * Partial pages will be considered reserved and left as they are.
395 *
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700396 * The range must reside completely on the specified node.
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700397 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700398void __init free_bootmem_node(pg_data_t *pgdat, unsigned long physaddr,
399 unsigned long size)
400{
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700401 unsigned long start, end;
402
Catalin Marinas9099dae2016-10-11 13:55:11 -0700403 kmemleak_free_part_phys(physaddr, size);
Catalin Marinasec3a3542009-07-07 10:33:01 +0100404
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700405 start = PFN_UP(physaddr);
406 end = PFN_DOWN(physaddr + size);
407
408 mark_bootmem_node(pgdat->bdata, start, end, 0, 0);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700409}
410
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700411/**
412 * free_bootmem - mark a page range as usable
Mike Rapoportf144c392018-02-06 15:42:16 -0800413 * @physaddr: starting physical address of the range
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700414 * @size: size of the range in bytes
415 *
416 * Partial pages will be considered reserved and left as they are.
417 *
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700418 * The range must be contiguous but may span node boundaries.
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700419 */
Joonsoo Kim81df9bf2012-12-11 16:03:10 -0800420void __init free_bootmem(unsigned long physaddr, unsigned long size)
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700421{
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700422 unsigned long start, end;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700423
Catalin Marinas9099dae2016-10-11 13:55:11 -0700424 kmemleak_free_part_phys(physaddr, size);
Catalin Marinasec3a3542009-07-07 10:33:01 +0100425
Joonsoo Kim81df9bf2012-12-11 16:03:10 -0800426 start = PFN_UP(physaddr);
427 end = PFN_DOWN(physaddr + size);
Yinghai Lua5645a62008-03-18 12:49:12 -0700428
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700429 mark_bootmem(start, end, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700432/**
433 * reserve_bootmem_node - mark a page range as reserved
434 * @pgdat: node the range resides on
435 * @physaddr: starting address of the range
436 * @size: size of the range in bytes
437 * @flags: reservation flags (see linux/bootmem.h)
438 *
439 * Partial pages will be reserved.
440 *
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700441 * The range must reside completely on the specified node.
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700442 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700443int __init reserve_bootmem_node(pg_data_t *pgdat, unsigned long physaddr,
444 unsigned long size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700446 unsigned long start, end;
Franck Bui-Huubbc7b922006-09-25 23:31:07 -0700447
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700448 start = PFN_DOWN(physaddr);
449 end = PFN_UP(physaddr + size);
450
451 return mark_bootmem_node(pgdat->bdata, start, end, 1, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700454/**
Javi Merino0d4ba4d2012-08-24 18:09:31 +0100455 * reserve_bootmem - mark a page range as reserved
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700456 * @addr: starting address of the range
457 * @size: size of the range in bytes
458 * @flags: reservation flags (see linux/bootmem.h)
459 *
460 * Partial pages will be reserved.
461 *
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700462 * The range must be contiguous but may span node boundaries.
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700463 */
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700464int __init reserve_bootmem(unsigned long addr, unsigned long size,
465 int flags)
466{
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700467 unsigned long start, end;
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700468
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700469 start = PFN_DOWN(addr);
470 end = PFN_UP(addr + size);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700471
Johannes Weinere2bf3ca2008-07-23 21:28:06 -0700472 return mark_bootmem(start, end, 1, flags);
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700473}
Johannes Weiner223e8dc2008-07-23 21:28:00 -0700474
Jan Beulich8aa043d2009-12-14 17:59:46 -0800475static unsigned long __init align_idx(struct bootmem_data *bdata,
476 unsigned long idx, unsigned long step)
Johannes Weiner481ebd02008-08-20 14:09:15 -0700477{
478 unsigned long base = bdata->node_min_pfn;
479
480 /*
481 * Align the index with respect to the node start so that the
482 * combination of both satisfies the requested alignment.
483 */
484
485 return ALIGN(base + idx, step) - base;
486}
487
Jan Beulich8aa043d2009-12-14 17:59:46 -0800488static unsigned long __init align_off(struct bootmem_data *bdata,
489 unsigned long off, unsigned long align)
Johannes Weiner481ebd02008-08-20 14:09:15 -0700490{
491 unsigned long base = PFN_PHYS(bdata->node_min_pfn);
492
493 /* Same as align_idx for byte offsets */
494
495 return ALIGN(base + off, align) - base;
496}
497
Johannes Weinerc6785b62012-05-29 15:06:33 -0700498static void * __init alloc_bootmem_bdata(struct bootmem_data *bdata,
Tejun Heod0c4f572009-03-01 16:06:56 +0900499 unsigned long size, unsigned long align,
500 unsigned long goal, unsigned long limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700502 unsigned long fallback = 0;
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700503 unsigned long min, max, start, sidx, midx, step;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Johannes Weiner594fe1a2009-01-06 14:40:32 -0800505 bdebug("nid=%td size=%lx [%lu pages] align=%lx goal=%lx limit=%lx\n",
506 bdata - bootmem_node_data, size, PAGE_ALIGN(size) >> PAGE_SHIFT,
507 align, goal, limit);
508
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700509 BUG_ON(!size);
510 BUG_ON(align & (align - 1));
511 BUG_ON(limit && goal + size > limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Christian Krafft7c309a62006-12-06 20:32:41 -0800513 if (!bdata->node_bootmem_map)
514 return NULL;
515
Johannes Weiner3560e242008-07-23 21:28:09 -0700516 min = bdata->node_min_pfn;
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700517 max = bdata->node_low_pfn;
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700518
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700519 goal >>= PAGE_SHIFT;
520 limit >>= PAGE_SHIFT;
521
522 if (limit && max > limit)
523 max = limit;
524 if (max <= min)
Yinghai Lu9a2dc042008-03-18 12:44:48 -0700525 return NULL;
526
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700527 step = max(align >> PAGE_SHIFT, 1UL);
Yasunori Goto281dd252005-10-19 15:52:18 -0700528
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700529 if (goal && min < goal && goal < max)
530 start = ALIGN(goal, step);
531 else
532 start = ALIGN(min, step);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Johannes Weiner481ebd02008-08-20 14:09:15 -0700534 sidx = start - bdata->node_min_pfn;
Johannes Weiner3560e242008-07-23 21:28:09 -0700535 midx = max - bdata->node_min_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700537 if (bdata->hint_idx > sidx) {
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700538 /*
539 * Handle the valid case of sidx being zero and still
540 * catch the fallback below.
541 */
542 fallback = sidx + 1;
Johannes Weiner481ebd02008-08-20 14:09:15 -0700543 sidx = align_idx(bdata, bdata->hint_idx, step);
Yinghai Luad093152008-03-10 23:23:42 -0700544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700546 while (1) {
547 int merge;
548 void *region;
549 unsigned long eidx, i, start_off, end_off;
550find_block:
551 sidx = find_next_zero_bit(bdata->node_bootmem_map, midx, sidx);
Johannes Weiner481ebd02008-08-20 14:09:15 -0700552 sidx = align_idx(bdata, sidx, step);
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700553 eidx = sidx + PFN_UP(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700555 if (sidx >= midx || eidx > midx)
Haren Myneni66d43e92005-12-12 00:37:39 -0800556 break;
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700557
558 for (i = sidx; i < eidx; i++)
559 if (test_bit(i, bdata->node_bootmem_map)) {
Johannes Weiner481ebd02008-08-20 14:09:15 -0700560 sidx = align_idx(bdata, i, step);
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700561 if (sidx == i)
562 sidx += step;
563 goto find_block;
564 }
565
Mikulas Patocka627240a2008-08-15 00:40:17 -0700566 if (bdata->last_end_off & (PAGE_SIZE - 1) &&
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700567 PFN_DOWN(bdata->last_end_off) + 1 == sidx)
Johannes Weiner481ebd02008-08-20 14:09:15 -0700568 start_off = align_off(bdata, bdata->last_end_off, align);
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700569 else
570 start_off = PFN_PHYS(sidx);
571
572 merge = PFN_DOWN(start_off) < sidx;
573 end_off = start_off + size;
574
575 bdata->last_end_off = end_off;
576 bdata->hint_idx = PFN_UP(end_off);
577
578 /*
579 * Reserve the area now:
580 */
Johannes Weinerd747fa42008-07-23 21:28:05 -0700581 if (__reserve(bdata, PFN_DOWN(start_off) + merge,
582 PFN_UP(end_off), BOOTMEM_EXCLUSIVE))
583 BUG();
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700584
Johannes Weiner3560e242008-07-23 21:28:09 -0700585 region = phys_to_virt(PFN_PHYS(bdata->node_min_pfn) +
586 start_off);
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700587 memset(region, 0, size);
Catalin Marinas008139d2009-08-27 14:29:17 +0100588 /*
589 * The min_count is set to 0 so that bootmem allocated blocks
590 * are never reported as leaks.
591 */
592 kmemleak_alloc(region, size, 0, 0);
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700593 return region;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
595
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700596 if (fallback) {
Johannes Weiner481ebd02008-08-20 14:09:15 -0700597 sidx = align_idx(bdata, fallback - 1, step);
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700598 fallback = 0;
599 goto find_block;
600 }
601
602 return NULL;
603}
604
Johannes Weinerc12ab502012-05-29 15:06:33 -0700605static void * __init alloc_bootmem_core(unsigned long size,
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700606 unsigned long align,
607 unsigned long goal,
608 unsigned long limit)
609{
610 bootmem_data_t *bdata;
Tejun Heod0c4f572009-03-01 16:06:56 +0900611 void *region;
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700612
Joonsoo Kim3f7dfe22012-12-12 13:50:43 -0800613 if (WARN_ON_ONCE(slab_is_available()))
614 return kzalloc(size, GFP_NOWAIT);
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700615
Tejun Heod0c4f572009-03-01 16:06:56 +0900616 list_for_each_entry(bdata, &bdata_list, list) {
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700617 if (goal && bdata->node_low_pfn <= PFN_DOWN(goal))
618 continue;
Johannes Weiner3560e242008-07-23 21:28:09 -0700619 if (limit && bdata->node_min_pfn >= PFN_DOWN(limit))
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700620 break;
621
Johannes Weinerc6785b62012-05-29 15:06:33 -0700622 region = alloc_bootmem_bdata(bdata, size, align, goal, limit);
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700623 if (region)
624 return region;
625 }
626
Johannes Weinerc12ab502012-05-29 15:06:33 -0700627 return NULL;
628}
629
630static void * __init ___alloc_bootmem_nopanic(unsigned long size,
631 unsigned long align,
632 unsigned long goal,
633 unsigned long limit)
634{
635 void *ptr;
636
637restart:
638 ptr = alloc_bootmem_core(size, align, goal, limit);
639 if (ptr)
640 return ptr;
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700641 if (goal) {
642 goal = 0;
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700643 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
Johannes Weiner5f2809e2008-07-23 21:28:05 -0700645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700649/**
650 * __alloc_bootmem_nopanic - allocate boot memory without panicking
651 * @size: size of the request in bytes
652 * @align: alignment of the region
653 * @goal: preferred starting address of the region
654 *
655 * The goal is dropped if it can not be satisfied and the allocation will
656 * fall back to memory below @goal.
657 *
658 * Allocation may happen on any node in the system.
659 *
660 * Returns NULL on failure.
661 */
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700662void * __init __alloc_bootmem_nopanic(unsigned long size, unsigned long align,
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700663 unsigned long goal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Yinghai Lu08677212010-02-10 01:20:20 -0800665 unsigned long limit = 0;
666
Yinghai Lu08677212010-02-10 01:20:20 -0800667 return ___alloc_bootmem_nopanic(size, align, goal, limit);
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700668}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700670static void * __init ___alloc_bootmem(unsigned long size, unsigned long align,
671 unsigned long goal, unsigned long limit)
672{
673 void *mem = ___alloc_bootmem_nopanic(size, align, goal, limit);
674
675 if (mem)
676 return mem;
677 /*
678 * Whoops, we cannot satisfy the allocation request.
679 */
Joe Perches11705322016-03-17 14:19:50 -0700680 pr_alert("bootmem alloc of %lu bytes failed!\n", size);
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700681 panic("Out of memory");
Andi Kleena8062232006-04-07 19:49:21 +0200682 return NULL;
683}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700685/**
686 * __alloc_bootmem - allocate boot memory
687 * @size: size of the request in bytes
688 * @align: alignment of the region
689 * @goal: preferred starting address of the region
690 *
691 * The goal is dropped if it can not be satisfied and the allocation will
692 * fall back to memory below @goal.
693 *
694 * Allocation may happen on any node in the system.
695 *
696 * The function panics if the request can not be satisfied.
697 */
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700698void * __init __alloc_bootmem(unsigned long size, unsigned long align,
699 unsigned long goal)
Andi Kleena8062232006-04-07 19:49:21 +0200700{
Yinghai Lu08677212010-02-10 01:20:20 -0800701 unsigned long limit = 0;
702
Yinghai Lu08677212010-02-10 01:20:20 -0800703 return ___alloc_bootmem(size, align, goal, limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
Yinghai Lu99ab7b12012-07-11 14:02:53 -0700706void * __init ___alloc_bootmem_node_nopanic(pg_data_t *pgdat,
Johannes Weiner4cc278b2008-07-23 21:28:08 -0700707 unsigned long size, unsigned long align,
708 unsigned long goal, unsigned long limit)
709{
710 void *ptr;
711
Joonsoo Kim3f7dfe22012-12-12 13:50:43 -0800712 if (WARN_ON_ONCE(slab_is_available()))
zijun_hu1d8bf922016-10-07 16:59:27 -0700713 return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id);
Johannes Weinerab381842012-05-29 15:06:34 -0700714again:
Tejun Heod0c4f572009-03-01 16:06:56 +0900715
Yinghai Luc8f4a2d2012-07-17 15:47:51 -0700716 /* do not panic in alloc_bootmem_bdata() */
717 if (limit && goal + size > limit)
718 limit = 0;
719
Johannes Weinere9079912012-05-29 15:06:36 -0700720 ptr = alloc_bootmem_bdata(pgdat->bdata, size, align, goal, limit);
Johannes Weiner4cc278b2008-07-23 21:28:08 -0700721 if (ptr)
722 return ptr;
723
Johannes Weinerab381842012-05-29 15:06:34 -0700724 ptr = alloc_bootmem_core(size, align, goal, limit);
725 if (ptr)
726 return ptr;
727
728 if (goal) {
729 goal = 0;
730 goto again;
731 }
732
Johannes Weiner421456e2012-05-29 15:06:34 -0700733 return NULL;
734}
735
736void * __init __alloc_bootmem_node_nopanic(pg_data_t *pgdat, unsigned long size,
737 unsigned long align, unsigned long goal)
738{
Johannes Weinere9079912012-05-29 15:06:36 -0700739 return ___alloc_bootmem_node_nopanic(pgdat, size, align, goal, 0);
Johannes Weiner421456e2012-05-29 15:06:34 -0700740}
741
Johannes Weinere9079912012-05-29 15:06:36 -0700742void * __init ___alloc_bootmem_node(pg_data_t *pgdat, unsigned long size,
Johannes Weiner421456e2012-05-29 15:06:34 -0700743 unsigned long align, unsigned long goal,
744 unsigned long limit)
745{
746 void *ptr;
747
Johannes Weinere9079912012-05-29 15:06:36 -0700748 ptr = ___alloc_bootmem_node_nopanic(pgdat, size, align, goal, 0);
Johannes Weiner421456e2012-05-29 15:06:34 -0700749 if (ptr)
750 return ptr;
751
Joe Perches11705322016-03-17 14:19:50 -0700752 pr_alert("bootmem alloc of %lu bytes failed!\n", size);
Johannes Weinerab381842012-05-29 15:06:34 -0700753 panic("Out of memory");
754 return NULL;
Johannes Weiner4cc278b2008-07-23 21:28:08 -0700755}
756
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700757/**
758 * __alloc_bootmem_node - allocate boot memory from a specific node
759 * @pgdat: node to allocate from
760 * @size: size of the request in bytes
761 * @align: alignment of the region
762 * @goal: preferred starting address of the region
763 *
764 * The goal is dropped if it can not be satisfied and the allocation will
765 * fall back to memory below @goal.
766 *
767 * Allocation may fall back to any node in the system if the specified node
768 * can not hold the requested memory.
769 *
770 * The function panics if the request can not be satisfied.
771 */
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700772void * __init __alloc_bootmem_node(pg_data_t *pgdat, unsigned long size,
773 unsigned long align, unsigned long goal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Pekka Enbergc91c4772009-06-11 08:10:28 +0300775 if (WARN_ON_ONCE(slab_is_available()))
776 return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id);
777
Johannes Weinere9079912012-05-29 15:06:36 -0700778 return ___alloc_bootmem_node(pgdat, size, align, goal, 0);
Yinghai Lu08677212010-02-10 01:20:20 -0800779}
780
781void * __init __alloc_bootmem_node_high(pg_data_t *pgdat, unsigned long size,
782 unsigned long align, unsigned long goal)
783{
784#ifdef MAX_DMA32_PFN
785 unsigned long end_pfn;
786
787 if (WARN_ON_ONCE(slab_is_available()))
788 return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id);
789
790 /* update goal according ...MAX_DMA32_PFN */
Xishi Qiu83285c72013-11-12 15:07:19 -0800791 end_pfn = pgdat_end_pfn(pgdat);
Yinghai Lu08677212010-02-10 01:20:20 -0800792
793 if (end_pfn > MAX_DMA32_PFN + (128 >> (20 - PAGE_SHIFT)) &&
794 (goal >> PAGE_SHIFT) < MAX_DMA32_PFN) {
795 void *ptr;
796 unsigned long new_goal;
797
798 new_goal = MAX_DMA32_PFN << PAGE_SHIFT;
Johannes Weinerc6785b62012-05-29 15:06:33 -0700799 ptr = alloc_bootmem_bdata(pgdat->bdata, size, align,
Yinghai Lu08677212010-02-10 01:20:20 -0800800 new_goal, 0);
Yinghai Lu08677212010-02-10 01:20:20 -0800801 if (ptr)
802 return ptr;
803 }
804#endif
805
806 return __alloc_bootmem_node(pgdat, size, align, goal);
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700810/**
811 * __alloc_bootmem_low - allocate low boot memory
812 * @size: size of the request in bytes
813 * @align: alignment of the region
814 * @goal: preferred starting address of the region
815 *
816 * The goal is dropped if it can not be satisfied and the allocation will
817 * fall back to memory below @goal.
818 *
819 * Allocation may happen on any node in the system.
820 *
821 * The function panics if the request can not be satisfied.
822 */
Franck Bui-Huubb0923a2006-09-25 23:31:05 -0700823void * __init __alloc_bootmem_low(unsigned long size, unsigned long align,
824 unsigned long goal)
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800825{
Johannes Weiner0f3caba2008-07-23 21:28:07 -0700826 return ___alloc_bootmem(size, align, goal, ARCH_LOW_ADDRESS_LIMIT);
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800827}
828
Yinghai Lu38fa4172013-01-24 12:20:15 -0800829void * __init __alloc_bootmem_low_nopanic(unsigned long size,
830 unsigned long align,
831 unsigned long goal)
832{
833 return ___alloc_bootmem_nopanic(size, align, goal,
834 ARCH_LOW_ADDRESS_LIMIT);
835}
836
Johannes Weinera66fd7d2008-07-23 21:28:01 -0700837/**
838 * __alloc_bootmem_low_node - allocate low boot memory from a specific node
839 * @pgdat: node to allocate from
840 * @size: size of the request in bytes
841 * @align: alignment of the region
842 * @goal: preferred starting address of the region
843 *
844 * The goal is dropped if it can not be satisfied and the allocation will
845 * fall back to memory below @goal.
846 *
847 * Allocation may fall back to any node in the system if the specified node
848 * can not hold the requested memory.
849 *
850 * The function panics if the request can not be satisfied.
851 */
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800852void * __init __alloc_bootmem_low_node(pg_data_t *pgdat, unsigned long size,
853 unsigned long align, unsigned long goal)
854{
Pekka Enbergc91c4772009-06-11 08:10:28 +0300855 if (WARN_ON_ONCE(slab_is_available()))
856 return kzalloc_node(size, GFP_NOWAIT, pgdat->node_id);
857
Johannes Weinere9079912012-05-29 15:06:36 -0700858 return ___alloc_bootmem_node(pgdat, size, align,
859 goal, ARCH_LOW_ADDRESS_LIMIT);
Ravikiran G Thirumalai008857c2006-01-06 00:11:01 -0800860}