blob: 0b98f428b07b9684d67a847552cc946f6eb91a74 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
17#include <linux/config.h>
18#include <linux/stddef.h>
19#include <linux/mm.h>
20#include <linux/swap.h>
21#include <linux/interrupt.h>
22#include <linux/pagemap.h>
23#include <linux/bootmem.h>
24#include <linux/compiler.h>
Randy Dunlap9f158332005-09-13 01:25:16 -070025#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
27#include <linux/suspend.h>
28#include <linux/pagevec.h>
29#include <linux/blkdev.h>
30#include <linux/slab.h>
31#include <linux/notifier.h>
32#include <linux/topology.h>
33#include <linux/sysctl.h>
34#include <linux/cpu.h>
35#include <linux/cpuset.h>
Dave Hansenbdc8cb92005-10-29 18:16:53 -070036#include <linux/memory_hotplug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/nodemask.h>
38#include <linux/vmalloc.h>
Christoph Lameter4be38e32006-01-06 00:11:17 -080039#include <linux/mempolicy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include <asm/tlbflush.h>
42#include "internal.h"
43
44/*
45 * MCD - HACK: Find somewhere to initialize this EARLY, or make this
46 * initializer cleaner
47 */
Christoph Lameterc3d8c142005-09-06 15:16:33 -070048nodemask_t node_online_map __read_mostly = { { [0] = 1UL } };
Dean Nelson7223a932005-03-23 19:00:00 -070049EXPORT_SYMBOL(node_online_map);
Christoph Lameterc3d8c142005-09-06 15:16:33 -070050nodemask_t node_possible_map __read_mostly = NODE_MASK_ALL;
Dean Nelson7223a932005-03-23 19:00:00 -070051EXPORT_SYMBOL(node_possible_map);
Christoph Lameterc3d8c142005-09-06 15:16:33 -070052struct pglist_data *pgdat_list __read_mostly;
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -070053unsigned long totalram_pages __read_mostly;
54unsigned long totalhigh_pages __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055long nr_swap_pages;
56
David Howellsa226f6c2006-01-06 00:11:08 -080057static void fastcall free_hot_cold_page(struct page *page, int cold);
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/*
60 * results with 256, 32 in the lowmem_reserve sysctl:
61 * 1G machine -> (16M dma, 800M-16M normal, 1G-800M high)
62 * 1G machine -> (16M dma, 784M normal, 224M high)
63 * NORMAL allocation will leave 784M/256 of ram reserved in the ZONE_DMA
64 * HIGHMEM allocation will leave 224M/32 of ram reserved in ZONE_NORMAL
65 * HIGHMEM allocation will (224M+784M)/256 of ram reserved in ZONE_DMA
Andi Kleena2f1b422005-11-05 17:25:53 +010066 *
67 * TBD: should special case ZONE_DMA32 machines here - in those we normally
68 * don't need any ZONE_NORMAL reservation
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 */
Andi Kleena2f1b422005-11-05 17:25:53 +010070int sysctl_lowmem_reserve_ratio[MAX_NR_ZONES-1] = { 256, 256, 32 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72EXPORT_SYMBOL(totalram_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/*
75 * Used by page_zone() to look up the address of the struct zone whose
76 * id is encoded in the upper bits of page->flags
77 */
Christoph Lameterc3d8c142005-09-06 15:16:33 -070078struct zone *zone_table[1 << ZONETABLE_SHIFT] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079EXPORT_SYMBOL(zone_table);
80
Andi Kleena2f1b422005-11-05 17:25:53 +010081static char *zone_names[MAX_NR_ZONES] = { "DMA", "DMA32", "Normal", "HighMem" };
Linus Torvalds1da177e2005-04-16 15:20:36 -070082int min_free_kbytes = 1024;
83
84unsigned long __initdata nr_kernel_pages;
85unsigned long __initdata nr_all_pages;
86
Nick Piggin13e74442006-01-06 00:10:58 -080087#ifdef CONFIG_DEBUG_VM
Dave Hansenc6a57e12005-10-29 18:16:52 -070088static int page_outside_zone_boundaries(struct zone *zone, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Dave Hansenbdc8cb92005-10-29 18:16:53 -070090 int ret = 0;
91 unsigned seq;
92 unsigned long pfn = page_to_pfn(page);
Dave Hansenc6a57e12005-10-29 18:16:52 -070093
Dave Hansenbdc8cb92005-10-29 18:16:53 -070094 do {
95 seq = zone_span_seqbegin(zone);
96 if (pfn >= zone->zone_start_pfn + zone->spanned_pages)
97 ret = 1;
98 else if (pfn < zone->zone_start_pfn)
99 ret = 1;
100 } while (zone_span_seqretry(zone, seq));
101
102 return ret;
Dave Hansenc6a57e12005-10-29 18:16:52 -0700103}
104
105static int page_is_consistent(struct zone *zone, struct page *page)
106{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#ifdef CONFIG_HOLES_IN_ZONE
108 if (!pfn_valid(page_to_pfn(page)))
Dave Hansenc6a57e12005-10-29 18:16:52 -0700109 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#endif
111 if (zone != page_zone(page))
Dave Hansenc6a57e12005-10-29 18:16:52 -0700112 return 0;
113
114 return 1;
115}
116/*
117 * Temporary debugging check for pages not lying within a given zone.
118 */
119static int bad_range(struct zone *zone, struct page *page)
120{
121 if (page_outside_zone_boundaries(zone, page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return 1;
Dave Hansenc6a57e12005-10-29 18:16:52 -0700123 if (!page_is_consistent(zone, page))
124 return 1;
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return 0;
127}
128
Nick Piggin13e74442006-01-06 00:10:58 -0800129#else
130static inline int bad_range(struct zone *zone, struct page *page)
131{
132 return 0;
133}
134#endif
135
Nick Piggin224abf92006-01-06 00:11:11 -0800136static void bad_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Nick Piggin224abf92006-01-06 00:11:11 -0800138 printk(KERN_EMERG "Bad page state in process '%s'\n"
139 "page:%p flags:0x%0*lx mapping:%p mapcount:%d count:%d\n"
140 "Trying to fix it up, but a reboot is needed\n"
141 "Backtrace:\n",
142 current->comm, page, (int)(2*sizeof(unsigned long)),
143 (unsigned long)page->flags, page->mapping,
144 page_mapcount(page), page_count(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 dump_stack();
Hugh Dickins334795e2005-06-21 17:15:08 -0700146 page->flags &= ~(1 << PG_lru |
147 1 << PG_private |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 1 << PG_locked |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 1 << PG_active |
150 1 << PG_dirty |
Hugh Dickins334795e2005-06-21 17:15:08 -0700151 1 << PG_reclaim |
152 1 << PG_slab |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 1 << PG_swapcache |
Hugh Dickins689bceb2005-11-21 21:32:20 -0800154 1 << PG_writeback );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 set_page_count(page, 0);
156 reset_page_mapcount(page);
157 page->mapping = NULL;
Randy Dunlap9f158332005-09-13 01:25:16 -0700158 add_taint(TAINT_BAD_PAGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/*
162 * Higher-order pages are called "compound pages". They are structured thusly:
163 *
164 * The first PAGE_SIZE page is called the "head page".
165 *
166 * The remaining PAGE_SIZE pages are called "tail pages".
167 *
168 * All pages have PG_compound set. All pages have their ->private pointing at
169 * the head page (even the head page has this).
170 *
171 * The first tail page's ->mapping, if non-zero, holds the address of the
172 * compound page's put_page() function.
173 *
174 * The order of the allocation is stored in the first tail page's ->index
175 * This is only for debug at present. This usage means that zero-order pages
176 * may not be compound.
177 */
178static void prep_compound_page(struct page *page, unsigned long order)
179{
180 int i;
181 int nr_pages = 1 << order;
182
183 page[1].mapping = NULL;
184 page[1].index = order;
185 for (i = 0; i < nr_pages; i++) {
186 struct page *p = page + i;
187
188 SetPageCompound(p);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700189 set_page_private(p, (unsigned long)page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
191}
192
193static void destroy_compound_page(struct page *page, unsigned long order)
194{
195 int i;
196 int nr_pages = 1 << order;
197
Nick Piggin224abf92006-01-06 00:11:11 -0800198 if (unlikely(page[1].index != order))
199 bad_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 for (i = 0; i < nr_pages; i++) {
202 struct page *p = page + i;
203
Nick Piggin224abf92006-01-06 00:11:11 -0800204 if (unlikely(!PageCompound(p) |
205 (page_private(p) != (unsigned long)page)))
206 bad_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 ClearPageCompound(p);
208 }
209}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211/*
212 * function for dealing with page's order in buddy system.
213 * zone->lock is already acquired when we use these.
214 * So, we don't need atomic page->flags operations here.
215 */
216static inline unsigned long page_order(struct page *page) {
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700217 return page_private(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
220static inline void set_page_order(struct page *page, int order) {
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700221 set_page_private(page, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 __SetPagePrivate(page);
223}
224
225static inline void rmv_page_order(struct page *page)
226{
227 __ClearPagePrivate(page);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700228 set_page_private(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
231/*
232 * Locate the struct page for both the matching buddy in our
233 * pair (buddy1) and the combined O(n+1) page they form (page).
234 *
235 * 1) Any buddy B1 will have an order O twin B2 which satisfies
236 * the following equation:
237 * B2 = B1 ^ (1 << O)
238 * For example, if the starting buddy (buddy2) is #8 its order
239 * 1 buddy is #10:
240 * B2 = 8 ^ (1 << 1) = 8 ^ 2 = 10
241 *
242 * 2) Any buddy B will have an order O+1 parent P which
243 * satisfies the following equation:
244 * P = B & ~(1 << O)
245 *
246 * Assumption: *_mem_map is contigious at least up to MAX_ORDER
247 */
248static inline struct page *
249__page_find_buddy(struct page *page, unsigned long page_idx, unsigned int order)
250{
251 unsigned long buddy_idx = page_idx ^ (1 << order);
252
253 return page + (buddy_idx - page_idx);
254}
255
256static inline unsigned long
257__find_combined_index(unsigned long page_idx, unsigned int order)
258{
259 return (page_idx & ~(1 << order));
260}
261
262/*
263 * This function checks whether a page is free && is the buddy
264 * we can do coalesce a page and its buddy if
Nick Piggin13e74442006-01-06 00:10:58 -0800265 * (a) the buddy is not in a hole &&
266 * (b) the buddy is free &&
267 * (c) the buddy is on the buddy system &&
268 * (d) a page and its buddy have the same order.
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700269 * for recording page's order, we use page_private(page) and PG_private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 *
271 */
272static inline int page_is_buddy(struct page *page, int order)
273{
Nick Piggin13e74442006-01-06 00:10:58 -0800274#ifdef CONFIG_HOLES_IN_ZONE
275 if (!pfn_valid(page_to_pfn(page)))
276 return 0;
277#endif
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (PagePrivate(page) &&
280 (page_order(page) == order) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 page_count(page) == 0)
282 return 1;
283 return 0;
284}
285
286/*
287 * Freeing function for a buddy system allocator.
288 *
289 * The concept of a buddy system is to maintain direct-mapped table
290 * (containing bit values) for memory blocks of various "orders".
291 * The bottom level table contains the map for the smallest allocatable
292 * units of memory (here, pages), and each level above it describes
293 * pairs of units from the levels below, hence, "buddies".
294 * At a high level, all that happens here is marking the table entry
295 * at the bottom level available, and propagating the changes upward
296 * as necessary, plus some accounting needed to play nicely with other
297 * parts of the VM system.
298 * At each level, we keep a list of pages, which are heads of continuous
299 * free pages of length of (1 << order) and marked with PG_Private.Page's
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700300 * order is recorded in page_private(page) field.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 * So when we are allocating or freeing one, we can derive the state of the
302 * other. That is, if we allocate a small block, and both were
303 * free, the remainder of the region must be split into blocks.
304 * If a block is freed, and its buddy is also free, then this
305 * triggers coalescing into a block of larger size.
306 *
307 * -- wli
308 */
309
310static inline void __free_pages_bulk (struct page *page,
311 struct zone *zone, unsigned int order)
312{
313 unsigned long page_idx;
314 int order_size = 1 << order;
315
Nick Piggin224abf92006-01-06 00:11:11 -0800316 if (unlikely(PageCompound(page)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 destroy_compound_page(page, order);
318
319 page_idx = page_to_pfn(page) & ((1 << MAX_ORDER) - 1);
320
321 BUG_ON(page_idx & (order_size - 1));
322 BUG_ON(bad_range(zone, page));
323
324 zone->free_pages += order_size;
325 while (order < MAX_ORDER-1) {
326 unsigned long combined_idx;
327 struct free_area *area;
328 struct page *buddy;
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 buddy = __page_find_buddy(page, page_idx, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (!page_is_buddy(buddy, order))
332 break; /* Move the buddy up one level. */
Nick Piggin13e74442006-01-06 00:10:58 -0800333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 list_del(&buddy->lru);
335 area = zone->free_area + order;
336 area->nr_free--;
337 rmv_page_order(buddy);
Nick Piggin13e74442006-01-06 00:10:58 -0800338 combined_idx = __find_combined_index(page_idx, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 page = page + (combined_idx - page_idx);
340 page_idx = combined_idx;
341 order++;
342 }
343 set_page_order(page, order);
344 list_add(&page->lru, &zone->free_area[order].free_list);
345 zone->free_area[order].nr_free++;
346}
347
Nick Piggin224abf92006-01-06 00:11:11 -0800348static inline int free_pages_check(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Nick Piggin92be2e332006-01-06 00:10:57 -0800350 if (unlikely(page_mapcount(page) |
351 (page->mapping != NULL) |
352 (page_count(page) != 0) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 (page->flags & (
354 1 << PG_lru |
355 1 << PG_private |
356 1 << PG_locked |
357 1 << PG_active |
358 1 << PG_reclaim |
359 1 << PG_slab |
360 1 << PG_swapcache |
Nick Pigginb5810032005-10-29 18:16:12 -0700361 1 << PG_writeback |
Nick Piggin92be2e332006-01-06 00:10:57 -0800362 1 << PG_reserved ))))
Nick Piggin224abf92006-01-06 00:11:11 -0800363 bad_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (PageDirty(page))
Nick Piggin242e5462005-09-03 15:54:50 -0700365 __ClearPageDirty(page);
Hugh Dickins689bceb2005-11-21 21:32:20 -0800366 /*
367 * For now, we report if PG_reserved was found set, but do not
368 * clear it, and do not free the page. But we shall soon need
369 * to do more, for when the ZERO_PAGE count wraps negative.
370 */
371 return PageReserved(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
374/*
375 * Frees a list of pages.
376 * Assumes all pages on list are in same zone, and of same order.
Renaud Lienhart207f36e2005-09-10 00:26:59 -0700377 * count is the number of pages to free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 *
379 * If the zone was previously in an "all pages pinned" state then look to
380 * see if this freeing clears that state.
381 *
382 * And clear the zone's pages_scanned counter, to hold off the "all pages are
383 * pinned" detection logic.
384 */
385static int
386free_pages_bulk(struct zone *zone, int count,
387 struct list_head *list, unsigned int order)
388{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 struct page *page = NULL;
390 int ret = 0;
391
Nick Pigginc54ad302006-01-06 00:10:56 -0800392 spin_lock(&zone->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 zone->all_unreclaimable = 0;
394 zone->pages_scanned = 0;
395 while (!list_empty(list) && count--) {
396 page = list_entry(list->prev, struct page, lru);
397 /* have to delete it as __free_pages_bulk list manipulates */
398 list_del(&page->lru);
399 __free_pages_bulk(page, zone, order);
400 ret++;
401 }
Nick Pigginc54ad302006-01-06 00:10:56 -0800402 spin_unlock(&zone->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return ret;
404}
405
406void __free_pages_ok(struct page *page, unsigned int order)
407{
Nick Pigginc54ad302006-01-06 00:10:56 -0800408 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 LIST_HEAD(list);
410 int i;
Hugh Dickins689bceb2005-11-21 21:32:20 -0800411 int reserved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 arch_free_page(page, order);
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415#ifndef CONFIG_MMU
416 if (order > 0)
417 for (i = 1 ; i < (1 << order) ; ++i)
418 __put_page(page + i);
419#endif
420
421 for (i = 0 ; i < (1 << order) ; ++i)
Nick Piggin224abf92006-01-06 00:11:11 -0800422 reserved += free_pages_check(page + i);
Hugh Dickins689bceb2005-11-21 21:32:20 -0800423 if (reserved)
424 return;
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 list_add(&page->lru, &list);
427 kernel_map_pages(page, 1<<order, 0);
Nick Pigginc54ad302006-01-06 00:10:56 -0800428 local_irq_save(flags);
Nick Piggina74609f2006-01-06 00:11:20 -0800429 __mod_page_state(pgfree, 1 << order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 free_pages_bulk(page_zone(page), 1, &list, order);
Nick Pigginc54ad302006-01-06 00:10:56 -0800431 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
David Howellsa226f6c2006-01-06 00:11:08 -0800434/*
435 * permit the bootmem allocator to evade page validation on high-order frees
436 */
437void fastcall __init __free_pages_bootmem(struct page *page, unsigned int order)
438{
439 if (order == 0) {
440 __ClearPageReserved(page);
441 set_page_count(page, 0);
442
443 free_hot_cold_page(page, 0);
444 } else {
445 LIST_HEAD(list);
446 int loop;
447
448 for (loop = 0; loop < BITS_PER_LONG; loop++) {
449 struct page *p = &page[loop];
450
451 if (loop + 16 < BITS_PER_LONG)
452 prefetchw(p + 16);
453 __ClearPageReserved(p);
454 set_page_count(p, 0);
455 }
456
457 arch_free_page(page, order);
458
459 mod_page_state(pgfree, 1 << order);
460
461 list_add(&page->lru, &list);
462 kernel_map_pages(page, 1 << order, 0);
463 free_pages_bulk(page_zone(page), 1, &list, order);
464 }
465}
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468/*
469 * The order of subdivision here is critical for the IO subsystem.
470 * Please do not alter this order without good reasons and regression
471 * testing. Specifically, as large blocks of memory are subdivided,
472 * the order in which smaller blocks are delivered depends on the order
473 * they're subdivided in this function. This is the primary factor
474 * influencing the order in which pages are delivered to the IO
475 * subsystem according to empirical testing, and this is also justified
476 * by considering the behavior of a buddy system containing a single
477 * large block of memory acted on by a series of small allocations.
478 * This behavior is a critical factor in sglist merging's success.
479 *
480 * -- wli
481 */
Nick Piggin085cc7d2006-01-06 00:11:01 -0800482static inline void expand(struct zone *zone, struct page *page,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 int low, int high, struct free_area *area)
484{
485 unsigned long size = 1 << high;
486
487 while (high > low) {
488 area--;
489 high--;
490 size >>= 1;
491 BUG_ON(bad_range(zone, &page[size]));
492 list_add(&page[size].lru, &area->free_list);
493 area->nr_free++;
494 set_page_order(&page[size], high);
495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498/*
499 * This page is about to be returned from the page allocator
500 */
Hugh Dickins689bceb2005-11-21 21:32:20 -0800501static int prep_new_page(struct page *page, int order)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Nick Piggin92be2e332006-01-06 00:10:57 -0800503 if (unlikely(page_mapcount(page) |
504 (page->mapping != NULL) |
505 (page_count(page) != 0) |
Hugh Dickins334795e2005-06-21 17:15:08 -0700506 (page->flags & (
507 1 << PG_lru |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 1 << PG_private |
509 1 << PG_locked |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 1 << PG_active |
511 1 << PG_dirty |
512 1 << PG_reclaim |
Hugh Dickins334795e2005-06-21 17:15:08 -0700513 1 << PG_slab |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 1 << PG_swapcache |
Nick Pigginb5810032005-10-29 18:16:12 -0700515 1 << PG_writeback |
Nick Piggin92be2e332006-01-06 00:10:57 -0800516 1 << PG_reserved ))))
Nick Piggin224abf92006-01-06 00:11:11 -0800517 bad_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Hugh Dickins689bceb2005-11-21 21:32:20 -0800519 /*
520 * For now, we report if PG_reserved was found set, but do not
521 * clear it, and do not allocate the page: as a safety net.
522 */
523 if (PageReserved(page))
524 return 1;
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 page->flags &= ~(1 << PG_uptodate | 1 << PG_error |
527 1 << PG_referenced | 1 << PG_arch_1 |
528 1 << PG_checked | 1 << PG_mappedtodisk);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700529 set_page_private(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 set_page_refs(page, order);
531 kernel_map_pages(page, 1 << order, 1);
Hugh Dickins689bceb2005-11-21 21:32:20 -0800532 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
535/*
536 * Do the hard work of removing an element from the buddy allocator.
537 * Call me with the zone->lock already held.
538 */
539static struct page *__rmqueue(struct zone *zone, unsigned int order)
540{
541 struct free_area * area;
542 unsigned int current_order;
543 struct page *page;
544
545 for (current_order = order; current_order < MAX_ORDER; ++current_order) {
546 area = zone->free_area + current_order;
547 if (list_empty(&area->free_list))
548 continue;
549
550 page = list_entry(area->free_list.next, struct page, lru);
551 list_del(&page->lru);
552 rmv_page_order(page);
553 area->nr_free--;
554 zone->free_pages -= 1UL << order;
Nick Piggin085cc7d2006-01-06 00:11:01 -0800555 expand(zone, page, order, current_order, area);
556 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558
559 return NULL;
560}
561
562/*
563 * Obtain a specified number of elements from the buddy allocator, all under
564 * a single hold of the lock, for efficiency. Add them to the supplied list.
565 * Returns the number of new pages which were placed at *list.
566 */
567static int rmqueue_bulk(struct zone *zone, unsigned int order,
568 unsigned long count, struct list_head *list)
569{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Nick Pigginc54ad302006-01-06 00:10:56 -0800572 spin_lock(&zone->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 for (i = 0; i < count; ++i) {
Nick Piggin085cc7d2006-01-06 00:11:01 -0800574 struct page *page = __rmqueue(zone, order);
575 if (unlikely(page == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 list_add_tail(&page->lru, list);
578 }
Nick Pigginc54ad302006-01-06 00:10:56 -0800579 spin_unlock(&zone->lock);
Nick Piggin085cc7d2006-01-06 00:11:01 -0800580 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Christoph Lameter4ae7c032005-06-21 17:14:57 -0700583#ifdef CONFIG_NUMA
584/* Called from the slab reaper to drain remote pagesets */
585void drain_remote_pages(void)
586{
587 struct zone *zone;
588 int i;
589 unsigned long flags;
590
591 local_irq_save(flags);
592 for_each_zone(zone) {
593 struct per_cpu_pageset *pset;
594
595 /* Do not drain local pagesets */
596 if (zone->zone_pgdat->node_id == numa_node_id())
597 continue;
598
599 pset = zone->pageset[smp_processor_id()];
600 for (i = 0; i < ARRAY_SIZE(pset->pcp); i++) {
601 struct per_cpu_pages *pcp;
602
603 pcp = &pset->pcp[i];
604 if (pcp->count)
605 pcp->count -= free_pages_bulk(zone, pcp->count,
606 &pcp->list, 0);
607 }
608 }
609 local_irq_restore(flags);
610}
611#endif
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613#if defined(CONFIG_PM) || defined(CONFIG_HOTPLUG_CPU)
614static void __drain_pages(unsigned int cpu)
615{
Nick Pigginc54ad302006-01-06 00:10:56 -0800616 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 struct zone *zone;
618 int i;
619
620 for_each_zone(zone) {
621 struct per_cpu_pageset *pset;
622
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700623 pset = zone_pcp(zone, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 for (i = 0; i < ARRAY_SIZE(pset->pcp); i++) {
625 struct per_cpu_pages *pcp;
626
627 pcp = &pset->pcp[i];
Nick Pigginc54ad302006-01-06 00:10:56 -0800628 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 pcp->count -= free_pages_bulk(zone, pcp->count,
630 &pcp->list, 0);
Nick Pigginc54ad302006-01-06 00:10:56 -0800631 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
633 }
634}
635#endif /* CONFIG_PM || CONFIG_HOTPLUG_CPU */
636
637#ifdef CONFIG_PM
638
639void mark_free_pages(struct zone *zone)
640{
641 unsigned long zone_pfn, flags;
642 int order;
643 struct list_head *curr;
644
645 if (!zone->spanned_pages)
646 return;
647
648 spin_lock_irqsave(&zone->lock, flags);
649 for (zone_pfn = 0; zone_pfn < zone->spanned_pages; ++zone_pfn)
650 ClearPageNosaveFree(pfn_to_page(zone_pfn + zone->zone_start_pfn));
651
652 for (order = MAX_ORDER - 1; order >= 0; --order)
653 list_for_each(curr, &zone->free_area[order].free_list) {
654 unsigned long start_pfn, i;
655
656 start_pfn = page_to_pfn(list_entry(curr, struct page, lru));
657
658 for (i=0; i < (1<<order); i++)
659 SetPageNosaveFree(pfn_to_page(start_pfn+i));
660 }
661 spin_unlock_irqrestore(&zone->lock, flags);
662}
663
664/*
665 * Spill all of this CPU's per-cpu pages back into the buddy allocator.
666 */
667void drain_local_pages(void)
668{
669 unsigned long flags;
670
671 local_irq_save(flags);
672 __drain_pages(smp_processor_id());
673 local_irq_restore(flags);
674}
675#endif /* CONFIG_PM */
676
Nick Piggina74609f2006-01-06 00:11:20 -0800677static void zone_statistics(struct zonelist *zonelist, struct zone *z, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
679#ifdef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 pg_data_t *pg = z->zone_pgdat;
681 pg_data_t *orig = zonelist->zones[0]->zone_pgdat;
682 struct per_cpu_pageset *p;
683
Nick Piggina74609f2006-01-06 00:11:20 -0800684 p = zone_pcp(z, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (pg == orig) {
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700686 p->numa_hit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 } else {
688 p->numa_miss++;
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700689 zone_pcp(zonelist->zones[0], cpu)->numa_foreign++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
691 if (pg == NODE_DATA(numa_node_id()))
692 p->local_node++;
693 else
694 p->other_node++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695#endif
696}
697
698/*
699 * Free a 0-order page
700 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701static void fastcall free_hot_cold_page(struct page *page, int cold)
702{
703 struct zone *zone = page_zone(page);
704 struct per_cpu_pages *pcp;
705 unsigned long flags;
706
707 arch_free_page(page, 0);
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (PageAnon(page))
710 page->mapping = NULL;
Nick Piggin224abf92006-01-06 00:11:11 -0800711 if (free_pages_check(page))
Hugh Dickins689bceb2005-11-21 21:32:20 -0800712 return;
713
Hugh Dickins689bceb2005-11-21 21:32:20 -0800714 kernel_map_pages(page, 1, 0);
715
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700716 pcp = &zone_pcp(zone, get_cpu())->pcp[cold];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 local_irq_save(flags);
Nick Piggina74609f2006-01-06 00:11:20 -0800718 __inc_page_state(pgfree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 list_add(&page->lru, &pcp->list);
720 pcp->count++;
Christoph Lameter2caaad42005-06-21 17:15:00 -0700721 if (pcp->count >= pcp->high)
722 pcp->count -= free_pages_bulk(zone, pcp->batch, &pcp->list, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 local_irq_restore(flags);
724 put_cpu();
725}
726
727void fastcall free_hot_page(struct page *page)
728{
729 free_hot_cold_page(page, 0);
730}
731
732void fastcall free_cold_page(struct page *page)
733{
734 free_hot_cold_page(page, 1);
735}
736
Al Virodd0fc662005-10-07 07:46:04 +0100737static inline void prep_zero_page(struct page *page, int order, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
739 int i;
740
741 BUG_ON((gfp_flags & (__GFP_WAIT | __GFP_HIGHMEM)) == __GFP_HIGHMEM);
742 for(i = 0; i < (1 << order); i++)
743 clear_highpage(page + i);
744}
745
746/*
747 * Really, prep_compound_page() should be called from __rmqueue_bulk(). But
748 * we cheat by calling it from here, in the order > 0 path. Saves a branch
749 * or two.
750 */
Nick Piggina74609f2006-01-06 00:11:20 -0800751static struct page *buffered_rmqueue(struct zonelist *zonelist,
752 struct zone *zone, int order, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
754 unsigned long flags;
Hugh Dickins689bceb2005-11-21 21:32:20 -0800755 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 int cold = !!(gfp_flags & __GFP_COLD);
Nick Piggina74609f2006-01-06 00:11:20 -0800757 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Hugh Dickins689bceb2005-11-21 21:32:20 -0800759again:
Nick Piggina74609f2006-01-06 00:11:20 -0800760 cpu = get_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (order == 0) {
762 struct per_cpu_pages *pcp;
763
Nick Piggina74609f2006-01-06 00:11:20 -0800764 pcp = &zone_pcp(zone, cpu)->pcp[cold];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 local_irq_save(flags);
Nick Piggina74609f2006-01-06 00:11:20 -0800766 if (!pcp->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 pcp->count += rmqueue_bulk(zone, 0,
768 pcp->batch, &pcp->list);
Nick Piggina74609f2006-01-06 00:11:20 -0800769 if (unlikely(!pcp->count))
770 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
Nick Piggina74609f2006-01-06 00:11:20 -0800772 page = list_entry(pcp->list.next, struct page, lru);
773 list_del(&page->lru);
774 pcp->count--;
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800775 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 spin_lock_irqsave(&zone->lock, flags);
777 page = __rmqueue(zone, order);
Nick Piggina74609f2006-01-06 00:11:20 -0800778 spin_unlock(&zone->lock);
779 if (!page)
780 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
782
Nick Piggina74609f2006-01-06 00:11:20 -0800783 __mod_page_state_zone(zone, pgalloc, 1 << order);
784 zone_statistics(zonelist, zone, cpu);
785 local_irq_restore(flags);
786 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Nick Piggina74609f2006-01-06 00:11:20 -0800788 BUG_ON(bad_range(zone, page));
789 if (prep_new_page(page, order))
790 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Nick Piggina74609f2006-01-06 00:11:20 -0800792 if (gfp_flags & __GFP_ZERO)
793 prep_zero_page(page, order, gfp_flags);
794
795 if (order && (gfp_flags & __GFP_COMP))
796 prep_compound_page(page, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return page;
Nick Piggina74609f2006-01-06 00:11:20 -0800798
799failed:
800 local_irq_restore(flags);
801 put_cpu();
802 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800805#define ALLOC_NO_WATERMARKS 0x01 /* don't check watermarks at all */
Nick Piggin31488902005-11-28 13:44:03 -0800806#define ALLOC_WMARK_MIN 0x02 /* use pages_min watermark */
807#define ALLOC_WMARK_LOW 0x04 /* use pages_low watermark */
808#define ALLOC_WMARK_HIGH 0x08 /* use pages_high watermark */
809#define ALLOC_HARDER 0x10 /* try to alloc harder */
810#define ALLOC_HIGH 0x20 /* __GFP_HIGH set */
811#define ALLOC_CPUSET 0x40 /* check for correct cpuset */
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813/*
814 * Return 1 if free pages are above 'mark'. This takes into account the order
815 * of the allocation.
816 */
817int zone_watermark_ok(struct zone *z, int order, unsigned long mark,
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800818 int classzone_idx, int alloc_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
820 /* free_pages my go negative - that's OK */
821 long min = mark, free_pages = z->free_pages - (1 << order) + 1;
822 int o;
823
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800824 if (alloc_flags & ALLOC_HIGH)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 min -= min / 2;
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800826 if (alloc_flags & ALLOC_HARDER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 min -= min / 4;
828
829 if (free_pages <= min + z->lowmem_reserve[classzone_idx])
830 return 0;
831 for (o = 0; o < order; o++) {
832 /* At the next order, this order's pages become unavailable */
833 free_pages -= z->free_area[o].nr_free << o;
834
835 /* Require fewer higher order pages to be free */
836 min >>= 1;
837
838 if (free_pages <= min)
839 return 0;
840 }
841 return 1;
842}
843
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800844/*
845 * get_page_from_freeliest goes through the zonelist trying to allocate
846 * a page.
847 */
848static struct page *
849get_page_from_freelist(gfp_t gfp_mask, unsigned int order,
850 struct zonelist *zonelist, int alloc_flags)
Martin Hicks753ee722005-06-21 17:14:41 -0700851{
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800852 struct zone **z = zonelist->zones;
853 struct page *page = NULL;
854 int classzone_idx = zone_idx(*z);
855
856 /*
857 * Go through the zonelist once, looking for a zone with enough free.
858 * See also cpuset_zone_allowed() comment in kernel/cpuset.c.
859 */
860 do {
861 if ((alloc_flags & ALLOC_CPUSET) &&
862 !cpuset_zone_allowed(*z, gfp_mask))
863 continue;
864
865 if (!(alloc_flags & ALLOC_NO_WATERMARKS)) {
Nick Piggin31488902005-11-28 13:44:03 -0800866 unsigned long mark;
867 if (alloc_flags & ALLOC_WMARK_MIN)
868 mark = (*z)->pages_min;
869 else if (alloc_flags & ALLOC_WMARK_LOW)
870 mark = (*z)->pages_low;
871 else
872 mark = (*z)->pages_high;
873 if (!zone_watermark_ok(*z, order, mark,
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800874 classzone_idx, alloc_flags))
875 continue;
876 }
877
Nick Piggina74609f2006-01-06 00:11:20 -0800878 page = buffered_rmqueue(zonelist, *z, order, gfp_mask);
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800879 if (page) {
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800880 break;
881 }
882 } while (*(++z) != NULL);
883 return page;
Martin Hicks753ee722005-06-21 17:14:41 -0700884}
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886/*
887 * This is the 'heart' of the zoned buddy allocator.
888 */
889struct page * fastcall
Al Virodd0fc662005-10-07 07:46:04 +0100890__alloc_pages(gfp_t gfp_mask, unsigned int order,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 struct zonelist *zonelist)
892{
Al Viro260b2362005-10-21 03:22:44 -0400893 const gfp_t wait = gfp_mask & __GFP_WAIT;
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800894 struct zone **z;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 struct page *page;
896 struct reclaim_state reclaim_state;
897 struct task_struct *p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 int do_retry;
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800899 int alloc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 int did_some_progress;
901
902 might_sleep_if(wait);
903
Jens Axboe6b1de912005-11-17 21:35:02 +0100904restart:
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800905 z = zonelist->zones; /* the list of zones suitable for gfp_mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800907 if (unlikely(*z == NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 /* Should this ever happen?? */
909 return NULL;
910 }
Jens Axboe6b1de912005-11-17 21:35:02 +0100911
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800912 page = get_page_from_freelist(gfp_mask|__GFP_HARDWALL, order,
Nick Piggin31488902005-11-28 13:44:03 -0800913 zonelist, ALLOC_WMARK_LOW|ALLOC_CPUSET);
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800914 if (page)
915 goto got_pg;
916
Jens Axboe6b1de912005-11-17 21:35:02 +0100917 do {
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800918 wakeup_kswapd(*z, order);
Jens Axboe6b1de912005-11-17 21:35:02 +0100919 } while (*(++z));
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800920
Paul Jackson9bf22292005-09-06 15:18:12 -0700921 /*
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800922 * OK, we're below the kswapd watermark and have kicked background
923 * reclaim. Now things get more complex, so set up alloc_flags according
924 * to how we want to proceed.
925 *
926 * The caller may dip into page reserves a bit more if the caller
927 * cannot run direct reclaim, or if the caller has realtime scheduling
928 * policy.
Paul Jackson9bf22292005-09-06 15:18:12 -0700929 */
Nick Piggin31488902005-11-28 13:44:03 -0800930 alloc_flags = ALLOC_WMARK_MIN;
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800931 if ((unlikely(rt_task(p)) && !in_interrupt()) || !wait)
932 alloc_flags |= ALLOC_HARDER;
933 if (gfp_mask & __GFP_HIGH)
934 alloc_flags |= ALLOC_HIGH;
Paul Jackson47f3a862006-01-06 00:10:32 -0800935 alloc_flags |= ALLOC_CPUSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 /*
938 * Go through the zonelist again. Let __GFP_HIGH and allocations
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800939 * coming from realtime tasks go deeper into reserves.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 *
941 * This is the last chance, in general, before the goto nopage.
942 * Ignore cpuset if GFP_ATOMIC (!wait) rather than fail alloc.
Paul Jackson9bf22292005-09-06 15:18:12 -0700943 * See also cpuset_zone_allowed() comment in kernel/cpuset.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 */
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800945 page = get_page_from_freelist(gfp_mask, order, zonelist, alloc_flags);
946 if (page)
947 goto got_pg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 /* This allocation should allow future memory freeing. */
Nick Pigginb84a35b2005-05-01 08:58:36 -0700950
951 if (((p->flags & PF_MEMALLOC) || unlikely(test_thread_flag(TIF_MEMDIE)))
952 && !in_interrupt()) {
953 if (!(gfp_mask & __GFP_NOMEMALLOC)) {
Kirill Korotaev885036d2005-11-13 16:06:41 -0800954nofail_alloc:
Nick Pigginb84a35b2005-05-01 08:58:36 -0700955 /* go through the zonelist yet again, ignoring mins */
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800956 page = get_page_from_freelist(gfp_mask, order,
Paul Jackson47f3a862006-01-06 00:10:32 -0800957 zonelist, ALLOC_NO_WATERMARKS);
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800958 if (page)
959 goto got_pg;
Kirill Korotaev885036d2005-11-13 16:06:41 -0800960 if (gfp_mask & __GFP_NOFAIL) {
961 blk_congestion_wait(WRITE, HZ/50);
962 goto nofail_alloc;
963 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
965 goto nopage;
966 }
967
968 /* Atomic allocations - we can't balance anything */
969 if (!wait)
970 goto nopage;
971
972rebalance:
973 cond_resched();
974
975 /* We now go into synchronous reclaim */
976 p->flags |= PF_MEMALLOC;
977 reclaim_state.reclaimed_slab = 0;
978 p->reclaim_state = &reclaim_state;
979
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800980 did_some_progress = try_to_free_pages(zonelist->zones, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 p->reclaim_state = NULL;
983 p->flags &= ~PF_MEMALLOC;
984
985 cond_resched();
986
987 if (likely(did_some_progress)) {
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800988 page = get_page_from_freelist(gfp_mask, order,
989 zonelist, alloc_flags);
990 if (page)
991 goto got_pg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 } else if ((gfp_mask & __GFP_FS) && !(gfp_mask & __GFP_NORETRY)) {
993 /*
994 * Go through the zonelist yet one more time, keep
995 * very high watermark here, this is only to catch
996 * a parallel oom killing, we must fail if we're still
997 * under heavy pressure.
998 */
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800999 page = get_page_from_freelist(gfp_mask|__GFP_HARDWALL, order,
Nick Piggin31488902005-11-28 13:44:03 -08001000 zonelist, ALLOC_WMARK_HIGH|ALLOC_CPUSET);
Rohit Seth7fb1d9f2005-11-13 16:06:43 -08001001 if (page)
1002 goto got_pg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Marcelo Tosatti79b9ce32005-07-07 17:56:04 -07001004 out_of_memory(gfp_mask, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 goto restart;
1006 }
1007
1008 /*
1009 * Don't let big-order allocations loop unless the caller explicitly
1010 * requests that. Wait for some write requests to complete then retry.
1011 *
1012 * In this implementation, __GFP_REPEAT means __GFP_NOFAIL for order
1013 * <= 3, but that may not be true in other implementations.
1014 */
1015 do_retry = 0;
1016 if (!(gfp_mask & __GFP_NORETRY)) {
1017 if ((order <= 3) || (gfp_mask & __GFP_REPEAT))
1018 do_retry = 1;
1019 if (gfp_mask & __GFP_NOFAIL)
1020 do_retry = 1;
1021 }
1022 if (do_retry) {
1023 blk_congestion_wait(WRITE, HZ/50);
1024 goto rebalance;
1025 }
1026
1027nopage:
1028 if (!(gfp_mask & __GFP_NOWARN) && printk_ratelimit()) {
1029 printk(KERN_WARNING "%s: page allocation failure."
1030 " order:%d, mode:0x%x\n",
1031 p->comm, order, gfp_mask);
1032 dump_stack();
Janet Morgan578c2fd2005-06-21 17:14:56 -07001033 show_mem();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035got_pg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return page;
1037}
1038
1039EXPORT_SYMBOL(__alloc_pages);
1040
1041/*
1042 * Common helper functions.
1043 */
Al Virodd0fc662005-10-07 07:46:04 +01001044fastcall unsigned long __get_free_pages(gfp_t gfp_mask, unsigned int order)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
1046 struct page * page;
1047 page = alloc_pages(gfp_mask, order);
1048 if (!page)
1049 return 0;
1050 return (unsigned long) page_address(page);
1051}
1052
1053EXPORT_SYMBOL(__get_free_pages);
1054
Al Virodd0fc662005-10-07 07:46:04 +01001055fastcall unsigned long get_zeroed_page(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
1057 struct page * page;
1058
1059 /*
1060 * get_zeroed_page() returns a 32-bit address, which cannot represent
1061 * a highmem page
1062 */
Al Viro260b2362005-10-21 03:22:44 -04001063 BUG_ON((gfp_mask & __GFP_HIGHMEM) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 page = alloc_pages(gfp_mask | __GFP_ZERO, 0);
1066 if (page)
1067 return (unsigned long) page_address(page);
1068 return 0;
1069}
1070
1071EXPORT_SYMBOL(get_zeroed_page);
1072
1073void __pagevec_free(struct pagevec *pvec)
1074{
1075 int i = pagevec_count(pvec);
1076
1077 while (--i >= 0)
1078 free_hot_cold_page(pvec->pages[i], pvec->cold);
1079}
1080
1081fastcall void __free_pages(struct page *page, unsigned int order)
1082{
Nick Pigginb5810032005-10-29 18:16:12 -07001083 if (put_page_testzero(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (order == 0)
1085 free_hot_page(page);
1086 else
1087 __free_pages_ok(page, order);
1088 }
1089}
1090
1091EXPORT_SYMBOL(__free_pages);
1092
1093fastcall void free_pages(unsigned long addr, unsigned int order)
1094{
1095 if (addr != 0) {
1096 BUG_ON(!virt_addr_valid((void *)addr));
1097 __free_pages(virt_to_page((void *)addr), order);
1098 }
1099}
1100
1101EXPORT_SYMBOL(free_pages);
1102
1103/*
1104 * Total amount of free (allocatable) RAM:
1105 */
1106unsigned int nr_free_pages(void)
1107{
1108 unsigned int sum = 0;
1109 struct zone *zone;
1110
1111 for_each_zone(zone)
1112 sum += zone->free_pages;
1113
1114 return sum;
1115}
1116
1117EXPORT_SYMBOL(nr_free_pages);
1118
1119#ifdef CONFIG_NUMA
1120unsigned int nr_free_pages_pgdat(pg_data_t *pgdat)
1121{
1122 unsigned int i, sum = 0;
1123
1124 for (i = 0; i < MAX_NR_ZONES; i++)
1125 sum += pgdat->node_zones[i].free_pages;
1126
1127 return sum;
1128}
1129#endif
1130
1131static unsigned int nr_free_zone_pages(int offset)
1132{
Martin J. Blighe310fd42005-07-29 22:59:18 -07001133 /* Just pick one node, since fallback list is circular */
1134 pg_data_t *pgdat = NODE_DATA(numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 unsigned int sum = 0;
1136
Martin J. Blighe310fd42005-07-29 22:59:18 -07001137 struct zonelist *zonelist = pgdat->node_zonelists + offset;
1138 struct zone **zonep = zonelist->zones;
1139 struct zone *zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Martin J. Blighe310fd42005-07-29 22:59:18 -07001141 for (zone = *zonep++; zone; zone = *zonep++) {
1142 unsigned long size = zone->present_pages;
1143 unsigned long high = zone->pages_high;
1144 if (size > high)
1145 sum += size - high;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
1147
1148 return sum;
1149}
1150
1151/*
1152 * Amount of free RAM allocatable within ZONE_DMA and ZONE_NORMAL
1153 */
1154unsigned int nr_free_buffer_pages(void)
1155{
Al Viroaf4ca452005-10-21 02:55:38 -04001156 return nr_free_zone_pages(gfp_zone(GFP_USER));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
1159/*
1160 * Amount of free RAM allocatable within all zones
1161 */
1162unsigned int nr_free_pagecache_pages(void)
1163{
Al Viroaf4ca452005-10-21 02:55:38 -04001164 return nr_free_zone_pages(gfp_zone(GFP_HIGHUSER));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165}
1166
1167#ifdef CONFIG_HIGHMEM
1168unsigned int nr_free_highpages (void)
1169{
1170 pg_data_t *pgdat;
1171 unsigned int pages = 0;
1172
1173 for_each_pgdat(pgdat)
1174 pages += pgdat->node_zones[ZONE_HIGHMEM].free_pages;
1175
1176 return pages;
1177}
1178#endif
1179
1180#ifdef CONFIG_NUMA
1181static void show_node(struct zone *zone)
1182{
1183 printk("Node %d ", zone->zone_pgdat->node_id);
1184}
1185#else
1186#define show_node(zone) do { } while (0)
1187#endif
1188
1189/*
1190 * Accumulate the page_state information across all CPUs.
1191 * The result is unavoidably approximate - it can change
1192 * during and after execution of this function.
1193 */
1194static DEFINE_PER_CPU(struct page_state, page_states) = {0};
1195
1196atomic_t nr_pagecache = ATOMIC_INIT(0);
1197EXPORT_SYMBOL(nr_pagecache);
1198#ifdef CONFIG_SMP
1199DEFINE_PER_CPU(long, nr_pagecache_local) = 0;
1200#endif
1201
Nick Piggina86b1f52006-01-06 00:11:00 -08001202static void __get_page_state(struct page_state *ret, int nr, cpumask_t *cpumask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
1204 int cpu = 0;
1205
1206 memset(ret, 0, sizeof(*ret));
Andrew Morton84c20082006-01-08 01:00:28 -08001207 cpus_and(*cpumask, *cpumask, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Martin Hicksc07e02d2005-09-03 15:55:11 -07001209 cpu = first_cpu(*cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 while (cpu < NR_CPUS) {
1211 unsigned long *in, *out, off;
1212
1213 in = (unsigned long *)&per_cpu(page_states, cpu);
1214
Martin Hicksc07e02d2005-09-03 15:55:11 -07001215 cpu = next_cpu(cpu, *cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 if (cpu < NR_CPUS)
1218 prefetch(&per_cpu(page_states, cpu));
1219
1220 out = (unsigned long *)ret;
1221 for (off = 0; off < nr; off++)
1222 *out++ += *in++;
1223 }
1224}
1225
Martin Hicksc07e02d2005-09-03 15:55:11 -07001226void get_page_state_node(struct page_state *ret, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
1228 int nr;
Martin Hicksc07e02d2005-09-03 15:55:11 -07001229 cpumask_t mask = node_to_cpumask(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 nr = offsetof(struct page_state, GET_PAGE_STATE_LAST);
1232 nr /= sizeof(unsigned long);
1233
Martin Hicksc07e02d2005-09-03 15:55:11 -07001234 __get_page_state(ret, nr+1, &mask);
1235}
1236
1237void get_page_state(struct page_state *ret)
1238{
1239 int nr;
1240 cpumask_t mask = CPU_MASK_ALL;
1241
1242 nr = offsetof(struct page_state, GET_PAGE_STATE_LAST);
1243 nr /= sizeof(unsigned long);
1244
1245 __get_page_state(ret, nr + 1, &mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246}
1247
1248void get_full_page_state(struct page_state *ret)
1249{
Martin Hicksc07e02d2005-09-03 15:55:11 -07001250 cpumask_t mask = CPU_MASK_ALL;
1251
1252 __get_page_state(ret, sizeof(*ret) / sizeof(unsigned long), &mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}
1254
Nick Piggina74609f2006-01-06 00:11:20 -08001255unsigned long read_page_state_offset(unsigned long offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256{
1257 unsigned long ret = 0;
1258 int cpu;
1259
Andrew Morton84c20082006-01-08 01:00:28 -08001260 for_each_online_cpu(cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 unsigned long in;
1262
1263 in = (unsigned long)&per_cpu(page_states, cpu) + offset;
1264 ret += *((unsigned long *)in);
1265 }
1266 return ret;
1267}
1268
Nick Piggina74609f2006-01-06 00:11:20 -08001269void __mod_page_state_offset(unsigned long offset, unsigned long delta)
1270{
1271 void *ptr;
1272
1273 ptr = &__get_cpu_var(page_states);
1274 *(unsigned long *)(ptr + offset) += delta;
1275}
1276EXPORT_SYMBOL(__mod_page_state_offset);
1277
1278void mod_page_state_offset(unsigned long offset, unsigned long delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
1280 unsigned long flags;
Nick Piggina74609f2006-01-06 00:11:20 -08001281 void *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 local_irq_save(flags);
1284 ptr = &__get_cpu_var(page_states);
Nick Piggina74609f2006-01-06 00:11:20 -08001285 *(unsigned long *)(ptr + offset) += delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 local_irq_restore(flags);
1287}
Nick Piggina74609f2006-01-06 00:11:20 -08001288EXPORT_SYMBOL(mod_page_state_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290void __get_zone_counts(unsigned long *active, unsigned long *inactive,
1291 unsigned long *free, struct pglist_data *pgdat)
1292{
1293 struct zone *zones = pgdat->node_zones;
1294 int i;
1295
1296 *active = 0;
1297 *inactive = 0;
1298 *free = 0;
1299 for (i = 0; i < MAX_NR_ZONES; i++) {
1300 *active += zones[i].nr_active;
1301 *inactive += zones[i].nr_inactive;
1302 *free += zones[i].free_pages;
1303 }
1304}
1305
1306void get_zone_counts(unsigned long *active,
1307 unsigned long *inactive, unsigned long *free)
1308{
1309 struct pglist_data *pgdat;
1310
1311 *active = 0;
1312 *inactive = 0;
1313 *free = 0;
1314 for_each_pgdat(pgdat) {
1315 unsigned long l, m, n;
1316 __get_zone_counts(&l, &m, &n, pgdat);
1317 *active += l;
1318 *inactive += m;
1319 *free += n;
1320 }
1321}
1322
1323void si_meminfo(struct sysinfo *val)
1324{
1325 val->totalram = totalram_pages;
1326 val->sharedram = 0;
1327 val->freeram = nr_free_pages();
1328 val->bufferram = nr_blockdev_pages();
1329#ifdef CONFIG_HIGHMEM
1330 val->totalhigh = totalhigh_pages;
1331 val->freehigh = nr_free_highpages();
1332#else
1333 val->totalhigh = 0;
1334 val->freehigh = 0;
1335#endif
1336 val->mem_unit = PAGE_SIZE;
1337}
1338
1339EXPORT_SYMBOL(si_meminfo);
1340
1341#ifdef CONFIG_NUMA
1342void si_meminfo_node(struct sysinfo *val, int nid)
1343{
1344 pg_data_t *pgdat = NODE_DATA(nid);
1345
1346 val->totalram = pgdat->node_present_pages;
1347 val->freeram = nr_free_pages_pgdat(pgdat);
1348 val->totalhigh = pgdat->node_zones[ZONE_HIGHMEM].present_pages;
1349 val->freehigh = pgdat->node_zones[ZONE_HIGHMEM].free_pages;
1350 val->mem_unit = PAGE_SIZE;
1351}
1352#endif
1353
1354#define K(x) ((x) << (PAGE_SHIFT-10))
1355
1356/*
1357 * Show free area list (used inside shift_scroll-lock stuff)
1358 * We also calculate the percentage fragmentation. We do this by counting the
1359 * memory on each free list with the exception of the first item on the list.
1360 */
1361void show_free_areas(void)
1362{
1363 struct page_state ps;
1364 int cpu, temperature;
1365 unsigned long active;
1366 unsigned long inactive;
1367 unsigned long free;
1368 struct zone *zone;
1369
1370 for_each_zone(zone) {
1371 show_node(zone);
1372 printk("%s per-cpu:", zone->name);
1373
Con Kolivasf3fe6512006-01-06 00:11:15 -08001374 if (!populated_zone(zone)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 printk(" empty\n");
1376 continue;
1377 } else
1378 printk("\n");
1379
Dave Jones6b482c62005-11-10 15:45:56 -05001380 for_each_online_cpu(cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 struct per_cpu_pageset *pageset;
1382
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001383 pageset = zone_pcp(zone, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 for (temperature = 0; temperature < 2; temperature++)
Nick Piggin2d92c5c2006-01-06 00:10:59 -08001386 printk("cpu %d %s: high %d, batch %d used:%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 cpu,
1388 temperature ? "cold" : "hot",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 pageset->pcp[temperature].high,
Christoph Lameter4ae7c032005-06-21 17:14:57 -07001390 pageset->pcp[temperature].batch,
1391 pageset->pcp[temperature].count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
1393 }
1394
1395 get_page_state(&ps);
1396 get_zone_counts(&active, &inactive, &free);
1397
Denis Vlasenkoc0d62212005-06-21 17:15:14 -07001398 printk("Free pages: %11ukB (%ukB HighMem)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 K(nr_free_pages()),
1400 K(nr_free_highpages()));
1401
1402 printk("Active:%lu inactive:%lu dirty:%lu writeback:%lu "
1403 "unstable:%lu free:%u slab:%lu mapped:%lu pagetables:%lu\n",
1404 active,
1405 inactive,
1406 ps.nr_dirty,
1407 ps.nr_writeback,
1408 ps.nr_unstable,
1409 nr_free_pages(),
1410 ps.nr_slab,
1411 ps.nr_mapped,
1412 ps.nr_page_table_pages);
1413
1414 for_each_zone(zone) {
1415 int i;
1416
1417 show_node(zone);
1418 printk("%s"
1419 " free:%lukB"
1420 " min:%lukB"
1421 " low:%lukB"
1422 " high:%lukB"
1423 " active:%lukB"
1424 " inactive:%lukB"
1425 " present:%lukB"
1426 " pages_scanned:%lu"
1427 " all_unreclaimable? %s"
1428 "\n",
1429 zone->name,
1430 K(zone->free_pages),
1431 K(zone->pages_min),
1432 K(zone->pages_low),
1433 K(zone->pages_high),
1434 K(zone->nr_active),
1435 K(zone->nr_inactive),
1436 K(zone->present_pages),
1437 zone->pages_scanned,
1438 (zone->all_unreclaimable ? "yes" : "no")
1439 );
1440 printk("lowmem_reserve[]:");
1441 for (i = 0; i < MAX_NR_ZONES; i++)
1442 printk(" %lu", zone->lowmem_reserve[i]);
1443 printk("\n");
1444 }
1445
1446 for_each_zone(zone) {
1447 unsigned long nr, flags, order, total = 0;
1448
1449 show_node(zone);
1450 printk("%s: ", zone->name);
Con Kolivasf3fe6512006-01-06 00:11:15 -08001451 if (!populated_zone(zone)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 printk("empty\n");
1453 continue;
1454 }
1455
1456 spin_lock_irqsave(&zone->lock, flags);
1457 for (order = 0; order < MAX_ORDER; order++) {
1458 nr = zone->free_area[order].nr_free;
1459 total += nr << order;
1460 printk("%lu*%lukB ", nr, K(1UL) << order);
1461 }
1462 spin_unlock_irqrestore(&zone->lock, flags);
1463 printk("= %lukB\n", K(total));
1464 }
1465
1466 show_swap_cache_info();
1467}
1468
1469/*
1470 * Builds allocation fallback zone lists.
Christoph Lameter1a932052006-01-06 00:11:16 -08001471 *
1472 * Add all populated zones of a node to the zonelist.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 */
Christoph Lameter1a932052006-01-06 00:11:16 -08001474static int __init build_zonelists_node(pg_data_t *pgdat,
Christoph Lameter070f8032006-01-06 00:11:19 -08001475 struct zonelist *zonelist, int nr_zones, int zone_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
Christoph Lameter1a932052006-01-06 00:11:16 -08001477 struct zone *zone;
1478
Christoph Lameter070f8032006-01-06 00:11:19 -08001479 BUG_ON(zone_type > ZONE_HIGHMEM);
Christoph Lameter02a68a52006-01-06 00:11:18 -08001480
1481 do {
Christoph Lameter070f8032006-01-06 00:11:19 -08001482 zone = pgdat->node_zones + zone_type;
Christoph Lameter1a932052006-01-06 00:11:16 -08001483 if (populated_zone(zone)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484#ifndef CONFIG_HIGHMEM
Christoph Lameter070f8032006-01-06 00:11:19 -08001485 BUG_ON(zone_type > ZONE_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486#endif
Christoph Lameter070f8032006-01-06 00:11:19 -08001487 zonelist->zones[nr_zones++] = zone;
1488 check_highest_zone(zone_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 }
Christoph Lameter070f8032006-01-06 00:11:19 -08001490 zone_type--;
Christoph Lameter02a68a52006-01-06 00:11:18 -08001491
Christoph Lameter070f8032006-01-06 00:11:19 -08001492 } while (zone_type >= 0);
1493 return nr_zones;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
Al Viro260b2362005-10-21 03:22:44 -04001496static inline int highest_zone(int zone_bits)
1497{
1498 int res = ZONE_NORMAL;
1499 if (zone_bits & (__force int)__GFP_HIGHMEM)
1500 res = ZONE_HIGHMEM;
Andi Kleena2f1b422005-11-05 17:25:53 +01001501 if (zone_bits & (__force int)__GFP_DMA32)
1502 res = ZONE_DMA32;
Al Viro260b2362005-10-21 03:22:44 -04001503 if (zone_bits & (__force int)__GFP_DMA)
1504 res = ZONE_DMA;
1505 return res;
1506}
1507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508#ifdef CONFIG_NUMA
1509#define MAX_NODE_LOAD (num_online_nodes())
1510static int __initdata node_load[MAX_NUMNODES];
1511/**
Pavel Pisa4dc3b162005-05-01 08:59:25 -07001512 * find_next_best_node - find the next node that should appear in a given node's fallback list
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 * @node: node whose fallback list we're appending
1514 * @used_node_mask: nodemask_t of already used nodes
1515 *
1516 * We use a number of factors to determine which is the next node that should
1517 * appear on a given node's fallback list. The node should not have appeared
1518 * already in @node's fallback list, and it should be the next closest node
1519 * according to the distance array (which contains arbitrary distance values
1520 * from each node to each node in the system), and should also prefer nodes
1521 * with no CPUs, since presumably they'll have very little allocation pressure
1522 * on them otherwise.
1523 * It returns -1 if no node is found.
1524 */
1525static int __init find_next_best_node(int node, nodemask_t *used_node_mask)
1526{
1527 int i, n, val;
1528 int min_val = INT_MAX;
1529 int best_node = -1;
1530
1531 for_each_online_node(i) {
1532 cpumask_t tmp;
1533
1534 /* Start from local node */
1535 n = (node+i) % num_online_nodes();
1536
1537 /* Don't want a node to appear more than once */
1538 if (node_isset(n, *used_node_mask))
1539 continue;
1540
1541 /* Use the local node if we haven't already */
1542 if (!node_isset(node, *used_node_mask)) {
1543 best_node = node;
1544 break;
1545 }
1546
1547 /* Use the distance array to find the distance */
1548 val = node_distance(node, n);
1549
1550 /* Give preference to headless and unused nodes */
1551 tmp = node_to_cpumask(n);
1552 if (!cpus_empty(tmp))
1553 val += PENALTY_FOR_NODE_WITH_CPUS;
1554
1555 /* Slight preference for less loaded node */
1556 val *= (MAX_NODE_LOAD*MAX_NUMNODES);
1557 val += node_load[n];
1558
1559 if (val < min_val) {
1560 min_val = val;
1561 best_node = n;
1562 }
1563 }
1564
1565 if (best_node >= 0)
1566 node_set(best_node, *used_node_mask);
1567
1568 return best_node;
1569}
1570
1571static void __init build_zonelists(pg_data_t *pgdat)
1572{
1573 int i, j, k, node, local_node;
1574 int prev_node, load;
1575 struct zonelist *zonelist;
1576 nodemask_t used_mask;
1577
1578 /* initialize zonelists */
1579 for (i = 0; i < GFP_ZONETYPES; i++) {
1580 zonelist = pgdat->node_zonelists + i;
1581 zonelist->zones[0] = NULL;
1582 }
1583
1584 /* NUMA-aware ordering of nodes */
1585 local_node = pgdat->node_id;
1586 load = num_online_nodes();
1587 prev_node = local_node;
1588 nodes_clear(used_mask);
1589 while ((node = find_next_best_node(local_node, &used_mask)) >= 0) {
1590 /*
1591 * We don't want to pressure a particular node.
1592 * So adding penalty to the first node in same
1593 * distance group to make it round-robin.
1594 */
1595 if (node_distance(local_node, node) !=
1596 node_distance(local_node, prev_node))
1597 node_load[node] += load;
1598 prev_node = node;
1599 load--;
1600 for (i = 0; i < GFP_ZONETYPES; i++) {
1601 zonelist = pgdat->node_zonelists + i;
1602 for (j = 0; zonelist->zones[j] != NULL; j++);
1603
Al Viro260b2362005-10-21 03:22:44 -04001604 k = highest_zone(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 j = build_zonelists_node(NODE_DATA(node), zonelist, j, k);
1607 zonelist->zones[j] = NULL;
1608 }
1609 }
1610}
1611
1612#else /* CONFIG_NUMA */
1613
1614static void __init build_zonelists(pg_data_t *pgdat)
1615{
1616 int i, j, k, node, local_node;
1617
1618 local_node = pgdat->node_id;
1619 for (i = 0; i < GFP_ZONETYPES; i++) {
1620 struct zonelist *zonelist;
1621
1622 zonelist = pgdat->node_zonelists + i;
1623
1624 j = 0;
Al Viro260b2362005-10-21 03:22:44 -04001625 k = highest_zone(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 j = build_zonelists_node(pgdat, zonelist, j, k);
1627 /*
1628 * Now we build the zonelist so that it contains the zones
1629 * of all the other nodes.
1630 * We don't want to pressure a particular node, so when
1631 * building the zones for node N, we make sure that the
1632 * zones coming right after the local ones are those from
1633 * node N+1 (modulo N)
1634 */
1635 for (node = local_node + 1; node < MAX_NUMNODES; node++) {
1636 if (!node_online(node))
1637 continue;
1638 j = build_zonelists_node(NODE_DATA(node), zonelist, j, k);
1639 }
1640 for (node = 0; node < local_node; node++) {
1641 if (!node_online(node))
1642 continue;
1643 j = build_zonelists_node(NODE_DATA(node), zonelist, j, k);
1644 }
1645
1646 zonelist->zones[j] = NULL;
1647 }
1648}
1649
1650#endif /* CONFIG_NUMA */
1651
1652void __init build_all_zonelists(void)
1653{
1654 int i;
1655
1656 for_each_online_node(i)
1657 build_zonelists(NODE_DATA(i));
1658 printk("Built %i zonelists\n", num_online_nodes());
1659 cpuset_init_current_mems_allowed();
1660}
1661
1662/*
1663 * Helper functions to size the waitqueue hash table.
1664 * Essentially these want to choose hash table sizes sufficiently
1665 * large so that collisions trying to wait on pages are rare.
1666 * But in fact, the number of active page waitqueues on typical
1667 * systems is ridiculously low, less than 200. So this is even
1668 * conservative, even though it seems large.
1669 *
1670 * The constant PAGES_PER_WAITQUEUE specifies the ratio of pages to
1671 * waitqueues, i.e. the size of the waitq table given the number of pages.
1672 */
1673#define PAGES_PER_WAITQUEUE 256
1674
1675static inline unsigned long wait_table_size(unsigned long pages)
1676{
1677 unsigned long size = 1;
1678
1679 pages /= PAGES_PER_WAITQUEUE;
1680
1681 while (size < pages)
1682 size <<= 1;
1683
1684 /*
1685 * Once we have dozens or even hundreds of threads sleeping
1686 * on IO we've got bigger problems than wait queue collision.
1687 * Limit the size of the wait table to a reasonable size.
1688 */
1689 size = min(size, 4096UL);
1690
1691 return max(size, 4UL);
1692}
1693
1694/*
1695 * This is an integer logarithm so that shifts can be used later
1696 * to extract the more random high bits from the multiplicative
1697 * hash function before the remainder is taken.
1698 */
1699static inline unsigned long wait_table_bits(unsigned long size)
1700{
1701 return ffz(~size);
1702}
1703
1704#define LONG_ALIGN(x) (((x)+(sizeof(long))-1)&~((sizeof(long))-1))
1705
1706static void __init calculate_zone_totalpages(struct pglist_data *pgdat,
1707 unsigned long *zones_size, unsigned long *zholes_size)
1708{
1709 unsigned long realtotalpages, totalpages = 0;
1710 int i;
1711
1712 for (i = 0; i < MAX_NR_ZONES; i++)
1713 totalpages += zones_size[i];
1714 pgdat->node_spanned_pages = totalpages;
1715
1716 realtotalpages = totalpages;
1717 if (zholes_size)
1718 for (i = 0; i < MAX_NR_ZONES; i++)
1719 realtotalpages -= zholes_size[i];
1720 pgdat->node_present_pages = realtotalpages;
1721 printk(KERN_DEBUG "On node %d totalpages: %lu\n", pgdat->node_id, realtotalpages);
1722}
1723
1724
1725/*
1726 * Initially all pages are reserved - free ones are freed
1727 * up by free_all_bootmem() once the early boot process is
1728 * done. Non-atomic initialization, single-pass.
1729 */
Dave Hansen3947be12005-10-29 18:16:54 -07001730void __devinit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 unsigned long start_pfn)
1732{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 struct page *page;
Andy Whitcroft29751f62005-06-23 00:08:00 -07001734 unsigned long end_pfn = start_pfn + size;
1735 unsigned long pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001737 for (pfn = start_pfn; pfn < end_pfn; pfn++, page++) {
1738 if (!early_pfn_valid(pfn))
1739 continue;
1740 page = pfn_to_page(pfn);
1741 set_page_links(page, zone, nid, pfn);
Nick Pigginb5810032005-10-29 18:16:12 -07001742 set_page_count(page, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 reset_page_mapcount(page);
1744 SetPageReserved(page);
1745 INIT_LIST_HEAD(&page->lru);
1746#ifdef WANT_PAGE_VIRTUAL
1747 /* The shift won't overflow because ZONE_NORMAL is below 4G. */
1748 if (!is_highmem_idx(zone))
Bob Picco3212c6b2005-06-27 14:36:28 -07001749 set_page_address(page, __va(pfn << PAGE_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 }
1752}
1753
1754void zone_init_free_lists(struct pglist_data *pgdat, struct zone *zone,
1755 unsigned long size)
1756{
1757 int order;
1758 for (order = 0; order < MAX_ORDER ; order++) {
1759 INIT_LIST_HEAD(&zone->free_area[order].free_list);
1760 zone->free_area[order].nr_free = 0;
1761 }
1762}
1763
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001764#define ZONETABLE_INDEX(x, zone_nr) ((x << ZONES_SHIFT) | zone_nr)
1765void zonetable_add(struct zone *zone, int nid, int zid, unsigned long pfn,
1766 unsigned long size)
1767{
1768 unsigned long snum = pfn_to_section_nr(pfn);
1769 unsigned long end = pfn_to_section_nr(pfn + size);
1770
1771 if (FLAGS_HAS_NODE)
1772 zone_table[ZONETABLE_INDEX(nid, zid)] = zone;
1773 else
1774 for (; snum <= end; snum++)
1775 zone_table[ZONETABLE_INDEX(snum, zid)] = zone;
1776}
1777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778#ifndef __HAVE_ARCH_MEMMAP_INIT
1779#define memmap_init(size, nid, zone, start_pfn) \
1780 memmap_init_zone((size), (nid), (zone), (start_pfn))
1781#endif
1782
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001783static int __devinit zone_batchsize(struct zone *zone)
1784{
1785 int batch;
1786
1787 /*
1788 * The per-cpu-pages pools are set to around 1000th of the
Seth, Rohitba56e912005-10-29 18:15:47 -07001789 * size of the zone. But no more than 1/2 of a meg.
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001790 *
1791 * OK, so we don't know how big the cache is. So guess.
1792 */
1793 batch = zone->present_pages / 1024;
Seth, Rohitba56e912005-10-29 18:15:47 -07001794 if (batch * PAGE_SIZE > 512 * 1024)
1795 batch = (512 * 1024) / PAGE_SIZE;
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001796 batch /= 4; /* We effectively *= 4 below */
1797 if (batch < 1)
1798 batch = 1;
1799
1800 /*
Nick Piggin0ceaacc2005-12-04 13:55:25 +11001801 * Clamp the batch to a 2^n - 1 value. Having a power
1802 * of 2 value was found to be more likely to have
1803 * suboptimal cache aliasing properties in some cases.
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001804 *
Nick Piggin0ceaacc2005-12-04 13:55:25 +11001805 * For example if 2 tasks are alternately allocating
1806 * batches of pages, one task can end up with a lot
1807 * of pages of one half of the possible page colors
1808 * and the other with pages of the other colors.
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001809 */
Nick Piggin0ceaacc2005-12-04 13:55:25 +11001810 batch = (1 << (fls(batch + batch/2)-1)) - 1;
Seth, Rohitba56e912005-10-29 18:15:47 -07001811
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001812 return batch;
1813}
1814
Christoph Lameter2caaad42005-06-21 17:15:00 -07001815inline void setup_pageset(struct per_cpu_pageset *p, unsigned long batch)
1816{
1817 struct per_cpu_pages *pcp;
1818
Magnus Damm1c6fe942005-10-26 01:58:59 -07001819 memset(p, 0, sizeof(*p));
1820
Christoph Lameter2caaad42005-06-21 17:15:00 -07001821 pcp = &p->pcp[0]; /* hot */
1822 pcp->count = 0;
Christoph Lameter2caaad42005-06-21 17:15:00 -07001823 pcp->high = 6 * batch;
1824 pcp->batch = max(1UL, 1 * batch);
1825 INIT_LIST_HEAD(&pcp->list);
1826
1827 pcp = &p->pcp[1]; /* cold*/
1828 pcp->count = 0;
Christoph Lameter2caaad42005-06-21 17:15:00 -07001829 pcp->high = 2 * batch;
Seth, Rohite46a5e22005-10-29 18:15:48 -07001830 pcp->batch = max(1UL, batch/2);
Christoph Lameter2caaad42005-06-21 17:15:00 -07001831 INIT_LIST_HEAD(&pcp->list);
1832}
1833
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001834#ifdef CONFIG_NUMA
1835/*
Christoph Lameter2caaad42005-06-21 17:15:00 -07001836 * Boot pageset table. One per cpu which is going to be used for all
1837 * zones and all nodes. The parameters will be set in such a way
1838 * that an item put on a list will immediately be handed over to
1839 * the buddy list. This is safe since pageset manipulation is done
1840 * with interrupts disabled.
1841 *
1842 * Some NUMA counter updates may also be caught by the boot pagesets.
Christoph Lameterb7c84c62005-06-22 20:26:07 -07001843 *
1844 * The boot_pagesets must be kept even after bootup is complete for
1845 * unused processors and/or zones. They do play a role for bootstrapping
1846 * hotplugged processors.
1847 *
1848 * zoneinfo_show() and maybe other functions do
1849 * not check if the processor is online before following the pageset pointer.
1850 * Other parts of the kernel may not check if the zone is available.
Christoph Lameter2caaad42005-06-21 17:15:00 -07001851 */
1852static struct per_cpu_pageset
Christoph Lameterb7c84c62005-06-22 20:26:07 -07001853 boot_pageset[NR_CPUS];
Christoph Lameter2caaad42005-06-21 17:15:00 -07001854
1855/*
1856 * Dynamically allocate memory for the
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001857 * per cpu pageset array in struct zone.
1858 */
1859static int __devinit process_zones(int cpu)
1860{
1861 struct zone *zone, *dzone;
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001862
1863 for_each_zone(zone) {
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001864
Christoph Lameter2caaad42005-06-21 17:15:00 -07001865 zone->pageset[cpu] = kmalloc_node(sizeof(struct per_cpu_pageset),
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001866 GFP_KERNEL, cpu_to_node(cpu));
Christoph Lameter2caaad42005-06-21 17:15:00 -07001867 if (!zone->pageset[cpu])
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001868 goto bad;
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001869
Christoph Lameter2caaad42005-06-21 17:15:00 -07001870 setup_pageset(zone->pageset[cpu], zone_batchsize(zone));
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001871 }
1872
1873 return 0;
1874bad:
1875 for_each_zone(dzone) {
1876 if (dzone == zone)
1877 break;
1878 kfree(dzone->pageset[cpu]);
1879 dzone->pageset[cpu] = NULL;
1880 }
1881 return -ENOMEM;
1882}
1883
1884static inline void free_zone_pagesets(int cpu)
1885{
1886#ifdef CONFIG_NUMA
1887 struct zone *zone;
1888
1889 for_each_zone(zone) {
1890 struct per_cpu_pageset *pset = zone_pcp(zone, cpu);
1891
1892 zone_pcp(zone, cpu) = NULL;
1893 kfree(pset);
1894 }
1895#endif
1896}
1897
1898static int __devinit pageset_cpuup_callback(struct notifier_block *nfb,
1899 unsigned long action,
1900 void *hcpu)
1901{
1902 int cpu = (long)hcpu;
1903 int ret = NOTIFY_OK;
1904
1905 switch (action) {
1906 case CPU_UP_PREPARE:
1907 if (process_zones(cpu))
1908 ret = NOTIFY_BAD;
1909 break;
Andi Kleenb0d41692005-11-05 17:25:53 +01001910 case CPU_UP_CANCELED:
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001911 case CPU_DEAD:
1912 free_zone_pagesets(cpu);
1913 break;
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001914 default:
1915 break;
1916 }
1917 return ret;
1918}
1919
1920static struct notifier_block pageset_notifier =
1921 { &pageset_cpuup_callback, NULL, 0 };
1922
Al Viro78d99552005-12-15 09:18:25 +00001923void __init setup_per_cpu_pageset(void)
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001924{
1925 int err;
1926
1927 /* Initialize per_cpu_pageset for cpu 0.
1928 * A cpuup callback will do this for every cpu
1929 * as it comes online
1930 */
1931 err = process_zones(smp_processor_id());
1932 BUG_ON(err);
1933 register_cpu_notifier(&pageset_notifier);
1934}
1935
1936#endif
1937
Dave Hansened8ece22005-10-29 18:16:50 -07001938static __devinit
1939void zone_wait_table_init(struct zone *zone, unsigned long zone_size_pages)
1940{
1941 int i;
1942 struct pglist_data *pgdat = zone->zone_pgdat;
1943
1944 /*
1945 * The per-page waitqueue mechanism uses hashed waitqueues
1946 * per zone.
1947 */
1948 zone->wait_table_size = wait_table_size(zone_size_pages);
1949 zone->wait_table_bits = wait_table_bits(zone->wait_table_size);
1950 zone->wait_table = (wait_queue_head_t *)
1951 alloc_bootmem_node(pgdat, zone->wait_table_size
1952 * sizeof(wait_queue_head_t));
1953
1954 for(i = 0; i < zone->wait_table_size; ++i)
1955 init_waitqueue_head(zone->wait_table + i);
1956}
1957
1958static __devinit void zone_pcp_init(struct zone *zone)
1959{
1960 int cpu;
1961 unsigned long batch = zone_batchsize(zone);
1962
1963 for (cpu = 0; cpu < NR_CPUS; cpu++) {
1964#ifdef CONFIG_NUMA
1965 /* Early boot. Slab allocator not functional yet */
1966 zone->pageset[cpu] = &boot_pageset[cpu];
1967 setup_pageset(&boot_pageset[cpu],0);
1968#else
1969 setup_pageset(zone_pcp(zone,cpu), batch);
1970#endif
1971 }
1972 printk(KERN_DEBUG " %s zone: %lu pages, LIFO batch:%lu\n",
1973 zone->name, zone->present_pages, batch);
1974}
1975
1976static __devinit void init_currently_empty_zone(struct zone *zone,
1977 unsigned long zone_start_pfn, unsigned long size)
1978{
1979 struct pglist_data *pgdat = zone->zone_pgdat;
1980
1981 zone_wait_table_init(zone, size);
1982 pgdat->nr_zones = zone_idx(zone) + 1;
1983
1984 zone->zone_mem_map = pfn_to_page(zone_start_pfn);
1985 zone->zone_start_pfn = zone_start_pfn;
1986
1987 memmap_init(size, pgdat->node_id, zone_idx(zone), zone_start_pfn);
1988
1989 zone_init_free_lists(pgdat, zone, zone->spanned_pages);
1990}
1991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992/*
1993 * Set up the zone data structures:
1994 * - mark all pages reserved
1995 * - mark all memory queues empty
1996 * - clear the memory bitmaps
1997 */
1998static void __init free_area_init_core(struct pglist_data *pgdat,
1999 unsigned long *zones_size, unsigned long *zholes_size)
2000{
Dave Hansened8ece22005-10-29 18:16:50 -07002001 unsigned long j;
2002 int nid = pgdat->node_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 unsigned long zone_start_pfn = pgdat->node_start_pfn;
2004
Dave Hansen208d54e2005-10-29 18:16:52 -07002005 pgdat_resize_init(pgdat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 pgdat->nr_zones = 0;
2007 init_waitqueue_head(&pgdat->kswapd_wait);
2008 pgdat->kswapd_max_order = 0;
2009
2010 for (j = 0; j < MAX_NR_ZONES; j++) {
2011 struct zone *zone = pgdat->node_zones + j;
2012 unsigned long size, realsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 realsize = size = zones_size[j];
2015 if (zholes_size)
2016 realsize -= zholes_size[j];
2017
Andi Kleena2f1b422005-11-05 17:25:53 +01002018 if (j < ZONE_HIGHMEM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 nr_kernel_pages += realsize;
2020 nr_all_pages += realsize;
2021
2022 zone->spanned_pages = size;
2023 zone->present_pages = realsize;
2024 zone->name = zone_names[j];
2025 spin_lock_init(&zone->lock);
2026 spin_lock_init(&zone->lru_lock);
Dave Hansenbdc8cb92005-10-29 18:16:53 -07002027 zone_seqlock_init(zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 zone->zone_pgdat = pgdat;
2029 zone->free_pages = 0;
2030
2031 zone->temp_priority = zone->prev_priority = DEF_PRIORITY;
2032
Dave Hansened8ece22005-10-29 18:16:50 -07002033 zone_pcp_init(zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 INIT_LIST_HEAD(&zone->active_list);
2035 INIT_LIST_HEAD(&zone->inactive_list);
2036 zone->nr_scan_active = 0;
2037 zone->nr_scan_inactive = 0;
2038 zone->nr_active = 0;
2039 zone->nr_inactive = 0;
Martin Hicks53e9a612005-09-03 15:54:51 -07002040 atomic_set(&zone->reclaim_in_progress, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 if (!size)
2042 continue;
2043
Andy Whitcroftd41dee32005-06-23 00:07:54 -07002044 zonetable_add(zone, nid, j, zone_start_pfn, size);
Dave Hansened8ece22005-10-29 18:16:50 -07002045 init_currently_empty_zone(zone, zone_start_pfn, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 zone_start_pfn += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 }
2048}
2049
2050static void __init alloc_node_mem_map(struct pglist_data *pgdat)
2051{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 /* Skip empty nodes */
2053 if (!pgdat->node_spanned_pages)
2054 return;
2055
Andy Whitcroftd41dee32005-06-23 00:07:54 -07002056#ifdef CONFIG_FLAT_NODE_MEM_MAP
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 /* ia64 gets its own node_mem_map, before this, without bootmem */
2058 if (!pgdat->node_mem_map) {
Andy Whitcroftd41dee32005-06-23 00:07:54 -07002059 unsigned long size;
2060 struct page *map;
2061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 size = (pgdat->node_spanned_pages + 1) * sizeof(struct page);
Dave Hansen6f167ec2005-06-23 00:07:39 -07002063 map = alloc_remap(pgdat->node_id, size);
2064 if (!map)
2065 map = alloc_bootmem_node(pgdat, size);
2066 pgdat->node_mem_map = map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 }
Andy Whitcroftd41dee32005-06-23 00:07:54 -07002068#ifdef CONFIG_FLATMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 /*
2070 * With no DISCONTIG, the global mem_map is just set as node 0's
2071 */
2072 if (pgdat == NODE_DATA(0))
2073 mem_map = NODE_DATA(0)->node_mem_map;
2074#endif
Andy Whitcroftd41dee32005-06-23 00:07:54 -07002075#endif /* CONFIG_FLAT_NODE_MEM_MAP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076}
2077
2078void __init free_area_init_node(int nid, struct pglist_data *pgdat,
2079 unsigned long *zones_size, unsigned long node_start_pfn,
2080 unsigned long *zholes_size)
2081{
2082 pgdat->node_id = nid;
2083 pgdat->node_start_pfn = node_start_pfn;
2084 calculate_zone_totalpages(pgdat, zones_size, zholes_size);
2085
2086 alloc_node_mem_map(pgdat);
2087
2088 free_area_init_core(pgdat, zones_size, zholes_size);
2089}
2090
Dave Hansen93b75042005-06-23 00:07:47 -07002091#ifndef CONFIG_NEED_MULTIPLE_NODES
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092static bootmem_data_t contig_bootmem_data;
2093struct pglist_data contig_page_data = { .bdata = &contig_bootmem_data };
2094
2095EXPORT_SYMBOL(contig_page_data);
Dave Hansen93b75042005-06-23 00:07:47 -07002096#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098void __init free_area_init(unsigned long *zones_size)
2099{
Dave Hansen93b75042005-06-23 00:07:47 -07002100 free_area_init_node(0, NODE_DATA(0), zones_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 __pa(PAGE_OFFSET) >> PAGE_SHIFT, NULL);
2102}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
2104#ifdef CONFIG_PROC_FS
2105
2106#include <linux/seq_file.h>
2107
2108static void *frag_start(struct seq_file *m, loff_t *pos)
2109{
2110 pg_data_t *pgdat;
2111 loff_t node = *pos;
2112
2113 for (pgdat = pgdat_list; pgdat && node; pgdat = pgdat->pgdat_next)
2114 --node;
2115
2116 return pgdat;
2117}
2118
2119static void *frag_next(struct seq_file *m, void *arg, loff_t *pos)
2120{
2121 pg_data_t *pgdat = (pg_data_t *)arg;
2122
2123 (*pos)++;
2124 return pgdat->pgdat_next;
2125}
2126
2127static void frag_stop(struct seq_file *m, void *arg)
2128{
2129}
2130
2131/*
2132 * This walks the free areas for each zone.
2133 */
2134static int frag_show(struct seq_file *m, void *arg)
2135{
2136 pg_data_t *pgdat = (pg_data_t *)arg;
2137 struct zone *zone;
2138 struct zone *node_zones = pgdat->node_zones;
2139 unsigned long flags;
2140 int order;
2141
2142 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
Con Kolivasf3fe6512006-01-06 00:11:15 -08002143 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 continue;
2145
2146 spin_lock_irqsave(&zone->lock, flags);
2147 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
2148 for (order = 0; order < MAX_ORDER; ++order)
2149 seq_printf(m, "%6lu ", zone->free_area[order].nr_free);
2150 spin_unlock_irqrestore(&zone->lock, flags);
2151 seq_putc(m, '\n');
2152 }
2153 return 0;
2154}
2155
2156struct seq_operations fragmentation_op = {
2157 .start = frag_start,
2158 .next = frag_next,
2159 .stop = frag_stop,
2160 .show = frag_show,
2161};
2162
Nikita Danilov295ab932005-06-21 17:14:38 -07002163/*
2164 * Output information about zones in @pgdat.
2165 */
2166static int zoneinfo_show(struct seq_file *m, void *arg)
2167{
2168 pg_data_t *pgdat = arg;
2169 struct zone *zone;
2170 struct zone *node_zones = pgdat->node_zones;
2171 unsigned long flags;
2172
2173 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; zone++) {
2174 int i;
2175
Con Kolivasf3fe6512006-01-06 00:11:15 -08002176 if (!populated_zone(zone))
Nikita Danilov295ab932005-06-21 17:14:38 -07002177 continue;
2178
2179 spin_lock_irqsave(&zone->lock, flags);
2180 seq_printf(m, "Node %d, zone %8s", pgdat->node_id, zone->name);
2181 seq_printf(m,
2182 "\n pages free %lu"
2183 "\n min %lu"
2184 "\n low %lu"
2185 "\n high %lu"
2186 "\n active %lu"
2187 "\n inactive %lu"
2188 "\n scanned %lu (a: %lu i: %lu)"
2189 "\n spanned %lu"
2190 "\n present %lu",
2191 zone->free_pages,
2192 zone->pages_min,
2193 zone->pages_low,
2194 zone->pages_high,
2195 zone->nr_active,
2196 zone->nr_inactive,
2197 zone->pages_scanned,
2198 zone->nr_scan_active, zone->nr_scan_inactive,
2199 zone->spanned_pages,
2200 zone->present_pages);
2201 seq_printf(m,
2202 "\n protection: (%lu",
2203 zone->lowmem_reserve[0]);
2204 for (i = 1; i < ARRAY_SIZE(zone->lowmem_reserve); i++)
2205 seq_printf(m, ", %lu", zone->lowmem_reserve[i]);
2206 seq_printf(m,
2207 ")"
2208 "\n pagesets");
2209 for (i = 0; i < ARRAY_SIZE(zone->pageset); i++) {
2210 struct per_cpu_pageset *pageset;
2211 int j;
2212
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07002213 pageset = zone_pcp(zone, i);
Nikita Danilov295ab932005-06-21 17:14:38 -07002214 for (j = 0; j < ARRAY_SIZE(pageset->pcp); j++) {
2215 if (pageset->pcp[j].count)
2216 break;
2217 }
2218 if (j == ARRAY_SIZE(pageset->pcp))
2219 continue;
2220 for (j = 0; j < ARRAY_SIZE(pageset->pcp); j++) {
2221 seq_printf(m,
2222 "\n cpu: %i pcp: %i"
2223 "\n count: %i"
Nikita Danilov295ab932005-06-21 17:14:38 -07002224 "\n high: %i"
2225 "\n batch: %i",
2226 i, j,
2227 pageset->pcp[j].count,
Nikita Danilov295ab932005-06-21 17:14:38 -07002228 pageset->pcp[j].high,
2229 pageset->pcp[j].batch);
2230 }
2231#ifdef CONFIG_NUMA
2232 seq_printf(m,
2233 "\n numa_hit: %lu"
2234 "\n numa_miss: %lu"
2235 "\n numa_foreign: %lu"
2236 "\n interleave_hit: %lu"
2237 "\n local_node: %lu"
2238 "\n other_node: %lu",
2239 pageset->numa_hit,
2240 pageset->numa_miss,
2241 pageset->numa_foreign,
2242 pageset->interleave_hit,
2243 pageset->local_node,
2244 pageset->other_node);
2245#endif
2246 }
2247 seq_printf(m,
2248 "\n all_unreclaimable: %u"
2249 "\n prev_priority: %i"
2250 "\n temp_priority: %i"
2251 "\n start_pfn: %lu",
2252 zone->all_unreclaimable,
2253 zone->prev_priority,
2254 zone->temp_priority,
2255 zone->zone_start_pfn);
2256 spin_unlock_irqrestore(&zone->lock, flags);
2257 seq_putc(m, '\n');
2258 }
2259 return 0;
2260}
2261
2262struct seq_operations zoneinfo_op = {
2263 .start = frag_start, /* iterate over all zones. The same as in
2264 * fragmentation. */
2265 .next = frag_next,
2266 .stop = frag_stop,
2267 .show = zoneinfo_show,
2268};
2269
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270static char *vmstat_text[] = {
2271 "nr_dirty",
2272 "nr_writeback",
2273 "nr_unstable",
2274 "nr_page_table_pages",
2275 "nr_mapped",
2276 "nr_slab",
2277
2278 "pgpgin",
2279 "pgpgout",
2280 "pswpin",
2281 "pswpout",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Nick Piggin9328b8f2006-01-06 00:11:10 -08002283 "pgalloc_high",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 "pgalloc_normal",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002285 "pgalloc_dma32",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 "pgalloc_dma",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002287
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 "pgfree",
2289 "pgactivate",
2290 "pgdeactivate",
2291
2292 "pgfault",
2293 "pgmajfault",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002294
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 "pgrefill_high",
2296 "pgrefill_normal",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002297 "pgrefill_dma32",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 "pgrefill_dma",
2299
2300 "pgsteal_high",
2301 "pgsteal_normal",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002302 "pgsteal_dma32",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 "pgsteal_dma",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002304
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 "pgscan_kswapd_high",
2306 "pgscan_kswapd_normal",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002307 "pgscan_kswapd_dma32",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 "pgscan_kswapd_dma",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 "pgscan_direct_high",
2311 "pgscan_direct_normal",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002312 "pgscan_direct_dma32",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 "pgscan_direct_dma",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Nick Piggin9328b8f2006-01-06 00:11:10 -08002315 "pginodesteal",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 "slabs_scanned",
2317 "kswapd_steal",
2318 "kswapd_inodesteal",
2319 "pageoutrun",
2320 "allocstall",
2321
2322 "pgrotated",
KAMEZAWA Hiroyukiedfbe2b2005-05-01 08:58:37 -07002323 "nr_bounce",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324};
2325
2326static void *vmstat_start(struct seq_file *m, loff_t *pos)
2327{
2328 struct page_state *ps;
2329
2330 if (*pos >= ARRAY_SIZE(vmstat_text))
2331 return NULL;
2332
2333 ps = kmalloc(sizeof(*ps), GFP_KERNEL);
2334 m->private = ps;
2335 if (!ps)
2336 return ERR_PTR(-ENOMEM);
2337 get_full_page_state(ps);
2338 ps->pgpgin /= 2; /* sectors -> kbytes */
2339 ps->pgpgout /= 2;
2340 return (unsigned long *)ps + *pos;
2341}
2342
2343static void *vmstat_next(struct seq_file *m, void *arg, loff_t *pos)
2344{
2345 (*pos)++;
2346 if (*pos >= ARRAY_SIZE(vmstat_text))
2347 return NULL;
2348 return (unsigned long *)m->private + *pos;
2349}
2350
2351static int vmstat_show(struct seq_file *m, void *arg)
2352{
2353 unsigned long *l = arg;
2354 unsigned long off = l - (unsigned long *)m->private;
2355
2356 seq_printf(m, "%s %lu\n", vmstat_text[off], *l);
2357 return 0;
2358}
2359
2360static void vmstat_stop(struct seq_file *m, void *arg)
2361{
2362 kfree(m->private);
2363 m->private = NULL;
2364}
2365
2366struct seq_operations vmstat_op = {
2367 .start = vmstat_start,
2368 .next = vmstat_next,
2369 .stop = vmstat_stop,
2370 .show = vmstat_show,
2371};
2372
2373#endif /* CONFIG_PROC_FS */
2374
2375#ifdef CONFIG_HOTPLUG_CPU
2376static int page_alloc_cpu_notify(struct notifier_block *self,
2377 unsigned long action, void *hcpu)
2378{
2379 int cpu = (unsigned long)hcpu;
2380 long *count;
2381 unsigned long *src, *dest;
2382
2383 if (action == CPU_DEAD) {
2384 int i;
2385
2386 /* Drain local pagecache count. */
2387 count = &per_cpu(nr_pagecache_local, cpu);
2388 atomic_add(*count, &nr_pagecache);
2389 *count = 0;
2390 local_irq_disable();
2391 __drain_pages(cpu);
2392
2393 /* Add dead cpu's page_states to our own. */
2394 dest = (unsigned long *)&__get_cpu_var(page_states);
2395 src = (unsigned long *)&per_cpu(page_states, cpu);
2396
2397 for (i = 0; i < sizeof(struct page_state)/sizeof(unsigned long);
2398 i++) {
2399 dest[i] += src[i];
2400 src[i] = 0;
2401 }
2402
2403 local_irq_enable();
2404 }
2405 return NOTIFY_OK;
2406}
2407#endif /* CONFIG_HOTPLUG_CPU */
2408
2409void __init page_alloc_init(void)
2410{
2411 hotcpu_notifier(page_alloc_cpu_notify, 0);
2412}
2413
2414/*
2415 * setup_per_zone_lowmem_reserve - called whenever
2416 * sysctl_lower_zone_reserve_ratio changes. Ensures that each zone
2417 * has a correct pages reserved value, so an adequate number of
2418 * pages are left in the zone after a successful __alloc_pages().
2419 */
2420static void setup_per_zone_lowmem_reserve(void)
2421{
2422 struct pglist_data *pgdat;
2423 int j, idx;
2424
2425 for_each_pgdat(pgdat) {
2426 for (j = 0; j < MAX_NR_ZONES; j++) {
2427 struct zone *zone = pgdat->node_zones + j;
2428 unsigned long present_pages = zone->present_pages;
2429
2430 zone->lowmem_reserve[j] = 0;
2431
2432 for (idx = j-1; idx >= 0; idx--) {
2433 struct zone *lower_zone;
2434
2435 if (sysctl_lowmem_reserve_ratio[idx] < 1)
2436 sysctl_lowmem_reserve_ratio[idx] = 1;
2437
2438 lower_zone = pgdat->node_zones + idx;
2439 lower_zone->lowmem_reserve[j] = present_pages /
2440 sysctl_lowmem_reserve_ratio[idx];
2441 present_pages += lower_zone->present_pages;
2442 }
2443 }
2444 }
2445}
2446
2447/*
2448 * setup_per_zone_pages_min - called when min_free_kbytes changes. Ensures
2449 * that the pages_{min,low,high} values for each zone are set correctly
2450 * with respect to min_free_kbytes.
2451 */
Dave Hansen3947be12005-10-29 18:16:54 -07002452void setup_per_zone_pages_min(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453{
2454 unsigned long pages_min = min_free_kbytes >> (PAGE_SHIFT - 10);
2455 unsigned long lowmem_pages = 0;
2456 struct zone *zone;
2457 unsigned long flags;
2458
2459 /* Calculate total number of !ZONE_HIGHMEM pages */
2460 for_each_zone(zone) {
2461 if (!is_highmem(zone))
2462 lowmem_pages += zone->present_pages;
2463 }
2464
2465 for_each_zone(zone) {
Nick Piggin669ed172005-11-13 16:06:45 -08002466 unsigned long tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 spin_lock_irqsave(&zone->lru_lock, flags);
Nick Piggin669ed172005-11-13 16:06:45 -08002468 tmp = (pages_min * zone->present_pages) / lowmem_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 if (is_highmem(zone)) {
2470 /*
Nick Piggin669ed172005-11-13 16:06:45 -08002471 * __GFP_HIGH and PF_MEMALLOC allocations usually don't
2472 * need highmem pages, so cap pages_min to a small
2473 * value here.
2474 *
2475 * The (pages_high-pages_low) and (pages_low-pages_min)
2476 * deltas controls asynch page reclaim, and so should
2477 * not be capped for highmem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 */
2479 int min_pages;
2480
2481 min_pages = zone->present_pages / 1024;
2482 if (min_pages < SWAP_CLUSTER_MAX)
2483 min_pages = SWAP_CLUSTER_MAX;
2484 if (min_pages > 128)
2485 min_pages = 128;
2486 zone->pages_min = min_pages;
2487 } else {
Nick Piggin669ed172005-11-13 16:06:45 -08002488 /*
2489 * If it's a lowmem zone, reserve a number of pages
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 * proportionate to the zone's size.
2491 */
Nick Piggin669ed172005-11-13 16:06:45 -08002492 zone->pages_min = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 }
2494
Nick Piggin669ed172005-11-13 16:06:45 -08002495 zone->pages_low = zone->pages_min + tmp / 4;
2496 zone->pages_high = zone->pages_min + tmp / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 spin_unlock_irqrestore(&zone->lru_lock, flags);
2498 }
2499}
2500
2501/*
2502 * Initialise min_free_kbytes.
2503 *
2504 * For small machines we want it small (128k min). For large machines
2505 * we want it large (64MB max). But it is not linear, because network
2506 * bandwidth does not increase linearly with machine size. We use
2507 *
2508 * min_free_kbytes = 4 * sqrt(lowmem_kbytes), for better accuracy:
2509 * min_free_kbytes = sqrt(lowmem_kbytes * 16)
2510 *
2511 * which yields
2512 *
2513 * 16MB: 512k
2514 * 32MB: 724k
2515 * 64MB: 1024k
2516 * 128MB: 1448k
2517 * 256MB: 2048k
2518 * 512MB: 2896k
2519 * 1024MB: 4096k
2520 * 2048MB: 5792k
2521 * 4096MB: 8192k
2522 * 8192MB: 11584k
2523 * 16384MB: 16384k
2524 */
2525static int __init init_per_zone_pages_min(void)
2526{
2527 unsigned long lowmem_kbytes;
2528
2529 lowmem_kbytes = nr_free_buffer_pages() * (PAGE_SIZE >> 10);
2530
2531 min_free_kbytes = int_sqrt(lowmem_kbytes * 16);
2532 if (min_free_kbytes < 128)
2533 min_free_kbytes = 128;
2534 if (min_free_kbytes > 65536)
2535 min_free_kbytes = 65536;
2536 setup_per_zone_pages_min();
2537 setup_per_zone_lowmem_reserve();
2538 return 0;
2539}
2540module_init(init_per_zone_pages_min)
2541
2542/*
2543 * min_free_kbytes_sysctl_handler - just a wrapper around proc_dointvec() so
2544 * that we can call two helper functions whenever min_free_kbytes
2545 * changes.
2546 */
2547int min_free_kbytes_sysctl_handler(ctl_table *table, int write,
2548 struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
2549{
2550 proc_dointvec(table, write, file, buffer, length, ppos);
2551 setup_per_zone_pages_min();
2552 return 0;
2553}
2554
2555/*
2556 * lowmem_reserve_ratio_sysctl_handler - just a wrapper around
2557 * proc_dointvec() so that we can call setup_per_zone_lowmem_reserve()
2558 * whenever sysctl_lowmem_reserve_ratio changes.
2559 *
2560 * The reserve ratio obviously has absolutely no relation with the
2561 * pages_min watermarks. The lowmem reserve ratio can only make sense
2562 * if in function of the boot time zone sizes.
2563 */
2564int lowmem_reserve_ratio_sysctl_handler(ctl_table *table, int write,
2565 struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
2566{
2567 proc_dointvec_minmax(table, write, file, buffer, length, ppos);
2568 setup_per_zone_lowmem_reserve();
2569 return 0;
2570}
2571
2572__initdata int hashdist = HASHDIST_DEFAULT;
2573
2574#ifdef CONFIG_NUMA
2575static int __init set_hashdist(char *str)
2576{
2577 if (!str)
2578 return 0;
2579 hashdist = simple_strtoul(str, &str, 0);
2580 return 1;
2581}
2582__setup("hashdist=", set_hashdist);
2583#endif
2584
2585/*
2586 * allocate a large system hash table from bootmem
2587 * - it is assumed that the hash table must contain an exact power-of-2
2588 * quantity of entries
2589 * - limit is the number of hash buckets, not the total allocation size
2590 */
2591void *__init alloc_large_system_hash(const char *tablename,
2592 unsigned long bucketsize,
2593 unsigned long numentries,
2594 int scale,
2595 int flags,
2596 unsigned int *_hash_shift,
2597 unsigned int *_hash_mask,
2598 unsigned long limit)
2599{
2600 unsigned long long max = limit;
2601 unsigned long log2qty, size;
2602 void *table = NULL;
2603
2604 /* allow the kernel cmdline to have a say */
2605 if (!numentries) {
2606 /* round applicable memory size up to nearest megabyte */
2607 numentries = (flags & HASH_HIGHMEM) ? nr_all_pages : nr_kernel_pages;
2608 numentries += (1UL << (20 - PAGE_SHIFT)) - 1;
2609 numentries >>= 20 - PAGE_SHIFT;
2610 numentries <<= 20 - PAGE_SHIFT;
2611
2612 /* limit to 1 bucket per 2^scale bytes of low memory */
2613 if (scale > PAGE_SHIFT)
2614 numentries >>= (scale - PAGE_SHIFT);
2615 else
2616 numentries <<= (PAGE_SHIFT - scale);
2617 }
2618 /* rounded up to nearest power of 2 in size */
2619 numentries = 1UL << (long_log2(numentries) + 1);
2620
2621 /* limit allocation size to 1/16 total memory by default */
2622 if (max == 0) {
2623 max = ((unsigned long long)nr_all_pages << PAGE_SHIFT) >> 4;
2624 do_div(max, bucketsize);
2625 }
2626
2627 if (numentries > max)
2628 numentries = max;
2629
2630 log2qty = long_log2(numentries);
2631
2632 do {
2633 size = bucketsize << log2qty;
2634 if (flags & HASH_EARLY)
2635 table = alloc_bootmem(size);
2636 else if (hashdist)
2637 table = __vmalloc(size, GFP_ATOMIC, PAGE_KERNEL);
2638 else {
2639 unsigned long order;
2640 for (order = 0; ((1UL << order) << PAGE_SHIFT) < size; order++)
2641 ;
2642 table = (void*) __get_free_pages(GFP_ATOMIC, order);
2643 }
2644 } while (!table && size > PAGE_SIZE && --log2qty);
2645
2646 if (!table)
2647 panic("Failed to allocate %s hash table\n", tablename);
2648
2649 printk("%s hash table entries: %d (order: %d, %lu bytes)\n",
2650 tablename,
2651 (1U << log2qty),
2652 long_log2(size) - PAGE_SHIFT,
2653 size);
2654
2655 if (_hash_shift)
2656 *_hash_shift = log2qty;
2657 if (_hash_mask)
2658 *_hash_mask = (1 << log2qty) - 1;
2659
2660 return table;
2661}