blob: da432d9f0ae825eb4e050ed8168c1600c6a793da [file] [log] [blame]
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001/*
2 * sparse memory mappings.
3 */
Andy Whitcroftd41dee32005-06-23 00:07:54 -07004#include <linux/mm.h>
5#include <linux/mmzone.h>
6#include <linux/bootmem.h>
Dave Hansen0b0acbe2005-10-29 18:16:55 -07007#include <linux/highmem.h>
Andy Whitcroftd41dee32005-06-23 00:07:54 -07008#include <linux/module.h>
Dave Hansen28ae55c2005-09-03 15:54:29 -07009#include <linux/spinlock.h>
Dave Hansen0b0acbe2005-10-29 18:16:55 -070010#include <linux/vmalloc.h>
Yasunori Goto0c0a4a52008-04-28 02:13:34 -070011#include "internal.h"
Andy Whitcroftd41dee32005-06-23 00:07:54 -070012#include <asm/dma.h>
Christoph Lameter8f6aac42007-10-16 01:24:13 -070013#include <asm/pgalloc.h>
14#include <asm/pgtable.h>
Andy Whitcroftd41dee32005-06-23 00:07:54 -070015
16/*
17 * Permanent SPARSEMEM data:
18 *
19 * 1) mem_section - memory sections, mem_map's for valid memory
20 */
Bob Picco3e347262005-09-03 15:54:28 -070021#ifdef CONFIG_SPARSEMEM_EXTREME
Bob Picco802f1922005-09-03 15:54:26 -070022struct mem_section *mem_section[NR_SECTION_ROOTS]
Ravikiran G Thirumalai22fc6ec2006-01-08 01:01:27 -080023 ____cacheline_internodealigned_in_smp;
Bob Picco3e347262005-09-03 15:54:28 -070024#else
25struct mem_section mem_section[NR_SECTION_ROOTS][SECTIONS_PER_ROOT]
Ravikiran G Thirumalai22fc6ec2006-01-08 01:01:27 -080026 ____cacheline_internodealigned_in_smp;
Bob Picco3e347262005-09-03 15:54:28 -070027#endif
28EXPORT_SYMBOL(mem_section);
29
Christoph Lameter89689ae2006-12-06 20:31:45 -080030#ifdef NODE_NOT_IN_PAGE_FLAGS
31/*
32 * If we did not store the node number in the page then we have to
33 * do a lookup in the section_to_node_table in order to find which
34 * node the page belongs to.
35 */
36#if MAX_NUMNODES <= 256
37static u8 section_to_node_table[NR_MEM_SECTIONS] __cacheline_aligned;
38#else
39static u16 section_to_node_table[NR_MEM_SECTIONS] __cacheline_aligned;
40#endif
41
Andy Whitcroft25ba77c2006-12-06 20:33:03 -080042int page_to_nid(struct page *page)
Christoph Lameter89689ae2006-12-06 20:31:45 -080043{
44 return section_to_node_table[page_to_section(page)];
45}
46EXPORT_SYMBOL(page_to_nid);
Andy Whitcroft85770ff2007-08-22 14:01:03 -070047
48static void set_section_nid(unsigned long section_nr, int nid)
49{
50 section_to_node_table[section_nr] = nid;
51}
52#else /* !NODE_NOT_IN_PAGE_FLAGS */
53static inline void set_section_nid(unsigned long section_nr, int nid)
54{
55}
Christoph Lameter89689ae2006-12-06 20:31:45 -080056#endif
57
Bob Picco3e347262005-09-03 15:54:28 -070058#ifdef CONFIG_SPARSEMEM_EXTREME
Sam Ravnborg577a32f2007-05-17 23:29:25 +020059static struct mem_section noinline __init_refok *sparse_index_alloc(int nid)
Bob Picco802f1922005-09-03 15:54:26 -070060{
Dave Hansen28ae55c2005-09-03 15:54:29 -070061 struct mem_section *section = NULL;
62 unsigned long array_size = SECTIONS_PER_ROOT *
63 sizeof(struct mem_section);
Bob Picco802f1922005-09-03 15:54:26 -070064
Mike Kravetz39d24e62006-05-15 09:44:13 -070065 if (slab_is_available())
Mike Kravetz46a66ee2006-05-01 12:16:09 -070066 section = kmalloc_node(array_size, GFP_KERNEL, nid);
67 else
68 section = alloc_bootmem_node(NODE_DATA(nid), array_size);
Bob Picco3e347262005-09-03 15:54:28 -070069
Dave Hansen28ae55c2005-09-03 15:54:29 -070070 if (section)
71 memset(section, 0, array_size);
Bob Picco3e347262005-09-03 15:54:28 -070072
Dave Hansen28ae55c2005-09-03 15:54:29 -070073 return section;
Bob Picco802f1922005-09-03 15:54:26 -070074}
Dave Hansen28ae55c2005-09-03 15:54:29 -070075
Yasunori Gotoa3142c82007-05-08 00:23:07 -070076static int __meminit sparse_index_init(unsigned long section_nr, int nid)
Dave Hansen28ae55c2005-09-03 15:54:29 -070077{
Ingo Molnar34af9462006-06-27 02:53:55 -070078 static DEFINE_SPINLOCK(index_init_lock);
Dave Hansen28ae55c2005-09-03 15:54:29 -070079 unsigned long root = SECTION_NR_TO_ROOT(section_nr);
80 struct mem_section *section;
81 int ret = 0;
82
83 if (mem_section[root])
84 return -EEXIST;
85
86 section = sparse_index_alloc(nid);
WANG Congaf0cd5a2007-12-17 16:19:58 -080087 if (!section)
88 return -ENOMEM;
Dave Hansen28ae55c2005-09-03 15:54:29 -070089 /*
90 * This lock keeps two different sections from
91 * reallocating for the same index
92 */
93 spin_lock(&index_init_lock);
94
95 if (mem_section[root]) {
96 ret = -EEXIST;
97 goto out;
98 }
99
100 mem_section[root] = section;
101out:
102 spin_unlock(&index_init_lock);
103 return ret;
104}
105#else /* !SPARSEMEM_EXTREME */
106static inline int sparse_index_init(unsigned long section_nr, int nid)
107{
108 return 0;
109}
110#endif
111
Dave Hansen4ca644d2005-10-29 18:16:51 -0700112/*
113 * Although written for the SPARSEMEM_EXTREME case, this happens
Andy Whitcroftcd881a62007-10-16 01:24:10 -0700114 * to also work for the flat array case because
Dave Hansen4ca644d2005-10-29 18:16:51 -0700115 * NR_SECTION_ROOTS==NR_MEM_SECTIONS.
116 */
117int __section_nr(struct mem_section* ms)
118{
119 unsigned long root_nr;
120 struct mem_section* root;
121
Mike Kravetz12783b02006-05-20 15:00:05 -0700122 for (root_nr = 0; root_nr < NR_SECTION_ROOTS; root_nr++) {
123 root = __nr_to_section(root_nr * SECTIONS_PER_ROOT);
Dave Hansen4ca644d2005-10-29 18:16:51 -0700124 if (!root)
125 continue;
126
127 if ((ms >= root) && (ms < (root + SECTIONS_PER_ROOT)))
128 break;
129 }
130
131 return (root_nr * SECTIONS_PER_ROOT) + (ms - root);
132}
133
Andy Whitcroft30c253e2006-06-23 02:03:41 -0700134/*
135 * During early boot, before section_mem_map is used for an actual
136 * mem_map, we use section_mem_map to store the section's NUMA
137 * node. This keeps us from having to use another data structure. The
138 * node information is cleared just before we store the real mem_map.
139 */
140static inline unsigned long sparse_encode_early_nid(int nid)
141{
142 return (nid << SECTION_NID_SHIFT);
143}
144
145static inline int sparse_early_nid(struct mem_section *section)
146{
147 return (section->section_mem_map >> SECTION_NID_SHIFT);
148}
149
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700150/* Validate the physical addressing limitations of the model */
151void __meminit mminit_validate_memmodel_limits(unsigned long *start_pfn,
152 unsigned long *end_pfn)
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700153{
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700154 unsigned long max_sparsemem_pfn = 1UL << (MAX_PHYSMEM_BITS-PAGE_SHIFT);
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700155
Ingo Molnarbead9a32008-04-16 01:40:00 +0200156 /*
157 * Sanity checks - do not allow an architecture to pass
158 * in larger pfns than the maximum scope of sparsemem:
159 */
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700160 if (*start_pfn > max_sparsemem_pfn) {
161 mminit_dprintk(MMINIT_WARNING, "pfnvalidation",
162 "Start of range %lu -> %lu exceeds SPARSEMEM max %lu\n",
163 *start_pfn, *end_pfn, max_sparsemem_pfn);
164 WARN_ON_ONCE(1);
165 *start_pfn = max_sparsemem_pfn;
166 *end_pfn = max_sparsemem_pfn;
Cyrill Gorcunovef161a92009-03-31 15:19:25 -0700167 } else if (*end_pfn > max_sparsemem_pfn) {
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700168 mminit_dprintk(MMINIT_WARNING, "pfnvalidation",
169 "End of range %lu -> %lu exceeds SPARSEMEM max %lu\n",
170 *start_pfn, *end_pfn, max_sparsemem_pfn);
171 WARN_ON_ONCE(1);
172 *end_pfn = max_sparsemem_pfn;
173 }
174}
175
176/* Record a memory area against a node. */
177void __init memory_present(int nid, unsigned long start, unsigned long end)
178{
179 unsigned long pfn;
Ingo Molnarbead9a32008-04-16 01:40:00 +0200180
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700181 start &= PAGE_SECTION_MASK;
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700182 mminit_validate_memmodel_limits(&start, &end);
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700183 for (pfn = start; pfn < end; pfn += PAGES_PER_SECTION) {
184 unsigned long section = pfn_to_section_nr(pfn);
Bob Picco802f1922005-09-03 15:54:26 -0700185 struct mem_section *ms;
186
187 sparse_index_init(section, nid);
Andy Whitcroft85770ff2007-08-22 14:01:03 -0700188 set_section_nid(section, nid);
Bob Picco802f1922005-09-03 15:54:26 -0700189
190 ms = __nr_to_section(section);
191 if (!ms->section_mem_map)
Andy Whitcroft30c253e2006-06-23 02:03:41 -0700192 ms->section_mem_map = sparse_encode_early_nid(nid) |
193 SECTION_MARKED_PRESENT;
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700194 }
195}
196
197/*
198 * Only used by the i386 NUMA architecures, but relatively
199 * generic code.
200 */
201unsigned long __init node_memmap_size_bytes(int nid, unsigned long start_pfn,
202 unsigned long end_pfn)
203{
204 unsigned long pfn;
205 unsigned long nr_pages = 0;
206
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700207 mminit_validate_memmodel_limits(&start_pfn, &end_pfn);
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700208 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
209 if (nid != early_pfn_to_nid(pfn))
210 continue;
211
Andy Whitcroft540557b2007-10-16 01:24:11 -0700212 if (pfn_present(pfn))
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700213 nr_pages += PAGES_PER_SECTION;
214 }
215
216 return nr_pages * sizeof(struct page);
217}
218
219/*
Andy Whitcroft29751f62005-06-23 00:08:00 -0700220 * Subtle, we encode the real pfn into the mem_map such that
221 * the identity pfn - section_mem_map will return the actual
222 * physical page frame number.
223 */
224static unsigned long sparse_encode_mem_map(struct page *mem_map, unsigned long pnum)
225{
226 return (unsigned long)(mem_map - (section_nr_to_pfn(pnum)));
227}
228
229/*
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700230 * Decode mem_map from the coded memmap
Andy Whitcroft29751f62005-06-23 00:08:00 -0700231 */
Andy Whitcroft29751f62005-06-23 00:08:00 -0700232struct page *sparse_decode_mem_map(unsigned long coded_mem_map, unsigned long pnum)
233{
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700234 /* mask off the extra low bits of information */
235 coded_mem_map &= SECTION_MAP_MASK;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700236 return ((struct page *)coded_mem_map) + section_nr_to_pfn(pnum);
237}
238
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700239static int __meminit sparse_init_one_section(struct mem_section *ms,
Mel Gorman5c0e3062007-10-16 01:25:56 -0700240 unsigned long pnum, struct page *mem_map,
241 unsigned long *pageblock_bitmap)
Andy Whitcroft29751f62005-06-23 00:08:00 -0700242{
Andy Whitcroft540557b2007-10-16 01:24:11 -0700243 if (!present_section(ms))
Andy Whitcroft29751f62005-06-23 00:08:00 -0700244 return -EINVAL;
245
Andy Whitcroft30c253e2006-06-23 02:03:41 -0700246 ms->section_mem_map &= ~SECTION_MAP_MASK;
Andy Whitcroft540557b2007-10-16 01:24:11 -0700247 ms->section_mem_map |= sparse_encode_mem_map(mem_map, pnum) |
248 SECTION_HAS_MEM_MAP;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700249 ms->pageblock_flags = pageblock_bitmap;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700250
251 return 1;
252}
253
Yasunori Goto04753272008-04-28 02:13:31 -0700254unsigned long usemap_size(void)
Mel Gorman5c0e3062007-10-16 01:25:56 -0700255{
256 unsigned long size_bytes;
257 size_bytes = roundup(SECTION_BLOCKFLAGS_BITS, 8) / 8;
258 size_bytes = roundup(size_bytes, sizeof(unsigned long));
259 return size_bytes;
260}
261
262#ifdef CONFIG_MEMORY_HOTPLUG
263static unsigned long *__kmalloc_section_usemap(void)
264{
265 return kmalloc(usemap_size(), GFP_KERNEL);
266}
267#endif /* CONFIG_MEMORY_HOTPLUG */
268
Yasunori Goto48c90682008-07-23 21:28:15 -0700269#ifdef CONFIG_MEMORY_HOTREMOVE
270static unsigned long * __init
271sparse_early_usemap_alloc_pgdat_section(struct pglist_data *pgdat)
272{
273 unsigned long section_nr;
274
275 /*
276 * A page may contain usemaps for other sections preventing the
277 * page being freed and making a section unremovable while
278 * other sections referencing the usemap retmain active. Similarly,
279 * a pgdat can prevent a section being removed. If section A
280 * contains a pgdat and section B contains the usemap, both
281 * sections become inter-dependent. This allocates usemaps
282 * from the same section as the pgdat where possible to avoid
283 * this problem.
284 */
285 section_nr = pfn_to_section_nr(__pa(pgdat) >> PAGE_SHIFT);
286 return alloc_bootmem_section(usemap_size(), section_nr);
287}
288
289static void __init check_usemap_section_nr(int nid, unsigned long *usemap)
290{
291 unsigned long usemap_snr, pgdat_snr;
292 static unsigned long old_usemap_snr = NR_MEM_SECTIONS;
293 static unsigned long old_pgdat_snr = NR_MEM_SECTIONS;
294 struct pglist_data *pgdat = NODE_DATA(nid);
295 int usemap_nid;
296
297 usemap_snr = pfn_to_section_nr(__pa(usemap) >> PAGE_SHIFT);
298 pgdat_snr = pfn_to_section_nr(__pa(pgdat) >> PAGE_SHIFT);
299 if (usemap_snr == pgdat_snr)
300 return;
301
302 if (old_usemap_snr == usemap_snr && old_pgdat_snr == pgdat_snr)
303 /* skip redundant message */
304 return;
305
306 old_usemap_snr = usemap_snr;
307 old_pgdat_snr = pgdat_snr;
308
309 usemap_nid = sparse_early_nid(__nr_to_section(usemap_snr));
310 if (usemap_nid != nid) {
311 printk(KERN_INFO
312 "node %d must be removed before remove section %ld\n",
313 nid, usemap_snr);
314 return;
315 }
316 /*
317 * There is a circular dependency.
318 * Some platforms allow un-removable section because they will just
319 * gather other removable sections for dynamic partitioning.
320 * Just notify un-removable section's number here.
321 */
322 printk(KERN_INFO "Section %ld and %ld (node %d)", usemap_snr,
323 pgdat_snr, nid);
324 printk(KERN_CONT
325 " have a circular dependency on usemap and pgdat allocations\n");
326}
327#else
328static unsigned long * __init
329sparse_early_usemap_alloc_pgdat_section(struct pglist_data *pgdat)
330{
331 return NULL;
332}
333
334static void __init check_usemap_section_nr(int nid, unsigned long *usemap)
335{
336}
337#endif /* CONFIG_MEMORY_HOTREMOVE */
338
Sam Ravnborga322f8a2008-02-04 22:29:35 -0800339static unsigned long *__init sparse_early_usemap_alloc(unsigned long pnum)
Mel Gorman5c0e3062007-10-16 01:25:56 -0700340{
Andrew Morton51674642008-04-30 00:55:17 -0700341 unsigned long *usemap;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700342 struct mem_section *ms = __nr_to_section(pnum);
343 int nid = sparse_early_nid(ms);
344
Yasunori Goto48c90682008-07-23 21:28:15 -0700345 usemap = sparse_early_usemap_alloc_pgdat_section(NODE_DATA(nid));
Mel Gorman5c0e3062007-10-16 01:25:56 -0700346 if (usemap)
347 return usemap;
348
Yasunori Goto48c90682008-07-23 21:28:15 -0700349 usemap = alloc_bootmem_node(NODE_DATA(nid), usemap_size());
350 if (usemap) {
351 check_usemap_section_nr(nid, usemap);
352 return usemap;
353 }
354
Mel Gorman5c0e3062007-10-16 01:25:56 -0700355 /* Stupid: suppress gcc warning for SPARSEMEM && !NUMA */
356 nid = 0;
357
Harvey Harrisond40cee22008-04-30 00:55:07 -0700358 printk(KERN_WARNING "%s: allocation failed\n", __func__);
Mel Gorman5c0e3062007-10-16 01:25:56 -0700359 return NULL;
360}
361
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700362#ifndef CONFIG_SPARSEMEM_VMEMMAP
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700363struct page __init *sparse_mem_map_populate(unsigned long pnum, int nid)
Andy Whitcroft29751f62005-06-23 00:08:00 -0700364{
365 struct page *map;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700366
367 map = alloc_remap(nid, sizeof(struct page) * PAGES_PER_SECTION);
368 if (map)
369 return map;
370
Yasunori Goto9d992172008-04-28 02:13:32 -0700371 map = alloc_bootmem_pages_node(NODE_DATA(nid),
372 PAGE_ALIGN(sizeof(struct page) * PAGES_PER_SECTION));
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700373 return map;
374}
375#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
376
Adrian Bunk9e5c6da2008-07-25 19:46:22 -0700377static struct page __init *sparse_early_mem_map_alloc(unsigned long pnum)
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700378{
379 struct page *map;
380 struct mem_section *ms = __nr_to_section(pnum);
381 int nid = sparse_early_nid(ms);
382
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700383 map = sparse_mem_map_populate(pnum, nid);
Andy Whitcroft29751f62005-06-23 00:08:00 -0700384 if (map)
385 return map;
386
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700387 printk(KERN_ERR "%s: sparsemem memory map backing failed "
Harvey Harrisond40cee22008-04-30 00:55:07 -0700388 "some memory will not be available.\n", __func__);
Bob Picco802f1922005-09-03 15:54:26 -0700389 ms->section_mem_map = 0;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700390 return NULL;
391}
392
Yinghai Luc2b91e22008-04-12 01:19:24 -0700393void __attribute__((weak)) __meminit vmemmap_populate_print_last(void)
394{
395}
Stephen Rothwell193faea2007-06-08 13:46:51 -0700396/*
397 * Allocate the accumulated non-linear sections, allocate a mem_map
398 * for each and record the physical to section mapping.
399 */
400void __init sparse_init(void)
401{
402 unsigned long pnum;
403 struct page *map;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700404 unsigned long *usemap;
Yinghai Lue123dd32008-04-13 11:51:06 -0700405 unsigned long **usemap_map;
406 int size;
407
408 /*
409 * map is using big page (aka 2M in x86 64 bit)
410 * usemap is less one page (aka 24 bytes)
411 * so alloc 2M (with 2M align) and 24 bytes in turn will
412 * make next 2M slip to one more 2M later.
413 * then in big system, the memory will have a lot of holes...
414 * here try to allocate 2M pages continously.
415 *
416 * powerpc need to call sparse_init_one_section right after each
417 * sparse_early_mem_map_alloc, so allocate usemap_map at first.
418 */
419 size = sizeof(unsigned long *) * NR_MEM_SECTIONS;
420 usemap_map = alloc_bootmem(size);
421 if (!usemap_map)
422 panic("can not allocate usemap_map\n");
Stephen Rothwell193faea2007-06-08 13:46:51 -0700423
424 for (pnum = 0; pnum < NR_MEM_SECTIONS; pnum++) {
Andy Whitcroft540557b2007-10-16 01:24:11 -0700425 if (!present_section_nr(pnum))
Stephen Rothwell193faea2007-06-08 13:46:51 -0700426 continue;
Yinghai Lue123dd32008-04-13 11:51:06 -0700427 usemap_map[pnum] = sparse_early_usemap_alloc(pnum);
428 }
429
430 for (pnum = 0; pnum < NR_MEM_SECTIONS; pnum++) {
431 if (!present_section_nr(pnum))
432 continue;
433
434 usemap = usemap_map[pnum];
435 if (!usemap)
436 continue;
Stephen Rothwell193faea2007-06-08 13:46:51 -0700437
438 map = sparse_early_mem_map_alloc(pnum);
439 if (!map)
440 continue;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700441
Mel Gorman5c0e3062007-10-16 01:25:56 -0700442 sparse_init_one_section(__nr_to_section(pnum), pnum, map,
443 usemap);
Stephen Rothwell193faea2007-06-08 13:46:51 -0700444 }
Yinghai Lue123dd32008-04-13 11:51:06 -0700445
Yinghai Luc2b91e22008-04-12 01:19:24 -0700446 vmemmap_populate_print_last();
447
Yinghai Lue123dd32008-04-13 11:51:06 -0700448 free_bootmem(__pa(usemap_map), size);
Stephen Rothwell193faea2007-06-08 13:46:51 -0700449}
450
451#ifdef CONFIG_MEMORY_HOTPLUG
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700452#ifdef CONFIG_SPARSEMEM_VMEMMAP
453static inline struct page *kmalloc_section_memmap(unsigned long pnum, int nid,
454 unsigned long nr_pages)
455{
456 /* This will make the necessary allocations eventually. */
457 return sparse_mem_map_populate(pnum, nid);
458}
459static void __kfree_section_memmap(struct page *memmap, unsigned long nr_pages)
460{
461 return; /* XXX: Not implemented yet */
462}
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700463static void free_map_bootmem(struct page *page, unsigned long nr_pages)
464{
465}
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700466#else
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700467static struct page *__kmalloc_section_memmap(unsigned long nr_pages)
468{
469 struct page *page, *ret;
470 unsigned long memmap_size = sizeof(struct page) * nr_pages;
471
Yasunori Gotof2d0aa52006-10-28 10:38:32 -0700472 page = alloc_pages(GFP_KERNEL|__GFP_NOWARN, get_order(memmap_size));
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700473 if (page)
474 goto got_map_page;
475
476 ret = vmalloc(memmap_size);
477 if (ret)
478 goto got_map_ptr;
479
480 return NULL;
481got_map_page:
482 ret = (struct page *)pfn_to_kaddr(page_to_pfn(page));
483got_map_ptr:
484 memset(ret, 0, memmap_size);
485
486 return ret;
487}
488
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700489static inline struct page *kmalloc_section_memmap(unsigned long pnum, int nid,
490 unsigned long nr_pages)
491{
492 return __kmalloc_section_memmap(nr_pages);
493}
494
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700495static void __kfree_section_memmap(struct page *memmap, unsigned long nr_pages)
496{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800497 if (is_vmalloc_addr(memmap))
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700498 vfree(memmap);
499 else
500 free_pages((unsigned long)memmap,
501 get_order(sizeof(struct page) * nr_pages));
502}
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700503
504static void free_map_bootmem(struct page *page, unsigned long nr_pages)
505{
506 unsigned long maps_section_nr, removing_section_nr, i;
507 int magic;
508
509 for (i = 0; i < nr_pages; i++, page++) {
510 magic = atomic_read(&page->_mapcount);
511
512 BUG_ON(magic == NODE_INFO);
513
514 maps_section_nr = pfn_to_section_nr(page_to_pfn(page));
515 removing_section_nr = page->private;
516
517 /*
518 * When this function is called, the removing section is
519 * logical offlined state. This means all pages are isolated
520 * from page allocator. If removing section's memmap is placed
521 * on the same section, it must not be freed.
522 * If it is freed, page allocator may allocate it which will
523 * be removed physically soon.
524 */
525 if (maps_section_nr != removing_section_nr)
526 put_page_bootmem(page);
527 }
528}
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700529#endif /* CONFIG_SPARSEMEM_VMEMMAP */
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700530
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700531static void free_section_usemap(struct page *memmap, unsigned long *usemap)
532{
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700533 struct page *usemap_page;
534 unsigned long nr_pages;
535
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700536 if (!usemap)
537 return;
538
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700539 usemap_page = virt_to_page(usemap);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700540 /*
541 * Check to see if allocation came from hot-plug-add
542 */
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700543 if (PageSlab(usemap_page)) {
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700544 kfree(usemap);
545 if (memmap)
546 __kfree_section_memmap(memmap, PAGES_PER_SECTION);
547 return;
548 }
549
550 /*
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700551 * The usemap came from bootmem. This is packed with other usemaps
552 * on the section which has pgdat at boot time. Just keep it as is now.
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700553 */
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700554
555 if (memmap) {
556 struct page *memmap_page;
557 memmap_page = virt_to_page(memmap);
558
559 nr_pages = PAGE_ALIGN(PAGES_PER_SECTION * sizeof(struct page))
560 >> PAGE_SHIFT;
561
562 free_map_bootmem(memmap_page, nr_pages);
563 }
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700564}
565
Andy Whitcroft29751f62005-06-23 00:08:00 -0700566/*
Andy Whitcroft29751f62005-06-23 00:08:00 -0700567 * returns the number of sections whose mem_maps were properly
568 * set. If this is <=0, then that means that the passed-in
569 * map was not consumed and must be freed.
570 */
Al Viro31168482008-11-22 17:33:24 +0000571int __meminit sparse_add_one_section(struct zone *zone, unsigned long start_pfn,
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700572 int nr_pages)
Andy Whitcroft29751f62005-06-23 00:08:00 -0700573{
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700574 unsigned long section_nr = pfn_to_section_nr(start_pfn);
575 struct pglist_data *pgdat = zone->zone_pgdat;
576 struct mem_section *ms;
577 struct page *memmap;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700578 unsigned long *usemap;
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700579 unsigned long flags;
580 int ret;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700581
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700582 /*
583 * no locking for this, because it does its own
584 * plus, it does a kmalloc
585 */
WANG Congbbd06822007-12-17 16:19:59 -0800586 ret = sparse_index_init(section_nr, pgdat->node_id);
587 if (ret < 0 && ret != -EEXIST)
588 return ret;
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700589 memmap = kmalloc_section_memmap(section_nr, pgdat->node_id, nr_pages);
WANG Congbbd06822007-12-17 16:19:59 -0800590 if (!memmap)
591 return -ENOMEM;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700592 usemap = __kmalloc_section_usemap();
WANG Congbbd06822007-12-17 16:19:59 -0800593 if (!usemap) {
594 __kfree_section_memmap(memmap, nr_pages);
595 return -ENOMEM;
596 }
Andy Whitcroft29751f62005-06-23 00:08:00 -0700597
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700598 pgdat_resize_lock(pgdat, &flags);
599
600 ms = __pfn_to_section(start_pfn);
601 if (ms->section_mem_map & SECTION_MARKED_PRESENT) {
602 ret = -EEXIST;
603 goto out;
604 }
Mel Gorman5c0e3062007-10-16 01:25:56 -0700605
Andy Whitcroft29751f62005-06-23 00:08:00 -0700606 ms->section_mem_map |= SECTION_MARKED_PRESENT;
607
Mel Gorman5c0e3062007-10-16 01:25:56 -0700608 ret = sparse_init_one_section(ms, section_nr, memmap, usemap);
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700609
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700610out:
611 pgdat_resize_unlock(pgdat, &flags);
WANG Congbbd06822007-12-17 16:19:59 -0800612 if (ret <= 0) {
613 kfree(usemap);
Mike Kravetz46a66ee2006-05-01 12:16:09 -0700614 __kfree_section_memmap(memmap, nr_pages);
WANG Congbbd06822007-12-17 16:19:59 -0800615 }
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700616 return ret;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700617}
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700618
619void sparse_remove_one_section(struct zone *zone, struct mem_section *ms)
620{
621 struct page *memmap = NULL;
622 unsigned long *usemap = NULL;
623
624 if (ms->section_mem_map) {
625 usemap = ms->pageblock_flags;
626 memmap = sparse_decode_mem_map(ms->section_mem_map,
627 __section_nr(ms));
628 ms->section_mem_map = 0;
629 ms->pageblock_flags = NULL;
630 }
631
632 free_section_usemap(memmap, usemap);
633}
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700634#endif