vmscan: activate executable pages after first usage
[deliverable/linux.git] / mm / page_alloc.c
CommitLineData
1da177e4
LT
1/*
2 * linux/mm/page_alloc.c
3 *
4 * Manages the free list, the system allocates free pages here.
5 * Note that kmalloc() lives in slab.c
6 *
7 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
8 * Swap reorganised 29.12.95, Stephen Tweedie
9 * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
10 * Reshaped it to be a zoned allocator, Ingo Molnar, Red Hat, 1999
11 * Discontiguous memory support, Kanoj Sarcar, SGI, Nov 1999
12 * Zone balancing, Kanoj Sarcar, SGI, Jan 2000
13 * Per cpu hot/cold page lists, bulk allocation, Martin J. Bligh, Sept 2002
14 * (lots of bits borrowed from Ingo Molnar & Andrew Morton)
15 */
16
1da177e4
LT
17#include <linux/stddef.h>
18#include <linux/mm.h>
19#include <linux/swap.h>
20#include <linux/interrupt.h>
21#include <linux/pagemap.h>
10ed273f 22#include <linux/jiffies.h>
1da177e4 23#include <linux/bootmem.h>
edbe7d23 24#include <linux/memblock.h>
1da177e4 25#include <linux/compiler.h>
9f158333 26#include <linux/kernel.h>
b1eeab67 27#include <linux/kmemcheck.h>
1da177e4
LT
28#include <linux/module.h>
29#include <linux/suspend.h>
30#include <linux/pagevec.h>
31#include <linux/blkdev.h>
32#include <linux/slab.h>
a238ab5b 33#include <linux/ratelimit.h>
5a3135c2 34#include <linux/oom.h>
1da177e4
LT
35#include <linux/notifier.h>
36#include <linux/topology.h>
37#include <linux/sysctl.h>
38#include <linux/cpu.h>
39#include <linux/cpuset.h>
bdc8cb98 40#include <linux/memory_hotplug.h>
1da177e4
LT
41#include <linux/nodemask.h>
42#include <linux/vmalloc.h>
a6cccdc3 43#include <linux/vmstat.h>
4be38e35 44#include <linux/mempolicy.h>
6811378e 45#include <linux/stop_machine.h>
c713216d
MG
46#include <linux/sort.h>
47#include <linux/pfn.h>
3fcfab16 48#include <linux/backing-dev.h>
933e312e 49#include <linux/fault-inject.h>
a5d76b54 50#include <linux/page-isolation.h>
52d4b9ac 51#include <linux/page_cgroup.h>
3ac7fe5a 52#include <linux/debugobjects.h>
dbb1f81c 53#include <linux/kmemleak.h>
925cc71e 54#include <linux/memory.h>
56de7263 55#include <linux/compaction.h>
0d3d062a 56#include <trace/events/kmem.h>
718a3821 57#include <linux/ftrace_event.h>
f212ad7c 58#include <linux/memcontrol.h>
268bb0ce 59#include <linux/prefetch.h>
1da177e4
LT
60
61#include <asm/tlbflush.h>
ac924c60 62#include <asm/div64.h>
1da177e4
LT
63#include "internal.h"
64
72812019
LS
65#ifdef CONFIG_USE_PERCPU_NUMA_NODE_ID
66DEFINE_PER_CPU(int, numa_node);
67EXPORT_PER_CPU_SYMBOL(numa_node);
68#endif
69
7aac7898
LS
70#ifdef CONFIG_HAVE_MEMORYLESS_NODES
71/*
72 * N.B., Do NOT reference the '_numa_mem_' per cpu variable directly.
73 * It will not be defined when CONFIG_HAVE_MEMORYLESS_NODES is not defined.
74 * Use the accessor functions set_numa_mem(), numa_mem_id() and cpu_to_mem()
75 * defined in <linux/topology.h>.
76 */
77DEFINE_PER_CPU(int, _numa_mem_); /* Kernel "local memory" node */
78EXPORT_PER_CPU_SYMBOL(_numa_mem_);
79#endif
80
1da177e4 81/*
13808910 82 * Array of node states.
1da177e4 83 */
13808910
CL
84nodemask_t node_states[NR_NODE_STATES] __read_mostly = {
85 [N_POSSIBLE] = NODE_MASK_ALL,
86 [N_ONLINE] = { { [0] = 1UL } },
87#ifndef CONFIG_NUMA
88 [N_NORMAL_MEMORY] = { { [0] = 1UL } },
89#ifdef CONFIG_HIGHMEM
90 [N_HIGH_MEMORY] = { { [0] = 1UL } },
91#endif
92 [N_CPU] = { { [0] = 1UL } },
93#endif /* NUMA */
94};
95EXPORT_SYMBOL(node_states);
96
6c231b7b 97unsigned long totalram_pages __read_mostly;
cb45b0e9 98unsigned long totalreserve_pages __read_mostly;
8ad4b1fb 99int percpu_pagelist_fraction;
dcce284a 100gfp_t gfp_allowed_mask __read_mostly = GFP_BOOT_MASK;
1da177e4 101
452aa699
RW
102#ifdef CONFIG_PM_SLEEP
103/*
104 * The following functions are used by the suspend/hibernate code to temporarily
105 * change gfp_allowed_mask in order to avoid using I/O during memory allocations
106 * while devices are suspended. To avoid races with the suspend/hibernate code,
107 * they should always be called with pm_mutex held (gfp_allowed_mask also should
108 * only be modified with pm_mutex held, unless the suspend/hibernate code is
109 * guaranteed not to run in parallel with that modification).
110 */
c9e664f1
RW
111
112static gfp_t saved_gfp_mask;
113
114void pm_restore_gfp_mask(void)
452aa699
RW
115{
116 WARN_ON(!mutex_is_locked(&pm_mutex));
c9e664f1
RW
117 if (saved_gfp_mask) {
118 gfp_allowed_mask = saved_gfp_mask;
119 saved_gfp_mask = 0;
120 }
452aa699
RW
121}
122
c9e664f1 123void pm_restrict_gfp_mask(void)
452aa699 124{
452aa699 125 WARN_ON(!mutex_is_locked(&pm_mutex));
c9e664f1
RW
126 WARN_ON(saved_gfp_mask);
127 saved_gfp_mask = gfp_allowed_mask;
128 gfp_allowed_mask &= ~GFP_IOFS;
452aa699
RW
129}
130#endif /* CONFIG_PM_SLEEP */
131
d9c23400
MG
132#ifdef CONFIG_HUGETLB_PAGE_SIZE_VARIABLE
133int pageblock_order __read_mostly;
134#endif
135
d98c7a09 136static void __free_pages_ok(struct page *page, unsigned int order);
a226f6c8 137
1da177e4
LT
138/*
139 * results with 256, 32 in the lowmem_reserve sysctl:
140 * 1G machine -> (16M dma, 800M-16M normal, 1G-800M high)
141 * 1G machine -> (16M dma, 784M normal, 224M high)
142 * NORMAL allocation will leave 784M/256 of ram reserved in the ZONE_DMA
143 * HIGHMEM allocation will leave 224M/32 of ram reserved in ZONE_NORMAL
144 * HIGHMEM allocation will (224M+784M)/256 of ram reserved in ZONE_DMA
a2f1b424
AK
145 *
146 * TBD: should special case ZONE_DMA32 machines here - in those we normally
147 * don't need any ZONE_NORMAL reservation
1da177e4 148 */
2f1b6248 149int sysctl_lowmem_reserve_ratio[MAX_NR_ZONES-1] = {
4b51d669 150#ifdef CONFIG_ZONE_DMA
2f1b6248 151 256,
4b51d669 152#endif
fb0e7942 153#ifdef CONFIG_ZONE_DMA32
2f1b6248 154 256,
fb0e7942 155#endif
e53ef38d 156#ifdef CONFIG_HIGHMEM
2a1e274a 157 32,
e53ef38d 158#endif
2a1e274a 159 32,
2f1b6248 160};
1da177e4
LT
161
162EXPORT_SYMBOL(totalram_pages);
1da177e4 163
15ad7cdc 164static char * const zone_names[MAX_NR_ZONES] = {
4b51d669 165#ifdef CONFIG_ZONE_DMA
2f1b6248 166 "DMA",
4b51d669 167#endif
fb0e7942 168#ifdef CONFIG_ZONE_DMA32
2f1b6248 169 "DMA32",
fb0e7942 170#endif
2f1b6248 171 "Normal",
e53ef38d 172#ifdef CONFIG_HIGHMEM
2a1e274a 173 "HighMem",
e53ef38d 174#endif
2a1e274a 175 "Movable",
2f1b6248
CL
176};
177
1da177e4
LT
178int min_free_kbytes = 1024;
179
2c85f51d
JB
180static unsigned long __meminitdata nr_kernel_pages;
181static unsigned long __meminitdata nr_all_pages;
a3142c8e 182static unsigned long __meminitdata dma_reserve;
1da177e4 183
0ee332c1
TH
184#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
185static unsigned long __meminitdata arch_zone_lowest_possible_pfn[MAX_NR_ZONES];
186static unsigned long __meminitdata arch_zone_highest_possible_pfn[MAX_NR_ZONES];
187static unsigned long __initdata required_kernelcore;
188static unsigned long __initdata required_movablecore;
189static unsigned long __meminitdata zone_movable_pfn[MAX_NUMNODES];
190
191/* movable_zone is the "real" zone pages in ZONE_MOVABLE are taken from */
192int movable_zone;
193EXPORT_SYMBOL(movable_zone);
194#endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
c713216d 195
418508c1
MS
196#if MAX_NUMNODES > 1
197int nr_node_ids __read_mostly = MAX_NUMNODES;
62bc62a8 198int nr_online_nodes __read_mostly = 1;
418508c1 199EXPORT_SYMBOL(nr_node_ids);
62bc62a8 200EXPORT_SYMBOL(nr_online_nodes);
418508c1
MS
201#endif
202
9ef9acb0
MG
203int page_group_by_mobility_disabled __read_mostly;
204
b2a0ac88
MG
205static void set_pageblock_migratetype(struct page *page, int migratetype)
206{
49255c61
MG
207
208 if (unlikely(page_group_by_mobility_disabled))
209 migratetype = MIGRATE_UNMOVABLE;
210
b2a0ac88
MG
211 set_pageblock_flags_group(page, (unsigned long)migratetype,
212 PB_migrate, PB_migrate_end);
213}
214
7f33d49a
RW
215bool oom_killer_disabled __read_mostly;
216
13e7444b 217#ifdef CONFIG_DEBUG_VM
c6a57e19 218static int page_outside_zone_boundaries(struct zone *zone, struct page *page)
1da177e4 219{
bdc8cb98
DH
220 int ret = 0;
221 unsigned seq;
222 unsigned long pfn = page_to_pfn(page);
c6a57e19 223
bdc8cb98
DH
224 do {
225 seq = zone_span_seqbegin(zone);
226 if (pfn >= zone->zone_start_pfn + zone->spanned_pages)
227 ret = 1;
228 else if (pfn < zone->zone_start_pfn)
229 ret = 1;
230 } while (zone_span_seqretry(zone, seq));
231
232 return ret;
c6a57e19
DH
233}
234
235static int page_is_consistent(struct zone *zone, struct page *page)
236{
14e07298 237 if (!pfn_valid_within(page_to_pfn(page)))
c6a57e19 238 return 0;
1da177e4 239 if (zone != page_zone(page))
c6a57e19
DH
240 return 0;
241
242 return 1;
243}
244/*
245 * Temporary debugging check for pages not lying within a given zone.
246 */
247static int bad_range(struct zone *zone, struct page *page)
248{
249 if (page_outside_zone_boundaries(zone, page))
1da177e4 250 return 1;
c6a57e19
DH
251 if (!page_is_consistent(zone, page))
252 return 1;
253
1da177e4
LT
254 return 0;
255}
13e7444b
NP
256#else
257static inline int bad_range(struct zone *zone, struct page *page)
258{
259 return 0;
260}
261#endif
262
224abf92 263static void bad_page(struct page *page)
1da177e4 264{
d936cf9b
HD
265 static unsigned long resume;
266 static unsigned long nr_shown;
267 static unsigned long nr_unshown;
268
2a7684a2
WF
269 /* Don't complain about poisoned pages */
270 if (PageHWPoison(page)) {
ef2b4b95 271 reset_page_mapcount(page); /* remove PageBuddy */
2a7684a2
WF
272 return;
273 }
274
d936cf9b
HD
275 /*
276 * Allow a burst of 60 reports, then keep quiet for that minute;
277 * or allow a steady drip of one report per second.
278 */
279 if (nr_shown == 60) {
280 if (time_before(jiffies, resume)) {
281 nr_unshown++;
282 goto out;
283 }
284 if (nr_unshown) {
1e9e6365
HD
285 printk(KERN_ALERT
286 "BUG: Bad page state: %lu messages suppressed\n",
d936cf9b
HD
287 nr_unshown);
288 nr_unshown = 0;
289 }
290 nr_shown = 0;
291 }
292 if (nr_shown++ == 0)
293 resume = jiffies + 60 * HZ;
294
1e9e6365 295 printk(KERN_ALERT "BUG: Bad page state in process %s pfn:%05lx\n",
3dc14741 296 current->comm, page_to_pfn(page));
718a3821 297 dump_page(page);
3dc14741 298
4f31888c 299 print_modules();
1da177e4 300 dump_stack();
d936cf9b 301out:
8cc3b392 302 /* Leave bad fields for debug, except PageBuddy could make trouble */
ef2b4b95 303 reset_page_mapcount(page); /* remove PageBuddy */
9f158333 304 add_taint(TAINT_BAD_PAGE);
1da177e4
LT
305}
306
1da177e4
LT
307/*
308 * Higher-order pages are called "compound pages". They are structured thusly:
309 *
310 * The first PAGE_SIZE page is called the "head page".
311 *
312 * The remaining PAGE_SIZE pages are called "tail pages".
313 *
6416b9fa
WSH
314 * All pages have PG_compound set. All tail pages have their ->first_page
315 * pointing at the head page.
1da177e4 316 *
41d78ba5
HD
317 * The first tail page's ->lru.next holds the address of the compound page's
318 * put_page() function. Its ->lru.prev holds the order of allocation.
319 * This usage means that zero-order pages may not be compound.
1da177e4 320 */
d98c7a09
HD
321
322static void free_compound_page(struct page *page)
323{
d85f3385 324 __free_pages_ok(page, compound_order(page));
d98c7a09
HD
325}
326
01ad1c08 327void prep_compound_page(struct page *page, unsigned long order)
18229df5
AW
328{
329 int i;
330 int nr_pages = 1 << order;
331
332 set_compound_page_dtor(page, free_compound_page);
333 set_compound_order(page, order);
334 __SetPageHead(page);
335 for (i = 1; i < nr_pages; i++) {
336 struct page *p = page + i;
18229df5 337 __SetPageTail(p);
58a84aa9 338 set_page_count(p, 0);
18229df5
AW
339 p->first_page = page;
340 }
341}
342
59ff4216 343/* update __split_huge_page_refcount if you change this function */
8cc3b392 344static int destroy_compound_page(struct page *page, unsigned long order)
1da177e4
LT
345{
346 int i;
347 int nr_pages = 1 << order;
8cc3b392 348 int bad = 0;
1da177e4 349
8cc3b392
HD
350 if (unlikely(compound_order(page) != order) ||
351 unlikely(!PageHead(page))) {
224abf92 352 bad_page(page);
8cc3b392
HD
353 bad++;
354 }
1da177e4 355
6d777953 356 __ClearPageHead(page);
8cc3b392 357
18229df5
AW
358 for (i = 1; i < nr_pages; i++) {
359 struct page *p = page + i;
1da177e4 360
e713a21d 361 if (unlikely(!PageTail(p) || (p->first_page != page))) {
224abf92 362 bad_page(page);
8cc3b392
HD
363 bad++;
364 }
d85f3385 365 __ClearPageTail(p);
1da177e4 366 }
8cc3b392
HD
367
368 return bad;
1da177e4 369}
1da177e4 370
17cf4406
NP
371static inline void prep_zero_page(struct page *page, int order, gfp_t gfp_flags)
372{
373 int i;
374
6626c5d5
AM
375 /*
376 * clear_highpage() will use KM_USER0, so it's a bug to use __GFP_ZERO
377 * and __GFP_HIGHMEM from hard or soft interrupt context.
378 */
725d704e 379 VM_BUG_ON((gfp_flags & __GFP_HIGHMEM) && in_interrupt());
17cf4406
NP
380 for (i = 0; i < (1 << order); i++)
381 clear_highpage(page + i);
382}
383
6aa3001b
AM
384static inline void set_page_order(struct page *page, int order)
385{
4c21e2f2 386 set_page_private(page, order);
676165a8 387 __SetPageBuddy(page);
1da177e4
LT
388}
389
390static inline void rmv_page_order(struct page *page)
391{
676165a8 392 __ClearPageBuddy(page);
4c21e2f2 393 set_page_private(page, 0);
1da177e4
LT
394}
395
396/*
397 * Locate the struct page for both the matching buddy in our
398 * pair (buddy1) and the combined O(n+1) page they form (page).
399 *
400 * 1) Any buddy B1 will have an order O twin B2 which satisfies
401 * the following equation:
402 * B2 = B1 ^ (1 << O)
403 * For example, if the starting buddy (buddy2) is #8 its order
404 * 1 buddy is #10:
405 * B2 = 8 ^ (1 << 1) = 8 ^ 2 = 10
406 *
407 * 2) Any buddy B will have an order O+1 parent P which
408 * satisfies the following equation:
409 * P = B & ~(1 << O)
410 *
d6e05edc 411 * Assumption: *_mem_map is contiguous at least up to MAX_ORDER
1da177e4 412 */
1da177e4 413static inline unsigned long
43506fad 414__find_buddy_index(unsigned long page_idx, unsigned int order)
1da177e4 415{
43506fad 416 return page_idx ^ (1 << order);
1da177e4
LT
417}
418
419/*
420 * This function checks whether a page is free && is the buddy
421 * we can do coalesce a page and its buddy if
13e7444b 422 * (a) the buddy is not in a hole &&
676165a8 423 * (b) the buddy is in the buddy system &&
cb2b95e1
AW
424 * (c) a page and its buddy have the same order &&
425 * (d) a page and its buddy are in the same zone.
676165a8 426 *
5f24ce5f
AA
427 * For recording whether a page is in the buddy system, we set ->_mapcount -2.
428 * Setting, clearing, and testing _mapcount -2 is serialized by zone->lock.
1da177e4 429 *
676165a8 430 * For recording page's order, we use page_private(page).
1da177e4 431 */
cb2b95e1
AW
432static inline int page_is_buddy(struct page *page, struct page *buddy,
433 int order)
1da177e4 434{
14e07298 435 if (!pfn_valid_within(page_to_pfn(buddy)))
13e7444b 436 return 0;
13e7444b 437
cb2b95e1
AW
438 if (page_zone_id(page) != page_zone_id(buddy))
439 return 0;
440
441 if (PageBuddy(buddy) && page_order(buddy) == order) {
a3af9c38 442 VM_BUG_ON(page_count(buddy) != 0);
6aa3001b 443 return 1;
676165a8 444 }
6aa3001b 445 return 0;
1da177e4
LT
446}
447
448/*
449 * Freeing function for a buddy system allocator.
450 *
451 * The concept of a buddy system is to maintain direct-mapped table
452 * (containing bit values) for memory blocks of various "orders".
453 * The bottom level table contains the map for the smallest allocatable
454 * units of memory (here, pages), and each level above it describes
455 * pairs of units from the levels below, hence, "buddies".
456 * At a high level, all that happens here is marking the table entry
457 * at the bottom level available, and propagating the changes upward
458 * as necessary, plus some accounting needed to play nicely with other
459 * parts of the VM system.
460 * At each level, we keep a list of pages, which are heads of continuous
5f24ce5f 461 * free pages of length of (1 << order) and marked with _mapcount -2. Page's
4c21e2f2 462 * order is recorded in page_private(page) field.
1da177e4
LT
463 * So when we are allocating or freeing one, we can derive the state of the
464 * other. That is, if we allocate a small block, and both were
465 * free, the remainder of the region must be split into blocks.
466 * If a block is freed, and its buddy is also free, then this
467 * triggers coalescing into a block of larger size.
468 *
469 * -- wli
470 */
471
48db57f8 472static inline void __free_one_page(struct page *page,
ed0ae21d
MG
473 struct zone *zone, unsigned int order,
474 int migratetype)
1da177e4
LT
475{
476 unsigned long page_idx;
6dda9d55 477 unsigned long combined_idx;
43506fad 478 unsigned long uninitialized_var(buddy_idx);
6dda9d55 479 struct page *buddy;
1da177e4 480
224abf92 481 if (unlikely(PageCompound(page)))
8cc3b392
HD
482 if (unlikely(destroy_compound_page(page, order)))
483 return;
1da177e4 484
ed0ae21d
MG
485 VM_BUG_ON(migratetype == -1);
486
1da177e4
LT
487 page_idx = page_to_pfn(page) & ((1 << MAX_ORDER) - 1);
488
f2260e6b 489 VM_BUG_ON(page_idx & ((1 << order) - 1));
725d704e 490 VM_BUG_ON(bad_range(zone, page));
1da177e4 491
1da177e4 492 while (order < MAX_ORDER-1) {
43506fad
KC
493 buddy_idx = __find_buddy_index(page_idx, order);
494 buddy = page + (buddy_idx - page_idx);
cb2b95e1 495 if (!page_is_buddy(page, buddy, order))
3c82d0ce 496 break;
13e7444b 497
3c82d0ce 498 /* Our buddy is free, merge with it and move up one order. */
1da177e4 499 list_del(&buddy->lru);
b2a0ac88 500 zone->free_area[order].nr_free--;
1da177e4 501 rmv_page_order(buddy);
43506fad 502 combined_idx = buddy_idx & page_idx;
1da177e4
LT
503 page = page + (combined_idx - page_idx);
504 page_idx = combined_idx;
505 order++;
506 }
507 set_page_order(page, order);
6dda9d55
CZ
508
509 /*
510 * If this is not the largest possible page, check if the buddy
511 * of the next-highest order is free. If it is, it's possible
512 * that pages are being freed that will coalesce soon. In case,
513 * that is happening, add the free page to the tail of the list
514 * so it's less likely to be used soon and more likely to be merged
515 * as a higher order page
516 */
b7f50cfa 517 if ((order < MAX_ORDER-2) && pfn_valid_within(page_to_pfn(buddy))) {
6dda9d55 518 struct page *higher_page, *higher_buddy;
43506fad
KC
519 combined_idx = buddy_idx & page_idx;
520 higher_page = page + (combined_idx - page_idx);
521 buddy_idx = __find_buddy_index(combined_idx, order + 1);
522 higher_buddy = page + (buddy_idx - combined_idx);
6dda9d55
CZ
523 if (page_is_buddy(higher_page, higher_buddy, order + 1)) {
524 list_add_tail(&page->lru,
525 &zone->free_area[order].free_list[migratetype]);
526 goto out;
527 }
528 }
529
530 list_add(&page->lru, &zone->free_area[order].free_list[migratetype]);
531out:
1da177e4
LT
532 zone->free_area[order].nr_free++;
533}
534
092cead6
KM
535/*
536 * free_page_mlock() -- clean up attempts to free and mlocked() page.
537 * Page should not be on lru, so no need to fix that up.
538 * free_pages_check() will verify...
539 */
540static inline void free_page_mlock(struct page *page)
541{
092cead6
KM
542 __dec_zone_page_state(page, NR_MLOCK);
543 __count_vm_event(UNEVICTABLE_MLOCKFREED);
544}
092cead6 545
224abf92 546static inline int free_pages_check(struct page *page)
1da177e4 547{
92be2e33
NP
548 if (unlikely(page_mapcount(page) |
549 (page->mapping != NULL) |
a3af9c38 550 (atomic_read(&page->_count) != 0) |
f212ad7c
DN
551 (page->flags & PAGE_FLAGS_CHECK_AT_FREE) |
552 (mem_cgroup_bad_page_check(page)))) {
224abf92 553 bad_page(page);
79f4b7bf 554 return 1;
8cc3b392 555 }
79f4b7bf
HD
556 if (page->flags & PAGE_FLAGS_CHECK_AT_PREP)
557 page->flags &= ~PAGE_FLAGS_CHECK_AT_PREP;
558 return 0;
1da177e4
LT
559}
560
561/*
5f8dcc21 562 * Frees a number of pages from the PCP lists
1da177e4 563 * Assumes all pages on list are in same zone, and of same order.
207f36ee 564 * count is the number of pages to free.
1da177e4
LT
565 *
566 * If the zone was previously in an "all pages pinned" state then look to
567 * see if this freeing clears that state.
568 *
569 * And clear the zone's pages_scanned counter, to hold off the "all pages are
570 * pinned" detection logic.
571 */
5f8dcc21
MG
572static void free_pcppages_bulk(struct zone *zone, int count,
573 struct per_cpu_pages *pcp)
1da177e4 574{
5f8dcc21 575 int migratetype = 0;
a6f9edd6 576 int batch_free = 0;
72853e29 577 int to_free = count;
5f8dcc21 578
c54ad30c 579 spin_lock(&zone->lock);
93e4a89a 580 zone->all_unreclaimable = 0;
1da177e4 581 zone->pages_scanned = 0;
f2260e6b 582
72853e29 583 while (to_free) {
48db57f8 584 struct page *page;
5f8dcc21
MG
585 struct list_head *list;
586
587 /*
a6f9edd6
MG
588 * Remove pages from lists in a round-robin fashion. A
589 * batch_free count is maintained that is incremented when an
590 * empty list is encountered. This is so more pages are freed
591 * off fuller lists instead of spinning excessively around empty
592 * lists
5f8dcc21
MG
593 */
594 do {
a6f9edd6 595 batch_free++;
5f8dcc21
MG
596 if (++migratetype == MIGRATE_PCPTYPES)
597 migratetype = 0;
598 list = &pcp->lists[migratetype];
599 } while (list_empty(list));
48db57f8 600
1d16871d
NK
601 /* This is the only non-empty list. Free them all. */
602 if (batch_free == MIGRATE_PCPTYPES)
603 batch_free = to_free;
604
a6f9edd6
MG
605 do {
606 page = list_entry(list->prev, struct page, lru);
607 /* must delete as __free_one_page list manipulates */
608 list_del(&page->lru);
a7016235
HD
609 /* MIGRATE_MOVABLE list may include MIGRATE_RESERVEs */
610 __free_one_page(page, zone, 0, page_private(page));
611 trace_mm_page_pcpu_drain(page, 0, page_private(page));
72853e29 612 } while (--to_free && --batch_free && !list_empty(list));
1da177e4 613 }
72853e29 614 __mod_zone_page_state(zone, NR_FREE_PAGES, count);
c54ad30c 615 spin_unlock(&zone->lock);
1da177e4
LT
616}
617
ed0ae21d
MG
618static void free_one_page(struct zone *zone, struct page *page, int order,
619 int migratetype)
1da177e4 620{
006d22d9 621 spin_lock(&zone->lock);
93e4a89a 622 zone->all_unreclaimable = 0;
006d22d9 623 zone->pages_scanned = 0;
f2260e6b 624
ed0ae21d 625 __free_one_page(page, zone, order, migratetype);
72853e29 626 __mod_zone_page_state(zone, NR_FREE_PAGES, 1 << order);
006d22d9 627 spin_unlock(&zone->lock);
48db57f8
NP
628}
629
ec95f53a 630static bool free_pages_prepare(struct page *page, unsigned int order)
48db57f8 631{
1da177e4 632 int i;
8cc3b392 633 int bad = 0;
1da177e4 634
f650316c 635 trace_mm_page_free_direct(page, order);
b1eeab67
VN
636 kmemcheck_free_shadow(page, order);
637
8dd60a3a
AA
638 if (PageAnon(page))
639 page->mapping = NULL;
640 for (i = 0; i < (1 << order); i++)
641 bad += free_pages_check(page + i);
8cc3b392 642 if (bad)
ec95f53a 643 return false;
689bcebf 644
3ac7fe5a 645 if (!PageHighMem(page)) {
9858db50 646 debug_check_no_locks_freed(page_address(page),PAGE_SIZE<<order);
3ac7fe5a
TG
647 debug_check_no_obj_freed(page_address(page),
648 PAGE_SIZE << order);
649 }
dafb1367 650 arch_free_page(page, order);
48db57f8 651 kernel_map_pages(page, 1 << order, 0);
dafb1367 652
ec95f53a
KM
653 return true;
654}
655
656static void __free_pages_ok(struct page *page, unsigned int order)
657{
658 unsigned long flags;
659 int wasMlocked = __TestClearPageMlocked(page);
660
661 if (!free_pages_prepare(page, order))
662 return;
663
c54ad30c 664 local_irq_save(flags);
c277331d 665 if (unlikely(wasMlocked))
da456f14 666 free_page_mlock(page);
f8891e5e 667 __count_vm_events(PGFREE, 1 << order);
ed0ae21d
MG
668 free_one_page(page_zone(page), page, order,
669 get_pageblock_migratetype(page));
c54ad30c 670 local_irq_restore(flags);
1da177e4
LT
671}
672
a226f6c8
DH
673/*
674 * permit the bootmem allocator to evade page validation on high-order frees
675 */
af370fb8 676void __meminit __free_pages_bootmem(struct page *page, unsigned int order)
a226f6c8
DH
677{
678 if (order == 0) {
679 __ClearPageReserved(page);
680 set_page_count(page, 0);
7835e98b 681 set_page_refcounted(page);
545b1ea9 682 __free_page(page);
a226f6c8 683 } else {
a226f6c8
DH
684 int loop;
685
545b1ea9 686 prefetchw(page);
53348f27 687 for (loop = 0; loop < (1 << order); loop++) {
a226f6c8
DH
688 struct page *p = &page[loop];
689
53348f27 690 if (loop + 1 < (1 << order))
545b1ea9 691 prefetchw(p + 1);
a226f6c8
DH
692 __ClearPageReserved(p);
693 set_page_count(p, 0);
694 }
695
7835e98b 696 set_page_refcounted(page);
545b1ea9 697 __free_pages(page, order);
a226f6c8
DH
698 }
699}
700
1da177e4
LT
701
702/*
703 * The order of subdivision here is critical for the IO subsystem.
704 * Please do not alter this order without good reasons and regression
705 * testing. Specifically, as large blocks of memory are subdivided,
706 * the order in which smaller blocks are delivered depends on the order
707 * they're subdivided in this function. This is the primary factor
708 * influencing the order in which pages are delivered to the IO
709 * subsystem according to empirical testing, and this is also justified
710 * by considering the behavior of a buddy system containing a single
711 * large block of memory acted on by a series of small allocations.
712 * This behavior is a critical factor in sglist merging's success.
713 *
714 * -- wli
715 */
085cc7d5 716static inline void expand(struct zone *zone, struct page *page,
b2a0ac88
MG
717 int low, int high, struct free_area *area,
718 int migratetype)
1da177e4
LT
719{
720 unsigned long size = 1 << high;
721
722 while (high > low) {
723 area--;
724 high--;
725 size >>= 1;
725d704e 726 VM_BUG_ON(bad_range(zone, &page[size]));
b2a0ac88 727 list_add(&page[size].lru, &area->free_list[migratetype]);
1da177e4
LT
728 area->nr_free++;
729 set_page_order(&page[size], high);
730 }
1da177e4
LT
731}
732
1da177e4
LT
733/*
734 * This page is about to be returned from the page allocator
735 */
2a7684a2 736static inline int check_new_page(struct page *page)
1da177e4 737{
92be2e33
NP
738 if (unlikely(page_mapcount(page) |
739 (page->mapping != NULL) |
a3af9c38 740 (atomic_read(&page->_count) != 0) |
f212ad7c
DN
741 (page->flags & PAGE_FLAGS_CHECK_AT_PREP) |
742 (mem_cgroup_bad_page_check(page)))) {
224abf92 743 bad_page(page);
689bcebf 744 return 1;
8cc3b392 745 }
2a7684a2
WF
746 return 0;
747}
748
749static int prep_new_page(struct page *page, int order, gfp_t gfp_flags)
750{
751 int i;
752
753 for (i = 0; i < (1 << order); i++) {
754 struct page *p = page + i;
755 if (unlikely(check_new_page(p)))
756 return 1;
757 }
689bcebf 758
4c21e2f2 759 set_page_private(page, 0);
7835e98b 760 set_page_refcounted(page);
cc102509
NP
761
762 arch_alloc_page(page, order);
1da177e4 763 kernel_map_pages(page, 1 << order, 1);
17cf4406
NP
764
765 if (gfp_flags & __GFP_ZERO)
766 prep_zero_page(page, order, gfp_flags);
767
768 if (order && (gfp_flags & __GFP_COMP))
769 prep_compound_page(page, order);
770
689bcebf 771 return 0;
1da177e4
LT
772}
773
56fd56b8
MG
774/*
775 * Go through the free lists for the given migratetype and remove
776 * the smallest available page from the freelists
777 */
728ec980
MG
778static inline
779struct page *__rmqueue_smallest(struct zone *zone, unsigned int order,
56fd56b8
MG
780 int migratetype)
781{
782 unsigned int current_order;
783 struct free_area * area;
784 struct page *page;
785
786 /* Find a page of the appropriate size in the preferred list */
787 for (current_order = order; current_order < MAX_ORDER; ++current_order) {
788 area = &(zone->free_area[current_order]);
789 if (list_empty(&area->free_list[migratetype]))
790 continue;
791
792 page = list_entry(area->free_list[migratetype].next,
793 struct page, lru);
794 list_del(&page->lru);
795 rmv_page_order(page);
796 area->nr_free--;
56fd56b8
MG
797 expand(zone, page, order, current_order, area, migratetype);
798 return page;
799 }
800
801 return NULL;
802}
803
804
b2a0ac88
MG
805/*
806 * This array describes the order lists are fallen back to when
807 * the free lists for the desirable migrate type are depleted
808 */
809static int fallbacks[MIGRATE_TYPES][MIGRATE_TYPES-1] = {
64c5e135
MG
810 [MIGRATE_UNMOVABLE] = { MIGRATE_RECLAIMABLE, MIGRATE_MOVABLE, MIGRATE_RESERVE },
811 [MIGRATE_RECLAIMABLE] = { MIGRATE_UNMOVABLE, MIGRATE_MOVABLE, MIGRATE_RESERVE },
812 [MIGRATE_MOVABLE] = { MIGRATE_RECLAIMABLE, MIGRATE_UNMOVABLE, MIGRATE_RESERVE },
813 [MIGRATE_RESERVE] = { MIGRATE_RESERVE, MIGRATE_RESERVE, MIGRATE_RESERVE }, /* Never used */
b2a0ac88
MG
814};
815
c361be55
MG
816/*
817 * Move the free pages in a range to the free lists of the requested type.
d9c23400 818 * Note that start_page and end_pages are not aligned on a pageblock
c361be55
MG
819 * boundary. If alignment is required, use move_freepages_block()
820 */
b69a7288
AB
821static int move_freepages(struct zone *zone,
822 struct page *start_page, struct page *end_page,
823 int migratetype)
c361be55
MG
824{
825 struct page *page;
826 unsigned long order;
d100313f 827 int pages_moved = 0;
c361be55
MG
828
829#ifndef CONFIG_HOLES_IN_ZONE
830 /*
831 * page_zone is not safe to call in this context when
832 * CONFIG_HOLES_IN_ZONE is set. This bug check is probably redundant
833 * anyway as we check zone boundaries in move_freepages_block().
834 * Remove at a later date when no bug reports exist related to
ac0e5b7a 835 * grouping pages by mobility
c361be55
MG
836 */
837 BUG_ON(page_zone(start_page) != page_zone(end_page));
838#endif
839
840 for (page = start_page; page <= end_page;) {
344c790e
AL
841 /* Make sure we are not inadvertently changing nodes */
842 VM_BUG_ON(page_to_nid(page) != zone_to_nid(zone));
843
c361be55
MG
844 if (!pfn_valid_within(page_to_pfn(page))) {
845 page++;
846 continue;
847 }
848
849 if (!PageBuddy(page)) {
850 page++;
851 continue;
852 }
853
854 order = page_order(page);
84be48d8
KS
855 list_move(&page->lru,
856 &zone->free_area[order].free_list[migratetype]);
c361be55 857 page += 1 << order;
d100313f 858 pages_moved += 1 << order;
c361be55
MG
859 }
860
d100313f 861 return pages_moved;
c361be55
MG
862}
863
b69a7288
AB
864static int move_freepages_block(struct zone *zone, struct page *page,
865 int migratetype)
c361be55
MG
866{
867 unsigned long start_pfn, end_pfn;
868 struct page *start_page, *end_page;
869
870 start_pfn = page_to_pfn(page);
d9c23400 871 start_pfn = start_pfn & ~(pageblock_nr_pages-1);
c361be55 872 start_page = pfn_to_page(start_pfn);
d9c23400
MG
873 end_page = start_page + pageblock_nr_pages - 1;
874 end_pfn = start_pfn + pageblock_nr_pages - 1;
c361be55
MG
875
876 /* Do not cross zone boundaries */
877 if (start_pfn < zone->zone_start_pfn)
878 start_page = page;
879 if (end_pfn >= zone->zone_start_pfn + zone->spanned_pages)
880 return 0;
881
882 return move_freepages(zone, start_page, end_page, migratetype);
883}
884
2f66a68f
MG
885static void change_pageblock_range(struct page *pageblock_page,
886 int start_order, int migratetype)
887{
888 int nr_pageblocks = 1 << (start_order - pageblock_order);
889
890 while (nr_pageblocks--) {
891 set_pageblock_migratetype(pageblock_page, migratetype);
892 pageblock_page += pageblock_nr_pages;
893 }
894}
895
b2a0ac88 896/* Remove an element from the buddy allocator from the fallback list */
0ac3a409
MG
897static inline struct page *
898__rmqueue_fallback(struct zone *zone, int order, int start_migratetype)
b2a0ac88
MG
899{
900 struct free_area * area;
901 int current_order;
902 struct page *page;
903 int migratetype, i;
904
905 /* Find the largest possible block of pages in the other list */
906 for (current_order = MAX_ORDER-1; current_order >= order;
907 --current_order) {
908 for (i = 0; i < MIGRATE_TYPES - 1; i++) {
909 migratetype = fallbacks[start_migratetype][i];
910
56fd56b8
MG
911 /* MIGRATE_RESERVE handled later if necessary */
912 if (migratetype == MIGRATE_RESERVE)
913 continue;
e010487d 914
b2a0ac88
MG
915 area = &(zone->free_area[current_order]);
916 if (list_empty(&area->free_list[migratetype]))
917 continue;
918
919 page = list_entry(area->free_list[migratetype].next,
920 struct page, lru);
921 area->nr_free--;
922
923 /*
c361be55 924 * If breaking a large block of pages, move all free
46dafbca
MG
925 * pages to the preferred allocation list. If falling
926 * back for a reclaimable kernel allocation, be more
25985edc 927 * aggressive about taking ownership of free pages
b2a0ac88 928 */
d9c23400 929 if (unlikely(current_order >= (pageblock_order >> 1)) ||
dd5d241e
MG
930 start_migratetype == MIGRATE_RECLAIMABLE ||
931 page_group_by_mobility_disabled) {
46dafbca
MG
932 unsigned long pages;
933 pages = move_freepages_block(zone, page,
934 start_migratetype);
935
936 /* Claim the whole block if over half of it is free */
dd5d241e
MG
937 if (pages >= (1 << (pageblock_order-1)) ||
938 page_group_by_mobility_disabled)
46dafbca
MG
939 set_pageblock_migratetype(page,
940 start_migratetype);
941
b2a0ac88 942 migratetype = start_migratetype;
c361be55 943 }
b2a0ac88
MG
944
945 /* Remove the page from the freelists */
946 list_del(&page->lru);
947 rmv_page_order(page);
b2a0ac88 948
2f66a68f
MG
949 /* Take ownership for orders >= pageblock_order */
950 if (current_order >= pageblock_order)
951 change_pageblock_range(page, current_order,
b2a0ac88
MG
952 start_migratetype);
953
954 expand(zone, page, order, current_order, area, migratetype);
e0fff1bd
MG
955
956 trace_mm_page_alloc_extfrag(page, order, current_order,
957 start_migratetype, migratetype);
958
b2a0ac88
MG
959 return page;
960 }
961 }
962
728ec980 963 return NULL;
b2a0ac88
MG
964}
965
56fd56b8 966/*
1da177e4
LT
967 * Do the hard work of removing an element from the buddy allocator.
968 * Call me with the zone->lock already held.
969 */
b2a0ac88
MG
970static struct page *__rmqueue(struct zone *zone, unsigned int order,
971 int migratetype)
1da177e4 972{
1da177e4
LT
973 struct page *page;
974
728ec980 975retry_reserve:
56fd56b8 976 page = __rmqueue_smallest(zone, order, migratetype);
b2a0ac88 977
728ec980 978 if (unlikely(!page) && migratetype != MIGRATE_RESERVE) {
56fd56b8 979 page = __rmqueue_fallback(zone, order, migratetype);
b2a0ac88 980
728ec980
MG
981 /*
982 * Use MIGRATE_RESERVE rather than fail an allocation. goto
983 * is used because __rmqueue_smallest is an inline function
984 * and we want just one call site
985 */
986 if (!page) {
987 migratetype = MIGRATE_RESERVE;
988 goto retry_reserve;
989 }
990 }
991
0d3d062a 992 trace_mm_page_alloc_zone_locked(page, order, migratetype);
b2a0ac88 993 return page;
1da177e4
LT
994}
995
996/*
997 * Obtain a specified number of elements from the buddy allocator, all under
998 * a single hold of the lock, for efficiency. Add them to the supplied list.
999 * Returns the number of new pages which were placed at *list.
1000 */
1001static int rmqueue_bulk(struct zone *zone, unsigned int order,
b2a0ac88 1002 unsigned long count, struct list_head *list,
e084b2d9 1003 int migratetype, int cold)
1da177e4 1004{
1da177e4 1005 int i;
1da177e4 1006
c54ad30c 1007 spin_lock(&zone->lock);
1da177e4 1008 for (i = 0; i < count; ++i) {
b2a0ac88 1009 struct page *page = __rmqueue(zone, order, migratetype);
085cc7d5 1010 if (unlikely(page == NULL))
1da177e4 1011 break;
81eabcbe
MG
1012
1013 /*
1014 * Split buddy pages returned by expand() are received here
1015 * in physical page order. The page is added to the callers and
1016 * list and the list head then moves forward. From the callers
1017 * perspective, the linked list is ordered by page number in
1018 * some conditions. This is useful for IO devices that can
1019 * merge IO requests if the physical pages are ordered
1020 * properly.
1021 */
e084b2d9
MG
1022 if (likely(cold == 0))
1023 list_add(&page->lru, list);
1024 else
1025 list_add_tail(&page->lru, list);
535131e6 1026 set_page_private(page, migratetype);
81eabcbe 1027 list = &page->lru;
1da177e4 1028 }
f2260e6b 1029 __mod_zone_page_state(zone, NR_FREE_PAGES, -(i << order));
c54ad30c 1030 spin_unlock(&zone->lock);
085cc7d5 1031 return i;
1da177e4
LT
1032}
1033
4ae7c039 1034#ifdef CONFIG_NUMA
8fce4d8e 1035/*
4037d452
CL
1036 * Called from the vmstat counter updater to drain pagesets of this
1037 * currently executing processor on remote nodes after they have
1038 * expired.
1039 *
879336c3
CL
1040 * Note that this function must be called with the thread pinned to
1041 * a single processor.
8fce4d8e 1042 */
4037d452 1043void drain_zone_pages(struct zone *zone, struct per_cpu_pages *pcp)
4ae7c039 1044{
4ae7c039 1045 unsigned long flags;
4037d452 1046 int to_drain;
4ae7c039 1047
4037d452
CL
1048 local_irq_save(flags);
1049 if (pcp->count >= pcp->batch)
1050 to_drain = pcp->batch;
1051 else
1052 to_drain = pcp->count;
5f8dcc21 1053 free_pcppages_bulk(zone, to_drain, pcp);
4037d452
CL
1054 pcp->count -= to_drain;
1055 local_irq_restore(flags);
4ae7c039
CL
1056}
1057#endif
1058
9f8f2172
CL
1059/*
1060 * Drain pages of the indicated processor.
1061 *
1062 * The processor must either be the current processor and the
1063 * thread pinned to the current processor or a processor that
1064 * is not online.
1065 */
1066static void drain_pages(unsigned int cpu)
1da177e4 1067{
c54ad30c 1068 unsigned long flags;
1da177e4 1069 struct zone *zone;
1da177e4 1070
ee99c71c 1071 for_each_populated_zone(zone) {
1da177e4 1072 struct per_cpu_pageset *pset;
3dfa5721 1073 struct per_cpu_pages *pcp;
1da177e4 1074
99dcc3e5
CL
1075 local_irq_save(flags);
1076 pset = per_cpu_ptr(zone->pageset, cpu);
3dfa5721
CL
1077
1078 pcp = &pset->pcp;
2ff754fa
DR
1079 if (pcp->count) {
1080 free_pcppages_bulk(zone, pcp->count, pcp);
1081 pcp->count = 0;
1082 }
3dfa5721 1083 local_irq_restore(flags);
1da177e4
LT
1084 }
1085}
1da177e4 1086
9f8f2172
CL
1087/*
1088 * Spill all of this CPU's per-cpu pages back into the buddy allocator.
1089 */
1090void drain_local_pages(void *arg)
1091{
1092 drain_pages(smp_processor_id());
1093}
1094
1095/*
1096 * Spill all the per-cpu pages from all CPUs back into the buddy allocator
1097 */
1098void drain_all_pages(void)
1099{
15c8b6c1 1100 on_each_cpu(drain_local_pages, NULL, 1);
9f8f2172
CL
1101}
1102
296699de 1103#ifdef CONFIG_HIBERNATION
1da177e4
LT
1104
1105void mark_free_pages(struct zone *zone)
1106{
f623f0db
RW
1107 unsigned long pfn, max_zone_pfn;
1108 unsigned long flags;
b2a0ac88 1109 int order, t;
1da177e4
LT
1110 struct list_head *curr;
1111
1112 if (!zone->spanned_pages)
1113 return;
1114
1115 spin_lock_irqsave(&zone->lock, flags);
f623f0db
RW
1116
1117 max_zone_pfn = zone->zone_start_pfn + zone->spanned_pages;
1118 for (pfn = zone->zone_start_pfn; pfn < max_zone_pfn; pfn++)
1119 if (pfn_valid(pfn)) {
1120 struct page *page = pfn_to_page(pfn);
1121
7be98234
RW
1122 if (!swsusp_page_is_forbidden(page))
1123 swsusp_unset_page_free(page);
f623f0db 1124 }
1da177e4 1125
b2a0ac88
MG
1126 for_each_migratetype_order(order, t) {
1127 list_for_each(curr, &zone->free_area[order].free_list[t]) {
f623f0db 1128 unsigned long i;
1da177e4 1129
f623f0db
RW
1130 pfn = page_to_pfn(list_entry(curr, struct page, lru));
1131 for (i = 0; i < (1UL << order); i++)
7be98234 1132 swsusp_set_page_free(pfn_to_page(pfn + i));
f623f0db 1133 }
b2a0ac88 1134 }
1da177e4
LT
1135 spin_unlock_irqrestore(&zone->lock, flags);
1136}
e2c55dc8 1137#endif /* CONFIG_PM */
1da177e4 1138
1da177e4
LT
1139/*
1140 * Free a 0-order page
fc91668e 1141 * cold == 1 ? free a cold page : free a hot page
1da177e4 1142 */
fc91668e 1143void free_hot_cold_page(struct page *page, int cold)
1da177e4
LT
1144{
1145 struct zone *zone = page_zone(page);
1146 struct per_cpu_pages *pcp;
1147 unsigned long flags;
5f8dcc21 1148 int migratetype;
451ea25d 1149 int wasMlocked = __TestClearPageMlocked(page);
1da177e4 1150
ec95f53a 1151 if (!free_pages_prepare(page, 0))
689bcebf
HD
1152 return;
1153
5f8dcc21
MG
1154 migratetype = get_pageblock_migratetype(page);
1155 set_page_private(page, migratetype);
1da177e4 1156 local_irq_save(flags);
c277331d 1157 if (unlikely(wasMlocked))
da456f14 1158 free_page_mlock(page);
f8891e5e 1159 __count_vm_event(PGFREE);
da456f14 1160
5f8dcc21
MG
1161 /*
1162 * We only track unmovable, reclaimable and movable on pcp lists.
1163 * Free ISOLATE pages back to the allocator because they are being
1164 * offlined but treat RESERVE as movable pages so we can get those
1165 * areas back if necessary. Otherwise, we may have to free
1166 * excessively into the page allocator
1167 */
1168 if (migratetype >= MIGRATE_PCPTYPES) {
1169 if (unlikely(migratetype == MIGRATE_ISOLATE)) {
1170 free_one_page(zone, page, 0, migratetype);
1171 goto out;
1172 }
1173 migratetype = MIGRATE_MOVABLE;
1174 }
1175
99dcc3e5 1176 pcp = &this_cpu_ptr(zone->pageset)->pcp;
3dfa5721 1177 if (cold)
5f8dcc21 1178 list_add_tail(&page->lru, &pcp->lists[migratetype]);
3dfa5721 1179 else
5f8dcc21 1180 list_add(&page->lru, &pcp->lists[migratetype]);
1da177e4 1181 pcp->count++;
48db57f8 1182 if (pcp->count >= pcp->high) {
5f8dcc21 1183 free_pcppages_bulk(zone, pcp->batch, pcp);
48db57f8
NP
1184 pcp->count -= pcp->batch;
1185 }
5f8dcc21
MG
1186
1187out:
1da177e4 1188 local_irq_restore(flags);
1da177e4
LT
1189}
1190
8dfcc9ba
NP
1191/*
1192 * split_page takes a non-compound higher-order page, and splits it into
1193 * n (1<<order) sub-pages: page[0..n]
1194 * Each sub-page must be freed individually.
1195 *
1196 * Note: this is probably too low level an operation for use in drivers.
1197 * Please consult with lkml before using this in your driver.
1198 */
1199void split_page(struct page *page, unsigned int order)
1200{
1201 int i;
1202
725d704e
NP
1203 VM_BUG_ON(PageCompound(page));
1204 VM_BUG_ON(!page_count(page));
b1eeab67
VN
1205
1206#ifdef CONFIG_KMEMCHECK
1207 /*
1208 * Split shadow pages too, because free(page[0]) would
1209 * otherwise free the whole shadow.
1210 */
1211 if (kmemcheck_page_is_tracked(page))
1212 split_page(virt_to_page(page[0].shadow), order);
1213#endif
1214
7835e98b
NP
1215 for (i = 1; i < (1 << order); i++)
1216 set_page_refcounted(page + i);
8dfcc9ba 1217}
8dfcc9ba 1218
748446bb
MG
1219/*
1220 * Similar to split_page except the page is already free. As this is only
1221 * being used for migration, the migratetype of the block also changes.
1222 * As this is called with interrupts disabled, the caller is responsible
1223 * for calling arch_alloc_page() and kernel_map_page() after interrupts
1224 * are enabled.
1225 *
1226 * Note: this is probably too low level an operation for use in drivers.
1227 * Please consult with lkml before using this in your driver.
1228 */
1229int split_free_page(struct page *page)
1230{
1231 unsigned int order;
1232 unsigned long watermark;
1233 struct zone *zone;
1234
1235 BUG_ON(!PageBuddy(page));
1236
1237 zone = page_zone(page);
1238 order = page_order(page);
1239
1240 /* Obey watermarks as if the page was being allocated */
1241 watermark = low_wmark_pages(zone) + (1 << order);
1242 if (!zone_watermark_ok(zone, 0, watermark, 0, 0))
1243 return 0;
1244
1245 /* Remove page from free list */
1246 list_del(&page->lru);
1247 zone->free_area[order].nr_free--;
1248 rmv_page_order(page);
1249 __mod_zone_page_state(zone, NR_FREE_PAGES, -(1UL << order));
1250
1251 /* Split into individual pages */
1252 set_page_refcounted(page);
1253 split_page(page, order);
1254
1255 if (order >= pageblock_order - 1) {
1256 struct page *endpage = page + (1 << order) - 1;
1257 for (; page < endpage; page += pageblock_nr_pages)
1258 set_pageblock_migratetype(page, MIGRATE_MOVABLE);
1259 }
1260
1261 return 1 << order;
1262}
1263
1da177e4
LT
1264/*
1265 * Really, prep_compound_page() should be called from __rmqueue_bulk(). But
1266 * we cheat by calling it from here, in the order > 0 path. Saves a branch
1267 * or two.
1268 */
0a15c3e9
MG
1269static inline
1270struct page *buffered_rmqueue(struct zone *preferred_zone,
3dd28266
MG
1271 struct zone *zone, int order, gfp_t gfp_flags,
1272 int migratetype)
1da177e4
LT
1273{
1274 unsigned long flags;
689bcebf 1275 struct page *page;
1da177e4
LT
1276 int cold = !!(gfp_flags & __GFP_COLD);
1277
689bcebf 1278again:
48db57f8 1279 if (likely(order == 0)) {
1da177e4 1280 struct per_cpu_pages *pcp;
5f8dcc21 1281 struct list_head *list;
1da177e4 1282
1da177e4 1283 local_irq_save(flags);
99dcc3e5
CL
1284 pcp = &this_cpu_ptr(zone->pageset)->pcp;
1285 list = &pcp->lists[migratetype];
5f8dcc21 1286 if (list_empty(list)) {
535131e6 1287 pcp->count += rmqueue_bulk(zone, 0,
5f8dcc21 1288 pcp->batch, list,
e084b2d9 1289 migratetype, cold);
5f8dcc21 1290 if (unlikely(list_empty(list)))
6fb332fa 1291 goto failed;
535131e6 1292 }
b92a6edd 1293
5f8dcc21
MG
1294 if (cold)
1295 page = list_entry(list->prev, struct page, lru);
1296 else
1297 page = list_entry(list->next, struct page, lru);
1298
b92a6edd
MG
1299 list_del(&page->lru);
1300 pcp->count--;
7fb1d9fc 1301 } else {
dab48dab
AM
1302 if (unlikely(gfp_flags & __GFP_NOFAIL)) {
1303 /*
1304 * __GFP_NOFAIL is not to be used in new code.
1305 *
1306 * All __GFP_NOFAIL callers should be fixed so that they
1307 * properly detect and handle allocation failures.
1308 *
1309 * We most definitely don't want callers attempting to
4923abf9 1310 * allocate greater than order-1 page units with
dab48dab
AM
1311 * __GFP_NOFAIL.
1312 */
4923abf9 1313 WARN_ON_ONCE(order > 1);
dab48dab 1314 }
1da177e4 1315 spin_lock_irqsave(&zone->lock, flags);
b2a0ac88 1316 page = __rmqueue(zone, order, migratetype);
a74609fa
NP
1317 spin_unlock(&zone->lock);
1318 if (!page)
1319 goto failed;
6ccf80eb 1320 __mod_zone_page_state(zone, NR_FREE_PAGES, -(1 << order));
1da177e4
LT
1321 }
1322
f8891e5e 1323 __count_zone_vm_events(PGALLOC, zone, 1 << order);
78afd561 1324 zone_statistics(preferred_zone, zone, gfp_flags);
a74609fa 1325 local_irq_restore(flags);
1da177e4 1326
725d704e 1327 VM_BUG_ON(bad_range(zone, page));
17cf4406 1328 if (prep_new_page(page, order, gfp_flags))
a74609fa 1329 goto again;
1da177e4 1330 return page;
a74609fa
NP
1331
1332failed:
1333 local_irq_restore(flags);
a74609fa 1334 return NULL;
1da177e4
LT
1335}
1336
41858966
MG
1337/* The ALLOC_WMARK bits are used as an index to zone->watermark */
1338#define ALLOC_WMARK_MIN WMARK_MIN
1339#define ALLOC_WMARK_LOW WMARK_LOW
1340#define ALLOC_WMARK_HIGH WMARK_HIGH
1341#define ALLOC_NO_WATERMARKS 0x04 /* don't check watermarks at all */
1342
1343/* Mask to get the watermark bits */
1344#define ALLOC_WMARK_MASK (ALLOC_NO_WATERMARKS-1)
1345
3148890b
NP
1346#define ALLOC_HARDER 0x10 /* try to alloc harder */
1347#define ALLOC_HIGH 0x20 /* __GFP_HIGH set */
1348#define ALLOC_CPUSET 0x40 /* check for correct cpuset */
7fb1d9fc 1349
933e312e
AM
1350#ifdef CONFIG_FAIL_PAGE_ALLOC
1351
b2588c4b 1352static struct {
933e312e
AM
1353 struct fault_attr attr;
1354
1355 u32 ignore_gfp_highmem;
1356 u32 ignore_gfp_wait;
54114994 1357 u32 min_order;
933e312e
AM
1358} fail_page_alloc = {
1359 .attr = FAULT_ATTR_INITIALIZER,
6b1b60f4
DM
1360 .ignore_gfp_wait = 1,
1361 .ignore_gfp_highmem = 1,
54114994 1362 .min_order = 1,
933e312e
AM
1363};
1364
1365static int __init setup_fail_page_alloc(char *str)
1366{
1367 return setup_fault_attr(&fail_page_alloc.attr, str);
1368}
1369__setup("fail_page_alloc=", setup_fail_page_alloc);
1370
1371static int should_fail_alloc_page(gfp_t gfp_mask, unsigned int order)
1372{
54114994
AM
1373 if (order < fail_page_alloc.min_order)
1374 return 0;
933e312e
AM
1375 if (gfp_mask & __GFP_NOFAIL)
1376 return 0;
1377 if (fail_page_alloc.ignore_gfp_highmem && (gfp_mask & __GFP_HIGHMEM))
1378 return 0;
1379 if (fail_page_alloc.ignore_gfp_wait && (gfp_mask & __GFP_WAIT))
1380 return 0;
1381
1382 return should_fail(&fail_page_alloc.attr, 1 << order);
1383}
1384
1385#ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
1386
1387static int __init fail_page_alloc_debugfs(void)
1388{
f4ae40a6 1389 umode_t mode = S_IFREG | S_IRUSR | S_IWUSR;
933e312e 1390 struct dentry *dir;
933e312e 1391
dd48c085
AM
1392 dir = fault_create_debugfs_attr("fail_page_alloc", NULL,
1393 &fail_page_alloc.attr);
1394 if (IS_ERR(dir))
1395 return PTR_ERR(dir);
933e312e 1396
b2588c4b
AM
1397 if (!debugfs_create_bool("ignore-gfp-wait", mode, dir,
1398 &fail_page_alloc.ignore_gfp_wait))
1399 goto fail;
1400 if (!debugfs_create_bool("ignore-gfp-highmem", mode, dir,
1401 &fail_page_alloc.ignore_gfp_highmem))
1402 goto fail;
1403 if (!debugfs_create_u32("min-order", mode, dir,
1404 &fail_page_alloc.min_order))
1405 goto fail;
1406
1407 return 0;
1408fail:
dd48c085 1409 debugfs_remove_recursive(dir);
933e312e 1410
b2588c4b 1411 return -ENOMEM;
933e312e
AM
1412}
1413
1414late_initcall(fail_page_alloc_debugfs);
1415
1416#endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */
1417
1418#else /* CONFIG_FAIL_PAGE_ALLOC */
1419
1420static inline int should_fail_alloc_page(gfp_t gfp_mask, unsigned int order)
1421{
1422 return 0;
1423}
1424
1425#endif /* CONFIG_FAIL_PAGE_ALLOC */
1426
1da177e4 1427/*
88f5acf8 1428 * Return true if free pages are above 'mark'. This takes into account the order
1da177e4
LT
1429 * of the allocation.
1430 */
88f5acf8
MG
1431static bool __zone_watermark_ok(struct zone *z, int order, unsigned long mark,
1432 int classzone_idx, int alloc_flags, long free_pages)
1da177e4
LT
1433{
1434 /* free_pages my go negative - that's OK */
d23ad423 1435 long min = mark;
1da177e4
LT
1436 int o;
1437
88f5acf8 1438 free_pages -= (1 << order) + 1;
7fb1d9fc 1439 if (alloc_flags & ALLOC_HIGH)
1da177e4 1440 min -= min / 2;
7fb1d9fc 1441 if (alloc_flags & ALLOC_HARDER)
1da177e4
LT
1442 min -= min / 4;
1443
1444 if (free_pages <= min + z->lowmem_reserve[classzone_idx])
88f5acf8 1445 return false;
1da177e4
LT
1446 for (o = 0; o < order; o++) {
1447 /* At the next order, this order's pages become unavailable */
1448 free_pages -= z->free_area[o].nr_free << o;
1449
1450 /* Require fewer higher order pages to be free */
1451 min >>= 1;
1452
1453 if (free_pages <= min)
88f5acf8 1454 return false;
1da177e4 1455 }
88f5acf8
MG
1456 return true;
1457}
1458
1459bool zone_watermark_ok(struct zone *z, int order, unsigned long mark,
1460 int classzone_idx, int alloc_flags)
1461{
1462 return __zone_watermark_ok(z, order, mark, classzone_idx, alloc_flags,
1463 zone_page_state(z, NR_FREE_PAGES));
1464}
1465
1466bool zone_watermark_ok_safe(struct zone *z, int order, unsigned long mark,
1467 int classzone_idx, int alloc_flags)
1468{
1469 long free_pages = zone_page_state(z, NR_FREE_PAGES);
1470
1471 if (z->percpu_drift_mark && free_pages < z->percpu_drift_mark)
1472 free_pages = zone_page_state_snapshot(z, NR_FREE_PAGES);
1473
1474 return __zone_watermark_ok(z, order, mark, classzone_idx, alloc_flags,
1475 free_pages);
1da177e4
LT
1476}
1477
9276b1bc
PJ
1478#ifdef CONFIG_NUMA
1479/*
1480 * zlc_setup - Setup for "zonelist cache". Uses cached zone data to
1481 * skip over zones that are not allowed by the cpuset, or that have
1482 * been recently (in last second) found to be nearly full. See further
1483 * comments in mmzone.h. Reduces cache footprint of zonelist scans
183ff22b 1484 * that have to skip over a lot of full or unallowed zones.
9276b1bc
PJ
1485 *
1486 * If the zonelist cache is present in the passed in zonelist, then
1487 * returns a pointer to the allowed node mask (either the current
37b07e41 1488 * tasks mems_allowed, or node_states[N_HIGH_MEMORY].)
9276b1bc
PJ
1489 *
1490 * If the zonelist cache is not available for this zonelist, does
1491 * nothing and returns NULL.
1492 *
1493 * If the fullzones BITMAP in the zonelist cache is stale (more than
1494 * a second since last zap'd) then we zap it out (clear its bits.)
1495 *
1496 * We hold off even calling zlc_setup, until after we've checked the
1497 * first zone in the zonelist, on the theory that most allocations will
1498 * be satisfied from that first zone, so best to examine that zone as
1499 * quickly as we can.
1500 */
1501static nodemask_t *zlc_setup(struct zonelist *zonelist, int alloc_flags)
1502{
1503 struct zonelist_cache *zlc; /* cached zonelist speedup info */
1504 nodemask_t *allowednodes; /* zonelist_cache approximation */
1505
1506 zlc = zonelist->zlcache_ptr;
1507 if (!zlc)
1508 return NULL;
1509
f05111f5 1510 if (time_after(jiffies, zlc->last_full_zap + HZ)) {
9276b1bc
PJ
1511 bitmap_zero(zlc->fullzones, MAX_ZONES_PER_ZONELIST);
1512 zlc->last_full_zap = jiffies;
1513 }
1514
1515 allowednodes = !in_interrupt() && (alloc_flags & ALLOC_CPUSET) ?
1516 &cpuset_current_mems_allowed :
37b07e41 1517 &node_states[N_HIGH_MEMORY];
9276b1bc
PJ
1518 return allowednodes;
1519}
1520
1521/*
1522 * Given 'z' scanning a zonelist, run a couple of quick checks to see
1523 * if it is worth looking at further for free memory:
1524 * 1) Check that the zone isn't thought to be full (doesn't have its
1525 * bit set in the zonelist_cache fullzones BITMAP).
1526 * 2) Check that the zones node (obtained from the zonelist_cache
1527 * z_to_n[] mapping) is allowed in the passed in allowednodes mask.
1528 * Return true (non-zero) if zone is worth looking at further, or
1529 * else return false (zero) if it is not.
1530 *
1531 * This check -ignores- the distinction between various watermarks,
1532 * such as GFP_HIGH, GFP_ATOMIC, PF_MEMALLOC, ... If a zone is
1533 * found to be full for any variation of these watermarks, it will
1534 * be considered full for up to one second by all requests, unless
1535 * we are so low on memory on all allowed nodes that we are forced
1536 * into the second scan of the zonelist.
1537 *
1538 * In the second scan we ignore this zonelist cache and exactly
1539 * apply the watermarks to all zones, even it is slower to do so.
1540 * We are low on memory in the second scan, and should leave no stone
1541 * unturned looking for a free page.
1542 */
dd1a239f 1543static int zlc_zone_worth_trying(struct zonelist *zonelist, struct zoneref *z,
9276b1bc
PJ
1544 nodemask_t *allowednodes)
1545{
1546 struct zonelist_cache *zlc; /* cached zonelist speedup info */
1547 int i; /* index of *z in zonelist zones */
1548 int n; /* node that zone *z is on */
1549
1550 zlc = zonelist->zlcache_ptr;
1551 if (!zlc)
1552 return 1;
1553
dd1a239f 1554 i = z - zonelist->_zonerefs;
9276b1bc
PJ
1555 n = zlc->z_to_n[i];
1556
1557 /* This zone is worth trying if it is allowed but not full */
1558 return node_isset(n, *allowednodes) && !test_bit(i, zlc->fullzones);
1559}
1560
1561/*
1562 * Given 'z' scanning a zonelist, set the corresponding bit in
1563 * zlc->fullzones, so that subsequent attempts to allocate a page
1564 * from that zone don't waste time re-examining it.
1565 */
dd1a239f 1566static void zlc_mark_zone_full(struct zonelist *zonelist, struct zoneref *z)
9276b1bc
PJ
1567{
1568 struct zonelist_cache *zlc; /* cached zonelist speedup info */
1569 int i; /* index of *z in zonelist zones */
1570
1571 zlc = zonelist->zlcache_ptr;
1572 if (!zlc)
1573 return;
1574
dd1a239f 1575 i = z - zonelist->_zonerefs;
9276b1bc
PJ
1576
1577 set_bit(i, zlc->fullzones);
1578}
1579
76d3fbf8
MG
1580/*
1581 * clear all zones full, called after direct reclaim makes progress so that
1582 * a zone that was recently full is not skipped over for up to a second
1583 */
1584static void zlc_clear_zones_full(struct zonelist *zonelist)
1585{
1586 struct zonelist_cache *zlc; /* cached zonelist speedup info */
1587
1588 zlc = zonelist->zlcache_ptr;
1589 if (!zlc)
1590 return;
1591
1592 bitmap_zero(zlc->fullzones, MAX_ZONES_PER_ZONELIST);
1593}
1594
9276b1bc
PJ
1595#else /* CONFIG_NUMA */
1596
1597static nodemask_t *zlc_setup(struct zonelist *zonelist, int alloc_flags)
1598{
1599 return NULL;
1600}
1601
dd1a239f 1602static int zlc_zone_worth_trying(struct zonelist *zonelist, struct zoneref *z,
9276b1bc
PJ
1603 nodemask_t *allowednodes)
1604{
1605 return 1;
1606}
1607
dd1a239f 1608static void zlc_mark_zone_full(struct zonelist *zonelist, struct zoneref *z)
9276b1bc
PJ
1609{
1610}
76d3fbf8
MG
1611
1612static void zlc_clear_zones_full(struct zonelist *zonelist)
1613{
1614}
9276b1bc
PJ
1615#endif /* CONFIG_NUMA */
1616
7fb1d9fc 1617/*
0798e519 1618 * get_page_from_freelist goes through the zonelist trying to allocate
7fb1d9fc
RS
1619 * a page.
1620 */
1621static struct page *
19770b32 1622get_page_from_freelist(gfp_t gfp_mask, nodemask_t *nodemask, unsigned int order,
5117f45d 1623 struct zonelist *zonelist, int high_zoneidx, int alloc_flags,
3dd28266 1624 struct zone *preferred_zone, int migratetype)
753ee728 1625{
dd1a239f 1626 struct zoneref *z;
7fb1d9fc 1627 struct page *page = NULL;
54a6eb5c 1628 int classzone_idx;
5117f45d 1629 struct zone *zone;
9276b1bc
PJ
1630 nodemask_t *allowednodes = NULL;/* zonelist_cache approximation */
1631 int zlc_active = 0; /* set if using zonelist_cache */
1632 int did_zlc_setup = 0; /* just call zlc_setup() one time */
54a6eb5c 1633
19770b32 1634 classzone_idx = zone_idx(preferred_zone);
9276b1bc 1635zonelist_scan:
7fb1d9fc 1636 /*
9276b1bc 1637 * Scan zonelist, looking for a zone with enough free.
7fb1d9fc
RS
1638 * See also cpuset_zone_allowed() comment in kernel/cpuset.c.
1639 */
19770b32
MG
1640 for_each_zone_zonelist_nodemask(zone, z, zonelist,
1641 high_zoneidx, nodemask) {
9276b1bc
PJ
1642 if (NUMA_BUILD && zlc_active &&
1643 !zlc_zone_worth_trying(zonelist, z, allowednodes))
1644 continue;
7fb1d9fc 1645 if ((alloc_flags & ALLOC_CPUSET) &&
02a0e53d 1646 !cpuset_zone_allowed_softwall(zone, gfp_mask))
cd38b115 1647 continue;
7fb1d9fc 1648
41858966 1649 BUILD_BUG_ON(ALLOC_NO_WATERMARKS < NR_WMARK);
7fb1d9fc 1650 if (!(alloc_flags & ALLOC_NO_WATERMARKS)) {
3148890b 1651 unsigned long mark;
fa5e084e
MG
1652 int ret;
1653
41858966 1654 mark = zone->watermark[alloc_flags & ALLOC_WMARK_MASK];
fa5e084e
MG
1655 if (zone_watermark_ok(zone, order, mark,
1656 classzone_idx, alloc_flags))
1657 goto try_this_zone;
1658
cd38b115
MG
1659 if (NUMA_BUILD && !did_zlc_setup && nr_online_nodes > 1) {
1660 /*
1661 * we do zlc_setup if there are multiple nodes
1662 * and before considering the first zone allowed
1663 * by the cpuset.
1664 */
1665 allowednodes = zlc_setup(zonelist, alloc_flags);
1666 zlc_active = 1;
1667 did_zlc_setup = 1;
1668 }
1669
fa5e084e
MG
1670 if (zone_reclaim_mode == 0)
1671 goto this_zone_full;
1672
cd38b115
MG
1673 /*
1674 * As we may have just activated ZLC, check if the first
1675 * eligible zone has failed zone_reclaim recently.
1676 */
1677 if (NUMA_BUILD && zlc_active &&
1678 !zlc_zone_worth_trying(zonelist, z, allowednodes))
1679 continue;
1680
fa5e084e
MG
1681 ret = zone_reclaim(zone, gfp_mask, order);
1682 switch (ret) {
1683 case ZONE_RECLAIM_NOSCAN:
1684 /* did not scan */
cd38b115 1685 continue;
fa5e084e
MG
1686 case ZONE_RECLAIM_FULL:
1687 /* scanned but unreclaimable */
cd38b115 1688 continue;
fa5e084e
MG
1689 default:
1690 /* did we reclaim enough */
1691 if (!zone_watermark_ok(zone, order, mark,
1692 classzone_idx, alloc_flags))
9276b1bc 1693 goto this_zone_full;
0798e519 1694 }
7fb1d9fc
RS
1695 }
1696
fa5e084e 1697try_this_zone:
3dd28266
MG
1698 page = buffered_rmqueue(preferred_zone, zone, order,
1699 gfp_mask, migratetype);
0798e519 1700 if (page)
7fb1d9fc 1701 break;
9276b1bc
PJ
1702this_zone_full:
1703 if (NUMA_BUILD)
1704 zlc_mark_zone_full(zonelist, z);
54a6eb5c 1705 }
9276b1bc
PJ
1706
1707 if (unlikely(NUMA_BUILD && page == NULL && zlc_active)) {
1708 /* Disable zlc cache for second zonelist scan */
1709 zlc_active = 0;
1710 goto zonelist_scan;
1711 }
7fb1d9fc 1712 return page;
753ee728
MH
1713}
1714
29423e77
DR
1715/*
1716 * Large machines with many possible nodes should not always dump per-node
1717 * meminfo in irq context.
1718 */
1719static inline bool should_suppress_show_mem(void)
1720{
1721 bool ret = false;
1722
1723#if NODES_SHIFT > 8
1724 ret = in_interrupt();
1725#endif
1726 return ret;
1727}
1728
a238ab5b
DH
1729static DEFINE_RATELIMIT_STATE(nopage_rs,
1730 DEFAULT_RATELIMIT_INTERVAL,
1731 DEFAULT_RATELIMIT_BURST);
1732
1733void warn_alloc_failed(gfp_t gfp_mask, int order, const char *fmt, ...)
1734{
a238ab5b
DH
1735 unsigned int filter = SHOW_MEM_FILTER_NODES;
1736
1737 if ((gfp_mask & __GFP_NOWARN) || !__ratelimit(&nopage_rs))
1738 return;
1739
1740 /*
1741 * This documents exceptions given to allocations in certain
1742 * contexts that are allowed to allocate outside current's set
1743 * of allowed nodes.
1744 */
1745 if (!(gfp_mask & __GFP_NOMEMALLOC))
1746 if (test_thread_flag(TIF_MEMDIE) ||
1747 (current->flags & (PF_MEMALLOC | PF_EXITING)))
1748 filter &= ~SHOW_MEM_FILTER_NODES;
1749 if (in_interrupt() || !(gfp_mask & __GFP_WAIT))
1750 filter &= ~SHOW_MEM_FILTER_NODES;
1751
1752 if (fmt) {
3ee9a4f0
JP
1753 struct va_format vaf;
1754 va_list args;
1755
a238ab5b 1756 va_start(args, fmt);
3ee9a4f0
JP
1757
1758 vaf.fmt = fmt;
1759 vaf.va = &args;
1760
1761 pr_warn("%pV", &vaf);
1762
a238ab5b
DH
1763 va_end(args);
1764 }
1765
3ee9a4f0
JP
1766 pr_warn("%s: page allocation failure: order:%d, mode:0x%x\n",
1767 current->comm, order, gfp_mask);
a238ab5b
DH
1768
1769 dump_stack();
1770 if (!should_suppress_show_mem())
1771 show_mem(filter);
1772}
1773
11e33f6a
MG
1774static inline int
1775should_alloc_retry(gfp_t gfp_mask, unsigned int order,
1776 unsigned long pages_reclaimed)
1da177e4 1777{
11e33f6a
MG
1778 /* Do not loop if specifically requested */
1779 if (gfp_mask & __GFP_NORETRY)
1780 return 0;
1da177e4 1781
11e33f6a
MG
1782 /*
1783 * In this implementation, order <= PAGE_ALLOC_COSTLY_ORDER
1784 * means __GFP_NOFAIL, but that may not be true in other
1785 * implementations.
1786 */
1787 if (order <= PAGE_ALLOC_COSTLY_ORDER)
1788 return 1;
1789
1790 /*
1791 * For order > PAGE_ALLOC_COSTLY_ORDER, if __GFP_REPEAT is
1792 * specified, then we retry until we no longer reclaim any pages
1793 * (above), or we've reclaimed an order of pages at least as
1794 * large as the allocation's order. In both cases, if the
1795 * allocation still fails, we stop retrying.
1796 */
1797 if (gfp_mask & __GFP_REPEAT && pages_reclaimed < (1 << order))
1798 return 1;
cf40bd16 1799
11e33f6a
MG
1800 /*
1801 * Don't let big-order allocations loop unless the caller
1802 * explicitly requests that.
1803 */
1804 if (gfp_mask & __GFP_NOFAIL)
1805 return 1;
1da177e4 1806
11e33f6a
MG
1807 return 0;
1808}
933e312e 1809
11e33f6a
MG
1810static inline struct page *
1811__alloc_pages_may_oom(gfp_t gfp_mask, unsigned int order,
1812 struct zonelist *zonelist, enum zone_type high_zoneidx,
3dd28266
MG
1813 nodemask_t *nodemask, struct zone *preferred_zone,
1814 int migratetype)
11e33f6a
MG
1815{
1816 struct page *page;
1817
1818 /* Acquire the OOM killer lock for the zones in zonelist */
ff321fea 1819 if (!try_set_zonelist_oom(zonelist, gfp_mask)) {
11e33f6a 1820 schedule_timeout_uninterruptible(1);
1da177e4
LT
1821 return NULL;
1822 }
6b1de916 1823
11e33f6a
MG
1824 /*
1825 * Go through the zonelist yet one more time, keep very high watermark
1826 * here, this is only to catch a parallel oom killing, we must fail if
1827 * we're still under heavy pressure.
1828 */
1829 page = get_page_from_freelist(gfp_mask|__GFP_HARDWALL, nodemask,
1830 order, zonelist, high_zoneidx,
5117f45d 1831 ALLOC_WMARK_HIGH|ALLOC_CPUSET,
3dd28266 1832 preferred_zone, migratetype);
7fb1d9fc 1833 if (page)
11e33f6a
MG
1834 goto out;
1835
4365a567
KH
1836 if (!(gfp_mask & __GFP_NOFAIL)) {
1837 /* The OOM killer will not help higher order allocs */
1838 if (order > PAGE_ALLOC_COSTLY_ORDER)
1839 goto out;
03668b3c
DR
1840 /* The OOM killer does not needlessly kill tasks for lowmem */
1841 if (high_zoneidx < ZONE_NORMAL)
1842 goto out;
4365a567
KH
1843 /*
1844 * GFP_THISNODE contains __GFP_NORETRY and we never hit this.
1845 * Sanity check for bare calls of __GFP_THISNODE, not real OOM.
1846 * The caller should handle page allocation failure by itself if
1847 * it specifies __GFP_THISNODE.
1848 * Note: Hugepage uses it but will hit PAGE_ALLOC_COSTLY_ORDER.
1849 */
1850 if (gfp_mask & __GFP_THISNODE)
1851 goto out;
1852 }
11e33f6a 1853 /* Exhausted what can be done so it's blamo time */
4365a567 1854 out_of_memory(zonelist, gfp_mask, order, nodemask);
11e33f6a
MG
1855
1856out:
1857 clear_zonelist_oom(zonelist, gfp_mask);
1858 return page;
1859}
1860
56de7263
MG
1861#ifdef CONFIG_COMPACTION
1862/* Try memory compaction for high-order allocations before reclaim */
1863static struct page *
1864__alloc_pages_direct_compact(gfp_t gfp_mask, unsigned int order,
1865 struct zonelist *zonelist, enum zone_type high_zoneidx,
1866 nodemask_t *nodemask, int alloc_flags, struct zone *preferred_zone,
77f1fe6b
MG
1867 int migratetype, unsigned long *did_some_progress,
1868 bool sync_migration)
56de7263
MG
1869{
1870 struct page *page;
1871
4f92e258 1872 if (!order || compaction_deferred(preferred_zone))
56de7263
MG
1873 return NULL;
1874
c06b1fca 1875 current->flags |= PF_MEMALLOC;
56de7263 1876 *did_some_progress = try_to_compact_pages(zonelist, order, gfp_mask,
77f1fe6b 1877 nodemask, sync_migration);
c06b1fca 1878 current->flags &= ~PF_MEMALLOC;
56de7263
MG
1879 if (*did_some_progress != COMPACT_SKIPPED) {
1880
1881 /* Page migration frees to the PCP lists but we want merging */
1882 drain_pages(get_cpu());
1883 put_cpu();
1884
1885 page = get_page_from_freelist(gfp_mask, nodemask,
1886 order, zonelist, high_zoneidx,
1887 alloc_flags, preferred_zone,
1888 migratetype);
1889 if (page) {
4f92e258
MG
1890 preferred_zone->compact_considered = 0;
1891 preferred_zone->compact_defer_shift = 0;
56de7263
MG
1892 count_vm_event(COMPACTSUCCESS);
1893 return page;
1894 }
1895
1896 /*
1897 * It's bad if compaction run occurs and fails.
1898 * The most likely reason is that pages exist,
1899 * but not enough to satisfy watermarks.
1900 */
1901 count_vm_event(COMPACTFAIL);
4f92e258 1902 defer_compaction(preferred_zone);
56de7263
MG
1903
1904 cond_resched();
1905 }
1906
1907 return NULL;
1908}
1909#else
1910static inline struct page *
1911__alloc_pages_direct_compact(gfp_t gfp_mask, unsigned int order,
1912 struct zonelist *zonelist, enum zone_type high_zoneidx,
1913 nodemask_t *nodemask, int alloc_flags, struct zone *preferred_zone,
77f1fe6b
MG
1914 int migratetype, unsigned long *did_some_progress,
1915 bool sync_migration)
56de7263
MG
1916{
1917 return NULL;
1918}
1919#endif /* CONFIG_COMPACTION */
1920
11e33f6a
MG
1921/* The really slow allocator path where we enter direct reclaim */
1922static inline struct page *
1923__alloc_pages_direct_reclaim(gfp_t gfp_mask, unsigned int order,
1924 struct zonelist *zonelist, enum zone_type high_zoneidx,
5117f45d 1925 nodemask_t *nodemask, int alloc_flags, struct zone *preferred_zone,
3dd28266 1926 int migratetype, unsigned long *did_some_progress)
11e33f6a
MG
1927{
1928 struct page *page = NULL;
1929 struct reclaim_state reclaim_state;
9ee493ce 1930 bool drained = false;
11e33f6a
MG
1931
1932 cond_resched();
1933
1934 /* We now go into synchronous reclaim */
1935 cpuset_memory_pressure_bump();
c06b1fca 1936 current->flags |= PF_MEMALLOC;
11e33f6a
MG
1937 lockdep_set_current_reclaim_state(gfp_mask);
1938 reclaim_state.reclaimed_slab = 0;
c06b1fca 1939 current->reclaim_state = &reclaim_state;
11e33f6a
MG
1940
1941 *did_some_progress = try_to_free_pages(zonelist, order, gfp_mask, nodemask);
1942
c06b1fca 1943 current->reclaim_state = NULL;
11e33f6a 1944 lockdep_clear_current_reclaim_state();
c06b1fca 1945 current->flags &= ~PF_MEMALLOC;
11e33f6a
MG
1946
1947 cond_resched();
1948
9ee493ce
MG
1949 if (unlikely(!(*did_some_progress)))
1950 return NULL;
11e33f6a 1951
76d3fbf8
MG
1952 /* After successful reclaim, reconsider all zones for allocation */
1953 if (NUMA_BUILD)
1954 zlc_clear_zones_full(zonelist);
1955
9ee493ce
MG
1956retry:
1957 page = get_page_from_freelist(gfp_mask, nodemask, order,
5117f45d 1958 zonelist, high_zoneidx,
3dd28266
MG
1959 alloc_flags, preferred_zone,
1960 migratetype);
9ee493ce
MG
1961
1962 /*
1963 * If an allocation failed after direct reclaim, it could be because
1964 * pages are pinned on the per-cpu lists. Drain them and try again
1965 */
1966 if (!page && !drained) {
1967 drain_all_pages();
1968 drained = true;
1969 goto retry;
1970 }
1971
11e33f6a
MG
1972 return page;
1973}
1974
1da177e4 1975/*
11e33f6a
MG
1976 * This is called in the allocator slow-path if the allocation request is of
1977 * sufficient urgency to ignore watermarks and take other desperate measures
1da177e4 1978 */
11e33f6a
MG
1979static inline struct page *
1980__alloc_pages_high_priority(gfp_t gfp_mask, unsigned int order,
1981 struct zonelist *zonelist, enum zone_type high_zoneidx,
3dd28266
MG
1982 nodemask_t *nodemask, struct zone *preferred_zone,
1983 int migratetype)
11e33f6a
MG
1984{
1985 struct page *page;
1986
1987 do {
1988 page = get_page_from_freelist(gfp_mask, nodemask, order,
5117f45d 1989 zonelist, high_zoneidx, ALLOC_NO_WATERMARKS,
3dd28266 1990 preferred_zone, migratetype);
11e33f6a
MG
1991
1992 if (!page && gfp_mask & __GFP_NOFAIL)
0e093d99 1993 wait_iff_congested(preferred_zone, BLK_RW_ASYNC, HZ/50);
11e33f6a
MG
1994 } while (!page && (gfp_mask & __GFP_NOFAIL));
1995
1996 return page;
1997}
1998
1999static inline
2000void wake_all_kswapd(unsigned int order, struct zonelist *zonelist,
99504748
MG
2001 enum zone_type high_zoneidx,
2002 enum zone_type classzone_idx)
1da177e4 2003{
dd1a239f
MG
2004 struct zoneref *z;
2005 struct zone *zone;
1da177e4 2006
11e33f6a 2007 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx)
99504748 2008 wakeup_kswapd(zone, order, classzone_idx);
11e33f6a 2009}
cf40bd16 2010
341ce06f
PZ
2011static inline int
2012gfp_to_alloc_flags(gfp_t gfp_mask)
2013{
341ce06f
PZ
2014 int alloc_flags = ALLOC_WMARK_MIN | ALLOC_CPUSET;
2015 const gfp_t wait = gfp_mask & __GFP_WAIT;
1da177e4 2016
a56f57ff 2017 /* __GFP_HIGH is assumed to be the same as ALLOC_HIGH to save a branch. */
e6223a3b 2018 BUILD_BUG_ON(__GFP_HIGH != (__force gfp_t) ALLOC_HIGH);
933e312e 2019
341ce06f
PZ
2020 /*
2021 * The caller may dip into page reserves a bit more if the caller
2022 * cannot run direct reclaim, or if the caller has realtime scheduling
2023 * policy or is asking for __GFP_HIGH memory. GFP_ATOMIC requests will
2024 * set both ALLOC_HARDER (!wait) and ALLOC_HIGH (__GFP_HIGH).
2025 */
e6223a3b 2026 alloc_flags |= (__force int) (gfp_mask & __GFP_HIGH);
1da177e4 2027
341ce06f 2028 if (!wait) {
5c3240d9
AA
2029 /*
2030 * Not worth trying to allocate harder for
2031 * __GFP_NOMEMALLOC even if it can't schedule.
2032 */
2033 if (!(gfp_mask & __GFP_NOMEMALLOC))
2034 alloc_flags |= ALLOC_HARDER;
523b9458 2035 /*
341ce06f
PZ
2036 * Ignore cpuset if GFP_ATOMIC (!wait) rather than fail alloc.
2037 * See also cpuset_zone_allowed() comment in kernel/cpuset.c.
523b9458 2038 */
341ce06f 2039 alloc_flags &= ~ALLOC_CPUSET;
c06b1fca 2040 } else if (unlikely(rt_task(current)) && !in_interrupt())
341ce06f
PZ
2041 alloc_flags |= ALLOC_HARDER;
2042
2043 if (likely(!(gfp_mask & __GFP_NOMEMALLOC))) {
2044 if (!in_interrupt() &&
c06b1fca 2045 ((current->flags & PF_MEMALLOC) ||
341ce06f
PZ
2046 unlikely(test_thread_flag(TIF_MEMDIE))))
2047 alloc_flags |= ALLOC_NO_WATERMARKS;
1da177e4 2048 }
6b1de916 2049
341ce06f
PZ
2050 return alloc_flags;
2051}
2052
11e33f6a
MG
2053static inline struct page *
2054__alloc_pages_slowpath(gfp_t gfp_mask, unsigned int order,
2055 struct zonelist *zonelist, enum zone_type high_zoneidx,
3dd28266
MG
2056 nodemask_t *nodemask, struct zone *preferred_zone,
2057 int migratetype)
11e33f6a
MG
2058{
2059 const gfp_t wait = gfp_mask & __GFP_WAIT;
2060 struct page *page = NULL;
2061 int alloc_flags;
2062 unsigned long pages_reclaimed = 0;
2063 unsigned long did_some_progress;
77f1fe6b 2064 bool sync_migration = false;
1da177e4 2065
72807a74
MG
2066 /*
2067 * In the slowpath, we sanity check order to avoid ever trying to
2068 * reclaim >= MAX_ORDER areas which will never succeed. Callers may
2069 * be using allocators in order of preference for an area that is
2070 * too large.
2071 */
1fc28b70
MG
2072 if (order >= MAX_ORDER) {
2073 WARN_ON_ONCE(!(gfp_mask & __GFP_NOWARN));
72807a74 2074 return NULL;
1fc28b70 2075 }
1da177e4 2076
952f3b51
CL
2077 /*
2078 * GFP_THISNODE (meaning __GFP_THISNODE, __GFP_NORETRY and
2079 * __GFP_NOWARN set) should not cause reclaim since the subsystem
2080 * (f.e. slab) using GFP_THISNODE may choose to trigger reclaim
2081 * using a larger set of nodes after it has established that the
2082 * allowed per node queues are empty and that nodes are
2083 * over allocated.
2084 */
2085 if (NUMA_BUILD && (gfp_mask & GFP_THISNODE) == GFP_THISNODE)
2086 goto nopage;
2087
cc4a6851 2088restart:
32dba98e
AA
2089 if (!(gfp_mask & __GFP_NO_KSWAPD))
2090 wake_all_kswapd(order, zonelist, high_zoneidx,
99504748 2091 zone_idx(preferred_zone));
1da177e4 2092
9bf2229f 2093 /*
7fb1d9fc
RS
2094 * OK, we're below the kswapd watermark and have kicked background
2095 * reclaim. Now things get more complex, so set up alloc_flags according
2096 * to how we want to proceed.
9bf2229f 2097 */
341ce06f 2098 alloc_flags = gfp_to_alloc_flags(gfp_mask);
1da177e4 2099
f33261d7
DR
2100 /*
2101 * Find the true preferred zone if the allocation is unconstrained by
2102 * cpusets.
2103 */
2104 if (!(alloc_flags & ALLOC_CPUSET) && !nodemask)
2105 first_zones_zonelist(zonelist, high_zoneidx, NULL,
2106 &preferred_zone);
2107
cfa54a0f 2108rebalance:
341ce06f 2109 /* This is the last chance, in general, before the goto nopage. */
19770b32 2110 page = get_page_from_freelist(gfp_mask, nodemask, order, zonelist,
341ce06f
PZ
2111 high_zoneidx, alloc_flags & ~ALLOC_NO_WATERMARKS,
2112 preferred_zone, migratetype);
7fb1d9fc
RS
2113 if (page)
2114 goto got_pg;
1da177e4 2115
11e33f6a 2116 /* Allocate without watermarks if the context allows */
341ce06f
PZ
2117 if (alloc_flags & ALLOC_NO_WATERMARKS) {
2118 page = __alloc_pages_high_priority(gfp_mask, order,
2119 zonelist, high_zoneidx, nodemask,
2120 preferred_zone, migratetype);
2121 if (page)
2122 goto got_pg;
1da177e4
LT
2123 }
2124
2125 /* Atomic allocations - we can't balance anything */
2126 if (!wait)
2127 goto nopage;
2128
341ce06f 2129 /* Avoid recursion of direct reclaim */
c06b1fca 2130 if (current->flags & PF_MEMALLOC)
341ce06f
PZ
2131 goto nopage;
2132
6583bb64
DR
2133 /* Avoid allocations with no watermarks from looping endlessly */
2134 if (test_thread_flag(TIF_MEMDIE) && !(gfp_mask & __GFP_NOFAIL))
2135 goto nopage;
2136
77f1fe6b
MG
2137 /*
2138 * Try direct compaction. The first pass is asynchronous. Subsequent
2139 * attempts after direct reclaim are synchronous
2140 */
56de7263
MG
2141 page = __alloc_pages_direct_compact(gfp_mask, order,
2142 zonelist, high_zoneidx,
2143 nodemask,
2144 alloc_flags, preferred_zone,
77f1fe6b
MG
2145 migratetype, &did_some_progress,
2146 sync_migration);
56de7263
MG
2147 if (page)
2148 goto got_pg;
c6a140bf 2149 sync_migration = true;
56de7263 2150
11e33f6a
MG
2151 /* Try direct reclaim and then allocating */
2152 page = __alloc_pages_direct_reclaim(gfp_mask, order,
2153 zonelist, high_zoneidx,
2154 nodemask,
5117f45d 2155 alloc_flags, preferred_zone,
3dd28266 2156 migratetype, &did_some_progress);
11e33f6a
MG
2157 if (page)
2158 goto got_pg;
1da177e4 2159
e33c3b5e 2160 /*
11e33f6a
MG
2161 * If we failed to make any progress reclaiming, then we are
2162 * running out of options and have to consider going OOM
e33c3b5e 2163 */
11e33f6a
MG
2164 if (!did_some_progress) {
2165 if ((gfp_mask & __GFP_FS) && !(gfp_mask & __GFP_NORETRY)) {
7f33d49a
RW
2166 if (oom_killer_disabled)
2167 goto nopage;
11e33f6a
MG
2168 page = __alloc_pages_may_oom(gfp_mask, order,
2169 zonelist, high_zoneidx,
3dd28266
MG
2170 nodemask, preferred_zone,
2171 migratetype);
11e33f6a
MG
2172 if (page)
2173 goto got_pg;
1da177e4 2174
03668b3c
DR
2175 if (!(gfp_mask & __GFP_NOFAIL)) {
2176 /*
2177 * The oom killer is not called for high-order
2178 * allocations that may fail, so if no progress
2179 * is being made, there are no other options and
2180 * retrying is unlikely to help.
2181 */
2182 if (order > PAGE_ALLOC_COSTLY_ORDER)
2183 goto nopage;
2184 /*
2185 * The oom killer is not called for lowmem
2186 * allocations to prevent needlessly killing
2187 * innocent tasks.
2188 */
2189 if (high_zoneidx < ZONE_NORMAL)
2190 goto nopage;
2191 }
e2c55dc8 2192
ff0ceb9d
DR
2193 goto restart;
2194 }
1da177e4
LT
2195 }
2196
11e33f6a 2197 /* Check if we should retry the allocation */
a41f24ea 2198 pages_reclaimed += did_some_progress;
11e33f6a
MG
2199 if (should_alloc_retry(gfp_mask, order, pages_reclaimed)) {
2200 /* Wait for some write requests to complete then retry */
0e093d99 2201 wait_iff_congested(preferred_zone, BLK_RW_ASYNC, HZ/50);
1da177e4 2202 goto rebalance;
3e7d3449
MG
2203 } else {
2204 /*
2205 * High-order allocations do not necessarily loop after
2206 * direct reclaim and reclaim/compaction depends on compaction
2207 * being called after reclaim so call directly if necessary
2208 */
2209 page = __alloc_pages_direct_compact(gfp_mask, order,
2210 zonelist, high_zoneidx,
2211 nodemask,
2212 alloc_flags, preferred_zone,
77f1fe6b
MG
2213 migratetype, &did_some_progress,
2214 sync_migration);
3e7d3449
MG
2215 if (page)
2216 goto got_pg;
1da177e4
LT
2217 }
2218
2219nopage:
a238ab5b 2220 warn_alloc_failed(gfp_mask, order, NULL);
b1eeab67 2221 return page;
1da177e4 2222got_pg:
b1eeab67
VN
2223 if (kmemcheck_enabled)
2224 kmemcheck_pagealloc_alloc(page, order, gfp_mask);
1da177e4 2225 return page;
11e33f6a 2226
1da177e4 2227}
11e33f6a
MG
2228
2229/*
2230 * This is the 'heart' of the zoned buddy allocator.
2231 */
2232struct page *
2233__alloc_pages_nodemask(gfp_t gfp_mask, unsigned int order,
2234 struct zonelist *zonelist, nodemask_t *nodemask)
2235{
2236 enum zone_type high_zoneidx = gfp_zone(gfp_mask);
5117f45d 2237 struct zone *preferred_zone;
11e33f6a 2238 struct page *page;
3dd28266 2239 int migratetype = allocflags_to_migratetype(gfp_mask);
11e33f6a 2240
dcce284a
BH
2241 gfp_mask &= gfp_allowed_mask;
2242
11e33f6a
MG
2243 lockdep_trace_alloc(gfp_mask);
2244
2245 might_sleep_if(gfp_mask & __GFP_WAIT);
2246
2247 if (should_fail_alloc_page(gfp_mask, order))
2248 return NULL;
2249
2250 /*
2251 * Check the zones suitable for the gfp_mask contain at least one
2252 * valid zone. It's possible to have an empty zonelist as a result
2253 * of GFP_THISNODE and a memoryless node
2254 */
2255 if (unlikely(!zonelist->_zonerefs->zone))
2256 return NULL;
2257
c0ff7453 2258 get_mems_allowed();
5117f45d 2259 /* The preferred zone is used for statistics later */
f33261d7
DR
2260 first_zones_zonelist(zonelist, high_zoneidx,
2261 nodemask ? : &cpuset_current_mems_allowed,
2262 &preferred_zone);
c0ff7453
MX
2263 if (!preferred_zone) {
2264 put_mems_allowed();
5117f45d 2265 return NULL;
c0ff7453 2266 }
5117f45d
MG
2267
2268 /* First allocation attempt */
11e33f6a 2269 page = get_page_from_freelist(gfp_mask|__GFP_HARDWALL, nodemask, order,
5117f45d 2270 zonelist, high_zoneidx, ALLOC_WMARK_LOW|ALLOC_CPUSET,
3dd28266 2271 preferred_zone, migratetype);
11e33f6a
MG
2272 if (unlikely(!page))
2273 page = __alloc_pages_slowpath(gfp_mask, order,
5117f45d 2274 zonelist, high_zoneidx, nodemask,
3dd28266 2275 preferred_zone, migratetype);
c0ff7453 2276 put_mems_allowed();
11e33f6a 2277
4b4f278c 2278 trace_mm_page_alloc(page, order, gfp_mask, migratetype);
11e33f6a 2279 return page;
1da177e4 2280}
d239171e 2281EXPORT_SYMBOL(__alloc_pages_nodemask);
1da177e4
LT
2282
2283/*
2284 * Common helper functions.
2285 */
920c7a5d 2286unsigned long __get_free_pages(gfp_t gfp_mask, unsigned int order)
1da177e4 2287{
945a1113
AM
2288 struct page *page;
2289
2290 /*
2291 * __get_free_pages() returns a 32-bit address, which cannot represent
2292 * a highmem page
2293 */
2294 VM_BUG_ON((gfp_mask & __GFP_HIGHMEM) != 0);
2295
1da177e4
LT
2296 page = alloc_pages(gfp_mask, order);
2297 if (!page)
2298 return 0;
2299 return (unsigned long) page_address(page);
2300}
1da177e4
LT
2301EXPORT_SYMBOL(__get_free_pages);
2302
920c7a5d 2303unsigned long get_zeroed_page(gfp_t gfp_mask)
1da177e4 2304{
945a1113 2305 return __get_free_pages(gfp_mask | __GFP_ZERO, 0);
1da177e4 2306}
1da177e4
LT
2307EXPORT_SYMBOL(get_zeroed_page);
2308
2309void __pagevec_free(struct pagevec *pvec)
2310{
2311 int i = pagevec_count(pvec);
2312
4b4f278c
MG
2313 while (--i >= 0) {
2314 trace_mm_pagevec_free(pvec->pages[i], pvec->cold);
1da177e4 2315 free_hot_cold_page(pvec->pages[i], pvec->cold);
4b4f278c 2316 }
1da177e4
LT
2317}
2318
920c7a5d 2319void __free_pages(struct page *page, unsigned int order)
1da177e4 2320{
b5810039 2321 if (put_page_testzero(page)) {
1da177e4 2322 if (order == 0)
fc91668e 2323 free_hot_cold_page(page, 0);
1da177e4
LT
2324 else
2325 __free_pages_ok(page, order);
2326 }
2327}
2328
2329EXPORT_SYMBOL(__free_pages);
2330
920c7a5d 2331void free_pages(unsigned long addr, unsigned int order)
1da177e4
LT
2332{
2333 if (addr != 0) {
725d704e 2334 VM_BUG_ON(!virt_addr_valid((void *)addr));
1da177e4
LT
2335 __free_pages(virt_to_page((void *)addr), order);
2336 }
2337}
2338
2339EXPORT_SYMBOL(free_pages);
2340
ee85c2e1
AK
2341static void *make_alloc_exact(unsigned long addr, unsigned order, size_t size)
2342{
2343 if (addr) {
2344 unsigned long alloc_end = addr + (PAGE_SIZE << order);
2345 unsigned long used = addr + PAGE_ALIGN(size);
2346
2347 split_page(virt_to_page((void *)addr), order);
2348 while (used < alloc_end) {
2349 free_page(used);
2350 used += PAGE_SIZE;
2351 }
2352 }
2353 return (void *)addr;
2354}
2355
2be0ffe2
TT
2356/**
2357 * alloc_pages_exact - allocate an exact number physically-contiguous pages.
2358 * @size: the number of bytes to allocate
2359 * @gfp_mask: GFP flags for the allocation
2360 *
2361 * This function is similar to alloc_pages(), except that it allocates the
2362 * minimum number of pages to satisfy the request. alloc_pages() can only
2363 * allocate memory in power-of-two pages.
2364 *
2365 * This function is also limited by MAX_ORDER.
2366 *
2367 * Memory allocated by this function must be released by free_pages_exact().
2368 */
2369void *alloc_pages_exact(size_t size, gfp_t gfp_mask)
2370{
2371 unsigned int order = get_order(size);
2372 unsigned long addr;
2373
2374 addr = __get_free_pages(gfp_mask, order);
ee85c2e1 2375 return make_alloc_exact(addr, order, size);
2be0ffe2
TT
2376}
2377EXPORT_SYMBOL(alloc_pages_exact);
2378
ee85c2e1
AK
2379/**
2380 * alloc_pages_exact_nid - allocate an exact number of physically-contiguous
2381 * pages on a node.
b5e6ab58 2382 * @nid: the preferred node ID where memory should be allocated
ee85c2e1
AK
2383 * @size: the number of bytes to allocate
2384 * @gfp_mask: GFP flags for the allocation
2385 *
2386 * Like alloc_pages_exact(), but try to allocate on node nid first before falling
2387 * back.
2388 * Note this is not alloc_pages_exact_node() which allocates on a specific node,
2389 * but is not exact.
2390 */
2391void *alloc_pages_exact_nid(int nid, size_t size, gfp_t gfp_mask)
2392{
2393 unsigned order = get_order(size);
2394 struct page *p = alloc_pages_node(nid, gfp_mask, order);
2395 if (!p)
2396 return NULL;
2397 return make_alloc_exact((unsigned long)page_address(p), order, size);
2398}
2399EXPORT_SYMBOL(alloc_pages_exact_nid);
2400
2be0ffe2
TT
2401/**
2402 * free_pages_exact - release memory allocated via alloc_pages_exact()
2403 * @virt: the value returned by alloc_pages_exact.
2404 * @size: size of allocation, same value as passed to alloc_pages_exact().
2405 *
2406 * Release the memory allocated by a previous call to alloc_pages_exact.
2407 */
2408void free_pages_exact(void *virt, size_t size)
2409{
2410 unsigned long addr = (unsigned long)virt;
2411 unsigned long end = addr + PAGE_ALIGN(size);
2412
2413 while (addr < end) {
2414 free_page(addr);
2415 addr += PAGE_SIZE;
2416 }
2417}
2418EXPORT_SYMBOL(free_pages_exact);
2419
1da177e4
LT
2420static unsigned int nr_free_zone_pages(int offset)
2421{
dd1a239f 2422 struct zoneref *z;
54a6eb5c
MG
2423 struct zone *zone;
2424
e310fd43 2425 /* Just pick one node, since fallback list is circular */
1da177e4
LT
2426 unsigned int sum = 0;
2427
0e88460d 2428 struct zonelist *zonelist = node_zonelist(numa_node_id(), GFP_KERNEL);
1da177e4 2429
54a6eb5c 2430 for_each_zone_zonelist(zone, z, zonelist, offset) {
e310fd43 2431 unsigned long size = zone->present_pages;
41858966 2432 unsigned long high = high_wmark_pages(zone);
e310fd43
MB
2433 if (size > high)
2434 sum += size - high;
1da177e4
LT
2435 }
2436
2437 return sum;
2438}
2439
2440/*
2441 * Amount of free RAM allocatable within ZONE_DMA and ZONE_NORMAL
2442 */
2443unsigned int nr_free_buffer_pages(void)
2444{
af4ca457 2445 return nr_free_zone_pages(gfp_zone(GFP_USER));
1da177e4 2446}
c2f1a551 2447EXPORT_SYMBOL_GPL(nr_free_buffer_pages);
1da177e4
LT
2448
2449/*
2450 * Amount of free RAM allocatable within all zones
2451 */
2452unsigned int nr_free_pagecache_pages(void)
2453{
2a1e274a 2454 return nr_free_zone_pages(gfp_zone(GFP_HIGHUSER_MOVABLE));
1da177e4 2455}
08e0f6a9
CL
2456
2457static inline void show_node(struct zone *zone)
1da177e4 2458{
08e0f6a9 2459 if (NUMA_BUILD)
25ba77c1 2460 printk("Node %d ", zone_to_nid(zone));
1da177e4 2461}
1da177e4 2462
1da177e4
LT
2463void si_meminfo(struct sysinfo *val)
2464{
2465 val->totalram = totalram_pages;
2466 val->sharedram = 0;
d23ad423 2467 val->freeram = global_page_state(NR_FREE_PAGES);
1da177e4 2468 val->bufferram = nr_blockdev_pages();
1da177e4
LT
2469 val->totalhigh = totalhigh_pages;
2470 val->freehigh = nr_free_highpages();
1da177e4
LT
2471 val->mem_unit = PAGE_SIZE;
2472}
2473
2474EXPORT_SYMBOL(si_meminfo);
2475
2476#ifdef CONFIG_NUMA
2477void si_meminfo_node(struct sysinfo *val, int nid)
2478{
2479 pg_data_t *pgdat = NODE_DATA(nid);
2480
2481 val->totalram = pgdat->node_present_pages;
d23ad423 2482 val->freeram = node_page_state(nid, NR_FREE_PAGES);
98d2b0eb 2483#ifdef CONFIG_HIGHMEM
1da177e4 2484 val->totalhigh = pgdat->node_zones[ZONE_HIGHMEM].present_pages;
d23ad423
CL
2485 val->freehigh = zone_page_state(&pgdat->node_zones[ZONE_HIGHMEM],
2486 NR_FREE_PAGES);
98d2b0eb
CL
2487#else
2488 val->totalhigh = 0;
2489 val->freehigh = 0;
2490#endif
1da177e4
LT
2491 val->mem_unit = PAGE_SIZE;
2492}
2493#endif
2494
ddd588b5 2495/*
7bf02ea2
DR
2496 * Determine whether the node should be displayed or not, depending on whether
2497 * SHOW_MEM_FILTER_NODES was passed to show_free_areas().
ddd588b5 2498 */
7bf02ea2 2499bool skip_free_areas_node(unsigned int flags, int nid)
ddd588b5
DR
2500{
2501 bool ret = false;
2502
2503 if (!(flags & SHOW_MEM_FILTER_NODES))
2504 goto out;
2505
2506 get_mems_allowed();
7bf02ea2 2507 ret = !node_isset(nid, cpuset_current_mems_allowed);
ddd588b5
DR
2508 put_mems_allowed();
2509out:
2510 return ret;
2511}
2512
1da177e4
LT
2513#define K(x) ((x) << (PAGE_SHIFT-10))
2514
2515/*
2516 * Show free area list (used inside shift_scroll-lock stuff)
2517 * We also calculate the percentage fragmentation. We do this by counting the
2518 * memory on each free list with the exception of the first item on the list.
ddd588b5
DR
2519 * Suppresses nodes that are not allowed by current's cpuset if
2520 * SHOW_MEM_FILTER_NODES is passed.
1da177e4 2521 */
7bf02ea2 2522void show_free_areas(unsigned int filter)
1da177e4 2523{
c7241913 2524 int cpu;
1da177e4
LT
2525 struct zone *zone;
2526
ee99c71c 2527 for_each_populated_zone(zone) {
7bf02ea2 2528 if (skip_free_areas_node(filter, zone_to_nid(zone)))
ddd588b5 2529 continue;
c7241913
JS
2530 show_node(zone);
2531 printk("%s per-cpu:\n", zone->name);
1da177e4 2532
6b482c67 2533 for_each_online_cpu(cpu) {
1da177e4
LT
2534 struct per_cpu_pageset *pageset;
2535
99dcc3e5 2536 pageset = per_cpu_ptr(zone->pageset, cpu);
1da177e4 2537
3dfa5721
CL
2538 printk("CPU %4d: hi:%5d, btch:%4d usd:%4d\n",
2539 cpu, pageset->pcp.high,
2540 pageset->pcp.batch, pageset->pcp.count);
1da177e4
LT
2541 }
2542 }
2543
a731286d
KM
2544 printk("active_anon:%lu inactive_anon:%lu isolated_anon:%lu\n"
2545 " active_file:%lu inactive_file:%lu isolated_file:%lu\n"
7b854121 2546 " unevictable:%lu"
b76146ed 2547 " dirty:%lu writeback:%lu unstable:%lu\n"
3701b033 2548 " free:%lu slab_reclaimable:%lu slab_unreclaimable:%lu\n"
4b02108a 2549 " mapped:%lu shmem:%lu pagetables:%lu bounce:%lu\n",
4f98a2fe 2550 global_page_state(NR_ACTIVE_ANON),
4f98a2fe 2551 global_page_state(NR_INACTIVE_ANON),
a731286d
KM
2552 global_page_state(NR_ISOLATED_ANON),
2553 global_page_state(NR_ACTIVE_FILE),
4f98a2fe 2554 global_page_state(NR_INACTIVE_FILE),
a731286d 2555 global_page_state(NR_ISOLATED_FILE),
7b854121 2556 global_page_state(NR_UNEVICTABLE),
b1e7a8fd 2557 global_page_state(NR_FILE_DIRTY),
ce866b34 2558 global_page_state(NR_WRITEBACK),
fd39fc85 2559 global_page_state(NR_UNSTABLE_NFS),
d23ad423 2560 global_page_state(NR_FREE_PAGES),
3701b033
KM
2561 global_page_state(NR_SLAB_RECLAIMABLE),
2562 global_page_state(NR_SLAB_UNRECLAIMABLE),
65ba55f5 2563 global_page_state(NR_FILE_MAPPED),
4b02108a 2564 global_page_state(NR_SHMEM),
a25700a5
AM
2565 global_page_state(NR_PAGETABLE),
2566 global_page_state(NR_BOUNCE));
1da177e4 2567
ee99c71c 2568 for_each_populated_zone(zone) {
1da177e4
LT
2569 int i;
2570
7bf02ea2 2571 if (skip_free_areas_node(filter, zone_to_nid(zone)))
ddd588b5 2572 continue;
1da177e4
LT
2573 show_node(zone);
2574 printk("%s"
2575 " free:%lukB"
2576 " min:%lukB"
2577 " low:%lukB"
2578 " high:%lukB"
4f98a2fe
RR
2579 " active_anon:%lukB"
2580 " inactive_anon:%lukB"
2581 " active_file:%lukB"
2582 " inactive_file:%lukB"
7b854121 2583 " unevictable:%lukB"
a731286d
KM
2584 " isolated(anon):%lukB"
2585 " isolated(file):%lukB"
1da177e4 2586 " present:%lukB"
4a0aa73f
KM
2587 " mlocked:%lukB"
2588 " dirty:%lukB"
2589 " writeback:%lukB"
2590 " mapped:%lukB"
4b02108a 2591 " shmem:%lukB"
4a0aa73f
KM
2592 " slab_reclaimable:%lukB"
2593 " slab_unreclaimable:%lukB"
c6a7f572 2594 " kernel_stack:%lukB"
4a0aa73f
KM
2595 " pagetables:%lukB"
2596 " unstable:%lukB"
2597 " bounce:%lukB"
2598 " writeback_tmp:%lukB"
1da177e4
LT
2599 " pages_scanned:%lu"
2600 " all_unreclaimable? %s"
2601 "\n",
2602 zone->name,
88f5acf8 2603 K(zone_page_state(zone, NR_FREE_PAGES)),
41858966
MG
2604 K(min_wmark_pages(zone)),
2605 K(low_wmark_pages(zone)),
2606 K(high_wmark_pages(zone)),
4f98a2fe
RR
2607 K(zone_page_state(zone, NR_ACTIVE_ANON)),
2608 K(zone_page_state(zone, NR_INACTIVE_ANON)),
2609 K(zone_page_state(zone, NR_ACTIVE_FILE)),
2610 K(zone_page_state(zone, NR_INACTIVE_FILE)),
7b854121 2611 K(zone_page_state(zone, NR_UNEVICTABLE)),
a731286d
KM
2612 K(zone_page_state(zone, NR_ISOLATED_ANON)),
2613 K(zone_page_state(zone, NR_ISOLATED_FILE)),
1da177e4 2614 K(zone->present_pages),
4a0aa73f
KM
2615 K(zone_page_state(zone, NR_MLOCK)),
2616 K(zone_page_state(zone, NR_FILE_DIRTY)),
2617 K(zone_page_state(zone, NR_WRITEBACK)),
2618 K(zone_page_state(zone, NR_FILE_MAPPED)),
4b02108a 2619 K(zone_page_state(zone, NR_SHMEM)),
4a0aa73f
KM
2620 K(zone_page_state(zone, NR_SLAB_RECLAIMABLE)),
2621 K(zone_page_state(zone, NR_SLAB_UNRECLAIMABLE)),
c6a7f572
KM
2622 zone_page_state(zone, NR_KERNEL_STACK) *
2623 THREAD_SIZE / 1024,
4a0aa73f
KM
2624 K(zone_page_state(zone, NR_PAGETABLE)),
2625 K(zone_page_state(zone, NR_UNSTABLE_NFS)),
2626 K(zone_page_state(zone, NR_BOUNCE)),
2627 K(zone_page_state(zone, NR_WRITEBACK_TEMP)),
1da177e4 2628 zone->pages_scanned,
93e4a89a 2629 (zone->all_unreclaimable ? "yes" : "no")
1da177e4
LT
2630 );
2631 printk("lowmem_reserve[]:");
2632 for (i = 0; i < MAX_NR_ZONES; i++)
2633 printk(" %lu", zone->lowmem_reserve[i]);
2634 printk("\n");
2635 }
2636
ee99c71c 2637 for_each_populated_zone(zone) {
8f9de51a 2638 unsigned long nr[MAX_ORDER], flags, order, total = 0;
1da177e4 2639
7bf02ea2 2640 if (skip_free_areas_node(filter, zone_to_nid(zone)))
ddd588b5 2641 continue;
1da177e4
LT
2642 show_node(zone);
2643 printk("%s: ", zone->name);
1da177e4
LT
2644
2645 spin_lock_irqsave(&zone->lock, flags);
2646 for (order = 0; order < MAX_ORDER; order++) {
8f9de51a
KK
2647 nr[order] = zone->free_area[order].nr_free;
2648 total += nr[order] << order;
1da177e4
LT
2649 }
2650 spin_unlock_irqrestore(&zone->lock, flags);
8f9de51a
KK
2651 for (order = 0; order < MAX_ORDER; order++)
2652 printk("%lu*%lukB ", nr[order], K(1UL) << order);
1da177e4
LT
2653 printk("= %lukB\n", K(total));
2654 }
2655
e6f3602d
LW
2656 printk("%ld total pagecache pages\n", global_page_state(NR_FILE_PAGES));
2657
1da177e4
LT
2658 show_swap_cache_info();
2659}
2660
19770b32
MG
2661static void zoneref_set_zone(struct zone *zone, struct zoneref *zoneref)
2662{
2663 zoneref->zone = zone;
2664 zoneref->zone_idx = zone_idx(zone);
2665}
2666
1da177e4
LT
2667/*
2668 * Builds allocation fallback zone lists.
1a93205b
CL
2669 *
2670 * Add all populated zones of a node to the zonelist.
1da177e4 2671 */
f0c0b2b8
KH
2672static int build_zonelists_node(pg_data_t *pgdat, struct zonelist *zonelist,
2673 int nr_zones, enum zone_type zone_type)
1da177e4 2674{
1a93205b
CL
2675 struct zone *zone;
2676
98d2b0eb 2677 BUG_ON(zone_type >= MAX_NR_ZONES);
2f6726e5 2678 zone_type++;
02a68a5e
CL
2679
2680 do {
2f6726e5 2681 zone_type--;
070f8032 2682 zone = pgdat->node_zones + zone_type;
1a93205b 2683 if (populated_zone(zone)) {
dd1a239f
MG
2684 zoneref_set_zone(zone,
2685 &zonelist->_zonerefs[nr_zones++]);
070f8032 2686 check_highest_zone(zone_type);
1da177e4 2687 }
02a68a5e 2688
2f6726e5 2689 } while (zone_type);
070f8032 2690 return nr_zones;
1da177e4
LT
2691}
2692
f0c0b2b8
KH
2693
2694/*
2695 * zonelist_order:
2696 * 0 = automatic detection of better ordering.
2697 * 1 = order by ([node] distance, -zonetype)
2698 * 2 = order by (-zonetype, [node] distance)
2699 *
2700 * If not NUMA, ZONELIST_ORDER_ZONE and ZONELIST_ORDER_NODE will create
2701 * the same zonelist. So only NUMA can configure this param.
2702 */
2703#define ZONELIST_ORDER_DEFAULT 0
2704#define ZONELIST_ORDER_NODE 1
2705#define ZONELIST_ORDER_ZONE 2
2706
2707/* zonelist order in the kernel.
2708 * set_zonelist_order() will set this to NODE or ZONE.
2709 */
2710static int current_zonelist_order = ZONELIST_ORDER_DEFAULT;
2711static char zonelist_order_name[3][8] = {"Default", "Node", "Zone"};
2712
2713
1da177e4 2714#ifdef CONFIG_NUMA
f0c0b2b8
KH
2715/* The value user specified ....changed by config */
2716static int user_zonelist_order = ZONELIST_ORDER_DEFAULT;
2717/* string for sysctl */
2718#define NUMA_ZONELIST_ORDER_LEN 16
2719char numa_zonelist_order[16] = "default";
2720
2721/*
2722 * interface for configure zonelist ordering.
2723 * command line option "numa_zonelist_order"
2724 * = "[dD]efault - default, automatic configuration.
2725 * = "[nN]ode - order by node locality, then by zone within node
2726 * = "[zZ]one - order by zone, then by locality within zone
2727 */
2728
2729static int __parse_numa_zonelist_order(char *s)
2730{
2731 if (*s == 'd' || *s == 'D') {
2732 user_zonelist_order = ZONELIST_ORDER_DEFAULT;
2733 } else if (*s == 'n' || *s == 'N') {
2734 user_zonelist_order = ZONELIST_ORDER_NODE;
2735 } else if (*s == 'z' || *s == 'Z') {
2736 user_zonelist_order = ZONELIST_ORDER_ZONE;
2737 } else {
2738 printk(KERN_WARNING
2739 "Ignoring invalid numa_zonelist_order value: "
2740 "%s\n", s);
2741 return -EINVAL;
2742 }
2743 return 0;
2744}
2745
2746static __init int setup_numa_zonelist_order(char *s)
2747{
ecb256f8
VL
2748 int ret;
2749
2750 if (!s)
2751 return 0;
2752
2753 ret = __parse_numa_zonelist_order(s);
2754 if (ret == 0)
2755 strlcpy(numa_zonelist_order, s, NUMA_ZONELIST_ORDER_LEN);
2756
2757 return ret;
f0c0b2b8
KH
2758}
2759early_param("numa_zonelist_order", setup_numa_zonelist_order);
2760
2761/*
2762 * sysctl handler for numa_zonelist_order
2763 */
2764int numa_zonelist_order_handler(ctl_table *table, int write,
8d65af78 2765 void __user *buffer, size_t *length,
f0c0b2b8
KH
2766 loff_t *ppos)
2767{
2768 char saved_string[NUMA_ZONELIST_ORDER_LEN];
2769 int ret;
443c6f14 2770 static DEFINE_MUTEX(zl_order_mutex);
f0c0b2b8 2771
443c6f14 2772 mutex_lock(&zl_order_mutex);
f0c0b2b8 2773 if (write)
443c6f14 2774 strcpy(saved_string, (char*)table->data);
8d65af78 2775 ret = proc_dostring(table, write, buffer, length, ppos);
f0c0b2b8 2776 if (ret)
443c6f14 2777 goto out;
f0c0b2b8
KH
2778 if (write) {
2779 int oldval = user_zonelist_order;
2780 if (__parse_numa_zonelist_order((char*)table->data)) {
2781 /*
2782 * bogus value. restore saved string
2783 */
2784 strncpy((char*)table->data, saved_string,
2785 NUMA_ZONELIST_ORDER_LEN);
2786 user_zonelist_order = oldval;
4eaf3f64
HL
2787 } else if (oldval != user_zonelist_order) {
2788 mutex_lock(&zonelists_mutex);
1f522509 2789 build_all_zonelists(NULL);
4eaf3f64
HL
2790 mutex_unlock(&zonelists_mutex);
2791 }
f0c0b2b8 2792 }
443c6f14
AK
2793out:
2794 mutex_unlock(&zl_order_mutex);
2795 return ret;
f0c0b2b8
KH
2796}
2797
2798
62bc62a8 2799#define MAX_NODE_LOAD (nr_online_nodes)
f0c0b2b8
KH
2800static int node_load[MAX_NUMNODES];
2801
1da177e4 2802/**
4dc3b16b 2803 * find_next_best_node - find the next node that should appear in a given node's fallback list
1da177e4
LT
2804 * @node: node whose fallback list we're appending
2805 * @used_node_mask: nodemask_t of already used nodes
2806 *
2807 * We use a number of factors to determine which is the next node that should
2808 * appear on a given node's fallback list. The node should not have appeared
2809 * already in @node's fallback list, and it should be the next closest node
2810 * according to the distance array (which contains arbitrary distance values
2811 * from each node to each node in the system), and should also prefer nodes
2812 * with no CPUs, since presumably they'll have very little allocation pressure
2813 * on them otherwise.
2814 * It returns -1 if no node is found.
2815 */
f0c0b2b8 2816static int find_next_best_node(int node, nodemask_t *used_node_mask)
1da177e4 2817{
4cf808eb 2818 int n, val;
1da177e4
LT
2819 int min_val = INT_MAX;
2820 int best_node = -1;
a70f7302 2821 const struct cpumask *tmp = cpumask_of_node(0);
1da177e4 2822
4cf808eb
LT
2823 /* Use the local node if we haven't already */
2824 if (!node_isset(node, *used_node_mask)) {
2825 node_set(node, *used_node_mask);
2826 return node;
2827 }
1da177e4 2828
37b07e41 2829 for_each_node_state(n, N_HIGH_MEMORY) {
1da177e4
LT
2830
2831 /* Don't want a node to appear more than once */
2832 if (node_isset(n, *used_node_mask))
2833 continue;
2834
1da177e4
LT
2835 /* Use the distance array to find the distance */
2836 val = node_distance(node, n);
2837
4cf808eb
LT
2838 /* Penalize nodes under us ("prefer the next node") */
2839 val += (n < node);
2840
1da177e4 2841 /* Give preference to headless and unused nodes */
a70f7302
RR
2842 tmp = cpumask_of_node(n);
2843 if (!cpumask_empty(tmp))
1da177e4
LT
2844 val += PENALTY_FOR_NODE_WITH_CPUS;
2845
2846 /* Slight preference for less loaded node */
2847 val *= (MAX_NODE_LOAD*MAX_NUMNODES);
2848 val += node_load[n];
2849
2850 if (val < min_val) {
2851 min_val = val;
2852 best_node = n;
2853 }
2854 }
2855
2856 if (best_node >= 0)
2857 node_set(best_node, *used_node_mask);
2858
2859 return best_node;
2860}
2861
f0c0b2b8
KH
2862
2863/*
2864 * Build zonelists ordered by node and zones within node.
2865 * This results in maximum locality--normal zone overflows into local
2866 * DMA zone, if any--but risks exhausting DMA zone.
2867 */
2868static void build_zonelists_in_node_order(pg_data_t *pgdat, int node)
1da177e4 2869{
f0c0b2b8 2870 int j;
1da177e4 2871 struct zonelist *zonelist;
f0c0b2b8 2872
54a6eb5c 2873 zonelist = &pgdat->node_zonelists[0];
dd1a239f 2874 for (j = 0; zonelist->_zonerefs[j].zone != NULL; j++)
54a6eb5c
MG
2875 ;
2876 j = build_zonelists_node(NODE_DATA(node), zonelist, j,
2877 MAX_NR_ZONES - 1);
dd1a239f
MG
2878 zonelist->_zonerefs[j].zone = NULL;
2879 zonelist->_zonerefs[j].zone_idx = 0;
f0c0b2b8
KH
2880}
2881
523b9458
CL
2882/*
2883 * Build gfp_thisnode zonelists
2884 */
2885static void build_thisnode_zonelists(pg_data_t *pgdat)
2886{
523b9458
CL
2887 int j;
2888 struct zonelist *zonelist;
2889
54a6eb5c
MG
2890 zonelist = &pgdat->node_zonelists[1];
2891 j = build_zonelists_node(pgdat, zonelist, 0, MAX_NR_ZONES - 1);
dd1a239f
MG
2892 zonelist->_zonerefs[j].zone = NULL;
2893 zonelist->_zonerefs[j].zone_idx = 0;
523b9458
CL
2894}
2895
f0c0b2b8
KH
2896/*
2897 * Build zonelists ordered by zone and nodes within zones.
2898 * This results in conserving DMA zone[s] until all Normal memory is
2899 * exhausted, but results in overflowing to remote node while memory
2900 * may still exist in local DMA zone.
2901 */
2902static int node_order[MAX_NUMNODES];
2903
2904static void build_zonelists_in_zone_order(pg_data_t *pgdat, int nr_nodes)
2905{
f0c0b2b8
KH
2906 int pos, j, node;
2907 int zone_type; /* needs to be signed */
2908 struct zone *z;
2909 struct zonelist *zonelist;
2910
54a6eb5c
MG
2911 zonelist = &pgdat->node_zonelists[0];
2912 pos = 0;
2913 for (zone_type = MAX_NR_ZONES - 1; zone_type >= 0; zone_type--) {
2914 for (j = 0; j < nr_nodes; j++) {
2915 node = node_order[j];
2916 z = &NODE_DATA(node)->node_zones[zone_type];
2917 if (populated_zone(z)) {
dd1a239f
MG
2918 zoneref_set_zone(z,
2919 &zonelist->_zonerefs[pos++]);
54a6eb5c 2920 check_highest_zone(zone_type);
f0c0b2b8
KH
2921 }
2922 }
f0c0b2b8 2923 }
dd1a239f
MG
2924 zonelist->_zonerefs[pos].zone = NULL;
2925 zonelist->_zonerefs[pos].zone_idx = 0;
f0c0b2b8
KH
2926}
2927
2928static int default_zonelist_order(void)
2929{
2930 int nid, zone_type;
2931 unsigned long low_kmem_size,total_size;
2932 struct zone *z;
2933 int average_size;
2934 /*
88393161 2935 * ZONE_DMA and ZONE_DMA32 can be very small area in the system.
f0c0b2b8
KH
2936 * If they are really small and used heavily, the system can fall
2937 * into OOM very easily.
e325c90f 2938 * This function detect ZONE_DMA/DMA32 size and configures zone order.
f0c0b2b8
KH
2939 */
2940 /* Is there ZONE_NORMAL ? (ex. ppc has only DMA zone..) */
2941 low_kmem_size = 0;
2942 total_size = 0;
2943 for_each_online_node(nid) {
2944 for (zone_type = 0; zone_type < MAX_NR_ZONES; zone_type++) {
2945 z = &NODE_DATA(nid)->node_zones[zone_type];
2946 if (populated_zone(z)) {
2947 if (zone_type < ZONE_NORMAL)
2948 low_kmem_size += z->present_pages;
2949 total_size += z->present_pages;
e325c90f
DR
2950 } else if (zone_type == ZONE_NORMAL) {
2951 /*
2952 * If any node has only lowmem, then node order
2953 * is preferred to allow kernel allocations
2954 * locally; otherwise, they can easily infringe
2955 * on other nodes when there is an abundance of
2956 * lowmem available to allocate from.
2957 */
2958 return ZONELIST_ORDER_NODE;
f0c0b2b8
KH
2959 }
2960 }
2961 }
2962 if (!low_kmem_size || /* there are no DMA area. */
2963 low_kmem_size > total_size/2) /* DMA/DMA32 is big. */
2964 return ZONELIST_ORDER_NODE;
2965 /*
2966 * look into each node's config.
2967 * If there is a node whose DMA/DMA32 memory is very big area on
2968 * local memory, NODE_ORDER may be suitable.
2969 */
37b07e41
LS
2970 average_size = total_size /
2971 (nodes_weight(node_states[N_HIGH_MEMORY]) + 1);
f0c0b2b8
KH
2972 for_each_online_node(nid) {
2973 low_kmem_size = 0;
2974 total_size = 0;
2975 for (zone_type = 0; zone_type < MAX_NR_ZONES; zone_type++) {
2976 z = &NODE_DATA(nid)->node_zones[zone_type];
2977 if (populated_zone(z)) {
2978 if (zone_type < ZONE_NORMAL)
2979 low_kmem_size += z->present_pages;
2980 total_size += z->present_pages;
2981 }
2982 }
2983 if (low_kmem_size &&
2984 total_size > average_size && /* ignore small node */
2985 low_kmem_size > total_size * 70/100)
2986 return ZONELIST_ORDER_NODE;
2987 }
2988 return ZONELIST_ORDER_ZONE;
2989}
2990
2991static void set_zonelist_order(void)
2992{
2993 if (user_zonelist_order == ZONELIST_ORDER_DEFAULT)
2994 current_zonelist_order = default_zonelist_order();
2995 else
2996 current_zonelist_order = user_zonelist_order;
2997}
2998
2999static void build_zonelists(pg_data_t *pgdat)
3000{
3001 int j, node, load;
3002 enum zone_type i;
1da177e4 3003 nodemask_t used_mask;
f0c0b2b8
KH
3004 int local_node, prev_node;
3005 struct zonelist *zonelist;
3006 int order = current_zonelist_order;
1da177e4
LT
3007
3008 /* initialize zonelists */
523b9458 3009 for (i = 0; i < MAX_ZONELISTS; i++) {
1da177e4 3010 zonelist = pgdat->node_zonelists + i;
dd1a239f
MG
3011 zonelist->_zonerefs[0].zone = NULL;
3012 zonelist->_zonerefs[0].zone_idx = 0;
1da177e4
LT
3013 }
3014
3015 /* NUMA-aware ordering of nodes */
3016 local_node = pgdat->node_id;
62bc62a8 3017 load = nr_online_nodes;
1da177e4
LT
3018 prev_node = local_node;
3019 nodes_clear(used_mask);
f0c0b2b8 3020
f0c0b2b8
KH
3021 memset(node_order, 0, sizeof(node_order));
3022 j = 0;
3023
1da177e4 3024 while ((node = find_next_best_node(local_node, &used_mask)) >= 0) {
9eeff239
CL
3025 int distance = node_distance(local_node, node);
3026
3027 /*
3028 * If another node is sufficiently far away then it is better
3029 * to reclaim pages in a zone before going off node.
3030 */
3031 if (distance > RECLAIM_DISTANCE)
3032 zone_reclaim_mode = 1;
3033
1da177e4
LT
3034 /*
3035 * We don't want to pressure a particular node.
3036 * So adding penalty to the first node in same
3037 * distance group to make it round-robin.
3038 */
9eeff239 3039 if (distance != node_distance(local_node, prev_node))
f0c0b2b8
KH
3040 node_load[node] = load;
3041
1da177e4
LT
3042 prev_node = node;
3043 load--;
f0c0b2b8
KH
3044 if (order == ZONELIST_ORDER_NODE)
3045 build_zonelists_in_node_order(pgdat, node);
3046 else
3047 node_order[j++] = node; /* remember order */
3048 }
1da177e4 3049
f0c0b2b8
KH
3050 if (order == ZONELIST_ORDER_ZONE) {
3051 /* calculate node order -- i.e., DMA last! */
3052 build_zonelists_in_zone_order(pgdat, j);
1da177e4 3053 }
523b9458
CL
3054
3055 build_thisnode_zonelists(pgdat);
1da177e4
LT
3056}
3057
9276b1bc 3058/* Construct the zonelist performance cache - see further mmzone.h */
f0c0b2b8 3059static void build_zonelist_cache(pg_data_t *pgdat)
9276b1bc 3060{
54a6eb5c
MG
3061 struct zonelist *zonelist;
3062 struct zonelist_cache *zlc;
dd1a239f 3063 struct zoneref *z;
9276b1bc 3064
54a6eb5c
MG
3065 zonelist = &pgdat->node_zonelists[0];
3066 zonelist->zlcache_ptr = zlc = &zonelist->zlcache;
3067 bitmap_zero(zlc->fullzones, MAX_ZONES_PER_ZONELIST);
dd1a239f
MG
3068 for (z = zonelist->_zonerefs; z->zone; z++)
3069 zlc->z_to_n[z - zonelist->_zonerefs] = zonelist_node_idx(z);
9276b1bc
PJ
3070}
3071
7aac7898
LS
3072#ifdef CONFIG_HAVE_MEMORYLESS_NODES
3073/*
3074 * Return node id of node used for "local" allocations.
3075 * I.e., first node id of first zone in arg node's generic zonelist.
3076 * Used for initializing percpu 'numa_mem', which is used primarily
3077 * for kernel allocations, so use GFP_KERNEL flags to locate zonelist.
3078 */
3079int local_memory_node(int node)
3080{
3081 struct zone *zone;
3082
3083 (void)first_zones_zonelist(node_zonelist(node, GFP_KERNEL),
3084 gfp_zone(GFP_KERNEL),
3085 NULL,
3086 &zone);
3087 return zone->node;
3088}
3089#endif
f0c0b2b8 3090
1da177e4
LT
3091#else /* CONFIG_NUMA */
3092
f0c0b2b8
KH
3093static void set_zonelist_order(void)
3094{
3095 current_zonelist_order = ZONELIST_ORDER_ZONE;
3096}
3097
3098static void build_zonelists(pg_data_t *pgdat)
1da177e4 3099{
19655d34 3100 int node, local_node;
54a6eb5c
MG
3101 enum zone_type j;
3102 struct zonelist *zonelist;
1da177e4
LT
3103
3104 local_node = pgdat->node_id;
1da177e4 3105
54a6eb5c
MG
3106 zonelist = &pgdat->node_zonelists[0];
3107 j = build_zonelists_node(pgdat, zonelist, 0, MAX_NR_ZONES - 1);
1da177e4 3108
54a6eb5c
MG
3109 /*
3110 * Now we build the zonelist so that it contains the zones
3111 * of all the other nodes.
3112 * We don't want to pressure a particular node, so when
3113 * building the zones for node N, we make sure that the
3114 * zones coming right after the local ones are those from
3115 * node N+1 (modulo N)
3116 */
3117 for (node = local_node + 1; node < MAX_NUMNODES; node++) {
3118 if (!node_online(node))
3119 continue;
3120 j = build_zonelists_node(NODE_DATA(node), zonelist, j,
3121 MAX_NR_ZONES - 1);
1da177e4 3122 }
54a6eb5c
MG
3123 for (node = 0; node < local_node; node++) {
3124 if (!node_online(node))
3125 continue;
3126 j = build_zonelists_node(NODE_DATA(node), zonelist, j,
3127 MAX_NR_ZONES - 1);
3128 }
3129
dd1a239f
MG
3130 zonelist->_zonerefs[j].zone = NULL;
3131 zonelist->_zonerefs[j].zone_idx = 0;
1da177e4
LT
3132}
3133
9276b1bc 3134/* non-NUMA variant of zonelist performance cache - just NULL zlcache_ptr */
f0c0b2b8 3135static void build_zonelist_cache(pg_data_t *pgdat)
9276b1bc 3136{
54a6eb5c 3137 pgdat->node_zonelists[0].zlcache_ptr = NULL;
9276b1bc
PJ
3138}
3139
1da177e4
LT
3140#endif /* CONFIG_NUMA */
3141
99dcc3e5
CL
3142/*
3143 * Boot pageset table. One per cpu which is going to be used for all
3144 * zones and all nodes. The parameters will be set in such a way
3145 * that an item put on a list will immediately be handed over to
3146 * the buddy list. This is safe since pageset manipulation is done
3147 * with interrupts disabled.
3148 *
3149 * The boot_pagesets must be kept even after bootup is complete for
3150 * unused processors and/or zones. They do play a role for bootstrapping
3151 * hotplugged processors.
3152 *
3153 * zoneinfo_show() and maybe other functions do
3154 * not check if the processor is online before following the pageset pointer.
3155 * Other parts of the kernel may not check if the zone is available.
3156 */
3157static void setup_pageset(struct per_cpu_pageset *p, unsigned long batch);
3158static DEFINE_PER_CPU(struct per_cpu_pageset, boot_pageset);
1f522509 3159static void setup_zone_pageset(struct zone *zone);
99dcc3e5 3160
4eaf3f64
HL
3161/*
3162 * Global mutex to protect against size modification of zonelists
3163 * as well as to serialize pageset setup for the new populated zone.
3164 */
3165DEFINE_MUTEX(zonelists_mutex);
3166
9b1a4d38 3167/* return values int ....just for stop_machine() */
1f522509 3168static __init_refok int __build_all_zonelists(void *data)
1da177e4 3169{
6811378e 3170 int nid;
99dcc3e5 3171 int cpu;
9276b1bc 3172
7f9cfb31
BL
3173#ifdef CONFIG_NUMA
3174 memset(node_load, 0, sizeof(node_load));
3175#endif
9276b1bc 3176 for_each_online_node(nid) {
7ea1530a
CL
3177 pg_data_t *pgdat = NODE_DATA(nid);
3178
3179 build_zonelists(pgdat);
3180 build_zonelist_cache(pgdat);
9276b1bc 3181 }
99dcc3e5
CL
3182
3183 /*
3184 * Initialize the boot_pagesets that are going to be used
3185 * for bootstrapping processors. The real pagesets for
3186 * each zone will be allocated later when the per cpu
3187 * allocator is available.
3188 *
3189 * boot_pagesets are used also for bootstrapping offline
3190 * cpus if the system is already booted because the pagesets
3191 * are needed to initialize allocators on a specific cpu too.
3192 * F.e. the percpu allocator needs the page allocator which
3193 * needs the percpu allocator in order to allocate its pagesets
3194 * (a chicken-egg dilemma).
3195 */
7aac7898 3196 for_each_possible_cpu(cpu) {
99dcc3e5
CL
3197 setup_pageset(&per_cpu(boot_pageset, cpu), 0);
3198
7aac7898
LS
3199#ifdef CONFIG_HAVE_MEMORYLESS_NODES
3200 /*
3201 * We now know the "local memory node" for each node--
3202 * i.e., the node of the first zone in the generic zonelist.
3203 * Set up numa_mem percpu variable for on-line cpus. During
3204 * boot, only the boot cpu should be on-line; we'll init the
3205 * secondary cpus' numa_mem as they come on-line. During
3206 * node/memory hotplug, we'll fixup all on-line cpus.
3207 */
3208 if (cpu_online(cpu))
3209 set_cpu_numa_mem(cpu, local_memory_node(cpu_to_node(cpu)));
3210#endif
3211 }
3212
6811378e
YG
3213 return 0;
3214}
3215
4eaf3f64
HL
3216/*
3217 * Called with zonelists_mutex held always
3218 * unless system_state == SYSTEM_BOOTING.
3219 */
9f6ae448 3220void __ref build_all_zonelists(void *data)
6811378e 3221{
f0c0b2b8
KH
3222 set_zonelist_order();
3223
6811378e 3224 if (system_state == SYSTEM_BOOTING) {
423b41d7 3225 __build_all_zonelists(NULL);
68ad8df4 3226 mminit_verify_zonelist();
6811378e
YG
3227 cpuset_init_current_mems_allowed();
3228 } else {
183ff22b 3229 /* we have to stop all cpus to guarantee there is no user
6811378e 3230 of zonelist */
e9959f0f
KH
3231#ifdef CONFIG_MEMORY_HOTPLUG
3232 if (data)
3233 setup_zone_pageset((struct zone *)data);
3234#endif
3235 stop_machine(__build_all_zonelists, NULL, NULL);
6811378e
YG
3236 /* cpuset refresh routine should be here */
3237 }
bd1e22b8 3238 vm_total_pages = nr_free_pagecache_pages();
9ef9acb0
MG
3239 /*
3240 * Disable grouping by mobility if the number of pages in the
3241 * system is too low to allow the mechanism to work. It would be
3242 * more accurate, but expensive to check per-zone. This check is
3243 * made on memory-hotadd so a system can start with mobility
3244 * disabled and enable it later
3245 */
d9c23400 3246 if (vm_total_pages < (pageblock_nr_pages * MIGRATE_TYPES))
9ef9acb0
MG
3247 page_group_by_mobility_disabled = 1;
3248 else
3249 page_group_by_mobility_disabled = 0;
3250
3251 printk("Built %i zonelists in %s order, mobility grouping %s. "
3252 "Total pages: %ld\n",
62bc62a8 3253 nr_online_nodes,
f0c0b2b8 3254 zonelist_order_name[current_zonelist_order],
9ef9acb0 3255 page_group_by_mobility_disabled ? "off" : "on",
f0c0b2b8
KH
3256 vm_total_pages);
3257#ifdef CONFIG_NUMA
3258 printk("Policy zone: %s\n", zone_names[policy_zone]);
3259#endif
1da177e4
LT
3260}
3261
3262/*
3263 * Helper functions to size the waitqueue hash table.
3264 * Essentially these want to choose hash table sizes sufficiently
3265 * large so that collisions trying to wait on pages are rare.
3266 * But in fact, the number of active page waitqueues on typical
3267 * systems is ridiculously low, less than 200. So this is even
3268 * conservative, even though it seems large.
3269 *
3270 * The constant PAGES_PER_WAITQUEUE specifies the ratio of pages to
3271 * waitqueues, i.e. the size of the waitq table given the number of pages.
3272 */
3273#define PAGES_PER_WAITQUEUE 256
3274
cca448fe 3275#ifndef CONFIG_MEMORY_HOTPLUG
02b694de 3276static inline unsigned long wait_table_hash_nr_entries(unsigned long pages)
1da177e4
LT
3277{
3278 unsigned long size = 1;
3279
3280 pages /= PAGES_PER_WAITQUEUE;
3281
3282 while (size < pages)
3283 size <<= 1;
3284
3285 /*
3286 * Once we have dozens or even hundreds of threads sleeping
3287 * on IO we've got bigger problems than wait queue collision.
3288 * Limit the size of the wait table to a reasonable size.
3289 */
3290 size = min(size, 4096UL);
3291
3292 return max(size, 4UL);
3293}
cca448fe
YG
3294#else
3295/*
3296 * A zone's size might be changed by hot-add, so it is not possible to determine
3297 * a suitable size for its wait_table. So we use the maximum size now.
3298 *
3299 * The max wait table size = 4096 x sizeof(wait_queue_head_t). ie:
3300 *
3301 * i386 (preemption config) : 4096 x 16 = 64Kbyte.
3302 * ia64, x86-64 (no preemption): 4096 x 20 = 80Kbyte.
3303 * ia64, x86-64 (preemption) : 4096 x 24 = 96Kbyte.
3304 *
3305 * The maximum entries are prepared when a zone's memory is (512K + 256) pages
3306 * or more by the traditional way. (See above). It equals:
3307 *
3308 * i386, x86-64, powerpc(4K page size) : = ( 2G + 1M)byte.
3309 * ia64(16K page size) : = ( 8G + 4M)byte.
3310 * powerpc (64K page size) : = (32G +16M)byte.
3311 */
3312static inline unsigned long wait_table_hash_nr_entries(unsigned long pages)
3313{
3314 return 4096UL;
3315}
3316#endif
1da177e4
LT
3317
3318/*
3319 * This is an integer logarithm so that shifts can be used later
3320 * to extract the more random high bits from the multiplicative
3321 * hash function before the remainder is taken.
3322 */
3323static inline unsigned long wait_table_bits(unsigned long size)
3324{
3325 return ffz(~size);
3326}
3327
3328#define LONG_ALIGN(x) (((x)+(sizeof(long))-1)&~((sizeof(long))-1))
3329
6d3163ce
AH
3330/*
3331 * Check if a pageblock contains reserved pages
3332 */
3333static int pageblock_is_reserved(unsigned long start_pfn, unsigned long end_pfn)
3334{
3335 unsigned long pfn;
3336
3337 for (pfn = start_pfn; pfn < end_pfn; pfn++) {
3338 if (!pfn_valid_within(pfn) || PageReserved(pfn_to_page(pfn)))
3339 return 1;
3340 }
3341 return 0;
3342}
3343
56fd56b8 3344/*
d9c23400 3345 * Mark a number of pageblocks as MIGRATE_RESERVE. The number
41858966
MG
3346 * of blocks reserved is based on min_wmark_pages(zone). The memory within
3347 * the reserve will tend to store contiguous free pages. Setting min_free_kbytes
56fd56b8
MG
3348 * higher will lead to a bigger reserve which will get freed as contiguous
3349 * blocks as reclaim kicks in
3350 */
3351static void setup_zone_migrate_reserve(struct zone *zone)
3352{
6d3163ce 3353 unsigned long start_pfn, pfn, end_pfn, block_end_pfn;
56fd56b8 3354 struct page *page;
78986a67
MG
3355 unsigned long block_migratetype;
3356 int reserve;
56fd56b8 3357
d0215638
MH
3358 /*
3359 * Get the start pfn, end pfn and the number of blocks to reserve
3360 * We have to be careful to be aligned to pageblock_nr_pages to
3361 * make sure that we always check pfn_valid for the first page in
3362 * the block.
3363 */
56fd56b8
MG
3364 start_pfn = zone->zone_start_pfn;
3365 end_pfn = start_pfn + zone->spanned_pages;
d0215638 3366 start_pfn = roundup(start_pfn, pageblock_nr_pages);
41858966 3367 reserve = roundup(min_wmark_pages(zone), pageblock_nr_pages) >>
d9c23400 3368 pageblock_order;
56fd56b8 3369
78986a67
MG
3370 /*
3371 * Reserve blocks are generally in place to help high-order atomic
3372 * allocations that are short-lived. A min_free_kbytes value that
3373 * would result in more than 2 reserve blocks for atomic allocations
3374 * is assumed to be in place to help anti-fragmentation for the
3375 * future allocation of hugepages at runtime.
3376 */
3377 reserve = min(2, reserve);
3378
d9c23400 3379 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
56fd56b8
MG
3380 if (!pfn_valid(pfn))
3381 continue;
3382 page = pfn_to_page(pfn);
3383
344c790e
AL
3384 /* Watch out for overlapping nodes */
3385 if (page_to_nid(page) != zone_to_nid(zone))
3386 continue;
3387
56fd56b8 3388 /* Blocks with reserved pages will never free, skip them. */
6d3163ce
AH
3389 block_end_pfn = min(pfn + pageblock_nr_pages, end_pfn);
3390 if (pageblock_is_reserved(pfn, block_end_pfn))
56fd56b8
MG
3391 continue;
3392
3393 block_migratetype = get_pageblock_migratetype(page);
3394
3395 /* If this block is reserved, account for it */
3396 if (reserve > 0 && block_migratetype == MIGRATE_RESERVE) {
3397 reserve--;
3398 continue;
3399 }
3400
3401 /* Suitable for reserving if this block is movable */
3402 if (reserve > 0 && block_migratetype == MIGRATE_MOVABLE) {
3403 set_pageblock_migratetype(page, MIGRATE_RESERVE);
3404 move_freepages_block(zone, page, MIGRATE_RESERVE);
3405 reserve--;
3406 continue;
3407 }
3408
3409 /*
3410 * If the reserve is met and this is a previous reserved block,
3411 * take it back
3412 */
3413 if (block_migratetype == MIGRATE_RESERVE) {
3414 set_pageblock_migratetype(page, MIGRATE_MOVABLE);
3415 move_freepages_block(zone, page, MIGRATE_MOVABLE);
3416 }
3417 }
3418}
ac0e5b7a 3419
1da177e4
LT
3420/*
3421 * Initially all pages are reserved - free ones are freed
3422 * up by free_all_bootmem() once the early boot process is
3423 * done. Non-atomic initialization, single-pass.
3424 */
c09b4240 3425void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
a2f3aa02 3426 unsigned long start_pfn, enum memmap_context context)
1da177e4 3427{
1da177e4 3428 struct page *page;
29751f69
AW
3429 unsigned long end_pfn = start_pfn + size;
3430 unsigned long pfn;
86051ca5 3431 struct zone *z;
1da177e4 3432
22b31eec
HD
3433 if (highest_memmap_pfn < end_pfn - 1)
3434 highest_memmap_pfn = end_pfn - 1;
3435
86051ca5 3436 z = &NODE_DATA(nid)->node_zones[zone];
cbe8dd4a 3437 for (pfn = start_pfn; pfn < end_pfn; pfn++) {
a2f3aa02
DH
3438 /*
3439 * There can be holes in boot-time mem_map[]s
3440 * handed to this function. They do not
3441 * exist on hotplugged memory.
3442 */
3443 if (context == MEMMAP_EARLY) {
3444 if (!early_pfn_valid(pfn))
3445 continue;
3446 if (!early_pfn_in_nid(pfn, nid))
3447 continue;
3448 }
d41dee36
AW
3449 page = pfn_to_page(pfn);
3450 set_page_links(page, zone, nid, pfn);
708614e6 3451 mminit_verify_page_links(page, zone, nid, pfn);
7835e98b 3452 init_page_count(page);
1da177e4
LT
3453 reset_page_mapcount(page);
3454 SetPageReserved(page);
b2a0ac88
MG
3455 /*
3456 * Mark the block movable so that blocks are reserved for
3457 * movable at startup. This will force kernel allocations
3458 * to reserve their blocks rather than leaking throughout
3459 * the address space during boot when many long-lived
56fd56b8
MG
3460 * kernel allocations are made. Later some blocks near
3461 * the start are marked MIGRATE_RESERVE by
3462 * setup_zone_migrate_reserve()
86051ca5
KH
3463 *
3464 * bitmap is created for zone's valid pfn range. but memmap
3465 * can be created for invalid pages (for alignment)
3466 * check here not to call set_pageblock_migratetype() against
3467 * pfn out of zone.
b2a0ac88 3468 */
86051ca5
KH
3469 if ((z->zone_start_pfn <= pfn)
3470 && (pfn < z->zone_start_pfn + z->spanned_pages)
3471 && !(pfn & (pageblock_nr_pages - 1)))
56fd56b8 3472 set_pageblock_migratetype(page, MIGRATE_MOVABLE);
b2a0ac88 3473
1da177e4
LT
3474 INIT_LIST_HEAD(&page->lru);
3475#ifdef WANT_PAGE_VIRTUAL
3476 /* The shift won't overflow because ZONE_NORMAL is below 4G. */
3477 if (!is_highmem_idx(zone))
3212c6be 3478 set_page_address(page, __va(pfn << PAGE_SHIFT));
1da177e4 3479#endif
1da177e4
LT
3480 }
3481}
3482
1e548deb 3483static void __meminit zone_init_free_lists(struct zone *zone)
1da177e4 3484{
b2a0ac88
MG
3485 int order, t;
3486 for_each_migratetype_order(order, t) {
3487 INIT_LIST_HEAD(&zone->free_area[order].free_list[t]);
1da177e4
LT
3488 zone->free_area[order].nr_free = 0;
3489 }
3490}
3491
3492#ifndef __HAVE_ARCH_MEMMAP_INIT
3493#define memmap_init(size, nid, zone, start_pfn) \
a2f3aa02 3494 memmap_init_zone((size), (nid), (zone), (start_pfn), MEMMAP_EARLY)
1da177e4
LT
3495#endif
3496
1d6f4e60 3497static int zone_batchsize(struct zone *zone)
e7c8d5c9 3498{
3a6be87f 3499#ifdef CONFIG_MMU
e7c8d5c9
CL
3500 int batch;
3501
3502 /*
3503 * The per-cpu-pages pools are set to around 1000th of the
ba56e91c 3504 * size of the zone. But no more than 1/2 of a meg.
e7c8d5c9
CL
3505 *
3506 * OK, so we don't know how big the cache is. So guess.
3507 */
3508 batch = zone->present_pages / 1024;
ba56e91c
SR
3509 if (batch * PAGE_SIZE > 512 * 1024)
3510 batch = (512 * 1024) / PAGE_SIZE;
e7c8d5c9
CL
3511 batch /= 4; /* We effectively *= 4 below */
3512 if (batch < 1)
3513 batch = 1;
3514
3515 /*
0ceaacc9
NP
3516 * Clamp the batch to a 2^n - 1 value. Having a power
3517 * of 2 value was found to be more likely to have
3518 * suboptimal cache aliasing properties in some cases.
e7c8d5c9 3519 *
0ceaacc9
NP
3520 * For example if 2 tasks are alternately allocating
3521 * batches of pages, one task can end up with a lot
3522 * of pages of one half of the possible page colors
3523 * and the other with pages of the other colors.
e7c8d5c9 3524 */
9155203a 3525 batch = rounddown_pow_of_two(batch + batch/2) - 1;
ba56e91c 3526
e7c8d5c9 3527 return batch;
3a6be87f
DH
3528
3529#else
3530 /* The deferral and batching of frees should be suppressed under NOMMU
3531 * conditions.
3532 *
3533 * The problem is that NOMMU needs to be able to allocate large chunks
3534 * of contiguous memory as there's no hardware page translation to
3535 * assemble apparent contiguous memory from discontiguous pages.
3536 *
3537 * Queueing large contiguous runs of pages for batching, however,
3538 * causes the pages to actually be freed in smaller chunks. As there
3539 * can be a significant delay between the individual batches being
3540 * recycled, this leads to the once large chunks of space being
3541 * fragmented and becoming unavailable for high-order allocations.
3542 */
3543 return 0;
3544#endif
e7c8d5c9
CL
3545}
3546
b69a7288 3547static void setup_pageset(struct per_cpu_pageset *p, unsigned long batch)
2caaad41
CL
3548{
3549 struct per_cpu_pages *pcp;
5f8dcc21 3550 int migratetype;
2caaad41 3551
1c6fe946
MD
3552 memset(p, 0, sizeof(*p));
3553
3dfa5721 3554 pcp = &p->pcp;
2caaad41 3555 pcp->count = 0;
2caaad41
CL
3556 pcp->high = 6 * batch;
3557 pcp->batch = max(1UL, 1 * batch);
5f8dcc21
MG
3558 for (migratetype = 0; migratetype < MIGRATE_PCPTYPES; migratetype++)
3559 INIT_LIST_HEAD(&pcp->lists[migratetype]);
2caaad41
CL
3560}
3561
8ad4b1fb
RS
3562/*
3563 * setup_pagelist_highmark() sets the high water mark for hot per_cpu_pagelist
3564 * to the value high for the pageset p.
3565 */
3566
3567static void setup_pagelist_highmark(struct per_cpu_pageset *p,
3568 unsigned long high)
3569{
3570 struct per_cpu_pages *pcp;
3571
3dfa5721 3572 pcp = &p->pcp;
8ad4b1fb
RS
3573 pcp->high = high;
3574 pcp->batch = max(1UL, high/4);
3575 if ((high/4) > (PAGE_SHIFT * 8))
3576 pcp->batch = PAGE_SHIFT * 8;
3577}
3578
58c2ee40 3579static void setup_zone_pageset(struct zone *zone)
319774e2
WF
3580{
3581 int cpu;
3582
3583 zone->pageset = alloc_percpu(struct per_cpu_pageset);
3584
3585 for_each_possible_cpu(cpu) {
3586 struct per_cpu_pageset *pcp = per_cpu_ptr(zone->pageset, cpu);
3587
3588 setup_pageset(pcp, zone_batchsize(zone));
3589
3590 if (percpu_pagelist_fraction)
3591 setup_pagelist_highmark(pcp,
3592 (zone->present_pages /
3593 percpu_pagelist_fraction));
3594 }
3595}
3596
2caaad41 3597/*
99dcc3e5
CL
3598 * Allocate per cpu pagesets and initialize them.
3599 * Before this call only boot pagesets were available.
e7c8d5c9 3600 */
99dcc3e5 3601void __init setup_per_cpu_pageset(void)
e7c8d5c9 3602{
99dcc3e5 3603 struct zone *zone;
e7c8d5c9 3604
319774e2
WF
3605 for_each_populated_zone(zone)
3606 setup_zone_pageset(zone);
e7c8d5c9
CL
3607}
3608
577a32f6 3609static noinline __init_refok
cca448fe 3610int zone_wait_table_init(struct zone *zone, unsigned long zone_size_pages)
ed8ece2e
DH
3611{
3612 int i;
3613 struct pglist_data *pgdat = zone->zone_pgdat;
cca448fe 3614 size_t alloc_size;
ed8ece2e
DH
3615
3616 /*
3617 * The per-page waitqueue mechanism uses hashed waitqueues
3618 * per zone.
3619 */
02b694de
YG
3620 zone->wait_table_hash_nr_entries =
3621 wait_table_hash_nr_entries(zone_size_pages);
3622 zone->wait_table_bits =
3623 wait_table_bits(zone->wait_table_hash_nr_entries);
cca448fe
YG
3624 alloc_size = zone->wait_table_hash_nr_entries
3625 * sizeof(wait_queue_head_t);
3626
cd94b9db 3627 if (!slab_is_available()) {
cca448fe 3628 zone->wait_table = (wait_queue_head_t *)
8f389a99 3629 alloc_bootmem_node_nopanic(pgdat, alloc_size);
cca448fe
YG
3630 } else {
3631 /*
3632 * This case means that a zone whose size was 0 gets new memory
3633 * via memory hot-add.
3634 * But it may be the case that a new node was hot-added. In
3635 * this case vmalloc() will not be able to use this new node's
3636 * memory - this wait_table must be initialized to use this new
3637 * node itself as well.
3638 * To use this new node's memory, further consideration will be
3639 * necessary.
3640 */
8691f3a7 3641 zone->wait_table = vmalloc(alloc_size);
cca448fe
YG
3642 }
3643 if (!zone->wait_table)
3644 return -ENOMEM;
ed8ece2e 3645
02b694de 3646 for(i = 0; i < zone->wait_table_hash_nr_entries; ++i)
ed8ece2e 3647 init_waitqueue_head(zone->wait_table + i);
cca448fe
YG
3648
3649 return 0;
ed8ece2e
DH
3650}
3651
112067f0
SL
3652static int __zone_pcp_update(void *data)
3653{
3654 struct zone *zone = data;
3655 int cpu;
3656 unsigned long batch = zone_batchsize(zone), flags;
3657
2d30a1f6 3658 for_each_possible_cpu(cpu) {
112067f0
SL
3659 struct per_cpu_pageset *pset;
3660 struct per_cpu_pages *pcp;
3661
99dcc3e5 3662 pset = per_cpu_ptr(zone->pageset, cpu);
112067f0
SL
3663 pcp = &pset->pcp;
3664
3665 local_irq_save(flags);
5f8dcc21 3666 free_pcppages_bulk(zone, pcp->count, pcp);
112067f0
SL
3667 setup_pageset(pset, batch);
3668 local_irq_restore(flags);
3669 }
3670 return 0;
3671}
3672
3673void zone_pcp_update(struct zone *zone)
3674{
3675 stop_machine(__zone_pcp_update, zone, NULL);
3676}
3677
c09b4240 3678static __meminit void zone_pcp_init(struct zone *zone)
ed8ece2e 3679{
99dcc3e5
CL
3680 /*
3681 * per cpu subsystem is not up at this point. The following code
3682 * relies on the ability of the linker to provide the
3683 * offset of a (static) per cpu variable into the per cpu area.
3684 */
3685 zone->pageset = &boot_pageset;
ed8ece2e 3686
f5335c0f 3687 if (zone->present_pages)
99dcc3e5
CL
3688 printk(KERN_DEBUG " %s zone: %lu pages, LIFO batch:%u\n",
3689 zone->name, zone->present_pages,
3690 zone_batchsize(zone));
ed8ece2e
DH
3691}
3692
718127cc
YG
3693__meminit int init_currently_empty_zone(struct zone *zone,
3694 unsigned long zone_start_pfn,
a2f3aa02
DH
3695 unsigned long size,
3696 enum memmap_context context)
ed8ece2e
DH
3697{
3698 struct pglist_data *pgdat = zone->zone_pgdat;
cca448fe
YG
3699 int ret;
3700 ret = zone_wait_table_init(zone, size);
3701 if (ret)
3702 return ret;
ed8ece2e
DH
3703 pgdat->nr_zones = zone_idx(zone) + 1;
3704
ed8ece2e
DH
3705 zone->zone_start_pfn = zone_start_pfn;
3706
708614e6
MG
3707 mminit_dprintk(MMINIT_TRACE, "memmap_init",
3708 "Initialising map node %d zone %lu pfns %lu -> %lu\n",
3709 pgdat->node_id,
3710 (unsigned long)zone_idx(zone),
3711 zone_start_pfn, (zone_start_pfn + size));
3712
1e548deb 3713 zone_init_free_lists(zone);
718127cc
YG
3714
3715 return 0;
ed8ece2e
DH
3716}
3717
0ee332c1 3718#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
c713216d
MG
3719#ifndef CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID
3720/*
3721 * Required by SPARSEMEM. Given a PFN, return what node the PFN is on.
3722 * Architectures may implement their own version but if add_active_range()
3723 * was used and there are no special requirements, this is a convenient
3724 * alternative
3725 */
f2dbcfa7 3726int __meminit __early_pfn_to_nid(unsigned long pfn)
c713216d 3727{
c13291a5
TH
3728 unsigned long start_pfn, end_pfn;
3729 int i, nid;
c713216d 3730
c13291a5 3731 for_each_mem_pfn_range(i, MAX_NUMNODES, &start_pfn, &end_pfn, &nid)
c713216d 3732 if (start_pfn <= pfn && pfn < end_pfn)
c13291a5 3733 return nid;
cc2559bc
KH
3734 /* This is a memory hole */
3735 return -1;
c713216d
MG
3736}
3737#endif /* CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID */
3738
f2dbcfa7
KH
3739int __meminit early_pfn_to_nid(unsigned long pfn)
3740{
cc2559bc
KH
3741 int nid;
3742
3743 nid = __early_pfn_to_nid(pfn);
3744 if (nid >= 0)
3745 return nid;
3746 /* just returns 0 */
3747 return 0;
f2dbcfa7
KH
3748}
3749
cc2559bc
KH
3750#ifdef CONFIG_NODES_SPAN_OTHER_NODES
3751bool __meminit early_pfn_in_nid(unsigned long pfn, int node)
3752{
3753 int nid;
3754
3755 nid = __early_pfn_to_nid(pfn);
3756 if (nid >= 0 && nid != node)
3757 return false;
3758 return true;
3759}
3760#endif
f2dbcfa7 3761
c713216d
MG
3762/**
3763 * free_bootmem_with_active_regions - Call free_bootmem_node for each active range
88ca3b94
RD
3764 * @nid: The node to free memory on. If MAX_NUMNODES, all nodes are freed.
3765 * @max_low_pfn: The highest PFN that will be passed to free_bootmem_node
c713216d
MG
3766 *
3767 * If an architecture guarantees that all ranges registered with
3768 * add_active_ranges() contain no holes and may be freed, this
3769 * this function may be used instead of calling free_bootmem() manually.
3770 */
c13291a5 3771void __init free_bootmem_with_active_regions(int nid, unsigned long max_low_pfn)
cc289894 3772{
c13291a5
TH
3773 unsigned long start_pfn, end_pfn;
3774 int i, this_nid;
edbe7d23 3775
c13291a5
TH
3776 for_each_mem_pfn_range(i, nid, &start_pfn, &end_pfn, &this_nid) {
3777 start_pfn = min(start_pfn, max_low_pfn);
3778 end_pfn = min(end_pfn, max_low_pfn);
edbe7d23 3779
c13291a5
TH
3780 if (start_pfn < end_pfn)
3781 free_bootmem_node(NODE_DATA(this_nid),
3782 PFN_PHYS(start_pfn),
3783 (end_pfn - start_pfn) << PAGE_SHIFT);
edbe7d23 3784 }
edbe7d23 3785}
edbe7d23 3786
08677214
YL
3787int __init add_from_early_node_map(struct range *range, int az,
3788 int nr_range, int nid)
3789{
c13291a5 3790 unsigned long start_pfn, end_pfn;
08677214 3791 int i;
08677214
YL
3792
3793 /* need to go over early_node_map to find out good range for node */
c13291a5
TH
3794 for_each_mem_pfn_range(i, nid, &start_pfn, &end_pfn, NULL)
3795 nr_range = add_range(range, az, nr_range, start_pfn, end_pfn);
08677214
YL
3796 return nr_range;
3797}
3798
c713216d
MG
3799/**
3800 * sparse_memory_present_with_active_regions - Call memory_present for each active range
88ca3b94 3801 * @nid: The node to call memory_present for. If MAX_NUMNODES, all nodes will be used.
c713216d
MG
3802 *
3803 * If an architecture guarantees that all ranges registered with
3804 * add_active_ranges() contain no holes and may be freed, this
88ca3b94 3805 * function may be used instead of calling memory_present() manually.
c713216d
MG
3806 */
3807void __init sparse_memory_present_with_active_regions(int nid)
3808{
c13291a5
TH
3809 unsigned long start_pfn, end_pfn;
3810 int i, this_nid;
c713216d 3811
c13291a5
TH
3812 for_each_mem_pfn_range(i, nid, &start_pfn, &end_pfn, &this_nid)
3813 memory_present(this_nid, start_pfn, end_pfn);
c713216d
MG
3814}
3815
3816/**
3817 * get_pfn_range_for_nid - Return the start and end page frames for a node
88ca3b94
RD
3818 * @nid: The nid to return the range for. If MAX_NUMNODES, the min and max PFN are returned.
3819 * @start_pfn: Passed by reference. On return, it will have the node start_pfn.
3820 * @end_pfn: Passed by reference. On return, it will have the node end_pfn.
c713216d
MG
3821 *
3822 * It returns the start and end page frame of a node based on information
3823 * provided by an arch calling add_active_range(). If called for a node
3824 * with no available memory, a warning is printed and the start and end
88ca3b94 3825 * PFNs will be 0.
c713216d 3826 */
a3142c8e 3827void __meminit get_pfn_range_for_nid(unsigned int nid,
c713216d
MG
3828 unsigned long *start_pfn, unsigned long *end_pfn)
3829{
c13291a5 3830 unsigned long this_start_pfn, this_end_pfn;
c713216d 3831 int i;
c13291a5 3832
c713216d
MG
3833 *start_pfn = -1UL;
3834 *end_pfn = 0;
3835
c13291a5
TH
3836 for_each_mem_pfn_range(i, nid, &this_start_pfn, &this_end_pfn, NULL) {
3837 *start_pfn = min(*start_pfn, this_start_pfn);
3838 *end_pfn = max(*end_pfn, this_end_pfn);
c713216d
MG
3839 }
3840
633c0666 3841 if (*start_pfn == -1UL)
c713216d 3842 *start_pfn = 0;
c713216d
MG
3843}
3844
2a1e274a
MG
3845/*
3846 * This finds a zone that can be used for ZONE_MOVABLE pages. The
3847 * assumption is made that zones within a node are ordered in monotonic
3848 * increasing memory addresses so that the "highest" populated zone is used
3849 */
b69a7288 3850static void __init find_usable_zone_for_movable(void)
2a1e274a
MG
3851{
3852 int zone_index;
3853 for (zone_index = MAX_NR_ZONES - 1; zone_index >= 0; zone_index--) {
3854 if (zone_index == ZONE_MOVABLE)
3855 continue;
3856
3857 if (arch_zone_highest_possible_pfn[zone_index] >
3858 arch_zone_lowest_possible_pfn[zone_index])
3859 break;
3860 }
3861
3862 VM_BUG_ON(zone_index == -1);
3863 movable_zone = zone_index;
3864}
3865
3866/*
3867 * The zone ranges provided by the architecture do not include ZONE_MOVABLE
25985edc 3868 * because it is sized independent of architecture. Unlike the other zones,
2a1e274a
MG
3869 * the starting point for ZONE_MOVABLE is not fixed. It may be different
3870 * in each node depending on the size of each node and how evenly kernelcore
3871 * is distributed. This helper function adjusts the zone ranges
3872 * provided by the architecture for a given node by using the end of the
3873 * highest usable zone for ZONE_MOVABLE. This preserves the assumption that
3874 * zones within a node are in order of monotonic increases memory addresses
3875 */
b69a7288 3876static void __meminit adjust_zone_range_for_zone_movable(int nid,
2a1e274a
MG
3877 unsigned long zone_type,
3878 unsigned long node_start_pfn,
3879 unsigned long node_end_pfn,
3880 unsigned long *zone_start_pfn,
3881 unsigned long *zone_end_pfn)
3882{
3883 /* Only adjust if ZONE_MOVABLE is on this node */
3884 if (zone_movable_pfn[nid]) {
3885 /* Size ZONE_MOVABLE */
3886 if (zone_type == ZONE_MOVABLE) {
3887 *zone_start_pfn = zone_movable_pfn[nid];
3888 *zone_end_pfn = min(node_end_pfn,
3889 arch_zone_highest_possible_pfn[movable_zone]);
3890
3891 /* Adjust for ZONE_MOVABLE starting within this range */
3892 } else if (*zone_start_pfn < zone_movable_pfn[nid] &&
3893 *zone_end_pfn > zone_movable_pfn[nid]) {
3894 *zone_end_pfn = zone_movable_pfn[nid];
3895
3896 /* Check if this whole range is within ZONE_MOVABLE */
3897 } else if (*zone_start_pfn >= zone_movable_pfn[nid])
3898 *zone_start_pfn = *zone_end_pfn;
3899 }
3900}
3901
c713216d
MG
3902/*
3903 * Return the number of pages a zone spans in a node, including holes
3904 * present_pages = zone_spanned_pages_in_node() - zone_absent_pages_in_node()
3905 */
6ea6e688 3906static unsigned long __meminit zone_spanned_pages_in_node(int nid,
c713216d
MG
3907 unsigned long zone_type,
3908 unsigned long *ignored)
3909{
3910 unsigned long node_start_pfn, node_end_pfn;
3911 unsigned long zone_start_pfn, zone_end_pfn;
3912
3913 /* Get the start and end of the node and zone */
3914 get_pfn_range_for_nid(nid, &node_start_pfn, &node_end_pfn);
3915 zone_start_pfn = arch_zone_lowest_possible_pfn[zone_type];
3916 zone_end_pfn = arch_zone_highest_possible_pfn[zone_type];
2a1e274a
MG
3917 adjust_zone_range_for_zone_movable(nid, zone_type,
3918 node_start_pfn, node_end_pfn,
3919 &zone_start_pfn, &zone_end_pfn);
c713216d
MG
3920
3921 /* Check that this node has pages within the zone's required range */
3922 if (zone_end_pfn < node_start_pfn || zone_start_pfn > node_end_pfn)
3923 return 0;
3924
3925 /* Move the zone boundaries inside the node if necessary */
3926 zone_end_pfn = min(zone_end_pfn, node_end_pfn);
3927 zone_start_pfn = max(zone_start_pfn, node_start_pfn);
3928
3929 /* Return the spanned pages */
3930 return zone_end_pfn - zone_start_pfn;
3931}
3932
3933/*
3934 * Return the number of holes in a range on a node. If nid is MAX_NUMNODES,
88ca3b94 3935 * then all holes in the requested range will be accounted for.
c713216d 3936 */
32996250 3937unsigned long __meminit __absent_pages_in_range(int nid,
c713216d
MG
3938 unsigned long range_start_pfn,
3939 unsigned long range_end_pfn)
3940{
96e907d1
TH
3941 unsigned long nr_absent = range_end_pfn - range_start_pfn;
3942 unsigned long start_pfn, end_pfn;
3943 int i;
c713216d 3944
96e907d1
TH
3945 for_each_mem_pfn_range(i, nid, &start_pfn, &end_pfn, NULL) {
3946 start_pfn = clamp(start_pfn, range_start_pfn, range_end_pfn);
3947 end_pfn = clamp(end_pfn, range_start_pfn, range_end_pfn);
3948 nr_absent -= end_pfn - start_pfn;
c713216d 3949 }
96e907d1 3950 return nr_absent;
c713216d
MG
3951}
3952
3953/**
3954 * absent_pages_in_range - Return number of page frames in holes within a range
3955 * @start_pfn: The start PFN to start searching for holes
3956 * @end_pfn: The end PFN to stop searching for holes
3957 *
88ca3b94 3958 * It returns the number of pages frames in memory holes within a range.
c713216d
MG
3959 */
3960unsigned long __init absent_pages_in_range(unsigned long start_pfn,
3961 unsigned long end_pfn)
3962{
3963 return __absent_pages_in_range(MAX_NUMNODES, start_pfn, end_pfn);
3964}
3965
3966/* Return the number of page frames in holes in a zone on a node */
6ea6e688 3967static unsigned long __meminit zone_absent_pages_in_node(int nid,
c713216d
MG
3968 unsigned long zone_type,
3969 unsigned long *ignored)
3970{
96e907d1
TH
3971 unsigned long zone_low = arch_zone_lowest_possible_pfn[zone_type];
3972 unsigned long zone_high = arch_zone_highest_possible_pfn[zone_type];
9c7cd687
MG
3973 unsigned long node_start_pfn, node_end_pfn;
3974 unsigned long zone_start_pfn, zone_end_pfn;
3975
3976 get_pfn_range_for_nid(nid, &node_start_pfn, &node_end_pfn);
96e907d1
TH
3977 zone_start_pfn = clamp(node_start_pfn, zone_low, zone_high);
3978 zone_end_pfn = clamp(node_end_pfn, zone_low, zone_high);
9c7cd687 3979
2a1e274a
MG
3980 adjust_zone_range_for_zone_movable(nid, zone_type,
3981 node_start_pfn, node_end_pfn,
3982 &zone_start_pfn, &zone_end_pfn);
9c7cd687 3983 return __absent_pages_in_range(nid, zone_start_pfn, zone_end_pfn);
c713216d 3984}
0e0b864e 3985
0ee332c1 3986#else /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
6ea6e688 3987static inline unsigned long __meminit zone_spanned_pages_in_node(int nid,
c713216d
MG
3988 unsigned long zone_type,
3989 unsigned long *zones_size)
3990{
3991 return zones_size[zone_type];
3992}
3993
6ea6e688 3994static inline unsigned long __meminit zone_absent_pages_in_node(int nid,
c713216d
MG
3995 unsigned long zone_type,
3996 unsigned long *zholes_size)
3997{
3998 if (!zholes_size)
3999 return 0;
4000
4001 return zholes_size[zone_type];
4002}
0e0b864e 4003
0ee332c1 4004#endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
c713216d 4005
a3142c8e 4006static void __meminit calculate_node_totalpages(struct pglist_data *pgdat,
c713216d
MG
4007 unsigned long *zones_size, unsigned long *zholes_size)
4008{
4009 unsigned long realtotalpages, totalpages = 0;
4010 enum zone_type i;
4011
4012 for (i = 0; i < MAX_NR_ZONES; i++)
4013 totalpages += zone_spanned_pages_in_node(pgdat->node_id, i,
4014 zones_size);
4015 pgdat->node_spanned_pages = totalpages;
4016
4017 realtotalpages = totalpages;
4018 for (i = 0; i < MAX_NR_ZONES; i++)
4019 realtotalpages -=
4020 zone_absent_pages_in_node(pgdat->node_id, i,
4021 zholes_size);
4022 pgdat->node_present_pages = realtotalpages;
4023 printk(KERN_DEBUG "On node %d totalpages: %lu\n", pgdat->node_id,
4024 realtotalpages);
4025}
4026
835c134e
MG
4027#ifndef CONFIG_SPARSEMEM
4028/*
4029 * Calculate the size of the zone->blockflags rounded to an unsigned long
d9c23400
MG
4030 * Start by making sure zonesize is a multiple of pageblock_order by rounding
4031 * up. Then use 1 NR_PAGEBLOCK_BITS worth of bits per pageblock, finally
835c134e
MG
4032 * round what is now in bits to nearest long in bits, then return it in
4033 * bytes.
4034 */
4035static unsigned long __init usemap_size(unsigned long zonesize)
4036{
4037 unsigned long usemapsize;
4038
d9c23400
MG
4039 usemapsize = roundup(zonesize, pageblock_nr_pages);
4040 usemapsize = usemapsize >> pageblock_order;
835c134e
MG
4041 usemapsize *= NR_PAGEBLOCK_BITS;
4042 usemapsize = roundup(usemapsize, 8 * sizeof(unsigned long));
4043
4044 return usemapsize / 8;
4045}
4046
4047static void __init setup_usemap(struct pglist_data *pgdat,
4048 struct zone *zone, unsigned long zonesize)
4049{
4050 unsigned long usemapsize = usemap_size(zonesize);
4051 zone->pageblock_flags = NULL;
58a01a45 4052 if (usemapsize)
8f389a99
YL
4053 zone->pageblock_flags = alloc_bootmem_node_nopanic(pgdat,
4054 usemapsize);
835c134e
MG
4055}
4056#else
fa9f90be 4057static inline void setup_usemap(struct pglist_data *pgdat,
835c134e
MG
4058 struct zone *zone, unsigned long zonesize) {}
4059#endif /* CONFIG_SPARSEMEM */
4060
d9c23400 4061#ifdef CONFIG_HUGETLB_PAGE_SIZE_VARIABLE
ba72cb8c
MG
4062
4063/* Return a sensible default order for the pageblock size. */
4064static inline int pageblock_default_order(void)
4065{
4066 if (HPAGE_SHIFT > PAGE_SHIFT)
4067 return HUGETLB_PAGE_ORDER;
4068
4069 return MAX_ORDER-1;
4070}
4071
d9c23400
MG
4072/* Initialise the number of pages represented by NR_PAGEBLOCK_BITS */
4073static inline void __init set_pageblock_order(unsigned int order)
4074{
4075 /* Check that pageblock_nr_pages has not already been setup */
4076 if (pageblock_order)
4077 return;
4078
4079 /*
4080 * Assume the largest contiguous order of interest is a huge page.
4081 * This value may be variable depending on boot parameters on IA64
4082 */
4083 pageblock_order = order;
4084}
4085#else /* CONFIG_HUGETLB_PAGE_SIZE_VARIABLE */
4086
ba72cb8c
MG
4087/*
4088 * When CONFIG_HUGETLB_PAGE_SIZE_VARIABLE is not set, set_pageblock_order()
4089 * and pageblock_default_order() are unused as pageblock_order is set
4090 * at compile-time. See include/linux/pageblock-flags.h for the values of
4091 * pageblock_order based on the kernel config
4092 */
4093static inline int pageblock_default_order(unsigned int order)
4094{
4095 return MAX_ORDER-1;
4096}
d9c23400
MG
4097#define set_pageblock_order(x) do {} while (0)
4098
4099#endif /* CONFIG_HUGETLB_PAGE_SIZE_VARIABLE */
4100
1da177e4
LT
4101/*
4102 * Set up the zone data structures:
4103 * - mark all pages reserved
4104 * - mark all memory queues empty
4105 * - clear the memory bitmaps
4106 */
b5a0e011 4107static void __paginginit free_area_init_core(struct pglist_data *pgdat,
1da177e4
LT
4108 unsigned long *zones_size, unsigned long *zholes_size)
4109{
2f1b6248 4110 enum zone_type j;
ed8ece2e 4111 int nid = pgdat->node_id;
1da177e4 4112 unsigned long zone_start_pfn = pgdat->node_start_pfn;
718127cc 4113 int ret;
1da177e4 4114
208d54e5 4115 pgdat_resize_init(pgdat);
1da177e4
LT
4116 pgdat->nr_zones = 0;
4117 init_waitqueue_head(&pgdat->kswapd_wait);
4118 pgdat->kswapd_max_order = 0;
52d4b9ac 4119 pgdat_page_cgroup_init(pgdat);
1da177e4
LT
4120
4121 for (j = 0; j < MAX_NR_ZONES; j++) {
4122 struct zone *zone = pgdat->node_zones + j;
0e0b864e 4123 unsigned long size, realsize, memmap_pages;
b69408e8 4124 enum lru_list l;
1da177e4 4125
c713216d
MG
4126 size = zone_spanned_pages_in_node(nid, j, zones_size);
4127 realsize = size - zone_absent_pages_in_node(nid, j,
4128 zholes_size);
1da177e4 4129
0e0b864e
MG
4130 /*
4131 * Adjust realsize so that it accounts for how much memory
4132 * is used by this zone for memmap. This affects the watermark
4133 * and per-cpu initialisations
4134 */
f7232154
JW
4135 memmap_pages =
4136 PAGE_ALIGN(size * sizeof(struct page)) >> PAGE_SHIFT;
0e0b864e
MG
4137 if (realsize >= memmap_pages) {
4138 realsize -= memmap_pages;
5594c8c8
YL
4139 if (memmap_pages)
4140 printk(KERN_DEBUG
4141 " %s zone: %lu pages used for memmap\n",
4142 zone_names[j], memmap_pages);
0e0b864e
MG
4143 } else
4144 printk(KERN_WARNING
4145 " %s zone: %lu pages exceeds realsize %lu\n",
4146 zone_names[j], memmap_pages, realsize);
4147
6267276f
CL
4148 /* Account for reserved pages */
4149 if (j == 0 && realsize > dma_reserve) {
0e0b864e 4150 realsize -= dma_reserve;
d903ef9f 4151 printk(KERN_DEBUG " %s zone: %lu pages reserved\n",
6267276f 4152 zone_names[0], dma_reserve);
0e0b864e
MG
4153 }
4154
98d2b0eb 4155 if (!is_highmem_idx(j))
1da177e4
LT
4156 nr_kernel_pages += realsize;
4157 nr_all_pages += realsize;
4158
4159 zone->spanned_pages = size;
4160 zone->present_pages = realsize;
9614634f 4161#ifdef CONFIG_NUMA
d5f541ed 4162 zone->node = nid;
8417bba4 4163 zone->min_unmapped_pages = (realsize*sysctl_min_unmapped_ratio)
9614634f 4164 / 100;
0ff38490 4165 zone->min_slab_pages = (realsize * sysctl_min_slab_ratio) / 100;
9614634f 4166#endif
1da177e4
LT
4167 zone->name = zone_names[j];
4168 spin_lock_init(&zone->lock);
4169 spin_lock_init(&zone->lru_lock);
bdc8cb98 4170 zone_seqlock_init(zone);
1da177e4 4171 zone->zone_pgdat = pgdat;
1da177e4 4172
ed8ece2e 4173 zone_pcp_init(zone);
246e87a9 4174 for_each_lru(l)
b69408e8 4175 INIT_LIST_HEAD(&zone->lru[l].list);
6e901571
KM
4176 zone->reclaim_stat.recent_rotated[0] = 0;
4177 zone->reclaim_stat.recent_rotated[1] = 0;
4178 zone->reclaim_stat.recent_scanned[0] = 0;
4179 zone->reclaim_stat.recent_scanned[1] = 0;
2244b95a 4180 zap_zone_vm_stats(zone);
e815af95 4181 zone->flags = 0;
1da177e4
LT
4182 if (!size)
4183 continue;
4184
ba72cb8c 4185 set_pageblock_order(pageblock_default_order());
835c134e 4186 setup_usemap(pgdat, zone, size);
a2f3aa02
DH
4187 ret = init_currently_empty_zone(zone, zone_start_pfn,
4188 size, MEMMAP_EARLY);
718127cc 4189 BUG_ON(ret);
76cdd58e 4190 memmap_init(size, nid, j, zone_start_pfn);
1da177e4 4191 zone_start_pfn += size;
1da177e4
LT
4192 }
4193}
4194
577a32f6 4195static void __init_refok alloc_node_mem_map(struct pglist_data *pgdat)
1da177e4 4196{
1da177e4
LT
4197 /* Skip empty nodes */
4198 if (!pgdat->node_spanned_pages)
4199 return;
4200
d41dee36 4201#ifdef CONFIG_FLAT_NODE_MEM_MAP
1da177e4
LT
4202 /* ia64 gets its own node_mem_map, before this, without bootmem */
4203 if (!pgdat->node_mem_map) {
e984bb43 4204 unsigned long size, start, end;
d41dee36
AW
4205 struct page *map;
4206
e984bb43
BP
4207 /*
4208 * The zone's endpoints aren't required to be MAX_ORDER
4209 * aligned but the node_mem_map endpoints must be in order
4210 * for the buddy allocator to function correctly.
4211 */
4212 start = pgdat->node_start_pfn & ~(MAX_ORDER_NR_PAGES - 1);
4213 end = pgdat->node_start_pfn + pgdat->node_spanned_pages;
4214 end = ALIGN(end, MAX_ORDER_NR_PAGES);
4215 size = (end - start) * sizeof(struct page);
6f167ec7
DH
4216 map = alloc_remap(pgdat->node_id, size);
4217 if (!map)
8f389a99 4218 map = alloc_bootmem_node_nopanic(pgdat, size);
e984bb43 4219 pgdat->node_mem_map = map + (pgdat->node_start_pfn - start);
1da177e4 4220 }
12d810c1 4221#ifndef CONFIG_NEED_MULTIPLE_NODES
1da177e4
LT
4222 /*
4223 * With no DISCONTIG, the global mem_map is just set as node 0's
4224 */
c713216d 4225 if (pgdat == NODE_DATA(0)) {
1da177e4 4226 mem_map = NODE_DATA(0)->node_mem_map;
0ee332c1 4227#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
c713216d 4228 if (page_to_pfn(mem_map) != pgdat->node_start_pfn)
467bc461 4229 mem_map -= (pgdat->node_start_pfn - ARCH_PFN_OFFSET);
0ee332c1 4230#endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
c713216d 4231 }
1da177e4 4232#endif
d41dee36 4233#endif /* CONFIG_FLAT_NODE_MEM_MAP */
1da177e4
LT
4234}
4235
9109fb7b
JW
4236void __paginginit free_area_init_node(int nid, unsigned long *zones_size,
4237 unsigned long node_start_pfn, unsigned long *zholes_size)
1da177e4 4238{
9109fb7b
JW
4239 pg_data_t *pgdat = NODE_DATA(nid);
4240
1da177e4
LT
4241 pgdat->node_id = nid;
4242 pgdat->node_start_pfn = node_start_pfn;
c713216d 4243 calculate_node_totalpages(pgdat, zones_size, zholes_size);
1da177e4
LT
4244
4245 alloc_node_mem_map(pgdat);
e8c27ac9
YL
4246#ifdef CONFIG_FLAT_NODE_MEM_MAP
4247 printk(KERN_DEBUG "free_area_init_node: node %d, pgdat %08lx, node_mem_map %08lx\n",
4248 nid, (unsigned long)pgdat,
4249 (unsigned long)pgdat->node_mem_map);
4250#endif
1da177e4
LT
4251
4252 free_area_init_core(pgdat, zones_size, zholes_size);
4253}
4254
0ee332c1 4255#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
418508c1
MS
4256
4257#if MAX_NUMNODES > 1
4258/*
4259 * Figure out the number of possible node ids.
4260 */
4261static void __init setup_nr_node_ids(void)
4262{
4263 unsigned int node;
4264 unsigned int highest = 0;
4265
4266 for_each_node_mask(node, node_possible_map)
4267 highest = node;
4268 nr_node_ids = highest + 1;
4269}
4270#else
4271static inline void setup_nr_node_ids(void)
4272{
4273}
4274#endif
4275
1e01979c
TH
4276/**
4277 * node_map_pfn_alignment - determine the maximum internode alignment
4278 *
4279 * This function should be called after node map is populated and sorted.
4280 * It calculates the maximum power of two alignment which can distinguish
4281 * all the nodes.
4282 *
4283 * For example, if all nodes are 1GiB and aligned to 1GiB, the return value
4284 * would indicate 1GiB alignment with (1 << (30 - PAGE_SHIFT)). If the
4285 * nodes are shifted by 256MiB, 256MiB. Note that if only the last node is
4286 * shifted, 1GiB is enough and this function will indicate so.
4287 *
4288 * This is used to test whether pfn -> nid mapping of the chosen memory
4289 * model has fine enough granularity to avoid incorrect mapping for the
4290 * populated node map.
4291 *
4292 * Returns the determined alignment in pfn's. 0 if there is no alignment
4293 * requirement (single node).
4294 */
4295unsigned long __init node_map_pfn_alignment(void)
4296{
4297 unsigned long accl_mask = 0, last_end = 0;
c13291a5 4298 unsigned long start, end, mask;
1e01979c 4299 int last_nid = -1;
c13291a5 4300 int i, nid;
1e01979c 4301
c13291a5 4302 for_each_mem_pfn_range(i, MAX_NUMNODES, &start, &end, &nid) {
1e01979c
TH
4303 if (!start || last_nid < 0 || last_nid == nid) {
4304 last_nid = nid;
4305 last_end = end;
4306 continue;
4307 }
4308
4309 /*
4310 * Start with a mask granular enough to pin-point to the
4311 * start pfn and tick off bits one-by-one until it becomes
4312 * too coarse to separate the current node from the last.
4313 */
4314 mask = ~((1 << __ffs(start)) - 1);
4315 while (mask && last_end <= (start & (mask << 1)))
4316 mask <<= 1;
4317
4318 /* accumulate all internode masks */
4319 accl_mask |= mask;
4320 }
4321
4322 /* convert mask to number of pages */
4323 return ~accl_mask + 1;
4324}
4325
a6af2bc3 4326/* Find the lowest pfn for a node */
b69a7288 4327static unsigned long __init find_min_pfn_for_node(int nid)
c713216d 4328{
a6af2bc3 4329 unsigned long min_pfn = ULONG_MAX;
c13291a5
TH
4330 unsigned long start_pfn;
4331 int i;
1abbfb41 4332
c13291a5
TH
4333 for_each_mem_pfn_range(i, nid, &start_pfn, NULL, NULL)
4334 min_pfn = min(min_pfn, start_pfn);
c713216d 4335
a6af2bc3
MG
4336 if (min_pfn == ULONG_MAX) {
4337 printk(KERN_WARNING
2bc0d261 4338 "Could not find start_pfn for node %d\n", nid);
a6af2bc3
MG
4339 return 0;
4340 }
4341
4342 return min_pfn;
c713216d
MG
4343}
4344
4345/**
4346 * find_min_pfn_with_active_regions - Find the minimum PFN registered
4347 *
4348 * It returns the minimum PFN based on information provided via
88ca3b94 4349 * add_active_range().
c713216d
MG
4350 */
4351unsigned long __init find_min_pfn_with_active_regions(void)
4352{
4353 return find_min_pfn_for_node(MAX_NUMNODES);
4354}
4355
37b07e41
LS
4356/*
4357 * early_calculate_totalpages()
4358 * Sum pages in active regions for movable zone.
4359 * Populate N_HIGH_MEMORY for calculating usable_nodes.
4360 */
484f51f8 4361static unsigned long __init early_calculate_totalpages(void)
7e63efef 4362{
7e63efef 4363 unsigned long totalpages = 0;
c13291a5
TH
4364 unsigned long start_pfn, end_pfn;
4365 int i, nid;
4366
4367 for_each_mem_pfn_range(i, MAX_NUMNODES, &start_pfn, &end_pfn, &nid) {
4368 unsigned long pages = end_pfn - start_pfn;
7e63efef 4369
37b07e41
LS
4370 totalpages += pages;
4371 if (pages)
c13291a5 4372 node_set_state(nid, N_HIGH_MEMORY);
37b07e41
LS
4373 }
4374 return totalpages;
7e63efef
MG
4375}
4376
2a1e274a
MG
4377/*
4378 * Find the PFN the Movable zone begins in each node. Kernel memory
4379 * is spread evenly between nodes as long as the nodes have enough
4380 * memory. When they don't, some nodes will have more kernelcore than
4381 * others
4382 */
b69a7288 4383static void __init find_zone_movable_pfns_for_nodes(unsigned long *movable_pfn)
2a1e274a
MG
4384{
4385 int i, nid;
4386 unsigned long usable_startpfn;
4387 unsigned long kernelcore_node, kernelcore_remaining;
66918dcd
YL
4388 /* save the state before borrow the nodemask */
4389 nodemask_t saved_node_state = node_states[N_HIGH_MEMORY];
37b07e41
LS
4390 unsigned long totalpages = early_calculate_totalpages();
4391 int usable_nodes = nodes_weight(node_states[N_HIGH_MEMORY]);
2a1e274a 4392
7e63efef
MG
4393 /*
4394 * If movablecore was specified, calculate what size of
4395 * kernelcore that corresponds so that memory usable for
4396 * any allocation type is evenly spread. If both kernelcore
4397 * and movablecore are specified, then the value of kernelcore
4398 * will be used for required_kernelcore if it's greater than
4399 * what movablecore would have allowed.
4400 */
4401 if (required_movablecore) {
7e63efef
MG
4402 unsigned long corepages;
4403
4404 /*
4405 * Round-up so that ZONE_MOVABLE is at least as large as what
4406 * was requested by the user
4407 */
4408 required_movablecore =
4409 roundup(required_movablecore, MAX_ORDER_NR_PAGES);
4410 corepages = totalpages - required_movablecore;
4411
4412 required_kernelcore = max(required_kernelcore, corepages);
4413 }
4414
2a1e274a
MG
4415 /* If kernelcore was not specified, there is no ZONE_MOVABLE */
4416 if (!required_kernelcore)
66918dcd 4417 goto out;
2a1e274a
MG
4418
4419 /* usable_startpfn is the lowest possible pfn ZONE_MOVABLE can be at */
4420 find_usable_zone_for_movable();
4421 usable_startpfn = arch_zone_lowest_possible_pfn[movable_zone];
4422
4423restart:
4424 /* Spread kernelcore memory as evenly as possible throughout nodes */
4425 kernelcore_node = required_kernelcore / usable_nodes;
37b07e41 4426 for_each_node_state(nid, N_HIGH_MEMORY) {
c13291a5
TH
4427 unsigned long start_pfn, end_pfn;
4428
2a1e274a
MG
4429 /*
4430 * Recalculate kernelcore_node if the division per node
4431 * now exceeds what is necessary to satisfy the requested
4432 * amount of memory for the kernel
4433 */
4434 if (required_kernelcore < kernelcore_node)
4435 kernelcore_node = required_kernelcore / usable_nodes;
4436
4437 /*
4438 * As the map is walked, we track how much memory is usable
4439 * by the kernel using kernelcore_remaining. When it is
4440 * 0, the rest of the node is usable by ZONE_MOVABLE
4441 */
4442 kernelcore_remaining = kernelcore_node;
4443
4444 /* Go through each range of PFNs within this node */
c13291a5 4445 for_each_mem_pfn_range(i, nid, &start_pfn, &end_pfn, NULL) {
2a1e274a
MG
4446 unsigned long size_pages;
4447
c13291a5 4448 start_pfn = max(start_pfn, zone_movable_pfn[nid]);
2a1e274a
MG
4449 if (start_pfn >= end_pfn)
4450 continue;
4451
4452 /* Account for what is only usable for kernelcore */
4453 if (start_pfn < usable_startpfn) {
4454 unsigned long kernel_pages;
4455 kernel_pages = min(end_pfn, usable_startpfn)
4456 - start_pfn;
4457
4458 kernelcore_remaining -= min(kernel_pages,
4459 kernelcore_remaining);
4460 required_kernelcore -= min(kernel_pages,
4461 required_kernelcore);
4462
4463 /* Continue if range is now fully accounted */
4464 if (end_pfn <= usable_startpfn) {
4465
4466 /*
4467 * Push zone_movable_pfn to the end so
4468 * that if we have to rebalance
4469 * kernelcore across nodes, we will
4470 * not double account here
4471 */
4472 zone_movable_pfn[nid] = end_pfn;
4473 continue;
4474 }
4475 start_pfn = usable_startpfn;
4476 }
4477
4478 /*
4479 * The usable PFN range for ZONE_MOVABLE is from
4480 * start_pfn->end_pfn. Calculate size_pages as the
4481 * number of pages used as kernelcore
4482 */
4483 size_pages = end_pfn - start_pfn;
4484 if (size_pages > kernelcore_remaining)
4485 size_pages = kernelcore_remaining;
4486 zone_movable_pfn[nid] = start_pfn + size_pages;
4487
4488 /*
4489 * Some kernelcore has been met, update counts and
4490 * break if the kernelcore for this node has been
4491 * satisified
4492 */
4493 required_kernelcore -= min(required_kernelcore,
4494 size_pages);
4495 kernelcore_remaining -= size_pages;
4496 if (!kernelcore_remaining)
4497 break;
4498 }
4499 }
4500
4501 /*
4502 * If there is still required_kernelcore, we do another pass with one
4503 * less node in the count. This will push zone_movable_pfn[nid] further
4504 * along on the nodes that still have memory until kernelcore is
4505 * satisified
4506 */
4507 usable_nodes--;
4508 if (usable_nodes && required_kernelcore > usable_nodes)
4509 goto restart;
4510
4511 /* Align start of ZONE_MOVABLE on all nids to MAX_ORDER_NR_PAGES */
4512 for (nid = 0; nid < MAX_NUMNODES; nid++)
4513 zone_movable_pfn[nid] =
4514 roundup(zone_movable_pfn[nid], MAX_ORDER_NR_PAGES);
66918dcd
YL
4515
4516out:
4517 /* restore the node_state */
4518 node_states[N_HIGH_MEMORY] = saved_node_state;
2a1e274a
MG
4519}
4520
37b07e41
LS
4521/* Any regular memory on that node ? */
4522static void check_for_regular_memory(pg_data_t *pgdat)
4523{
4524#ifdef CONFIG_HIGHMEM
4525 enum zone_type zone_type;
4526
4527 for (zone_type = 0; zone_type <= ZONE_NORMAL; zone_type++) {
4528 struct zone *zone = &pgdat->node_zones[zone_type];
4529 if (zone->present_pages)
4530 node_set_state(zone_to_nid(zone), N_NORMAL_MEMORY);
4531 }
4532#endif
4533}
4534
c713216d
MG
4535/**
4536 * free_area_init_nodes - Initialise all pg_data_t and zone data
88ca3b94 4537 * @max_zone_pfn: an array of max PFNs for each zone
c713216d
MG
4538 *
4539 * This will call free_area_init_node() for each active node in the system.
4540 * Using the page ranges provided by add_active_range(), the size of each
4541 * zone in each node and their holes is calculated. If the maximum PFN
4542 * between two adjacent zones match, it is assumed that the zone is empty.
4543 * For example, if arch_max_dma_pfn == arch_max_dma32_pfn, it is assumed
4544 * that arch_max_dma32_pfn has no pages. It is also assumed that a zone
4545 * starts where the previous one ended. For example, ZONE_DMA32 starts
4546 * at arch_max_dma_pfn.
4547 */
4548void __init free_area_init_nodes(unsigned long *max_zone_pfn)
4549{
c13291a5
TH
4550 unsigned long start_pfn, end_pfn;
4551 int i, nid;
a6af2bc3 4552
c713216d
MG
4553 /* Record where the zone boundaries are */
4554 memset(arch_zone_lowest_possible_pfn, 0,
4555 sizeof(arch_zone_lowest_possible_pfn));
4556 memset(arch_zone_highest_possible_pfn, 0,
4557 sizeof(arch_zone_highest_possible_pfn));
4558 arch_zone_lowest_possible_pfn[0] = find_min_pfn_with_active_regions();
4559 arch_zone_highest_possible_pfn[0] = max_zone_pfn[0];
4560 for (i = 1; i < MAX_NR_ZONES; i++) {
2a1e274a
MG
4561 if (i == ZONE_MOVABLE)
4562 continue;
c713216d
MG
4563 arch_zone_lowest_possible_pfn[i] =
4564 arch_zone_highest_possible_pfn[i-1];
4565 arch_zone_highest_possible_pfn[i] =
4566 max(max_zone_pfn[i], arch_zone_lowest_possible_pfn[i]);
4567 }
2a1e274a
MG
4568 arch_zone_lowest_possible_pfn[ZONE_MOVABLE] = 0;
4569 arch_zone_highest_possible_pfn[ZONE_MOVABLE] = 0;
4570
4571 /* Find the PFNs that ZONE_MOVABLE begins at in each node */
4572 memset(zone_movable_pfn, 0, sizeof(zone_movable_pfn));
4573 find_zone_movable_pfns_for_nodes(zone_movable_pfn);
c713216d 4574
c713216d
MG
4575 /* Print out the zone ranges */
4576 printk("Zone PFN ranges:\n");
2a1e274a
MG
4577 for (i = 0; i < MAX_NR_ZONES; i++) {
4578 if (i == ZONE_MOVABLE)
4579 continue;
72f0ba02
DR
4580 printk(" %-8s ", zone_names[i]);
4581 if (arch_zone_lowest_possible_pfn[i] ==
4582 arch_zone_highest_possible_pfn[i])
4583 printk("empty\n");
4584 else
4585 printk("%0#10lx -> %0#10lx\n",
c713216d
MG
4586 arch_zone_lowest_possible_pfn[i],
4587 arch_zone_highest_possible_pfn[i]);
2a1e274a
MG
4588 }
4589
4590 /* Print out the PFNs ZONE_MOVABLE begins at in each node */
4591 printk("Movable zone start PFN for each node\n");
4592 for (i = 0; i < MAX_NUMNODES; i++) {
4593 if (zone_movable_pfn[i])
4594 printk(" Node %d: %lu\n", i, zone_movable_pfn[i]);
4595 }
c713216d
MG
4596
4597 /* Print out the early_node_map[] */
c13291a5
TH
4598 printk("Early memory PFN ranges\n");
4599 for_each_mem_pfn_range(i, MAX_NUMNODES, &start_pfn, &end_pfn, &nid)
4600 printk(" %3d: %0#10lx -> %0#10lx\n", nid, start_pfn, end_pfn);
c713216d
MG
4601
4602 /* Initialise every node */
708614e6 4603 mminit_verify_pageflags_layout();
8ef82866 4604 setup_nr_node_ids();
c713216d
MG
4605 for_each_online_node(nid) {
4606 pg_data_t *pgdat = NODE_DATA(nid);
9109fb7b 4607 free_area_init_node(nid, NULL,
c713216d 4608 find_min_pfn_for_node(nid), NULL);
37b07e41
LS
4609
4610 /* Any memory on that node */
4611 if (pgdat->node_present_pages)
4612 node_set_state(nid, N_HIGH_MEMORY);
4613 check_for_regular_memory(pgdat);
c713216d
MG
4614 }
4615}
2a1e274a 4616
7e63efef 4617static int __init cmdline_parse_core(char *p, unsigned long *core)
2a1e274a
MG
4618{
4619 unsigned long long coremem;
4620 if (!p)
4621 return -EINVAL;
4622
4623 coremem = memparse(p, &p);
7e63efef 4624 *core = coremem >> PAGE_SHIFT;
2a1e274a 4625
7e63efef 4626 /* Paranoid check that UL is enough for the coremem value */
2a1e274a
MG
4627 WARN_ON((coremem >> PAGE_SHIFT) > ULONG_MAX);
4628
4629 return 0;
4630}
ed7ed365 4631
7e63efef
MG
4632/*
4633 * kernelcore=size sets the amount of memory for use for allocations that
4634 * cannot be reclaimed or migrated.
4635 */
4636static int __init cmdline_parse_kernelcore(char *p)
4637{
4638 return cmdline_parse_core(p, &required_kernelcore);
4639}
4640
4641/*
4642 * movablecore=size sets the amount of memory for use for allocations that
4643 * can be reclaimed or migrated.
4644 */
4645static int __init cmdline_parse_movablecore(char *p)
4646{
4647 return cmdline_parse_core(p, &required_movablecore);
4648}
4649
ed7ed365 4650early_param("kernelcore", cmdline_parse_kernelcore);
7e63efef 4651early_param("movablecore", cmdline_parse_movablecore);
ed7ed365 4652
0ee332c1 4653#endif /* CONFIG_HAVE_MEMBLOCK_NODE_MAP */
c713216d 4654
0e0b864e 4655/**
88ca3b94
RD
4656 * set_dma_reserve - set the specified number of pages reserved in the first zone
4657 * @new_dma_reserve: The number of pages to mark reserved
0e0b864e
MG
4658 *
4659 * The per-cpu batchsize and zone watermarks are determined by present_pages.
4660 * In the DMA zone, a significant percentage may be consumed by kernel image
4661 * and other unfreeable allocations which can skew the watermarks badly. This
88ca3b94
RD
4662 * function may optionally be used to account for unfreeable pages in the
4663 * first zone (e.g., ZONE_DMA). The effect will be lower watermarks and
4664 * smaller per-cpu batchsize.
0e0b864e
MG
4665 */
4666void __init set_dma_reserve(unsigned long new_dma_reserve)
4667{
4668 dma_reserve = new_dma_reserve;
4669}
4670
1da177e4
LT
4671void __init free_area_init(unsigned long *zones_size)
4672{
9109fb7b 4673 free_area_init_node(0, zones_size,
1da177e4
LT
4674 __pa(PAGE_OFFSET) >> PAGE_SHIFT, NULL);
4675}
1da177e4 4676
1da177e4
LT
4677static int page_alloc_cpu_notify(struct notifier_block *self,
4678 unsigned long action, void *hcpu)
4679{
4680 int cpu = (unsigned long)hcpu;
1da177e4 4681
8bb78442 4682 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) {
9f8f2172
CL
4683 drain_pages(cpu);
4684
4685 /*
4686 * Spill the event counters of the dead processor
4687 * into the current processors event counters.
4688 * This artificially elevates the count of the current
4689 * processor.
4690 */
f8891e5e 4691 vm_events_fold_cpu(cpu);
9f8f2172
CL
4692
4693 /*
4694 * Zero the differential counters of the dead processor
4695 * so that the vm statistics are consistent.
4696 *
4697 * This is only okay since the processor is dead and cannot
4698 * race with what we are doing.
4699 */
2244b95a 4700 refresh_cpu_vm_stats(cpu);
1da177e4
LT
4701 }
4702 return NOTIFY_OK;
4703}
1da177e4
LT
4704
4705void __init page_alloc_init(void)
4706{
4707 hotcpu_notifier(page_alloc_cpu_notify, 0);
4708}
4709
cb45b0e9
HA
4710/*
4711 * calculate_totalreserve_pages - called when sysctl_lower_zone_reserve_ratio
4712 * or min_free_kbytes changes.
4713 */
4714static void calculate_totalreserve_pages(void)
4715{
4716 struct pglist_data *pgdat;
4717 unsigned long reserve_pages = 0;
2f6726e5 4718 enum zone_type i, j;
cb45b0e9
HA
4719
4720 for_each_online_pgdat(pgdat) {
4721 for (i = 0; i < MAX_NR_ZONES; i++) {
4722 struct zone *zone = pgdat->node_zones + i;
4723 unsigned long max = 0;
4724
4725 /* Find valid and maximum lowmem_reserve in the zone */
4726 for (j = i; j < MAX_NR_ZONES; j++) {
4727 if (zone->lowmem_reserve[j] > max)
4728 max = zone->lowmem_reserve[j];
4729 }
4730
41858966
MG
4731 /* we treat the high watermark as reserved pages. */
4732 max += high_wmark_pages(zone);
cb45b0e9
HA
4733
4734 if (max > zone->present_pages)
4735 max = zone->present_pages;
4736 reserve_pages += max;
4737 }
4738 }
4739 totalreserve_pages = reserve_pages;
4740}
4741
1da177e4
LT
4742/*
4743 * setup_per_zone_lowmem_reserve - called whenever
4744 * sysctl_lower_zone_reserve_ratio changes. Ensures that each zone
4745 * has a correct pages reserved value, so an adequate number of
4746 * pages are left in the zone after a successful __alloc_pages().
4747 */
4748static void setup_per_zone_lowmem_reserve(void)
4749{
4750 struct pglist_data *pgdat;
2f6726e5 4751 enum zone_type j, idx;
1da177e4 4752
ec936fc5 4753 for_each_online_pgdat(pgdat) {
1da177e4
LT
4754 for (j = 0; j < MAX_NR_ZONES; j++) {
4755 struct zone *zone = pgdat->node_zones + j;
4756 unsigned long present_pages = zone->present_pages;
4757
4758 zone->lowmem_reserve[j] = 0;
4759
2f6726e5
CL
4760 idx = j;
4761 while (idx) {
1da177e4
LT
4762 struct zone *lower_zone;
4763
2f6726e5
CL
4764 idx--;
4765
1da177e4
LT
4766 if (sysctl_lowmem_reserve_ratio[idx] < 1)
4767 sysctl_lowmem_reserve_ratio[idx] = 1;
4768
4769 lower_zone = pgdat->node_zones + idx;
4770 lower_zone->lowmem_reserve[j] = present_pages /
4771 sysctl_lowmem_reserve_ratio[idx];
4772 present_pages += lower_zone->present_pages;
4773 }
4774 }
4775 }
cb45b0e9
HA
4776
4777 /* update totalreserve_pages */
4778 calculate_totalreserve_pages();
1da177e4
LT
4779}
4780
88ca3b94 4781/**
bc75d33f 4782 * setup_per_zone_wmarks - called when min_free_kbytes changes
bce7394a 4783 * or when memory is hot-{added|removed}
88ca3b94 4784 *
bc75d33f
MK
4785 * Ensures that the watermark[min,low,high] values for each zone are set
4786 * correctly with respect to min_free_kbytes.
1da177e4 4787 */
bc75d33f 4788void setup_per_zone_wmarks(void)
1da177e4
LT
4789{
4790 unsigned long pages_min = min_free_kbytes >> (PAGE_SHIFT - 10);
4791 unsigned long lowmem_pages = 0;
4792 struct zone *zone;
4793 unsigned long flags;
4794
4795 /* Calculate total number of !ZONE_HIGHMEM pages */
4796 for_each_zone(zone) {
4797 if (!is_highmem(zone))
4798 lowmem_pages += zone->present_pages;
4799 }
4800
4801 for_each_zone(zone) {
ac924c60
AM
4802 u64 tmp;
4803
1125b4e3 4804 spin_lock_irqsave(&zone->lock, flags);
ac924c60
AM
4805 tmp = (u64)pages_min * zone->present_pages;
4806 do_div(tmp, lowmem_pages);
1da177e4
LT
4807 if (is_highmem(zone)) {
4808 /*
669ed175
NP
4809 * __GFP_HIGH and PF_MEMALLOC allocations usually don't
4810 * need highmem pages, so cap pages_min to a small
4811 * value here.
4812 *
41858966 4813 * The WMARK_HIGH-WMARK_LOW and (WMARK_LOW-WMARK_MIN)
669ed175
NP
4814 * deltas controls asynch page reclaim, and so should
4815 * not be capped for highmem.
1da177e4
LT
4816 */
4817 int min_pages;
4818
4819 min_pages = zone->present_pages / 1024;
4820 if (min_pages < SWAP_CLUSTER_MAX)
4821 min_pages = SWAP_CLUSTER_MAX;
4822 if (min_pages > 128)
4823 min_pages = 128;
41858966 4824 zone->watermark[WMARK_MIN] = min_pages;
1da177e4 4825 } else {
669ed175
NP
4826 /*
4827 * If it's a lowmem zone, reserve a number of pages
1da177e4
LT
4828 * proportionate to the zone's size.
4829 */
41858966 4830 zone->watermark[WMARK_MIN] = tmp;
1da177e4
LT
4831 }
4832
41858966
MG
4833 zone->watermark[WMARK_LOW] = min_wmark_pages(zone) + (tmp >> 2);
4834 zone->watermark[WMARK_HIGH] = min_wmark_pages(zone) + (tmp >> 1);
56fd56b8 4835 setup_zone_migrate_reserve(zone);
1125b4e3 4836 spin_unlock_irqrestore(&zone->lock, flags);
1da177e4 4837 }
cb45b0e9
HA
4838
4839 /* update totalreserve_pages */
4840 calculate_totalreserve_pages();
1da177e4
LT
4841}
4842
55a4462a 4843/*
556adecb
RR
4844 * The inactive anon list should be small enough that the VM never has to
4845 * do too much work, but large enough that each inactive page has a chance
4846 * to be referenced again before it is swapped out.
4847 *
4848 * The inactive_anon ratio is the target ratio of ACTIVE_ANON to
4849 * INACTIVE_ANON pages on this zone's LRU, maintained by the
4850 * pageout code. A zone->inactive_ratio of 3 means 3:1 or 25% of
4851 * the anonymous pages are kept on the inactive list.
4852 *
4853 * total target max
4854 * memory ratio inactive anon
4855 * -------------------------------------
4856 * 10MB 1 5MB
4857 * 100MB 1 50MB
4858 * 1GB 3 250MB
4859 * 10GB 10 0.9GB
4860 * 100GB 31 3GB
4861 * 1TB 101 10GB
4862 * 10TB 320 32GB
4863 */
1b79acc9 4864static void __meminit calculate_zone_inactive_ratio(struct zone *zone)
556adecb 4865{
96cb4df5 4866 unsigned int gb, ratio;
556adecb 4867
96cb4df5
MK
4868 /* Zone size in gigabytes */
4869 gb = zone->present_pages >> (30 - PAGE_SHIFT);
4870 if (gb)
556adecb 4871 ratio = int_sqrt(10 * gb);
96cb4df5
MK
4872 else
4873 ratio = 1;
556adecb 4874
96cb4df5
MK
4875 zone->inactive_ratio = ratio;
4876}
556adecb 4877
839a4fcc 4878static void __meminit setup_per_zone_inactive_ratio(void)
96cb4df5
MK
4879{
4880 struct zone *zone;
4881
4882 for_each_zone(zone)
4883 calculate_zone_inactive_ratio(zone);
556adecb
RR
4884}
4885
1da177e4
LT
4886/*
4887 * Initialise min_free_kbytes.
4888 *
4889 * For small machines we want it small (128k min). For large machines
4890 * we want it large (64MB max). But it is not linear, because network
4891 * bandwidth does not increase linearly with machine size. We use
4892 *
4893 * min_free_kbytes = 4 * sqrt(lowmem_kbytes), for better accuracy:
4894 * min_free_kbytes = sqrt(lowmem_kbytes * 16)
4895 *
4896 * which yields
4897 *
4898 * 16MB: 512k
4899 * 32MB: 724k
4900 * 64MB: 1024k
4901 * 128MB: 1448k
4902 * 256MB: 2048k
4903 * 512MB: 2896k
4904 * 1024MB: 4096k
4905 * 2048MB: 5792k
4906 * 4096MB: 8192k
4907 * 8192MB: 11584k
4908 * 16384MB: 16384k
4909 */
1b79acc9 4910int __meminit init_per_zone_wmark_min(void)
1da177e4
LT
4911{
4912 unsigned long lowmem_kbytes;
4913
4914 lowmem_kbytes = nr_free_buffer_pages() * (PAGE_SIZE >> 10);
4915
4916 min_free_kbytes = int_sqrt(lowmem_kbytes * 16);
4917 if (min_free_kbytes < 128)
4918 min_free_kbytes = 128;
4919 if (min_free_kbytes > 65536)
4920 min_free_kbytes = 65536;
bc75d33f 4921 setup_per_zone_wmarks();
a6cccdc3 4922 refresh_zone_stat_thresholds();
1da177e4 4923 setup_per_zone_lowmem_reserve();
556adecb 4924 setup_per_zone_inactive_ratio();
1da177e4
LT
4925 return 0;
4926}
bc75d33f 4927module_init(init_per_zone_wmark_min)
1da177e4
LT
4928
4929/*
4930 * min_free_kbytes_sysctl_handler - just a wrapper around proc_dointvec() so
4931 * that we can call two helper functions whenever min_free_kbytes
4932 * changes.
4933 */
4934int min_free_kbytes_sysctl_handler(ctl_table *table, int write,
8d65af78 4935 void __user *buffer, size_t *length, loff_t *ppos)
1da177e4 4936{
8d65af78 4937 proc_dointvec(table, write, buffer, length, ppos);
3b1d92c5 4938 if (write)
bc75d33f 4939 setup_per_zone_wmarks();
1da177e4
LT
4940 return 0;
4941}
4942
9614634f
CL
4943#ifdef CONFIG_NUMA
4944int sysctl_min_unmapped_ratio_sysctl_handler(ctl_table *table, int write,
8d65af78 4945 void __user *buffer, size_t *length, loff_t *ppos)
9614634f
CL
4946{
4947 struct zone *zone;
4948 int rc;
4949
8d65af78 4950 rc = proc_dointvec_minmax(table, write, buffer, length, ppos);
9614634f
CL
4951 if (rc)
4952 return rc;
4953
4954 for_each_zone(zone)
8417bba4 4955 zone->min_unmapped_pages = (zone->present_pages *
9614634f
CL
4956 sysctl_min_unmapped_ratio) / 100;
4957 return 0;
4958}
0ff38490
CL
4959
4960int sysctl_min_slab_ratio_sysctl_handler(ctl_table *table, int write,
8d65af78 4961 void __user *buffer, size_t *length, loff_t *ppos)
0ff38490
CL
4962{
4963 struct zone *zone;
4964 int rc;
4965
8d65af78 4966 rc = proc_dointvec_minmax(table, write, buffer, length, ppos);
0ff38490
CL
4967 if (rc)
4968 return rc;
4969
4970 for_each_zone(zone)
4971 zone->min_slab_pages = (zone->present_pages *
4972 sysctl_min_slab_ratio) / 100;
4973 return 0;
4974}
9614634f
CL
4975#endif
4976
1da177e4
LT
4977/*
4978 * lowmem_reserve_ratio_sysctl_handler - just a wrapper around
4979 * proc_dointvec() so that we can call setup_per_zone_lowmem_reserve()
4980 * whenever sysctl_lowmem_reserve_ratio changes.
4981 *
4982 * The reserve ratio obviously has absolutely no relation with the
41858966 4983 * minimum watermarks. The lowmem reserve ratio can only make sense
1da177e4
LT
4984 * if in function of the boot time zone sizes.
4985 */
4986int lowmem_reserve_ratio_sysctl_handler(ctl_table *table, int write,
8d65af78 4987 void __user *buffer, size_t *length, loff_t *ppos)
1da177e4 4988{
8d65af78 4989 proc_dointvec_minmax(table, write, buffer, length, ppos);
1da177e4
LT
4990 setup_per_zone_lowmem_reserve();
4991 return 0;
4992}
4993
8ad4b1fb
RS
4994/*
4995 * percpu_pagelist_fraction - changes the pcp->high for each zone on each
4996 * cpu. It is the fraction of total pages in each zone that a hot per cpu pagelist
4997 * can have before it gets flushed back to buddy allocator.
4998 */
4999
5000int percpu_pagelist_fraction_sysctl_handler(ctl_table *table, int write,
8d65af78 5001 void __user *buffer, size_t *length, loff_t *ppos)
8ad4b1fb
RS
5002{
5003 struct zone *zone;
5004 unsigned int cpu;
5005 int ret;
5006
8d65af78 5007 ret = proc_dointvec_minmax(table, write, buffer, length, ppos);
8ad4b1fb
RS
5008 if (!write || (ret == -EINVAL))
5009 return ret;
364df0eb 5010 for_each_populated_zone(zone) {
99dcc3e5 5011 for_each_possible_cpu(cpu) {
8ad4b1fb
RS
5012 unsigned long high;
5013 high = zone->present_pages / percpu_pagelist_fraction;
99dcc3e5
CL
5014 setup_pagelist_highmark(
5015 per_cpu_ptr(zone->pageset, cpu), high);
8ad4b1fb
RS
5016 }
5017 }
5018 return 0;
5019}
5020
f034b5d4 5021int hashdist = HASHDIST_DEFAULT;
1da177e4
LT
5022
5023#ifdef CONFIG_NUMA
5024static int __init set_hashdist(char *str)
5025{
5026 if (!str)
5027 return 0;
5028 hashdist = simple_strtoul(str, &str, 0);
5029 return 1;
5030}
5031__setup("hashdist=", set_hashdist);
5032#endif
5033
5034/*
5035 * allocate a large system hash table from bootmem
5036 * - it is assumed that the hash table must contain an exact power-of-2
5037 * quantity of entries
5038 * - limit is the number of hash buckets, not the total allocation size
5039 */
5040void *__init alloc_large_system_hash(const char *tablename,
5041 unsigned long bucketsize,
5042 unsigned long numentries,
5043 int scale,
5044 int flags,
5045 unsigned int *_hash_shift,
5046 unsigned int *_hash_mask,
5047 unsigned long limit)
5048{
5049 unsigned long long max = limit;
5050 unsigned long log2qty, size;
5051 void *table = NULL;
5052
5053 /* allow the kernel cmdline to have a say */
5054 if (!numentries) {
5055 /* round applicable memory size up to nearest megabyte */
04903664 5056 numentries = nr_kernel_pages;
1da177e4
LT
5057 numentries += (1UL << (20 - PAGE_SHIFT)) - 1;
5058 numentries >>= 20 - PAGE_SHIFT;
5059 numentries <<= 20 - PAGE_SHIFT;
5060
5061 /* limit to 1 bucket per 2^scale bytes of low memory */
5062 if (scale > PAGE_SHIFT)
5063 numentries >>= (scale - PAGE_SHIFT);
5064 else
5065 numentries <<= (PAGE_SHIFT - scale);
9ab37b8f
PM
5066
5067 /* Make sure we've got at least a 0-order allocation.. */
2c85f51d
JB
5068 if (unlikely(flags & HASH_SMALL)) {
5069 /* Makes no sense without HASH_EARLY */
5070 WARN_ON(!(flags & HASH_EARLY));
5071 if (!(numentries >> *_hash_shift)) {
5072 numentries = 1UL << *_hash_shift;
5073 BUG_ON(!numentries);
5074 }
5075 } else if (unlikely((numentries * bucketsize) < PAGE_SIZE))
9ab37b8f 5076 numentries = PAGE_SIZE / bucketsize;
1da177e4 5077 }
6e692ed3 5078 numentries = roundup_pow_of_two(numentries);
1da177e4
LT
5079
5080 /* limit allocation size to 1/16 total memory by default */
5081 if (max == 0) {
5082 max = ((unsigned long long)nr_all_pages << PAGE_SHIFT) >> 4;
5083 do_div(max, bucketsize);
5084 }
5085
5086 if (numentries > max)
5087 numentries = max;
5088
f0d1b0b3 5089 log2qty = ilog2(numentries);
1da177e4
LT
5090
5091 do {
5092 size = bucketsize << log2qty;
5093 if (flags & HASH_EARLY)
74768ed8 5094 table = alloc_bootmem_nopanic(size);
1da177e4
LT
5095 else if (hashdist)
5096 table = __vmalloc(size, GFP_ATOMIC, PAGE_KERNEL);
5097 else {
1037b83b
ED
5098 /*
5099 * If bucketsize is not a power-of-two, we may free
a1dd268c
MG
5100 * some pages at the end of hash table which
5101 * alloc_pages_exact() automatically does
1037b83b 5102 */
264ef8a9 5103 if (get_order(size) < MAX_ORDER) {
a1dd268c 5104 table = alloc_pages_exact(size, GFP_ATOMIC);
264ef8a9
CM
5105 kmemleak_alloc(table, size, 1, GFP_ATOMIC);
5106 }
1da177e4
LT
5107 }
5108 } while (!table && size > PAGE_SIZE && --log2qty);
5109
5110 if (!table)
5111 panic("Failed to allocate %s hash table\n", tablename);
5112
f241e660 5113 printk(KERN_INFO "%s hash table entries: %ld (order: %d, %lu bytes)\n",
1da177e4 5114 tablename,
f241e660 5115 (1UL << log2qty),
f0d1b0b3 5116 ilog2(size) - PAGE_SHIFT,
1da177e4
LT
5117 size);
5118
5119 if (_hash_shift)
5120 *_hash_shift = log2qty;
5121 if (_hash_mask)
5122 *_hash_mask = (1 << log2qty) - 1;
5123
5124 return table;
5125}
a117e66e 5126
835c134e
MG
5127/* Return a pointer to the bitmap storing bits affecting a block of pages */
5128static inline unsigned long *get_pageblock_bitmap(struct zone *zone,
5129 unsigned long pfn)
5130{
5131#ifdef CONFIG_SPARSEMEM
5132 return __pfn_to_section(pfn)->pageblock_flags;
5133#else
5134 return zone->pageblock_flags;
5135#endif /* CONFIG_SPARSEMEM */
5136}
5137
5138static inline int pfn_to_bitidx(struct zone *zone, unsigned long pfn)
5139{
5140#ifdef CONFIG_SPARSEMEM
5141 pfn &= (PAGES_PER_SECTION-1);
d9c23400 5142 return (pfn >> pageblock_order) * NR_PAGEBLOCK_BITS;
835c134e
MG
5143#else
5144 pfn = pfn - zone->zone_start_pfn;
d9c23400 5145 return (pfn >> pageblock_order) * NR_PAGEBLOCK_BITS;
835c134e
MG
5146#endif /* CONFIG_SPARSEMEM */
5147}
5148
5149/**
d9c23400 5150 * get_pageblock_flags_group - Return the requested group of flags for the pageblock_nr_pages block of pages
835c134e
MG
5151 * @page: The page within the block of interest
5152 * @start_bitidx: The first bit of interest to retrieve
5153 * @end_bitidx: The last bit of interest
5154 * returns pageblock_bits flags
5155 */
5156unsigned long get_pageblock_flags_group(struct page *page,
5157 int start_bitidx, int end_bitidx)
5158{
5159 struct zone *zone;
5160 unsigned long *bitmap;
5161 unsigned long pfn, bitidx;
5162 unsigned long flags = 0;
5163 unsigned long value = 1;
5164
5165 zone = page_zone(page);
5166 pfn = page_to_pfn(page);
5167 bitmap = get_pageblock_bitmap(zone, pfn);
5168 bitidx = pfn_to_bitidx(zone, pfn);
5169
5170 for (; start_bitidx <= end_bitidx; start_bitidx++, value <<= 1)
5171 if (test_bit(bitidx + start_bitidx, bitmap))
5172 flags |= value;
6220ec78 5173
835c134e
MG
5174 return flags;
5175}
5176
5177/**
d9c23400 5178 * set_pageblock_flags_group - Set the requested group of flags for a pageblock_nr_pages block of pages
835c134e
MG
5179 * @page: The page within the block of interest
5180 * @start_bitidx: The first bit of interest
5181 * @end_bitidx: The last bit of interest
5182 * @flags: The flags to set
5183 */
5184void set_pageblock_flags_group(struct page *page, unsigned long flags,
5185 int start_bitidx, int end_bitidx)
5186{
5187 struct zone *zone;
5188 unsigned long *bitmap;
5189 unsigned long pfn, bitidx;
5190 unsigned long value = 1;
5191
5192 zone = page_zone(page);
5193 pfn = page_to_pfn(page);
5194 bitmap = get_pageblock_bitmap(zone, pfn);
5195 bitidx = pfn_to_bitidx(zone, pfn);
86051ca5
KH
5196 VM_BUG_ON(pfn < zone->zone_start_pfn);
5197 VM_BUG_ON(pfn >= zone->zone_start_pfn + zone->spanned_pages);
835c134e
MG
5198
5199 for (; start_bitidx <= end_bitidx; start_bitidx++, value <<= 1)
5200 if (flags & value)
5201 __set_bit(bitidx + start_bitidx, bitmap);
5202 else
5203 __clear_bit(bitidx + start_bitidx, bitmap);
5204}
a5d76b54
KH
5205
5206/*
5207 * This is designed as sub function...plz see page_isolation.c also.
5208 * set/clear page block's type to be ISOLATE.
5209 * page allocater never alloc memory from ISOLATE block.
5210 */
5211
49ac8255
KH
5212static int
5213__count_immobile_pages(struct zone *zone, struct page *page, int count)
5214{
5215 unsigned long pfn, iter, found;
5216 /*
5217 * For avoiding noise data, lru_add_drain_all() should be called
5218 * If ZONE_MOVABLE, the zone never contains immobile pages
5219 */
5220 if (zone_idx(zone) == ZONE_MOVABLE)
5221 return true;
5222
5223 if (get_pageblock_migratetype(page) == MIGRATE_MOVABLE)
5224 return true;
5225
5226 pfn = page_to_pfn(page);
5227 for (found = 0, iter = 0; iter < pageblock_nr_pages; iter++) {
5228 unsigned long check = pfn + iter;
5229
29723fcc 5230 if (!pfn_valid_within(check))
49ac8255 5231 continue;
29723fcc 5232
49ac8255
KH
5233 page = pfn_to_page(check);
5234 if (!page_count(page)) {
5235 if (PageBuddy(page))
5236 iter += (1 << page_order(page)) - 1;
5237 continue;
5238 }
5239 if (!PageLRU(page))
5240 found++;
5241 /*
5242 * If there are RECLAIMABLE pages, we need to check it.
5243 * But now, memory offline itself doesn't call shrink_slab()
5244 * and it still to be fixed.
5245 */
5246 /*
5247 * If the page is not RAM, page_count()should be 0.
5248 * we don't need more check. This is an _used_ not-movable page.
5249 *
5250 * The problematic thing here is PG_reserved pages. PG_reserved
5251 * is set to both of a memory hole page and a _used_ kernel
5252 * page at boot.
5253 */
5254 if (found > count)
5255 return false;
5256 }
5257 return true;
5258}
5259
5260bool is_pageblock_removable_nolock(struct page *page)
5261{
5262 struct zone *zone = page_zone(page);
5263 return __count_immobile_pages(zone, page, 0);
5264}
5265
a5d76b54
KH
5266int set_migratetype_isolate(struct page *page)
5267{
5268 struct zone *zone;
49ac8255 5269 unsigned long flags, pfn;
925cc71e
RJ
5270 struct memory_isolate_notify arg;
5271 int notifier_ret;
a5d76b54
KH
5272 int ret = -EBUSY;
5273
5274 zone = page_zone(page);
925cc71e 5275
a5d76b54 5276 spin_lock_irqsave(&zone->lock, flags);
925cc71e
RJ
5277
5278 pfn = page_to_pfn(page);
5279 arg.start_pfn = pfn;
5280 arg.nr_pages = pageblock_nr_pages;
5281 arg.pages_found = 0;
5282
a5d76b54 5283 /*
925cc71e
RJ
5284 * It may be possible to isolate a pageblock even if the
5285 * migratetype is not MIGRATE_MOVABLE. The memory isolation
5286 * notifier chain is used by balloon drivers to return the
5287 * number of pages in a range that are held by the balloon
5288 * driver to shrink memory. If all the pages are accounted for
5289 * by balloons, are free, or on the LRU, isolation can continue.
5290 * Later, for example, when memory hotplug notifier runs, these
5291 * pages reported as "can be isolated" should be isolated(freed)
5292 * by the balloon driver through the memory notifier chain.
a5d76b54 5293 */
925cc71e
RJ
5294 notifier_ret = memory_isolate_notify(MEM_ISOLATE_COUNT, &arg);
5295 notifier_ret = notifier_to_errno(notifier_ret);
4b20477f 5296 if (notifier_ret)
a5d76b54 5297 goto out;
49ac8255
KH
5298 /*
5299 * FIXME: Now, memory hotplug doesn't call shrink_slab() by itself.
5300 * We just check MOVABLE pages.
5301 */
5302 if (__count_immobile_pages(zone, page, arg.pages_found))
925cc71e
RJ
5303 ret = 0;
5304
49ac8255
KH
5305 /*
5306 * immobile means "not-on-lru" paes. If immobile is larger than
5307 * removable-by-driver pages reported by notifier, we'll fail.
5308 */
5309
a5d76b54 5310out:
925cc71e
RJ
5311 if (!ret) {
5312 set_pageblock_migratetype(page, MIGRATE_ISOLATE);
5313 move_freepages_block(zone, page, MIGRATE_ISOLATE);
5314 }
5315
a5d76b54
KH
5316 spin_unlock_irqrestore(&zone->lock, flags);
5317 if (!ret)
9f8f2172 5318 drain_all_pages();
a5d76b54
KH
5319 return ret;
5320}
5321
5322void unset_migratetype_isolate(struct page *page)
5323{
5324 struct zone *zone;
5325 unsigned long flags;
5326 zone = page_zone(page);
5327 spin_lock_irqsave(&zone->lock, flags);
5328 if (get_pageblock_migratetype(page) != MIGRATE_ISOLATE)
5329 goto out;
5330 set_pageblock_migratetype(page, MIGRATE_MOVABLE);
5331 move_freepages_block(zone, page, MIGRATE_MOVABLE);
5332out:
5333 spin_unlock_irqrestore(&zone->lock, flags);
5334}
0c0e6195
KH
5335
5336#ifdef CONFIG_MEMORY_HOTREMOVE
5337/*
5338 * All pages in the range must be isolated before calling this.
5339 */
5340void
5341__offline_isolated_pages(unsigned long start_pfn, unsigned long end_pfn)
5342{
5343 struct page *page;
5344 struct zone *zone;
5345 int order, i;
5346 unsigned long pfn;
5347 unsigned long flags;
5348 /* find the first valid pfn */
5349 for (pfn = start_pfn; pfn < end_pfn; pfn++)
5350 if (pfn_valid(pfn))
5351 break;
5352 if (pfn == end_pfn)
5353 return;
5354 zone = page_zone(pfn_to_page(pfn));
5355 spin_lock_irqsave(&zone->lock, flags);
5356 pfn = start_pfn;
5357 while (pfn < end_pfn) {
5358 if (!pfn_valid(pfn)) {
5359 pfn++;
5360 continue;
5361 }
5362 page = pfn_to_page(pfn);
5363 BUG_ON(page_count(page));
5364 BUG_ON(!PageBuddy(page));
5365 order = page_order(page);
5366#ifdef CONFIG_DEBUG_VM
5367 printk(KERN_INFO "remove from free list %lx %d %lx\n",
5368 pfn, 1 << order, end_pfn);
5369#endif
5370 list_del(&page->lru);
5371 rmv_page_order(page);
5372 zone->free_area[order].nr_free--;
5373 __mod_zone_page_state(zone, NR_FREE_PAGES,
5374 - (1UL << order));
5375 for (i = 0; i < (1 << order); i++)
5376 SetPageReserved((page+i));
5377 pfn += (1 << order);
5378 }
5379 spin_unlock_irqrestore(&zone->lock, flags);
5380}
5381#endif
8d22ba1b
WF
5382
5383#ifdef CONFIG_MEMORY_FAILURE
5384bool is_free_buddy_page(struct page *page)
5385{
5386 struct zone *zone = page_zone(page);
5387 unsigned long pfn = page_to_pfn(page);
5388 unsigned long flags;
5389 int order;
5390
5391 spin_lock_irqsave(&zone->lock, flags);
5392 for (order = 0; order < MAX_ORDER; order++) {
5393 struct page *page_head = page - (pfn & ((1 << order) - 1));
5394
5395 if (PageBuddy(page_head) && page_order(page_head) >= order)
5396 break;
5397 }
5398 spin_unlock_irqrestore(&zone->lock, flags);
5399
5400 return order < MAX_ORDER;
5401}
5402#endif
718a3821
WF
5403
5404static struct trace_print_flags pageflag_names[] = {
5405 {1UL << PG_locked, "locked" },
5406 {1UL << PG_error, "error" },
5407 {1UL << PG_referenced, "referenced" },
5408 {1UL << PG_uptodate, "uptodate" },
5409 {1UL << PG_dirty, "dirty" },
5410 {1UL << PG_lru, "lru" },
5411 {1UL << PG_active, "active" },
5412 {1UL << PG_slab, "slab" },
5413 {1UL << PG_owner_priv_1, "owner_priv_1" },
5414 {1UL << PG_arch_1, "arch_1" },
5415 {1UL << PG_reserved, "reserved" },
5416 {1UL << PG_private, "private" },
5417 {1UL << PG_private_2, "private_2" },
5418 {1UL << PG_writeback, "writeback" },
5419#ifdef CONFIG_PAGEFLAGS_EXTENDED
5420 {1UL << PG_head, "head" },
5421 {1UL << PG_tail, "tail" },
5422#else
5423 {1UL << PG_compound, "compound" },
5424#endif
5425 {1UL << PG_swapcache, "swapcache" },
5426 {1UL << PG_mappedtodisk, "mappedtodisk" },
5427 {1UL << PG_reclaim, "reclaim" },
718a3821
WF
5428 {1UL << PG_swapbacked, "swapbacked" },
5429 {1UL << PG_unevictable, "unevictable" },
5430#ifdef CONFIG_MMU
5431 {1UL << PG_mlocked, "mlocked" },
5432#endif
5433#ifdef CONFIG_ARCH_USES_PG_UNCACHED
5434 {1UL << PG_uncached, "uncached" },
5435#endif
5436#ifdef CONFIG_MEMORY_FAILURE
5437 {1UL << PG_hwpoison, "hwpoison" },
5438#endif
5439 {-1UL, NULL },
5440};
5441
5442static void dump_page_flags(unsigned long flags)
5443{
5444 const char *delim = "";
5445 unsigned long mask;
5446 int i;
5447
5448 printk(KERN_ALERT "page flags: %#lx(", flags);
5449
5450 /* remove zone id */
5451 flags &= (1UL << NR_PAGEFLAGS) - 1;
5452
5453 for (i = 0; pageflag_names[i].name && flags; i++) {
5454
5455 mask = pageflag_names[i].mask;
5456 if ((flags & mask) != mask)
5457 continue;
5458
5459 flags &= ~mask;
5460 printk("%s%s", delim, pageflag_names[i].name);
5461 delim = "|";
5462 }
5463
5464 /* check for left over flags */
5465 if (flags)
5466 printk("%s%#lx", delim, flags);
5467
5468 printk(")\n");
5469}
5470
5471void dump_page(struct page *page)
5472{
5473 printk(KERN_ALERT
5474 "page:%p count:%d mapcount:%d mapping:%p index:%#lx\n",
4e9f64c4 5475 page, atomic_read(&page->_count), page_mapcount(page),
718a3821
WF
5476 page->mapping, page->index);
5477 dump_page_flags(page->flags);
f212ad7c 5478 mem_cgroup_print_bad_page(page);
718a3821 5479}
This page took 1.079992 seconds and 5 git commands to generate.