blob: b7f14a4799a52e3881548d91568908f7ed988eb3 [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;
Rohit Seth8ad4b1f2006-01-08 01:00:40 -080056int percpu_pagelist_fraction;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Hugh Dickinsd98c7a02006-02-14 13:52:59 -080058static void __free_pages_ok(struct page *page, unsigned int order);
David Howellsa226f6c2006-01-06 00:11:08 -080059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/*
61 * results with 256, 32 in the lowmem_reserve sysctl:
62 * 1G machine -> (16M dma, 800M-16M normal, 1G-800M high)
63 * 1G machine -> (16M dma, 784M normal, 224M high)
64 * NORMAL allocation will leave 784M/256 of ram reserved in the ZONE_DMA
65 * HIGHMEM allocation will leave 224M/32 of ram reserved in ZONE_NORMAL
66 * HIGHMEM allocation will (224M+784M)/256 of ram reserved in ZONE_DMA
Andi Kleena2f1b422005-11-05 17:25:53 +010067 *
68 * TBD: should special case ZONE_DMA32 machines here - in those we normally
69 * don't need any ZONE_NORMAL reservation
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 */
Andi Kleena2f1b422005-11-05 17:25:53 +010071int sysctl_lowmem_reserve_ratio[MAX_NR_ZONES-1] = { 256, 256, 32 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73EXPORT_SYMBOL(totalram_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75/*
76 * Used by page_zone() to look up the address of the struct zone whose
77 * id is encoded in the upper bits of page->flags
78 */
Christoph Lameterc3d8c142005-09-06 15:16:33 -070079struct zone *zone_table[1 << ZONETABLE_SHIFT] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080EXPORT_SYMBOL(zone_table);
81
Andi Kleena2f1b422005-11-05 17:25:53 +010082static char *zone_names[MAX_NR_ZONES] = { "DMA", "DMA32", "Normal", "HighMem" };
Linus Torvalds1da177e2005-04-16 15:20:36 -070083int min_free_kbytes = 1024;
84
85unsigned long __initdata nr_kernel_pages;
86unsigned long __initdata nr_all_pages;
87
Nick Piggin13e74442006-01-06 00:10:58 -080088#ifdef CONFIG_DEBUG_VM
Dave Hansenc6a57e12005-10-29 18:16:52 -070089static int page_outside_zone_boundaries(struct zone *zone, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Dave Hansenbdc8cb92005-10-29 18:16:53 -070091 int ret = 0;
92 unsigned seq;
93 unsigned long pfn = page_to_pfn(page);
Dave Hansenc6a57e12005-10-29 18:16:52 -070094
Dave Hansenbdc8cb92005-10-29 18:16:53 -070095 do {
96 seq = zone_span_seqbegin(zone);
97 if (pfn >= zone->zone_start_pfn + zone->spanned_pages)
98 ret = 1;
99 else if (pfn < zone->zone_start_pfn)
100 ret = 1;
101 } while (zone_span_seqretry(zone, seq));
102
103 return ret;
Dave Hansenc6a57e12005-10-29 18:16:52 -0700104}
105
106static int page_is_consistent(struct zone *zone, struct page *page)
107{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#ifdef CONFIG_HOLES_IN_ZONE
109 if (!pfn_valid(page_to_pfn(page)))
Dave Hansenc6a57e12005-10-29 18:16:52 -0700110 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#endif
112 if (zone != page_zone(page))
Dave Hansenc6a57e12005-10-29 18:16:52 -0700113 return 0;
114
115 return 1;
116}
117/*
118 * Temporary debugging check for pages not lying within a given zone.
119 */
120static int bad_range(struct zone *zone, struct page *page)
121{
122 if (page_outside_zone_boundaries(zone, page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 return 1;
Dave Hansenc6a57e12005-10-29 18:16:52 -0700124 if (!page_is_consistent(zone, page))
125 return 1;
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return 0;
128}
129
Nick Piggin13e74442006-01-06 00:10:58 -0800130#else
131static inline int bad_range(struct zone *zone, struct page *page)
132{
133 return 0;
134}
135#endif
136
Nick Piggin224abf92006-01-06 00:11:11 -0800137static void bad_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Nick Piggin224abf92006-01-06 00:11:11 -0800139 printk(KERN_EMERG "Bad page state in process '%s'\n"
Hugh Dickins7365f3d2006-01-11 12:17:18 -0800140 KERN_EMERG "page:%p flags:0x%0*lx mapping:%p mapcount:%d count:%d\n"
141 KERN_EMERG "Trying to fix it up, but a reboot is needed\n"
142 KERN_EMERG "Backtrace:\n",
Nick Piggin224abf92006-01-06 00:11:11 -0800143 current->comm, page, (int)(2*sizeof(unsigned long)),
144 (unsigned long)page->flags, page->mapping,
145 page_mapcount(page), page_count(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 dump_stack();
Hugh Dickins334795e2005-06-21 17:15:08 -0700147 page->flags &= ~(1 << PG_lru |
148 1 << PG_private |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 1 << PG_locked |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 1 << PG_active |
151 1 << PG_dirty |
Hugh Dickins334795e2005-06-21 17:15:08 -0700152 1 << PG_reclaim |
153 1 << PG_slab |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 1 << PG_swapcache |
Hugh Dickins689bceb2005-11-21 21:32:20 -0800155 1 << PG_writeback );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 set_page_count(page, 0);
157 reset_page_mapcount(page);
158 page->mapping = NULL;
Randy Dunlap9f158332005-09-13 01:25:16 -0700159 add_taint(TAINT_BAD_PAGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162/*
163 * Higher-order pages are called "compound pages". They are structured thusly:
164 *
165 * The first PAGE_SIZE page is called the "head page".
166 *
167 * The remaining PAGE_SIZE pages are called "tail pages".
168 *
169 * All pages have PG_compound set. All pages have their ->private pointing at
170 * the head page (even the head page has this).
171 *
Hugh Dickins41d78ba2006-02-14 13:52:58 -0800172 * The first tail page's ->lru.next holds the address of the compound page's
173 * put_page() function. Its ->lru.prev holds the order of allocation.
174 * This usage means that zero-order pages may not be compound.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 */
Hugh Dickinsd98c7a02006-02-14 13:52:59 -0800176
177static void free_compound_page(struct page *page)
178{
179 __free_pages_ok(page, (unsigned long)page[1].lru.prev);
180}
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182static void prep_compound_page(struct page *page, unsigned long order)
183{
184 int i;
185 int nr_pages = 1 << order;
186
Hugh Dickinsd98c7a02006-02-14 13:52:59 -0800187 page[1].lru.next = (void *)free_compound_page; /* set dtor */
Hugh Dickins41d78ba2006-02-14 13:52:58 -0800188 page[1].lru.prev = (void *)order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 for (i = 0; i < nr_pages; i++) {
190 struct page *p = page + i;
191
Nick Piggin5e9dace2006-03-22 00:08:01 -0800192 __SetPageCompound(p);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700193 set_page_private(p, (unsigned long)page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195}
196
197static void destroy_compound_page(struct page *page, unsigned long order)
198{
199 int i;
200 int nr_pages = 1 << order;
201
Hugh Dickins41d78ba2006-02-14 13:52:58 -0800202 if (unlikely((unsigned long)page[1].lru.prev != order))
Nick Piggin224abf92006-01-06 00:11:11 -0800203 bad_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 for (i = 0; i < nr_pages; i++) {
206 struct page *p = page + i;
207
Nick Piggin224abf92006-01-06 00:11:11 -0800208 if (unlikely(!PageCompound(p) |
209 (page_private(p) != (unsigned long)page)))
210 bad_page(page);
Nick Piggin5e9dace2006-03-22 00:08:01 -0800211 __ClearPageCompound(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Nick Piggin17cf4402006-03-22 00:08:41 -0800215static inline void prep_zero_page(struct page *page, int order, gfp_t gfp_flags)
216{
217 int i;
218
219 BUG_ON((gfp_flags & (__GFP_WAIT | __GFP_HIGHMEM)) == __GFP_HIGHMEM);
Andrew Morton6626c5d2006-03-22 00:08:42 -0800220 /*
221 * clear_highpage() will use KM_USER0, so it's a bug to use __GFP_ZERO
222 * and __GFP_HIGHMEM from hard or soft interrupt context.
223 */
224 BUG_ON((gfp_flags & __GFP_HIGHMEM) && in_interrupt());
Nick Piggin17cf4402006-03-22 00:08:41 -0800225 for (i = 0; i < (1 << order); i++)
226 clear_highpage(page + i);
227}
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/*
230 * function for dealing with page's order in buddy system.
231 * zone->lock is already acquired when we use these.
232 * So, we don't need atomic page->flags operations here.
233 */
234static inline unsigned long page_order(struct page *page) {
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700235 return page_private(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
238static inline void set_page_order(struct page *page, int order) {
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700239 set_page_private(page, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 __SetPagePrivate(page);
241}
242
243static inline void rmv_page_order(struct page *page)
244{
245 __ClearPagePrivate(page);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700246 set_page_private(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249/*
250 * Locate the struct page for both the matching buddy in our
251 * pair (buddy1) and the combined O(n+1) page they form (page).
252 *
253 * 1) Any buddy B1 will have an order O twin B2 which satisfies
254 * the following equation:
255 * B2 = B1 ^ (1 << O)
256 * For example, if the starting buddy (buddy2) is #8 its order
257 * 1 buddy is #10:
258 * B2 = 8 ^ (1 << 1) = 8 ^ 2 = 10
259 *
260 * 2) Any buddy B will have an order O+1 parent P which
261 * satisfies the following equation:
262 * P = B & ~(1 << O)
263 *
264 * Assumption: *_mem_map is contigious at least up to MAX_ORDER
265 */
266static inline struct page *
267__page_find_buddy(struct page *page, unsigned long page_idx, unsigned int order)
268{
269 unsigned long buddy_idx = page_idx ^ (1 << order);
270
271 return page + (buddy_idx - page_idx);
272}
273
274static inline unsigned long
275__find_combined_index(unsigned long page_idx, unsigned int order)
276{
277 return (page_idx & ~(1 << order));
278}
279
280/*
281 * This function checks whether a page is free && is the buddy
282 * we can do coalesce a page and its buddy if
Nick Piggin13e74442006-01-06 00:10:58 -0800283 * (a) the buddy is not in a hole &&
284 * (b) the buddy is free &&
285 * (c) the buddy is on the buddy system &&
286 * (d) a page and its buddy have the same order.
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700287 * for recording page's order, we use page_private(page) and PG_private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 *
289 */
290static inline int page_is_buddy(struct page *page, int order)
291{
Nick Piggin13e74442006-01-06 00:10:58 -0800292#ifdef CONFIG_HOLES_IN_ZONE
293 if (!pfn_valid(page_to_pfn(page)))
294 return 0;
295#endif
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 if (PagePrivate(page) &&
298 (page_order(page) == order) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 page_count(page) == 0)
300 return 1;
301 return 0;
302}
303
304/*
305 * Freeing function for a buddy system allocator.
306 *
307 * The concept of a buddy system is to maintain direct-mapped table
308 * (containing bit values) for memory blocks of various "orders".
309 * The bottom level table contains the map for the smallest allocatable
310 * units of memory (here, pages), and each level above it describes
311 * pairs of units from the levels below, hence, "buddies".
312 * At a high level, all that happens here is marking the table entry
313 * at the bottom level available, and propagating the changes upward
314 * as necessary, plus some accounting needed to play nicely with other
315 * parts of the VM system.
316 * At each level, we keep a list of pages, which are heads of continuous
317 * free pages of length of (1 << order) and marked with PG_Private.Page's
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700318 * order is recorded in page_private(page) field.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 * So when we are allocating or freeing one, we can derive the state of the
320 * other. That is, if we allocate a small block, and both were
321 * free, the remainder of the region must be split into blocks.
322 * If a block is freed, and its buddy is also free, then this
323 * triggers coalescing into a block of larger size.
324 *
325 * -- wli
326 */
327
Nick Piggin48db57f2006-01-08 01:00:42 -0800328static inline void __free_one_page(struct page *page,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 struct zone *zone, unsigned int order)
330{
331 unsigned long page_idx;
332 int order_size = 1 << order;
333
Nick Piggin224abf92006-01-06 00:11:11 -0800334 if (unlikely(PageCompound(page)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 destroy_compound_page(page, order);
336
337 page_idx = page_to_pfn(page) & ((1 << MAX_ORDER) - 1);
338
339 BUG_ON(page_idx & (order_size - 1));
340 BUG_ON(bad_range(zone, page));
341
342 zone->free_pages += order_size;
343 while (order < MAX_ORDER-1) {
344 unsigned long combined_idx;
345 struct free_area *area;
346 struct page *buddy;
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 buddy = __page_find_buddy(page, page_idx, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (!page_is_buddy(buddy, order))
350 break; /* Move the buddy up one level. */
Nick Piggin13e74442006-01-06 00:10:58 -0800351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 list_del(&buddy->lru);
353 area = zone->free_area + order;
354 area->nr_free--;
355 rmv_page_order(buddy);
Nick Piggin13e74442006-01-06 00:10:58 -0800356 combined_idx = __find_combined_index(page_idx, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 page = page + (combined_idx - page_idx);
358 page_idx = combined_idx;
359 order++;
360 }
361 set_page_order(page, order);
362 list_add(&page->lru, &zone->free_area[order].free_list);
363 zone->free_area[order].nr_free++;
364}
365
Nick Piggin224abf92006-01-06 00:11:11 -0800366static inline int free_pages_check(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Nick Piggin92be2e332006-01-06 00:10:57 -0800368 if (unlikely(page_mapcount(page) |
369 (page->mapping != NULL) |
370 (page_count(page) != 0) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 (page->flags & (
372 1 << PG_lru |
373 1 << PG_private |
374 1 << PG_locked |
375 1 << PG_active |
376 1 << PG_reclaim |
377 1 << PG_slab |
378 1 << PG_swapcache |
Nick Pigginb5810032005-10-29 18:16:12 -0700379 1 << PG_writeback |
Nick Piggin92be2e332006-01-06 00:10:57 -0800380 1 << PG_reserved ))))
Nick Piggin224abf92006-01-06 00:11:11 -0800381 bad_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (PageDirty(page))
Nick Piggin242e5462005-09-03 15:54:50 -0700383 __ClearPageDirty(page);
Hugh Dickins689bceb2005-11-21 21:32:20 -0800384 /*
385 * For now, we report if PG_reserved was found set, but do not
386 * clear it, and do not free the page. But we shall soon need
387 * to do more, for when the ZERO_PAGE count wraps negative.
388 */
389 return PageReserved(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
392/*
393 * Frees a list of pages.
394 * Assumes all pages on list are in same zone, and of same order.
Renaud Lienhart207f36e2005-09-10 00:26:59 -0700395 * count is the number of pages to free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 *
397 * If the zone was previously in an "all pages pinned" state then look to
398 * see if this freeing clears that state.
399 *
400 * And clear the zone's pages_scanned counter, to hold off the "all pages are
401 * pinned" detection logic.
402 */
Nick Piggin48db57f2006-01-08 01:00:42 -0800403static void free_pages_bulk(struct zone *zone, int count,
404 struct list_head *list, int order)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
Nick Pigginc54ad302006-01-06 00:10:56 -0800406 spin_lock(&zone->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 zone->all_unreclaimable = 0;
408 zone->pages_scanned = 0;
Nick Piggin48db57f2006-01-08 01:00:42 -0800409 while (count--) {
410 struct page *page;
411
412 BUG_ON(list_empty(list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 page = list_entry(list->prev, struct page, lru);
Nick Piggin48db57f2006-01-08 01:00:42 -0800414 /* have to delete it as __free_one_page list manipulates */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 list_del(&page->lru);
Nick Piggin48db57f2006-01-08 01:00:42 -0800416 __free_one_page(page, zone, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
Nick Pigginc54ad302006-01-06 00:10:56 -0800418 spin_unlock(&zone->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Nick Piggin48db57f2006-01-08 01:00:42 -0800421static void free_one_page(struct zone *zone, struct page *page, int order)
422{
423 LIST_HEAD(list);
424 list_add(&page->lru, &list);
425 free_pages_bulk(zone, 1, &list, order);
426}
427
428static void __free_pages_ok(struct page *page, unsigned int order)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Nick Pigginc54ad302006-01-06 00:10:56 -0800430 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 int i;
Hugh Dickins689bceb2005-11-21 21:32:20 -0800432 int reserved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 arch_free_page(page, order);
Ingo Molnarde5097c2006-01-09 15:59:21 -0800435 if (!PageHighMem(page))
436 mutex_debug_check_no_locks_freed(page_address(page),
David Woodhousea4fc7ab2006-01-11 14:41:26 +0000437 PAGE_SIZE<<order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 for (i = 0 ; i < (1 << order) ; ++i)
Nick Piggin224abf92006-01-06 00:11:11 -0800440 reserved += free_pages_check(page + i);
Hugh Dickins689bceb2005-11-21 21:32:20 -0800441 if (reserved)
442 return;
443
Nick Piggin48db57f2006-01-08 01:00:42 -0800444 kernel_map_pages(page, 1 << order, 0);
Nick Pigginc54ad302006-01-06 00:10:56 -0800445 local_irq_save(flags);
Nick Piggina74609f2006-01-06 00:11:20 -0800446 __mod_page_state(pgfree, 1 << order);
Nick Piggin48db57f2006-01-08 01:00:42 -0800447 free_one_page(page_zone(page), page, order);
Nick Pigginc54ad302006-01-06 00:10:56 -0800448 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
David Howellsa226f6c2006-01-06 00:11:08 -0800451/*
452 * permit the bootmem allocator to evade page validation on high-order frees
453 */
454void fastcall __init __free_pages_bootmem(struct page *page, unsigned int order)
455{
456 if (order == 0) {
457 __ClearPageReserved(page);
458 set_page_count(page, 0);
Nick Piggin7835e982006-03-22 00:08:40 -0800459 set_page_refcounted(page);
Nick Piggin545b1ea2006-03-22 00:08:07 -0800460 __free_page(page);
David Howellsa226f6c2006-01-06 00:11:08 -0800461 } else {
David Howellsa226f6c2006-01-06 00:11:08 -0800462 int loop;
463
Nick Piggin545b1ea2006-03-22 00:08:07 -0800464 prefetchw(page);
David Howellsa226f6c2006-01-06 00:11:08 -0800465 for (loop = 0; loop < BITS_PER_LONG; loop++) {
466 struct page *p = &page[loop];
467
Nick Piggin545b1ea2006-03-22 00:08:07 -0800468 if (loop + 1 < BITS_PER_LONG)
469 prefetchw(p + 1);
David Howellsa226f6c2006-01-06 00:11:08 -0800470 __ClearPageReserved(p);
471 set_page_count(p, 0);
472 }
473
Nick Piggin7835e982006-03-22 00:08:40 -0800474 set_page_refcounted(page);
Nick Piggin545b1ea2006-03-22 00:08:07 -0800475 __free_pages(page, order);
David Howellsa226f6c2006-01-06 00:11:08 -0800476 }
477}
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480/*
481 * The order of subdivision here is critical for the IO subsystem.
482 * Please do not alter this order without good reasons and regression
483 * testing. Specifically, as large blocks of memory are subdivided,
484 * the order in which smaller blocks are delivered depends on the order
485 * they're subdivided in this function. This is the primary factor
486 * influencing the order in which pages are delivered to the IO
487 * subsystem according to empirical testing, and this is also justified
488 * by considering the behavior of a buddy system containing a single
489 * large block of memory acted on by a series of small allocations.
490 * This behavior is a critical factor in sglist merging's success.
491 *
492 * -- wli
493 */
Nick Piggin085cc7d2006-01-06 00:11:01 -0800494static inline void expand(struct zone *zone, struct page *page,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 int low, int high, struct free_area *area)
496{
497 unsigned long size = 1 << high;
498
499 while (high > low) {
500 area--;
501 high--;
502 size >>= 1;
503 BUG_ON(bad_range(zone, &page[size]));
504 list_add(&page[size].lru, &area->free_list);
505 area->nr_free++;
506 set_page_order(&page[size], high);
507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510/*
511 * This page is about to be returned from the page allocator
512 */
Nick Piggin17cf4402006-03-22 00:08:41 -0800513static int prep_new_page(struct page *page, int order, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Nick Piggin92be2e332006-01-06 00:10:57 -0800515 if (unlikely(page_mapcount(page) |
516 (page->mapping != NULL) |
517 (page_count(page) != 0) |
Hugh Dickins334795e2005-06-21 17:15:08 -0700518 (page->flags & (
519 1 << PG_lru |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 1 << PG_private |
521 1 << PG_locked |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 1 << PG_active |
523 1 << PG_dirty |
524 1 << PG_reclaim |
Hugh Dickins334795e2005-06-21 17:15:08 -0700525 1 << PG_slab |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 1 << PG_swapcache |
Nick Pigginb5810032005-10-29 18:16:12 -0700527 1 << PG_writeback |
Nick Piggin92be2e332006-01-06 00:10:57 -0800528 1 << PG_reserved ))))
Nick Piggin224abf92006-01-06 00:11:11 -0800529 bad_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Hugh Dickins689bceb2005-11-21 21:32:20 -0800531 /*
532 * For now, we report if PG_reserved was found set, but do not
533 * clear it, and do not allocate the page: as a safety net.
534 */
535 if (PageReserved(page))
536 return 1;
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 page->flags &= ~(1 << PG_uptodate | 1 << PG_error |
539 1 << PG_referenced | 1 << PG_arch_1 |
540 1 << PG_checked | 1 << PG_mappedtodisk);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700541 set_page_private(page, 0);
Nick Piggin7835e982006-03-22 00:08:40 -0800542 set_page_refcounted(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 kernel_map_pages(page, 1 << order, 1);
Nick Piggin17cf4402006-03-22 00:08:41 -0800544
545 if (gfp_flags & __GFP_ZERO)
546 prep_zero_page(page, order, gfp_flags);
547
548 if (order && (gfp_flags & __GFP_COMP))
549 prep_compound_page(page, order);
550
Hugh Dickins689bceb2005-11-21 21:32:20 -0800551 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554/*
555 * Do the hard work of removing an element from the buddy allocator.
556 * Call me with the zone->lock already held.
557 */
558static struct page *__rmqueue(struct zone *zone, unsigned int order)
559{
560 struct free_area * area;
561 unsigned int current_order;
562 struct page *page;
563
564 for (current_order = order; current_order < MAX_ORDER; ++current_order) {
565 area = zone->free_area + current_order;
566 if (list_empty(&area->free_list))
567 continue;
568
569 page = list_entry(area->free_list.next, struct page, lru);
570 list_del(&page->lru);
571 rmv_page_order(page);
572 area->nr_free--;
573 zone->free_pages -= 1UL << order;
Nick Piggin085cc7d2006-01-06 00:11:01 -0800574 expand(zone, page, order, current_order, area);
575 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577
578 return NULL;
579}
580
581/*
582 * Obtain a specified number of elements from the buddy allocator, all under
583 * a single hold of the lock, for efficiency. Add them to the supplied list.
584 * Returns the number of new pages which were placed at *list.
585 */
586static int rmqueue_bulk(struct zone *zone, unsigned int order,
587 unsigned long count, struct list_head *list)
588{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Nick Pigginc54ad302006-01-06 00:10:56 -0800591 spin_lock(&zone->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 for (i = 0; i < count; ++i) {
Nick Piggin085cc7d2006-01-06 00:11:01 -0800593 struct page *page = __rmqueue(zone, order);
594 if (unlikely(page == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 list_add_tail(&page->lru, list);
597 }
Nick Pigginc54ad302006-01-06 00:10:56 -0800598 spin_unlock(&zone->lock);
Nick Piggin085cc7d2006-01-06 00:11:01 -0800599 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
Christoph Lameter4ae7c032005-06-21 17:14:57 -0700602#ifdef CONFIG_NUMA
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800603/*
604 * Called from the slab reaper to drain pagesets on a particular node that
605 * belong to the currently executing processor.
Christoph Lameter879336c2006-03-22 00:09:08 -0800606 * Note that this function must be called with the thread pinned to
607 * a single processor.
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800608 */
609void drain_node_pages(int nodeid)
Christoph Lameter4ae7c032005-06-21 17:14:57 -0700610{
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800611 int i, z;
Christoph Lameter4ae7c032005-06-21 17:14:57 -0700612 unsigned long flags;
613
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800614 for (z = 0; z < MAX_NR_ZONES; z++) {
615 struct zone *zone = NODE_DATA(nodeid)->node_zones + z;
Christoph Lameter4ae7c032005-06-21 17:14:57 -0700616 struct per_cpu_pageset *pset;
617
Nick Piggin23316bc2006-01-08 01:00:41 -0800618 pset = zone_pcp(zone, smp_processor_id());
Christoph Lameter4ae7c032005-06-21 17:14:57 -0700619 for (i = 0; i < ARRAY_SIZE(pset->pcp); i++) {
620 struct per_cpu_pages *pcp;
621
622 pcp = &pset->pcp[i];
Christoph Lameter879336c2006-03-22 00:09:08 -0800623 if (pcp->count) {
624 local_irq_save(flags);
625 free_pages_bulk(zone, pcp->count, &pcp->list, 0);
626 pcp->count = 0;
627 local_irq_restore(flags);
628 }
Christoph Lameter4ae7c032005-06-21 17:14:57 -0700629 }
630 }
Christoph Lameter4ae7c032005-06-21 17:14:57 -0700631}
632#endif
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634#if defined(CONFIG_PM) || defined(CONFIG_HOTPLUG_CPU)
635static void __drain_pages(unsigned int cpu)
636{
Nick Pigginc54ad302006-01-06 00:10:56 -0800637 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 struct zone *zone;
639 int i;
640
641 for_each_zone(zone) {
642 struct per_cpu_pageset *pset;
643
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700644 pset = zone_pcp(zone, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 for (i = 0; i < ARRAY_SIZE(pset->pcp); i++) {
646 struct per_cpu_pages *pcp;
647
648 pcp = &pset->pcp[i];
Nick Pigginc54ad302006-01-06 00:10:56 -0800649 local_irq_save(flags);
Nick Piggin48db57f2006-01-08 01:00:42 -0800650 free_pages_bulk(zone, pcp->count, &pcp->list, 0);
651 pcp->count = 0;
Nick Pigginc54ad302006-01-06 00:10:56 -0800652 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654 }
655}
656#endif /* CONFIG_PM || CONFIG_HOTPLUG_CPU */
657
658#ifdef CONFIG_PM
659
660void mark_free_pages(struct zone *zone)
661{
662 unsigned long zone_pfn, flags;
663 int order;
664 struct list_head *curr;
665
666 if (!zone->spanned_pages)
667 return;
668
669 spin_lock_irqsave(&zone->lock, flags);
670 for (zone_pfn = 0; zone_pfn < zone->spanned_pages; ++zone_pfn)
671 ClearPageNosaveFree(pfn_to_page(zone_pfn + zone->zone_start_pfn));
672
673 for (order = MAX_ORDER - 1; order >= 0; --order)
674 list_for_each(curr, &zone->free_area[order].free_list) {
675 unsigned long start_pfn, i;
676
677 start_pfn = page_to_pfn(list_entry(curr, struct page, lru));
678
679 for (i=0; i < (1<<order); i++)
680 SetPageNosaveFree(pfn_to_page(start_pfn+i));
681 }
682 spin_unlock_irqrestore(&zone->lock, flags);
683}
684
685/*
686 * Spill all of this CPU's per-cpu pages back into the buddy allocator.
687 */
688void drain_local_pages(void)
689{
690 unsigned long flags;
691
692 local_irq_save(flags);
693 __drain_pages(smp_processor_id());
694 local_irq_restore(flags);
695}
696#endif /* CONFIG_PM */
697
Nick Piggina74609f2006-01-06 00:11:20 -0800698static void zone_statistics(struct zonelist *zonelist, struct zone *z, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
700#ifdef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 pg_data_t *pg = z->zone_pgdat;
702 pg_data_t *orig = zonelist->zones[0]->zone_pgdat;
703 struct per_cpu_pageset *p;
704
Nick Piggina74609f2006-01-06 00:11:20 -0800705 p = zone_pcp(z, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (pg == orig) {
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700707 p->numa_hit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 } else {
709 p->numa_miss++;
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700710 zone_pcp(zonelist->zones[0], cpu)->numa_foreign++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
712 if (pg == NODE_DATA(numa_node_id()))
713 p->local_node++;
714 else
715 p->other_node++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716#endif
717}
718
719/*
720 * Free a 0-order page
721 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722static void fastcall free_hot_cold_page(struct page *page, int cold)
723{
724 struct zone *zone = page_zone(page);
725 struct per_cpu_pages *pcp;
726 unsigned long flags;
727
728 arch_free_page(page, 0);
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (PageAnon(page))
731 page->mapping = NULL;
Nick Piggin224abf92006-01-06 00:11:11 -0800732 if (free_pages_check(page))
Hugh Dickins689bceb2005-11-21 21:32:20 -0800733 return;
734
Hugh Dickins689bceb2005-11-21 21:32:20 -0800735 kernel_map_pages(page, 1, 0);
736
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700737 pcp = &zone_pcp(zone, get_cpu())->pcp[cold];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 local_irq_save(flags);
Nick Piggina74609f2006-01-06 00:11:20 -0800739 __inc_page_state(pgfree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 list_add(&page->lru, &pcp->list);
741 pcp->count++;
Nick Piggin48db57f2006-01-08 01:00:42 -0800742 if (pcp->count >= pcp->high) {
743 free_pages_bulk(zone, pcp->batch, &pcp->list, 0);
744 pcp->count -= pcp->batch;
745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 local_irq_restore(flags);
747 put_cpu();
748}
749
750void fastcall free_hot_page(struct page *page)
751{
752 free_hot_cold_page(page, 0);
753}
754
755void fastcall free_cold_page(struct page *page)
756{
757 free_hot_cold_page(page, 1);
758}
759
Nick Piggin8dfcc9b2006-03-22 00:08:05 -0800760/*
761 * split_page takes a non-compound higher-order page, and splits it into
762 * n (1<<order) sub-pages: page[0..n]
763 * Each sub-page must be freed individually.
764 *
765 * Note: this is probably too low level an operation for use in drivers.
766 * Please consult with lkml before using this in your driver.
767 */
768void split_page(struct page *page, unsigned int order)
769{
770 int i;
771
772 BUG_ON(PageCompound(page));
773 BUG_ON(!page_count(page));
Nick Piggin7835e982006-03-22 00:08:40 -0800774 for (i = 1; i < (1 << order); i++)
775 set_page_refcounted(page + i);
Nick Piggin8dfcc9b2006-03-22 00:08:05 -0800776}
Nick Piggin8dfcc9b2006-03-22 00:08:05 -0800777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778/*
779 * Really, prep_compound_page() should be called from __rmqueue_bulk(). But
780 * we cheat by calling it from here, in the order > 0 path. Saves a branch
781 * or two.
782 */
Nick Piggina74609f2006-01-06 00:11:20 -0800783static struct page *buffered_rmqueue(struct zonelist *zonelist,
784 struct zone *zone, int order, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
786 unsigned long flags;
Hugh Dickins689bceb2005-11-21 21:32:20 -0800787 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 int cold = !!(gfp_flags & __GFP_COLD);
Nick Piggina74609f2006-01-06 00:11:20 -0800789 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Hugh Dickins689bceb2005-11-21 21:32:20 -0800791again:
Nick Piggina74609f2006-01-06 00:11:20 -0800792 cpu = get_cpu();
Nick Piggin48db57f2006-01-08 01:00:42 -0800793 if (likely(order == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 struct per_cpu_pages *pcp;
795
Nick Piggina74609f2006-01-06 00:11:20 -0800796 pcp = &zone_pcp(zone, cpu)->pcp[cold];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 local_irq_save(flags);
Nick Piggina74609f2006-01-06 00:11:20 -0800798 if (!pcp->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 pcp->count += rmqueue_bulk(zone, 0,
800 pcp->batch, &pcp->list);
Nick Piggina74609f2006-01-06 00:11:20 -0800801 if (unlikely(!pcp->count))
802 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
Nick Piggina74609f2006-01-06 00:11:20 -0800804 page = list_entry(pcp->list.next, struct page, lru);
805 list_del(&page->lru);
806 pcp->count--;
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800807 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 spin_lock_irqsave(&zone->lock, flags);
809 page = __rmqueue(zone, order);
Nick Piggina74609f2006-01-06 00:11:20 -0800810 spin_unlock(&zone->lock);
811 if (!page)
812 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
814
Nick Piggina74609f2006-01-06 00:11:20 -0800815 __mod_page_state_zone(zone, pgalloc, 1 << order);
816 zone_statistics(zonelist, zone, cpu);
817 local_irq_restore(flags);
818 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Nick Piggina74609f2006-01-06 00:11:20 -0800820 BUG_ON(bad_range(zone, page));
Nick Piggin17cf4402006-03-22 00:08:41 -0800821 if (prep_new_page(page, order, gfp_flags))
Nick Piggina74609f2006-01-06 00:11:20 -0800822 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 return page;
Nick Piggina74609f2006-01-06 00:11:20 -0800824
825failed:
826 local_irq_restore(flags);
827 put_cpu();
828 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800831#define ALLOC_NO_WATERMARKS 0x01 /* don't check watermarks at all */
Nick Piggin31488902005-11-28 13:44:03 -0800832#define ALLOC_WMARK_MIN 0x02 /* use pages_min watermark */
833#define ALLOC_WMARK_LOW 0x04 /* use pages_low watermark */
834#define ALLOC_WMARK_HIGH 0x08 /* use pages_high watermark */
835#define ALLOC_HARDER 0x10 /* try to alloc harder */
836#define ALLOC_HIGH 0x20 /* __GFP_HIGH set */
837#define ALLOC_CPUSET 0x40 /* check for correct cpuset */
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839/*
840 * Return 1 if free pages are above 'mark'. This takes into account the order
841 * of the allocation.
842 */
843int zone_watermark_ok(struct zone *z, int order, unsigned long mark,
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800844 int classzone_idx, int alloc_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
846 /* free_pages my go negative - that's OK */
847 long min = mark, free_pages = z->free_pages - (1 << order) + 1;
848 int o;
849
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800850 if (alloc_flags & ALLOC_HIGH)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 min -= min / 2;
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800852 if (alloc_flags & ALLOC_HARDER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 min -= min / 4;
854
855 if (free_pages <= min + z->lowmem_reserve[classzone_idx])
856 return 0;
857 for (o = 0; o < order; o++) {
858 /* At the next order, this order's pages become unavailable */
859 free_pages -= z->free_area[o].nr_free << o;
860
861 /* Require fewer higher order pages to be free */
862 min >>= 1;
863
864 if (free_pages <= min)
865 return 0;
866 }
867 return 1;
868}
869
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800870/*
871 * get_page_from_freeliest goes through the zonelist trying to allocate
872 * a page.
873 */
874static struct page *
875get_page_from_freelist(gfp_t gfp_mask, unsigned int order,
876 struct zonelist *zonelist, int alloc_flags)
Martin Hicks753ee722005-06-21 17:14:41 -0700877{
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800878 struct zone **z = zonelist->zones;
879 struct page *page = NULL;
880 int classzone_idx = zone_idx(*z);
881
882 /*
883 * Go through the zonelist once, looking for a zone with enough free.
884 * See also cpuset_zone_allowed() comment in kernel/cpuset.c.
885 */
886 do {
887 if ((alloc_flags & ALLOC_CPUSET) &&
888 !cpuset_zone_allowed(*z, gfp_mask))
889 continue;
890
891 if (!(alloc_flags & ALLOC_NO_WATERMARKS)) {
Nick Piggin31488902005-11-28 13:44:03 -0800892 unsigned long mark;
893 if (alloc_flags & ALLOC_WMARK_MIN)
894 mark = (*z)->pages_min;
895 else if (alloc_flags & ALLOC_WMARK_LOW)
896 mark = (*z)->pages_low;
897 else
898 mark = (*z)->pages_high;
899 if (!zone_watermark_ok(*z, order, mark,
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800900 classzone_idx, alloc_flags))
Christoph Lameter9eeff232006-01-18 17:42:31 -0800901 if (!zone_reclaim_mode ||
902 !zone_reclaim(*z, gfp_mask, order))
903 continue;
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800904 }
905
Nick Piggina74609f2006-01-06 00:11:20 -0800906 page = buffered_rmqueue(zonelist, *z, order, gfp_mask);
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800907 if (page) {
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800908 break;
909 }
910 } while (*(++z) != NULL);
911 return page;
Martin Hicks753ee722005-06-21 17:14:41 -0700912}
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914/*
915 * This is the 'heart' of the zoned buddy allocator.
916 */
917struct page * fastcall
Al Virodd0fc662005-10-07 07:46:04 +0100918__alloc_pages(gfp_t gfp_mask, unsigned int order,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 struct zonelist *zonelist)
920{
Al Viro260b2362005-10-21 03:22:44 -0400921 const gfp_t wait = gfp_mask & __GFP_WAIT;
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800922 struct zone **z;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 struct page *page;
924 struct reclaim_state reclaim_state;
925 struct task_struct *p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 int do_retry;
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800927 int alloc_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 int did_some_progress;
929
930 might_sleep_if(wait);
931
Jens Axboe6b1de912005-11-17 21:35:02 +0100932restart:
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800933 z = zonelist->zones; /* the list of zones suitable for gfp_mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800935 if (unlikely(*z == NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 /* Should this ever happen?? */
937 return NULL;
938 }
Jens Axboe6b1de912005-11-17 21:35:02 +0100939
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800940 page = get_page_from_freelist(gfp_mask|__GFP_HARDWALL, order,
Nick Piggin31488902005-11-28 13:44:03 -0800941 zonelist, ALLOC_WMARK_LOW|ALLOC_CPUSET);
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800942 if (page)
943 goto got_pg;
944
Jens Axboe6b1de912005-11-17 21:35:02 +0100945 do {
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800946 wakeup_kswapd(*z, order);
Jens Axboe6b1de912005-11-17 21:35:02 +0100947 } while (*(++z));
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800948
Paul Jackson9bf22292005-09-06 15:18:12 -0700949 /*
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800950 * OK, we're below the kswapd watermark and have kicked background
951 * reclaim. Now things get more complex, so set up alloc_flags according
952 * to how we want to proceed.
953 *
954 * The caller may dip into page reserves a bit more if the caller
955 * cannot run direct reclaim, or if the caller has realtime scheduling
Paul Jackson4eac9152006-01-11 12:17:19 -0800956 * policy or is asking for __GFP_HIGH memory. GFP_ATOMIC requests will
957 * set both ALLOC_HARDER (!wait) and ALLOC_HIGH (__GFP_HIGH).
Paul Jackson9bf22292005-09-06 15:18:12 -0700958 */
Nick Piggin31488902005-11-28 13:44:03 -0800959 alloc_flags = ALLOC_WMARK_MIN;
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800960 if ((unlikely(rt_task(p)) && !in_interrupt()) || !wait)
961 alloc_flags |= ALLOC_HARDER;
962 if (gfp_mask & __GFP_HIGH)
963 alloc_flags |= ALLOC_HIGH;
Paul Jackson47f3a862006-01-06 00:10:32 -0800964 alloc_flags |= ALLOC_CPUSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 /*
967 * Go through the zonelist again. Let __GFP_HIGH and allocations
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800968 * coming from realtime tasks go deeper into reserves.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 *
970 * This is the last chance, in general, before the goto nopage.
971 * Ignore cpuset if GFP_ATOMIC (!wait) rather than fail alloc.
Paul Jackson9bf22292005-09-06 15:18:12 -0700972 * See also cpuset_zone_allowed() comment in kernel/cpuset.c.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 */
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800974 page = get_page_from_freelist(gfp_mask, order, zonelist, alloc_flags);
975 if (page)
976 goto got_pg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 /* This allocation should allow future memory freeing. */
Nick Pigginb84a35b2005-05-01 08:58:36 -0700979
980 if (((p->flags & PF_MEMALLOC) || unlikely(test_thread_flag(TIF_MEMDIE)))
981 && !in_interrupt()) {
982 if (!(gfp_mask & __GFP_NOMEMALLOC)) {
Kirill Korotaev885036d2005-11-13 16:06:41 -0800983nofail_alloc:
Nick Pigginb84a35b2005-05-01 08:58:36 -0700984 /* go through the zonelist yet again, ignoring mins */
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800985 page = get_page_from_freelist(gfp_mask, order,
Paul Jackson47f3a862006-01-06 00:10:32 -0800986 zonelist, ALLOC_NO_WATERMARKS);
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800987 if (page)
988 goto got_pg;
Kirill Korotaev885036d2005-11-13 16:06:41 -0800989 if (gfp_mask & __GFP_NOFAIL) {
990 blk_congestion_wait(WRITE, HZ/50);
991 goto nofail_alloc;
992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 }
994 goto nopage;
995 }
996
997 /* Atomic allocations - we can't balance anything */
998 if (!wait)
999 goto nopage;
1000
1001rebalance:
1002 cond_resched();
1003
1004 /* We now go into synchronous reclaim */
Paul Jackson3e0d98b2006-01-08 01:01:49 -08001005 cpuset_memory_pressure_bump();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 p->flags |= PF_MEMALLOC;
1007 reclaim_state.reclaimed_slab = 0;
1008 p->reclaim_state = &reclaim_state;
1009
Rohit Seth7fb1d9f2005-11-13 16:06:43 -08001010 did_some_progress = try_to_free_pages(zonelist->zones, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012 p->reclaim_state = NULL;
1013 p->flags &= ~PF_MEMALLOC;
1014
1015 cond_resched();
1016
1017 if (likely(did_some_progress)) {
Rohit Seth7fb1d9f2005-11-13 16:06:43 -08001018 page = get_page_from_freelist(gfp_mask, order,
1019 zonelist, alloc_flags);
1020 if (page)
1021 goto got_pg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 } else if ((gfp_mask & __GFP_FS) && !(gfp_mask & __GFP_NORETRY)) {
1023 /*
1024 * Go through the zonelist yet one more time, keep
1025 * very high watermark here, this is only to catch
1026 * a parallel oom killing, we must fail if we're still
1027 * under heavy pressure.
1028 */
Rohit Seth7fb1d9f2005-11-13 16:06:43 -08001029 page = get_page_from_freelist(gfp_mask|__GFP_HARDWALL, order,
Nick Piggin31488902005-11-28 13:44:03 -08001030 zonelist, ALLOC_WMARK_HIGH|ALLOC_CPUSET);
Rohit Seth7fb1d9f2005-11-13 16:06:43 -08001031 if (page)
1032 goto got_pg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Christoph Lameter9b0f8b02006-02-20 18:27:52 -08001034 out_of_memory(zonelist, gfp_mask, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 goto restart;
1036 }
1037
1038 /*
1039 * Don't let big-order allocations loop unless the caller explicitly
1040 * requests that. Wait for some write requests to complete then retry.
1041 *
1042 * In this implementation, __GFP_REPEAT means __GFP_NOFAIL for order
1043 * <= 3, but that may not be true in other implementations.
1044 */
1045 do_retry = 0;
1046 if (!(gfp_mask & __GFP_NORETRY)) {
1047 if ((order <= 3) || (gfp_mask & __GFP_REPEAT))
1048 do_retry = 1;
1049 if (gfp_mask & __GFP_NOFAIL)
1050 do_retry = 1;
1051 }
1052 if (do_retry) {
1053 blk_congestion_wait(WRITE, HZ/50);
1054 goto rebalance;
1055 }
1056
1057nopage:
1058 if (!(gfp_mask & __GFP_NOWARN) && printk_ratelimit()) {
1059 printk(KERN_WARNING "%s: page allocation failure."
1060 " order:%d, mode:0x%x\n",
1061 p->comm, order, gfp_mask);
1062 dump_stack();
Janet Morgan578c2fd2005-06-21 17:14:56 -07001063 show_mem();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065got_pg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 return page;
1067}
1068
1069EXPORT_SYMBOL(__alloc_pages);
1070
1071/*
1072 * Common helper functions.
1073 */
Al Virodd0fc662005-10-07 07:46:04 +01001074fastcall unsigned long __get_free_pages(gfp_t gfp_mask, unsigned int order)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
1076 struct page * page;
1077 page = alloc_pages(gfp_mask, order);
1078 if (!page)
1079 return 0;
1080 return (unsigned long) page_address(page);
1081}
1082
1083EXPORT_SYMBOL(__get_free_pages);
1084
Al Virodd0fc662005-10-07 07:46:04 +01001085fastcall unsigned long get_zeroed_page(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
1087 struct page * page;
1088
1089 /*
1090 * get_zeroed_page() returns a 32-bit address, which cannot represent
1091 * a highmem page
1092 */
Al Viro260b2362005-10-21 03:22:44 -04001093 BUG_ON((gfp_mask & __GFP_HIGHMEM) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 page = alloc_pages(gfp_mask | __GFP_ZERO, 0);
1096 if (page)
1097 return (unsigned long) page_address(page);
1098 return 0;
1099}
1100
1101EXPORT_SYMBOL(get_zeroed_page);
1102
1103void __pagevec_free(struct pagevec *pvec)
1104{
1105 int i = pagevec_count(pvec);
1106
1107 while (--i >= 0)
1108 free_hot_cold_page(pvec->pages[i], pvec->cold);
1109}
1110
1111fastcall void __free_pages(struct page *page, unsigned int order)
1112{
Nick Pigginb5810032005-10-29 18:16:12 -07001113 if (put_page_testzero(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 if (order == 0)
1115 free_hot_page(page);
1116 else
1117 __free_pages_ok(page, order);
1118 }
1119}
1120
1121EXPORT_SYMBOL(__free_pages);
1122
1123fastcall void free_pages(unsigned long addr, unsigned int order)
1124{
1125 if (addr != 0) {
1126 BUG_ON(!virt_addr_valid((void *)addr));
1127 __free_pages(virt_to_page((void *)addr), order);
1128 }
1129}
1130
1131EXPORT_SYMBOL(free_pages);
1132
1133/*
1134 * Total amount of free (allocatable) RAM:
1135 */
1136unsigned int nr_free_pages(void)
1137{
1138 unsigned int sum = 0;
1139 struct zone *zone;
1140
1141 for_each_zone(zone)
1142 sum += zone->free_pages;
1143
1144 return sum;
1145}
1146
1147EXPORT_SYMBOL(nr_free_pages);
1148
1149#ifdef CONFIG_NUMA
1150unsigned int nr_free_pages_pgdat(pg_data_t *pgdat)
1151{
1152 unsigned int i, sum = 0;
1153
1154 for (i = 0; i < MAX_NR_ZONES; i++)
1155 sum += pgdat->node_zones[i].free_pages;
1156
1157 return sum;
1158}
1159#endif
1160
1161static unsigned int nr_free_zone_pages(int offset)
1162{
Martin J. Blighe310fd42005-07-29 22:59:18 -07001163 /* Just pick one node, since fallback list is circular */
1164 pg_data_t *pgdat = NODE_DATA(numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 unsigned int sum = 0;
1166
Martin J. Blighe310fd42005-07-29 22:59:18 -07001167 struct zonelist *zonelist = pgdat->node_zonelists + offset;
1168 struct zone **zonep = zonelist->zones;
1169 struct zone *zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Martin J. Blighe310fd42005-07-29 22:59:18 -07001171 for (zone = *zonep++; zone; zone = *zonep++) {
1172 unsigned long size = zone->present_pages;
1173 unsigned long high = zone->pages_high;
1174 if (size > high)
1175 sum += size - high;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
1177
1178 return sum;
1179}
1180
1181/*
1182 * Amount of free RAM allocatable within ZONE_DMA and ZONE_NORMAL
1183 */
1184unsigned int nr_free_buffer_pages(void)
1185{
Al Viroaf4ca452005-10-21 02:55:38 -04001186 return nr_free_zone_pages(gfp_zone(GFP_USER));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187}
1188
1189/*
1190 * Amount of free RAM allocatable within all zones
1191 */
1192unsigned int nr_free_pagecache_pages(void)
1193{
Al Viroaf4ca452005-10-21 02:55:38 -04001194 return nr_free_zone_pages(gfp_zone(GFP_HIGHUSER));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
1197#ifdef CONFIG_HIGHMEM
1198unsigned int nr_free_highpages (void)
1199{
1200 pg_data_t *pgdat;
1201 unsigned int pages = 0;
1202
1203 for_each_pgdat(pgdat)
1204 pages += pgdat->node_zones[ZONE_HIGHMEM].free_pages;
1205
1206 return pages;
1207}
1208#endif
1209
1210#ifdef CONFIG_NUMA
1211static void show_node(struct zone *zone)
1212{
1213 printk("Node %d ", zone->zone_pgdat->node_id);
1214}
1215#else
1216#define show_node(zone) do { } while (0)
1217#endif
1218
1219/*
1220 * Accumulate the page_state information across all CPUs.
1221 * The result is unavoidably approximate - it can change
1222 * during and after execution of this function.
1223 */
1224static DEFINE_PER_CPU(struct page_state, page_states) = {0};
1225
1226atomic_t nr_pagecache = ATOMIC_INIT(0);
1227EXPORT_SYMBOL(nr_pagecache);
1228#ifdef CONFIG_SMP
1229DEFINE_PER_CPU(long, nr_pagecache_local) = 0;
1230#endif
1231
Nick Piggina86b1f52006-01-06 00:11:00 -08001232static void __get_page_state(struct page_state *ret, int nr, cpumask_t *cpumask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
Andrew Mortonb40607f2006-03-22 00:07:39 -08001234 unsigned cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Eric Dumazet88a2a4ac2006-02-04 23:27:36 -08001236 memset(ret, 0, nr * sizeof(unsigned long));
Andrew Morton84c20082006-01-08 01:00:28 -08001237 cpus_and(*cpumask, *cpumask, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Andrew Mortonb40607f2006-03-22 00:07:39 -08001239 for_each_cpu_mask(cpu, *cpumask) {
1240 unsigned long *in;
1241 unsigned long *out;
1242 unsigned off;
1243 unsigned next_cpu;
Eric Dumazet88a2a4ac2006-02-04 23:27:36 -08001244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 in = (unsigned long *)&per_cpu(page_states, cpu);
1246
Andrew Mortonb40607f2006-03-22 00:07:39 -08001247 next_cpu = next_cpu(cpu, *cpumask);
1248 if (likely(next_cpu < NR_CPUS))
1249 prefetch(&per_cpu(page_states, next_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
1251 out = (unsigned long *)ret;
1252 for (off = 0; off < nr; off++)
1253 *out++ += *in++;
1254 }
1255}
1256
Martin Hicksc07e02d2005-09-03 15:55:11 -07001257void get_page_state_node(struct page_state *ret, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258{
1259 int nr;
Martin Hicksc07e02d2005-09-03 15:55:11 -07001260 cpumask_t mask = node_to_cpumask(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 nr = offsetof(struct page_state, GET_PAGE_STATE_LAST);
1263 nr /= sizeof(unsigned long);
1264
Martin Hicksc07e02d2005-09-03 15:55:11 -07001265 __get_page_state(ret, nr+1, &mask);
1266}
1267
1268void get_page_state(struct page_state *ret)
1269{
1270 int nr;
1271 cpumask_t mask = CPU_MASK_ALL;
1272
1273 nr = offsetof(struct page_state, GET_PAGE_STATE_LAST);
1274 nr /= sizeof(unsigned long);
1275
1276 __get_page_state(ret, nr + 1, &mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
1278
1279void get_full_page_state(struct page_state *ret)
1280{
Martin Hicksc07e02d2005-09-03 15:55:11 -07001281 cpumask_t mask = CPU_MASK_ALL;
1282
1283 __get_page_state(ret, sizeof(*ret) / sizeof(unsigned long), &mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
Nick Piggina74609f2006-01-06 00:11:20 -08001286unsigned long read_page_state_offset(unsigned long offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
1288 unsigned long ret = 0;
1289 int cpu;
1290
Andrew Morton84c20082006-01-08 01:00:28 -08001291 for_each_online_cpu(cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 unsigned long in;
1293
1294 in = (unsigned long)&per_cpu(page_states, cpu) + offset;
1295 ret += *((unsigned long *)in);
1296 }
1297 return ret;
1298}
1299
Nick Piggina74609f2006-01-06 00:11:20 -08001300void __mod_page_state_offset(unsigned long offset, unsigned long delta)
1301{
1302 void *ptr;
1303
1304 ptr = &__get_cpu_var(page_states);
1305 *(unsigned long *)(ptr + offset) += delta;
1306}
1307EXPORT_SYMBOL(__mod_page_state_offset);
1308
1309void mod_page_state_offset(unsigned long offset, unsigned long delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
1311 unsigned long flags;
Nick Piggina74609f2006-01-06 00:11:20 -08001312 void *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 local_irq_save(flags);
1315 ptr = &__get_cpu_var(page_states);
Nick Piggina74609f2006-01-06 00:11:20 -08001316 *(unsigned long *)(ptr + offset) += delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 local_irq_restore(flags);
1318}
Nick Piggina74609f2006-01-06 00:11:20 -08001319EXPORT_SYMBOL(mod_page_state_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321void __get_zone_counts(unsigned long *active, unsigned long *inactive,
1322 unsigned long *free, struct pglist_data *pgdat)
1323{
1324 struct zone *zones = pgdat->node_zones;
1325 int i;
1326
1327 *active = 0;
1328 *inactive = 0;
1329 *free = 0;
1330 for (i = 0; i < MAX_NR_ZONES; i++) {
1331 *active += zones[i].nr_active;
1332 *inactive += zones[i].nr_inactive;
1333 *free += zones[i].free_pages;
1334 }
1335}
1336
1337void get_zone_counts(unsigned long *active,
1338 unsigned long *inactive, unsigned long *free)
1339{
1340 struct pglist_data *pgdat;
1341
1342 *active = 0;
1343 *inactive = 0;
1344 *free = 0;
1345 for_each_pgdat(pgdat) {
1346 unsigned long l, m, n;
1347 __get_zone_counts(&l, &m, &n, pgdat);
1348 *active += l;
1349 *inactive += m;
1350 *free += n;
1351 }
1352}
1353
1354void si_meminfo(struct sysinfo *val)
1355{
1356 val->totalram = totalram_pages;
1357 val->sharedram = 0;
1358 val->freeram = nr_free_pages();
1359 val->bufferram = nr_blockdev_pages();
1360#ifdef CONFIG_HIGHMEM
1361 val->totalhigh = totalhigh_pages;
1362 val->freehigh = nr_free_highpages();
1363#else
1364 val->totalhigh = 0;
1365 val->freehigh = 0;
1366#endif
1367 val->mem_unit = PAGE_SIZE;
1368}
1369
1370EXPORT_SYMBOL(si_meminfo);
1371
1372#ifdef CONFIG_NUMA
1373void si_meminfo_node(struct sysinfo *val, int nid)
1374{
1375 pg_data_t *pgdat = NODE_DATA(nid);
1376
1377 val->totalram = pgdat->node_present_pages;
1378 val->freeram = nr_free_pages_pgdat(pgdat);
1379 val->totalhigh = pgdat->node_zones[ZONE_HIGHMEM].present_pages;
1380 val->freehigh = pgdat->node_zones[ZONE_HIGHMEM].free_pages;
1381 val->mem_unit = PAGE_SIZE;
1382}
1383#endif
1384
1385#define K(x) ((x) << (PAGE_SHIFT-10))
1386
1387/*
1388 * Show free area list (used inside shift_scroll-lock stuff)
1389 * We also calculate the percentage fragmentation. We do this by counting the
1390 * memory on each free list with the exception of the first item on the list.
1391 */
1392void show_free_areas(void)
1393{
1394 struct page_state ps;
1395 int cpu, temperature;
1396 unsigned long active;
1397 unsigned long inactive;
1398 unsigned long free;
1399 struct zone *zone;
1400
1401 for_each_zone(zone) {
1402 show_node(zone);
1403 printk("%s per-cpu:", zone->name);
1404
Con Kolivasf3fe6512006-01-06 00:11:15 -08001405 if (!populated_zone(zone)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 printk(" empty\n");
1407 continue;
1408 } else
1409 printk("\n");
1410
Dave Jones6b482c62005-11-10 15:45:56 -05001411 for_each_online_cpu(cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 struct per_cpu_pageset *pageset;
1413
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001414 pageset = zone_pcp(zone, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416 for (temperature = 0; temperature < 2; temperature++)
Nick Piggin2d92c5c2006-01-06 00:10:59 -08001417 printk("cpu %d %s: high %d, batch %d used:%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 cpu,
1419 temperature ? "cold" : "hot",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 pageset->pcp[temperature].high,
Christoph Lameter4ae7c032005-06-21 17:14:57 -07001421 pageset->pcp[temperature].batch,
1422 pageset->pcp[temperature].count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
1424 }
1425
1426 get_page_state(&ps);
1427 get_zone_counts(&active, &inactive, &free);
1428
Denis Vlasenkoc0d62212005-06-21 17:15:14 -07001429 printk("Free pages: %11ukB (%ukB HighMem)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 K(nr_free_pages()),
1431 K(nr_free_highpages()));
1432
1433 printk("Active:%lu inactive:%lu dirty:%lu writeback:%lu "
1434 "unstable:%lu free:%u slab:%lu mapped:%lu pagetables:%lu\n",
1435 active,
1436 inactive,
1437 ps.nr_dirty,
1438 ps.nr_writeback,
1439 ps.nr_unstable,
1440 nr_free_pages(),
1441 ps.nr_slab,
1442 ps.nr_mapped,
1443 ps.nr_page_table_pages);
1444
1445 for_each_zone(zone) {
1446 int i;
1447
1448 show_node(zone);
1449 printk("%s"
1450 " free:%lukB"
1451 " min:%lukB"
1452 " low:%lukB"
1453 " high:%lukB"
1454 " active:%lukB"
1455 " inactive:%lukB"
1456 " present:%lukB"
1457 " pages_scanned:%lu"
1458 " all_unreclaimable? %s"
1459 "\n",
1460 zone->name,
1461 K(zone->free_pages),
1462 K(zone->pages_min),
1463 K(zone->pages_low),
1464 K(zone->pages_high),
1465 K(zone->nr_active),
1466 K(zone->nr_inactive),
1467 K(zone->present_pages),
1468 zone->pages_scanned,
1469 (zone->all_unreclaimable ? "yes" : "no")
1470 );
1471 printk("lowmem_reserve[]:");
1472 for (i = 0; i < MAX_NR_ZONES; i++)
1473 printk(" %lu", zone->lowmem_reserve[i]);
1474 printk("\n");
1475 }
1476
1477 for_each_zone(zone) {
1478 unsigned long nr, flags, order, total = 0;
1479
1480 show_node(zone);
1481 printk("%s: ", zone->name);
Con Kolivasf3fe6512006-01-06 00:11:15 -08001482 if (!populated_zone(zone)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 printk("empty\n");
1484 continue;
1485 }
1486
1487 spin_lock_irqsave(&zone->lock, flags);
1488 for (order = 0; order < MAX_ORDER; order++) {
1489 nr = zone->free_area[order].nr_free;
1490 total += nr << order;
1491 printk("%lu*%lukB ", nr, K(1UL) << order);
1492 }
1493 spin_unlock_irqrestore(&zone->lock, flags);
1494 printk("= %lukB\n", K(total));
1495 }
1496
1497 show_swap_cache_info();
1498}
1499
1500/*
1501 * Builds allocation fallback zone lists.
Christoph Lameter1a932052006-01-06 00:11:16 -08001502 *
1503 * Add all populated zones of a node to the zonelist.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 */
Christoph Lameter1a932052006-01-06 00:11:16 -08001505static int __init build_zonelists_node(pg_data_t *pgdat,
Christoph Lameter070f8032006-01-06 00:11:19 -08001506 struct zonelist *zonelist, int nr_zones, int zone_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
Christoph Lameter1a932052006-01-06 00:11:16 -08001508 struct zone *zone;
1509
Christoph Lameter070f8032006-01-06 00:11:19 -08001510 BUG_ON(zone_type > ZONE_HIGHMEM);
Christoph Lameter02a68a52006-01-06 00:11:18 -08001511
1512 do {
Christoph Lameter070f8032006-01-06 00:11:19 -08001513 zone = pgdat->node_zones + zone_type;
Christoph Lameter1a932052006-01-06 00:11:16 -08001514 if (populated_zone(zone)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515#ifndef CONFIG_HIGHMEM
Christoph Lameter070f8032006-01-06 00:11:19 -08001516 BUG_ON(zone_type > ZONE_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517#endif
Christoph Lameter070f8032006-01-06 00:11:19 -08001518 zonelist->zones[nr_zones++] = zone;
1519 check_highest_zone(zone_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 }
Christoph Lameter070f8032006-01-06 00:11:19 -08001521 zone_type--;
Christoph Lameter02a68a52006-01-06 00:11:18 -08001522
Christoph Lameter070f8032006-01-06 00:11:19 -08001523 } while (zone_type >= 0);
1524 return nr_zones;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525}
1526
Al Viro260b2362005-10-21 03:22:44 -04001527static inline int highest_zone(int zone_bits)
1528{
1529 int res = ZONE_NORMAL;
1530 if (zone_bits & (__force int)__GFP_HIGHMEM)
1531 res = ZONE_HIGHMEM;
Andi Kleena2f1b422005-11-05 17:25:53 +01001532 if (zone_bits & (__force int)__GFP_DMA32)
1533 res = ZONE_DMA32;
Al Viro260b2362005-10-21 03:22:44 -04001534 if (zone_bits & (__force int)__GFP_DMA)
1535 res = ZONE_DMA;
1536 return res;
1537}
1538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539#ifdef CONFIG_NUMA
1540#define MAX_NODE_LOAD (num_online_nodes())
1541static int __initdata node_load[MAX_NUMNODES];
1542/**
Pavel Pisa4dc3b162005-05-01 08:59:25 -07001543 * 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 -07001544 * @node: node whose fallback list we're appending
1545 * @used_node_mask: nodemask_t of already used nodes
1546 *
1547 * We use a number of factors to determine which is the next node that should
1548 * appear on a given node's fallback list. The node should not have appeared
1549 * already in @node's fallback list, and it should be the next closest node
1550 * according to the distance array (which contains arbitrary distance values
1551 * from each node to each node in the system), and should also prefer nodes
1552 * with no CPUs, since presumably they'll have very little allocation pressure
1553 * on them otherwise.
1554 * It returns -1 if no node is found.
1555 */
1556static int __init find_next_best_node(int node, nodemask_t *used_node_mask)
1557{
Linus Torvalds4cf808e2006-02-17 20:38:21 +01001558 int n, val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 int min_val = INT_MAX;
1560 int best_node = -1;
1561
Linus Torvalds4cf808e2006-02-17 20:38:21 +01001562 /* Use the local node if we haven't already */
1563 if (!node_isset(node, *used_node_mask)) {
1564 node_set(node, *used_node_mask);
1565 return node;
1566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Linus Torvalds4cf808e2006-02-17 20:38:21 +01001568 for_each_online_node(n) {
1569 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571 /* Don't want a node to appear more than once */
1572 if (node_isset(n, *used_node_mask))
1573 continue;
1574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 /* Use the distance array to find the distance */
1576 val = node_distance(node, n);
1577
Linus Torvalds4cf808e2006-02-17 20:38:21 +01001578 /* Penalize nodes under us ("prefer the next node") */
1579 val += (n < node);
1580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 /* Give preference to headless and unused nodes */
1582 tmp = node_to_cpumask(n);
1583 if (!cpus_empty(tmp))
1584 val += PENALTY_FOR_NODE_WITH_CPUS;
1585
1586 /* Slight preference for less loaded node */
1587 val *= (MAX_NODE_LOAD*MAX_NUMNODES);
1588 val += node_load[n];
1589
1590 if (val < min_val) {
1591 min_val = val;
1592 best_node = n;
1593 }
1594 }
1595
1596 if (best_node >= 0)
1597 node_set(best_node, *used_node_mask);
1598
1599 return best_node;
1600}
1601
1602static void __init build_zonelists(pg_data_t *pgdat)
1603{
1604 int i, j, k, node, local_node;
1605 int prev_node, load;
1606 struct zonelist *zonelist;
1607 nodemask_t used_mask;
1608
1609 /* initialize zonelists */
1610 for (i = 0; i < GFP_ZONETYPES; i++) {
1611 zonelist = pgdat->node_zonelists + i;
1612 zonelist->zones[0] = NULL;
1613 }
1614
1615 /* NUMA-aware ordering of nodes */
1616 local_node = pgdat->node_id;
1617 load = num_online_nodes();
1618 prev_node = local_node;
1619 nodes_clear(used_mask);
1620 while ((node = find_next_best_node(local_node, &used_mask)) >= 0) {
Christoph Lameter9eeff232006-01-18 17:42:31 -08001621 int distance = node_distance(local_node, node);
1622
1623 /*
1624 * If another node is sufficiently far away then it is better
1625 * to reclaim pages in a zone before going off node.
1626 */
1627 if (distance > RECLAIM_DISTANCE)
1628 zone_reclaim_mode = 1;
1629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 /*
1631 * We don't want to pressure a particular node.
1632 * So adding penalty to the first node in same
1633 * distance group to make it round-robin.
1634 */
Christoph Lameter9eeff232006-01-18 17:42:31 -08001635
1636 if (distance != node_distance(local_node, prev_node))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 node_load[node] += load;
1638 prev_node = node;
1639 load--;
1640 for (i = 0; i < GFP_ZONETYPES; i++) {
1641 zonelist = pgdat->node_zonelists + i;
1642 for (j = 0; zonelist->zones[j] != NULL; j++);
1643
Al Viro260b2362005-10-21 03:22:44 -04001644 k = highest_zone(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
1646 j = build_zonelists_node(NODE_DATA(node), zonelist, j, k);
1647 zonelist->zones[j] = NULL;
1648 }
1649 }
1650}
1651
1652#else /* CONFIG_NUMA */
1653
1654static void __init build_zonelists(pg_data_t *pgdat)
1655{
1656 int i, j, k, node, local_node;
1657
1658 local_node = pgdat->node_id;
1659 for (i = 0; i < GFP_ZONETYPES; i++) {
1660 struct zonelist *zonelist;
1661
1662 zonelist = pgdat->node_zonelists + i;
1663
1664 j = 0;
Al Viro260b2362005-10-21 03:22:44 -04001665 k = highest_zone(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 j = build_zonelists_node(pgdat, zonelist, j, k);
1667 /*
1668 * Now we build the zonelist so that it contains the zones
1669 * of all the other nodes.
1670 * We don't want to pressure a particular node, so when
1671 * building the zones for node N, we make sure that the
1672 * zones coming right after the local ones are those from
1673 * node N+1 (modulo N)
1674 */
1675 for (node = local_node + 1; node < MAX_NUMNODES; node++) {
1676 if (!node_online(node))
1677 continue;
1678 j = build_zonelists_node(NODE_DATA(node), zonelist, j, k);
1679 }
1680 for (node = 0; node < local_node; node++) {
1681 if (!node_online(node))
1682 continue;
1683 j = build_zonelists_node(NODE_DATA(node), zonelist, j, k);
1684 }
1685
1686 zonelist->zones[j] = NULL;
1687 }
1688}
1689
1690#endif /* CONFIG_NUMA */
1691
1692void __init build_all_zonelists(void)
1693{
1694 int i;
1695
1696 for_each_online_node(i)
1697 build_zonelists(NODE_DATA(i));
1698 printk("Built %i zonelists\n", num_online_nodes());
1699 cpuset_init_current_mems_allowed();
1700}
1701
1702/*
1703 * Helper functions to size the waitqueue hash table.
1704 * Essentially these want to choose hash table sizes sufficiently
1705 * large so that collisions trying to wait on pages are rare.
1706 * But in fact, the number of active page waitqueues on typical
1707 * systems is ridiculously low, less than 200. So this is even
1708 * conservative, even though it seems large.
1709 *
1710 * The constant PAGES_PER_WAITQUEUE specifies the ratio of pages to
1711 * waitqueues, i.e. the size of the waitq table given the number of pages.
1712 */
1713#define PAGES_PER_WAITQUEUE 256
1714
1715static inline unsigned long wait_table_size(unsigned long pages)
1716{
1717 unsigned long size = 1;
1718
1719 pages /= PAGES_PER_WAITQUEUE;
1720
1721 while (size < pages)
1722 size <<= 1;
1723
1724 /*
1725 * Once we have dozens or even hundreds of threads sleeping
1726 * on IO we've got bigger problems than wait queue collision.
1727 * Limit the size of the wait table to a reasonable size.
1728 */
1729 size = min(size, 4096UL);
1730
1731 return max(size, 4UL);
1732}
1733
1734/*
1735 * This is an integer logarithm so that shifts can be used later
1736 * to extract the more random high bits from the multiplicative
1737 * hash function before the remainder is taken.
1738 */
1739static inline unsigned long wait_table_bits(unsigned long size)
1740{
1741 return ffz(~size);
1742}
1743
1744#define LONG_ALIGN(x) (((x)+(sizeof(long))-1)&~((sizeof(long))-1))
1745
1746static void __init calculate_zone_totalpages(struct pglist_data *pgdat,
1747 unsigned long *zones_size, unsigned long *zholes_size)
1748{
1749 unsigned long realtotalpages, totalpages = 0;
1750 int i;
1751
1752 for (i = 0; i < MAX_NR_ZONES; i++)
1753 totalpages += zones_size[i];
1754 pgdat->node_spanned_pages = totalpages;
1755
1756 realtotalpages = totalpages;
1757 if (zholes_size)
1758 for (i = 0; i < MAX_NR_ZONES; i++)
1759 realtotalpages -= zholes_size[i];
1760 pgdat->node_present_pages = realtotalpages;
1761 printk(KERN_DEBUG "On node %d totalpages: %lu\n", pgdat->node_id, realtotalpages);
1762}
1763
1764
1765/*
1766 * Initially all pages are reserved - free ones are freed
1767 * up by free_all_bootmem() once the early boot process is
1768 * done. Non-atomic initialization, single-pass.
1769 */
Matt Tolentinoc09b4242006-01-17 07:03:44 +01001770void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 unsigned long start_pfn)
1772{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 struct page *page;
Andy Whitcroft29751f62005-06-23 00:08:00 -07001774 unsigned long end_pfn = start_pfn + size;
1775 unsigned long pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Greg Ungerercbe8dd42006-01-12 01:05:24 -08001777 for (pfn = start_pfn; pfn < end_pfn; pfn++) {
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001778 if (!early_pfn_valid(pfn))
1779 continue;
1780 page = pfn_to_page(pfn);
1781 set_page_links(page, zone, nid, pfn);
Nick Piggin7835e982006-03-22 00:08:40 -08001782 init_page_count(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 reset_page_mapcount(page);
1784 SetPageReserved(page);
1785 INIT_LIST_HEAD(&page->lru);
1786#ifdef WANT_PAGE_VIRTUAL
1787 /* The shift won't overflow because ZONE_NORMAL is below 4G. */
1788 if (!is_highmem_idx(zone))
Bob Picco3212c6b2005-06-27 14:36:28 -07001789 set_page_address(page, __va(pfn << PAGE_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 }
1792}
1793
1794void zone_init_free_lists(struct pglist_data *pgdat, struct zone *zone,
1795 unsigned long size)
1796{
1797 int order;
1798 for (order = 0; order < MAX_ORDER ; order++) {
1799 INIT_LIST_HEAD(&zone->free_area[order].free_list);
1800 zone->free_area[order].nr_free = 0;
1801 }
1802}
1803
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001804#define ZONETABLE_INDEX(x, zone_nr) ((x << ZONES_SHIFT) | zone_nr)
1805void zonetable_add(struct zone *zone, int nid, int zid, unsigned long pfn,
1806 unsigned long size)
1807{
1808 unsigned long snum = pfn_to_section_nr(pfn);
1809 unsigned long end = pfn_to_section_nr(pfn + size);
1810
1811 if (FLAGS_HAS_NODE)
1812 zone_table[ZONETABLE_INDEX(nid, zid)] = zone;
1813 else
1814 for (; snum <= end; snum++)
1815 zone_table[ZONETABLE_INDEX(snum, zid)] = zone;
1816}
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818#ifndef __HAVE_ARCH_MEMMAP_INIT
1819#define memmap_init(size, nid, zone, start_pfn) \
1820 memmap_init_zone((size), (nid), (zone), (start_pfn))
1821#endif
1822
Ashok Raj6292d9a2006-02-01 03:04:44 -08001823static int __cpuinit zone_batchsize(struct zone *zone)
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001824{
1825 int batch;
1826
1827 /*
1828 * The per-cpu-pages pools are set to around 1000th of the
Seth, Rohitba56e912005-10-29 18:15:47 -07001829 * size of the zone. But no more than 1/2 of a meg.
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001830 *
1831 * OK, so we don't know how big the cache is. So guess.
1832 */
1833 batch = zone->present_pages / 1024;
Seth, Rohitba56e912005-10-29 18:15:47 -07001834 if (batch * PAGE_SIZE > 512 * 1024)
1835 batch = (512 * 1024) / PAGE_SIZE;
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001836 batch /= 4; /* We effectively *= 4 below */
1837 if (batch < 1)
1838 batch = 1;
1839
1840 /*
Nick Piggin0ceaacc2005-12-04 13:55:25 +11001841 * Clamp the batch to a 2^n - 1 value. Having a power
1842 * of 2 value was found to be more likely to have
1843 * suboptimal cache aliasing properties in some cases.
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001844 *
Nick Piggin0ceaacc2005-12-04 13:55:25 +11001845 * For example if 2 tasks are alternately allocating
1846 * batches of pages, one task can end up with a lot
1847 * of pages of one half of the possible page colors
1848 * and the other with pages of the other colors.
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001849 */
Nick Piggin0ceaacc2005-12-04 13:55:25 +11001850 batch = (1 << (fls(batch + batch/2)-1)) - 1;
Seth, Rohitba56e912005-10-29 18:15:47 -07001851
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001852 return batch;
1853}
1854
Christoph Lameter2caaad42005-06-21 17:15:00 -07001855inline void setup_pageset(struct per_cpu_pageset *p, unsigned long batch)
1856{
1857 struct per_cpu_pages *pcp;
1858
Magnus Damm1c6fe942005-10-26 01:58:59 -07001859 memset(p, 0, sizeof(*p));
1860
Christoph Lameter2caaad42005-06-21 17:15:00 -07001861 pcp = &p->pcp[0]; /* hot */
1862 pcp->count = 0;
Christoph Lameter2caaad42005-06-21 17:15:00 -07001863 pcp->high = 6 * batch;
1864 pcp->batch = max(1UL, 1 * batch);
1865 INIT_LIST_HEAD(&pcp->list);
1866
1867 pcp = &p->pcp[1]; /* cold*/
1868 pcp->count = 0;
Christoph Lameter2caaad42005-06-21 17:15:00 -07001869 pcp->high = 2 * batch;
Seth, Rohite46a5e22005-10-29 18:15:48 -07001870 pcp->batch = max(1UL, batch/2);
Christoph Lameter2caaad42005-06-21 17:15:00 -07001871 INIT_LIST_HEAD(&pcp->list);
1872}
1873
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001874/*
1875 * setup_pagelist_highmark() sets the high water mark for hot per_cpu_pagelist
1876 * to the value high for the pageset p.
1877 */
1878
1879static void setup_pagelist_highmark(struct per_cpu_pageset *p,
1880 unsigned long high)
1881{
1882 struct per_cpu_pages *pcp;
1883
1884 pcp = &p->pcp[0]; /* hot list */
1885 pcp->high = high;
1886 pcp->batch = max(1UL, high/4);
1887 if ((high/4) > (PAGE_SHIFT * 8))
1888 pcp->batch = PAGE_SHIFT * 8;
1889}
1890
1891
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001892#ifdef CONFIG_NUMA
1893/*
Christoph Lameter2caaad42005-06-21 17:15:00 -07001894 * Boot pageset table. One per cpu which is going to be used for all
1895 * zones and all nodes. The parameters will be set in such a way
1896 * that an item put on a list will immediately be handed over to
1897 * the buddy list. This is safe since pageset manipulation is done
1898 * with interrupts disabled.
1899 *
1900 * Some NUMA counter updates may also be caught by the boot pagesets.
Christoph Lameterb7c84c62005-06-22 20:26:07 -07001901 *
1902 * The boot_pagesets must be kept even after bootup is complete for
1903 * unused processors and/or zones. They do play a role for bootstrapping
1904 * hotplugged processors.
1905 *
1906 * zoneinfo_show() and maybe other functions do
1907 * not check if the processor is online before following the pageset pointer.
1908 * Other parts of the kernel may not check if the zone is available.
Christoph Lameter2caaad42005-06-21 17:15:00 -07001909 */
Eric Dumazet88a2a4ac2006-02-04 23:27:36 -08001910static struct per_cpu_pageset boot_pageset[NR_CPUS];
Christoph Lameter2caaad42005-06-21 17:15:00 -07001911
1912/*
1913 * Dynamically allocate memory for the
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001914 * per cpu pageset array in struct zone.
1915 */
Ashok Raj6292d9a2006-02-01 03:04:44 -08001916static int __cpuinit process_zones(int cpu)
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001917{
1918 struct zone *zone, *dzone;
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001919
1920 for_each_zone(zone) {
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001921
Nick Piggin23316bc2006-01-08 01:00:41 -08001922 zone_pcp(zone, cpu) = kmalloc_node(sizeof(struct per_cpu_pageset),
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001923 GFP_KERNEL, cpu_to_node(cpu));
Nick Piggin23316bc2006-01-08 01:00:41 -08001924 if (!zone_pcp(zone, cpu))
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001925 goto bad;
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001926
Nick Piggin23316bc2006-01-08 01:00:41 -08001927 setup_pageset(zone_pcp(zone, cpu), zone_batchsize(zone));
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001928
1929 if (percpu_pagelist_fraction)
1930 setup_pagelist_highmark(zone_pcp(zone, cpu),
1931 (zone->present_pages / percpu_pagelist_fraction));
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001932 }
1933
1934 return 0;
1935bad:
1936 for_each_zone(dzone) {
1937 if (dzone == zone)
1938 break;
Nick Piggin23316bc2006-01-08 01:00:41 -08001939 kfree(zone_pcp(dzone, cpu));
1940 zone_pcp(dzone, cpu) = NULL;
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001941 }
1942 return -ENOMEM;
1943}
1944
1945static inline void free_zone_pagesets(int cpu)
1946{
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001947 struct zone *zone;
1948
1949 for_each_zone(zone) {
1950 struct per_cpu_pageset *pset = zone_pcp(zone, cpu);
1951
1952 zone_pcp(zone, cpu) = NULL;
1953 kfree(pset);
1954 }
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001955}
1956
Ashok Raj6292d9a2006-02-01 03:04:44 -08001957static int __cpuinit pageset_cpuup_callback(struct notifier_block *nfb,
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001958 unsigned long action,
1959 void *hcpu)
1960{
1961 int cpu = (long)hcpu;
1962 int ret = NOTIFY_OK;
1963
1964 switch (action) {
1965 case CPU_UP_PREPARE:
1966 if (process_zones(cpu))
1967 ret = NOTIFY_BAD;
1968 break;
Andi Kleenb0d41692005-11-05 17:25:53 +01001969 case CPU_UP_CANCELED:
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001970 case CPU_DEAD:
1971 free_zone_pagesets(cpu);
1972 break;
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001973 default:
1974 break;
1975 }
1976 return ret;
1977}
1978
1979static struct notifier_block pageset_notifier =
1980 { &pageset_cpuup_callback, NULL, 0 };
1981
Al Viro78d99552005-12-15 09:18:25 +00001982void __init setup_per_cpu_pageset(void)
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07001983{
1984 int err;
1985
1986 /* Initialize per_cpu_pageset for cpu 0.
1987 * A cpuup callback will do this for every cpu
1988 * as it comes online
1989 */
1990 err = process_zones(smp_processor_id());
1991 BUG_ON(err);
1992 register_cpu_notifier(&pageset_notifier);
1993}
1994
1995#endif
1996
Matt Tolentinoc09b4242006-01-17 07:03:44 +01001997static __meminit
Dave Hansened8ece22005-10-29 18:16:50 -07001998void zone_wait_table_init(struct zone *zone, unsigned long zone_size_pages)
1999{
2000 int i;
2001 struct pglist_data *pgdat = zone->zone_pgdat;
2002
2003 /*
2004 * The per-page waitqueue mechanism uses hashed waitqueues
2005 * per zone.
2006 */
2007 zone->wait_table_size = wait_table_size(zone_size_pages);
2008 zone->wait_table_bits = wait_table_bits(zone->wait_table_size);
2009 zone->wait_table = (wait_queue_head_t *)
2010 alloc_bootmem_node(pgdat, zone->wait_table_size
2011 * sizeof(wait_queue_head_t));
2012
2013 for(i = 0; i < zone->wait_table_size; ++i)
2014 init_waitqueue_head(zone->wait_table + i);
2015}
2016
Matt Tolentinoc09b4242006-01-17 07:03:44 +01002017static __meminit void zone_pcp_init(struct zone *zone)
Dave Hansened8ece22005-10-29 18:16:50 -07002018{
2019 int cpu;
2020 unsigned long batch = zone_batchsize(zone);
2021
2022 for (cpu = 0; cpu < NR_CPUS; cpu++) {
2023#ifdef CONFIG_NUMA
2024 /* Early boot. Slab allocator not functional yet */
Nick Piggin23316bc2006-01-08 01:00:41 -08002025 zone_pcp(zone, cpu) = &boot_pageset[cpu];
Dave Hansened8ece22005-10-29 18:16:50 -07002026 setup_pageset(&boot_pageset[cpu],0);
2027#else
2028 setup_pageset(zone_pcp(zone,cpu), batch);
2029#endif
2030 }
2031 printk(KERN_DEBUG " %s zone: %lu pages, LIFO batch:%lu\n",
2032 zone->name, zone->present_pages, batch);
2033}
2034
Matt Tolentinoc09b4242006-01-17 07:03:44 +01002035static __meminit void init_currently_empty_zone(struct zone *zone,
Dave Hansened8ece22005-10-29 18:16:50 -07002036 unsigned long zone_start_pfn, unsigned long size)
2037{
2038 struct pglist_data *pgdat = zone->zone_pgdat;
2039
2040 zone_wait_table_init(zone, size);
2041 pgdat->nr_zones = zone_idx(zone) + 1;
2042
2043 zone->zone_mem_map = pfn_to_page(zone_start_pfn);
2044 zone->zone_start_pfn = zone_start_pfn;
2045
2046 memmap_init(size, pgdat->node_id, zone_idx(zone), zone_start_pfn);
2047
2048 zone_init_free_lists(pgdat, zone, zone->spanned_pages);
2049}
2050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051/*
2052 * Set up the zone data structures:
2053 * - mark all pages reserved
2054 * - mark all memory queues empty
2055 * - clear the memory bitmaps
2056 */
2057static void __init free_area_init_core(struct pglist_data *pgdat,
2058 unsigned long *zones_size, unsigned long *zholes_size)
2059{
Dave Hansened8ece22005-10-29 18:16:50 -07002060 unsigned long j;
2061 int nid = pgdat->node_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 unsigned long zone_start_pfn = pgdat->node_start_pfn;
2063
Dave Hansen208d54e2005-10-29 18:16:52 -07002064 pgdat_resize_init(pgdat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 pgdat->nr_zones = 0;
2066 init_waitqueue_head(&pgdat->kswapd_wait);
2067 pgdat->kswapd_max_order = 0;
2068
2069 for (j = 0; j < MAX_NR_ZONES; j++) {
2070 struct zone *zone = pgdat->node_zones + j;
2071 unsigned long size, realsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 realsize = size = zones_size[j];
2074 if (zholes_size)
2075 realsize -= zholes_size[j];
2076
Andi Kleena2f1b422005-11-05 17:25:53 +01002077 if (j < ZONE_HIGHMEM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 nr_kernel_pages += realsize;
2079 nr_all_pages += realsize;
2080
2081 zone->spanned_pages = size;
2082 zone->present_pages = realsize;
2083 zone->name = zone_names[j];
2084 spin_lock_init(&zone->lock);
2085 spin_lock_init(&zone->lru_lock);
Dave Hansenbdc8cb92005-10-29 18:16:53 -07002086 zone_seqlock_init(zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 zone->zone_pgdat = pgdat;
2088 zone->free_pages = 0;
2089
2090 zone->temp_priority = zone->prev_priority = DEF_PRIORITY;
2091
Dave Hansened8ece22005-10-29 18:16:50 -07002092 zone_pcp_init(zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 INIT_LIST_HEAD(&zone->active_list);
2094 INIT_LIST_HEAD(&zone->inactive_list);
2095 zone->nr_scan_active = 0;
2096 zone->nr_scan_inactive = 0;
2097 zone->nr_active = 0;
2098 zone->nr_inactive = 0;
Martin Hicks53e9a612005-09-03 15:54:51 -07002099 atomic_set(&zone->reclaim_in_progress, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 if (!size)
2101 continue;
2102
Andy Whitcroftd41dee32005-06-23 00:07:54 -07002103 zonetable_add(zone, nid, j, zone_start_pfn, size);
Dave Hansened8ece22005-10-29 18:16:50 -07002104 init_currently_empty_zone(zone, zone_start_pfn, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 zone_start_pfn += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 }
2107}
2108
2109static void __init alloc_node_mem_map(struct pglist_data *pgdat)
2110{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 /* Skip empty nodes */
2112 if (!pgdat->node_spanned_pages)
2113 return;
2114
Andy Whitcroftd41dee32005-06-23 00:07:54 -07002115#ifdef CONFIG_FLAT_NODE_MEM_MAP
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 /* ia64 gets its own node_mem_map, before this, without bootmem */
2117 if (!pgdat->node_mem_map) {
Andy Whitcroftd41dee32005-06-23 00:07:54 -07002118 unsigned long size;
2119 struct page *map;
2120
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 size = (pgdat->node_spanned_pages + 1) * sizeof(struct page);
Dave Hansen6f167ec2005-06-23 00:07:39 -07002122 map = alloc_remap(pgdat->node_id, size);
2123 if (!map)
2124 map = alloc_bootmem_node(pgdat, size);
2125 pgdat->node_mem_map = map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 }
Andy Whitcroftd41dee32005-06-23 00:07:54 -07002127#ifdef CONFIG_FLATMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 /*
2129 * With no DISCONTIG, the global mem_map is just set as node 0's
2130 */
2131 if (pgdat == NODE_DATA(0))
2132 mem_map = NODE_DATA(0)->node_mem_map;
2133#endif
Andy Whitcroftd41dee32005-06-23 00:07:54 -07002134#endif /* CONFIG_FLAT_NODE_MEM_MAP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135}
2136
2137void __init free_area_init_node(int nid, struct pglist_data *pgdat,
2138 unsigned long *zones_size, unsigned long node_start_pfn,
2139 unsigned long *zholes_size)
2140{
2141 pgdat->node_id = nid;
2142 pgdat->node_start_pfn = node_start_pfn;
2143 calculate_zone_totalpages(pgdat, zones_size, zholes_size);
2144
2145 alloc_node_mem_map(pgdat);
2146
2147 free_area_init_core(pgdat, zones_size, zholes_size);
2148}
2149
Dave Hansen93b75042005-06-23 00:07:47 -07002150#ifndef CONFIG_NEED_MULTIPLE_NODES
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151static bootmem_data_t contig_bootmem_data;
2152struct pglist_data contig_page_data = { .bdata = &contig_bootmem_data };
2153
2154EXPORT_SYMBOL(contig_page_data);
Dave Hansen93b75042005-06-23 00:07:47 -07002155#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
2157void __init free_area_init(unsigned long *zones_size)
2158{
Dave Hansen93b75042005-06-23 00:07:47 -07002159 free_area_init_node(0, NODE_DATA(0), zones_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 __pa(PAGE_OFFSET) >> PAGE_SHIFT, NULL);
2161}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
2163#ifdef CONFIG_PROC_FS
2164
2165#include <linux/seq_file.h>
2166
2167static void *frag_start(struct seq_file *m, loff_t *pos)
2168{
2169 pg_data_t *pgdat;
2170 loff_t node = *pos;
2171
2172 for (pgdat = pgdat_list; pgdat && node; pgdat = pgdat->pgdat_next)
2173 --node;
2174
2175 return pgdat;
2176}
2177
2178static void *frag_next(struct seq_file *m, void *arg, loff_t *pos)
2179{
2180 pg_data_t *pgdat = (pg_data_t *)arg;
2181
2182 (*pos)++;
2183 return pgdat->pgdat_next;
2184}
2185
2186static void frag_stop(struct seq_file *m, void *arg)
2187{
2188}
2189
2190/*
2191 * This walks the free areas for each zone.
2192 */
2193static int frag_show(struct seq_file *m, void *arg)
2194{
2195 pg_data_t *pgdat = (pg_data_t *)arg;
2196 struct zone *zone;
2197 struct zone *node_zones = pgdat->node_zones;
2198 unsigned long flags;
2199 int order;
2200
2201 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
Con Kolivasf3fe6512006-01-06 00:11:15 -08002202 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 continue;
2204
2205 spin_lock_irqsave(&zone->lock, flags);
2206 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
2207 for (order = 0; order < MAX_ORDER; ++order)
2208 seq_printf(m, "%6lu ", zone->free_area[order].nr_free);
2209 spin_unlock_irqrestore(&zone->lock, flags);
2210 seq_putc(m, '\n');
2211 }
2212 return 0;
2213}
2214
2215struct seq_operations fragmentation_op = {
2216 .start = frag_start,
2217 .next = frag_next,
2218 .stop = frag_stop,
2219 .show = frag_show,
2220};
2221
Nikita Danilov295ab932005-06-21 17:14:38 -07002222/*
2223 * Output information about zones in @pgdat.
2224 */
2225static int zoneinfo_show(struct seq_file *m, void *arg)
2226{
2227 pg_data_t *pgdat = arg;
2228 struct zone *zone;
2229 struct zone *node_zones = pgdat->node_zones;
2230 unsigned long flags;
2231
2232 for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; zone++) {
2233 int i;
2234
Con Kolivasf3fe6512006-01-06 00:11:15 -08002235 if (!populated_zone(zone))
Nikita Danilov295ab932005-06-21 17:14:38 -07002236 continue;
2237
2238 spin_lock_irqsave(&zone->lock, flags);
2239 seq_printf(m, "Node %d, zone %8s", pgdat->node_id, zone->name);
2240 seq_printf(m,
2241 "\n pages free %lu"
2242 "\n min %lu"
2243 "\n low %lu"
2244 "\n high %lu"
2245 "\n active %lu"
2246 "\n inactive %lu"
2247 "\n scanned %lu (a: %lu i: %lu)"
2248 "\n spanned %lu"
2249 "\n present %lu",
2250 zone->free_pages,
2251 zone->pages_min,
2252 zone->pages_low,
2253 zone->pages_high,
2254 zone->nr_active,
2255 zone->nr_inactive,
2256 zone->pages_scanned,
2257 zone->nr_scan_active, zone->nr_scan_inactive,
2258 zone->spanned_pages,
2259 zone->present_pages);
2260 seq_printf(m,
2261 "\n protection: (%lu",
2262 zone->lowmem_reserve[0]);
2263 for (i = 1; i < ARRAY_SIZE(zone->lowmem_reserve); i++)
2264 seq_printf(m, ", %lu", zone->lowmem_reserve[i]);
2265 seq_printf(m,
2266 ")"
2267 "\n pagesets");
Nick Piggin23316bc2006-01-08 01:00:41 -08002268 for_each_online_cpu(i) {
Nikita Danilov295ab932005-06-21 17:14:38 -07002269 struct per_cpu_pageset *pageset;
2270 int j;
2271
Christoph Lametere7c8d5c2005-06-21 17:14:47 -07002272 pageset = zone_pcp(zone, i);
Nikita Danilov295ab932005-06-21 17:14:38 -07002273 for (j = 0; j < ARRAY_SIZE(pageset->pcp); j++) {
2274 if (pageset->pcp[j].count)
2275 break;
2276 }
2277 if (j == ARRAY_SIZE(pageset->pcp))
2278 continue;
2279 for (j = 0; j < ARRAY_SIZE(pageset->pcp); j++) {
2280 seq_printf(m,
2281 "\n cpu: %i pcp: %i"
2282 "\n count: %i"
Nikita Danilov295ab932005-06-21 17:14:38 -07002283 "\n high: %i"
2284 "\n batch: %i",
2285 i, j,
2286 pageset->pcp[j].count,
Nikita Danilov295ab932005-06-21 17:14:38 -07002287 pageset->pcp[j].high,
2288 pageset->pcp[j].batch);
2289 }
2290#ifdef CONFIG_NUMA
2291 seq_printf(m,
2292 "\n numa_hit: %lu"
2293 "\n numa_miss: %lu"
2294 "\n numa_foreign: %lu"
2295 "\n interleave_hit: %lu"
2296 "\n local_node: %lu"
2297 "\n other_node: %lu",
2298 pageset->numa_hit,
2299 pageset->numa_miss,
2300 pageset->numa_foreign,
2301 pageset->interleave_hit,
2302 pageset->local_node,
2303 pageset->other_node);
2304#endif
2305 }
2306 seq_printf(m,
2307 "\n all_unreclaimable: %u"
2308 "\n prev_priority: %i"
2309 "\n temp_priority: %i"
2310 "\n start_pfn: %lu",
2311 zone->all_unreclaimable,
2312 zone->prev_priority,
2313 zone->temp_priority,
2314 zone->zone_start_pfn);
2315 spin_unlock_irqrestore(&zone->lock, flags);
2316 seq_putc(m, '\n');
2317 }
2318 return 0;
2319}
2320
2321struct seq_operations zoneinfo_op = {
2322 .start = frag_start, /* iterate over all zones. The same as in
2323 * fragmentation. */
2324 .next = frag_next,
2325 .stop = frag_stop,
2326 .show = zoneinfo_show,
2327};
2328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329static char *vmstat_text[] = {
2330 "nr_dirty",
2331 "nr_writeback",
2332 "nr_unstable",
2333 "nr_page_table_pages",
2334 "nr_mapped",
2335 "nr_slab",
2336
2337 "pgpgin",
2338 "pgpgout",
2339 "pswpin",
2340 "pswpout",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
Nick Piggin9328b8f2006-01-06 00:11:10 -08002342 "pgalloc_high",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 "pgalloc_normal",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002344 "pgalloc_dma32",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 "pgalloc_dma",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 "pgfree",
2348 "pgactivate",
2349 "pgdeactivate",
2350
2351 "pgfault",
2352 "pgmajfault",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002353
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 "pgrefill_high",
2355 "pgrefill_normal",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002356 "pgrefill_dma32",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 "pgrefill_dma",
2358
2359 "pgsteal_high",
2360 "pgsteal_normal",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002361 "pgsteal_dma32",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 "pgsteal_dma",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002363
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 "pgscan_kswapd_high",
2365 "pgscan_kswapd_normal",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002366 "pgscan_kswapd_dma32",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 "pgscan_kswapd_dma",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 "pgscan_direct_high",
2370 "pgscan_direct_normal",
Nick Piggin9328b8f2006-01-06 00:11:10 -08002371 "pgscan_direct_dma32",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 "pgscan_direct_dma",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
Nick Piggin9328b8f2006-01-06 00:11:10 -08002374 "pginodesteal",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 "slabs_scanned",
2376 "kswapd_steal",
2377 "kswapd_inodesteal",
2378 "pageoutrun",
2379 "allocstall",
2380
2381 "pgrotated",
KAMEZAWA Hiroyukiedfbe2b2005-05-01 08:58:37 -07002382 "nr_bounce",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383};
2384
2385static void *vmstat_start(struct seq_file *m, loff_t *pos)
2386{
2387 struct page_state *ps;
2388
2389 if (*pos >= ARRAY_SIZE(vmstat_text))
2390 return NULL;
2391
2392 ps = kmalloc(sizeof(*ps), GFP_KERNEL);
2393 m->private = ps;
2394 if (!ps)
2395 return ERR_PTR(-ENOMEM);
2396 get_full_page_state(ps);
2397 ps->pgpgin /= 2; /* sectors -> kbytes */
2398 ps->pgpgout /= 2;
2399 return (unsigned long *)ps + *pos;
2400}
2401
2402static void *vmstat_next(struct seq_file *m, void *arg, loff_t *pos)
2403{
2404 (*pos)++;
2405 if (*pos >= ARRAY_SIZE(vmstat_text))
2406 return NULL;
2407 return (unsigned long *)m->private + *pos;
2408}
2409
2410static int vmstat_show(struct seq_file *m, void *arg)
2411{
2412 unsigned long *l = arg;
2413 unsigned long off = l - (unsigned long *)m->private;
2414
2415 seq_printf(m, "%s %lu\n", vmstat_text[off], *l);
2416 return 0;
2417}
2418
2419static void vmstat_stop(struct seq_file *m, void *arg)
2420{
2421 kfree(m->private);
2422 m->private = NULL;
2423}
2424
2425struct seq_operations vmstat_op = {
2426 .start = vmstat_start,
2427 .next = vmstat_next,
2428 .stop = vmstat_stop,
2429 .show = vmstat_show,
2430};
2431
2432#endif /* CONFIG_PROC_FS */
2433
2434#ifdef CONFIG_HOTPLUG_CPU
2435static int page_alloc_cpu_notify(struct notifier_block *self,
2436 unsigned long action, void *hcpu)
2437{
2438 int cpu = (unsigned long)hcpu;
2439 long *count;
2440 unsigned long *src, *dest;
2441
2442 if (action == CPU_DEAD) {
2443 int i;
2444
2445 /* Drain local pagecache count. */
2446 count = &per_cpu(nr_pagecache_local, cpu);
2447 atomic_add(*count, &nr_pagecache);
2448 *count = 0;
2449 local_irq_disable();
2450 __drain_pages(cpu);
2451
2452 /* Add dead cpu's page_states to our own. */
2453 dest = (unsigned long *)&__get_cpu_var(page_states);
2454 src = (unsigned long *)&per_cpu(page_states, cpu);
2455
2456 for (i = 0; i < sizeof(struct page_state)/sizeof(unsigned long);
2457 i++) {
2458 dest[i] += src[i];
2459 src[i] = 0;
2460 }
2461
2462 local_irq_enable();
2463 }
2464 return NOTIFY_OK;
2465}
2466#endif /* CONFIG_HOTPLUG_CPU */
2467
2468void __init page_alloc_init(void)
2469{
2470 hotcpu_notifier(page_alloc_cpu_notify, 0);
2471}
2472
2473/*
2474 * setup_per_zone_lowmem_reserve - called whenever
2475 * sysctl_lower_zone_reserve_ratio changes. Ensures that each zone
2476 * has a correct pages reserved value, so an adequate number of
2477 * pages are left in the zone after a successful __alloc_pages().
2478 */
2479static void setup_per_zone_lowmem_reserve(void)
2480{
2481 struct pglist_data *pgdat;
2482 int j, idx;
2483
2484 for_each_pgdat(pgdat) {
2485 for (j = 0; j < MAX_NR_ZONES; j++) {
2486 struct zone *zone = pgdat->node_zones + j;
2487 unsigned long present_pages = zone->present_pages;
2488
2489 zone->lowmem_reserve[j] = 0;
2490
2491 for (idx = j-1; idx >= 0; idx--) {
2492 struct zone *lower_zone;
2493
2494 if (sysctl_lowmem_reserve_ratio[idx] < 1)
2495 sysctl_lowmem_reserve_ratio[idx] = 1;
2496
2497 lower_zone = pgdat->node_zones + idx;
2498 lower_zone->lowmem_reserve[j] = present_pages /
2499 sysctl_lowmem_reserve_ratio[idx];
2500 present_pages += lower_zone->present_pages;
2501 }
2502 }
2503 }
2504}
2505
2506/*
2507 * setup_per_zone_pages_min - called when min_free_kbytes changes. Ensures
2508 * that the pages_{min,low,high} values for each zone are set correctly
2509 * with respect to min_free_kbytes.
2510 */
Dave Hansen3947be12005-10-29 18:16:54 -07002511void setup_per_zone_pages_min(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512{
2513 unsigned long pages_min = min_free_kbytes >> (PAGE_SHIFT - 10);
2514 unsigned long lowmem_pages = 0;
2515 struct zone *zone;
2516 unsigned long flags;
2517
2518 /* Calculate total number of !ZONE_HIGHMEM pages */
2519 for_each_zone(zone) {
2520 if (!is_highmem(zone))
2521 lowmem_pages += zone->present_pages;
2522 }
2523
2524 for_each_zone(zone) {
Nick Piggin669ed172005-11-13 16:06:45 -08002525 unsigned long tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 spin_lock_irqsave(&zone->lru_lock, flags);
Nick Piggin669ed172005-11-13 16:06:45 -08002527 tmp = (pages_min * zone->present_pages) / lowmem_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 if (is_highmem(zone)) {
2529 /*
Nick Piggin669ed172005-11-13 16:06:45 -08002530 * __GFP_HIGH and PF_MEMALLOC allocations usually don't
2531 * need highmem pages, so cap pages_min to a small
2532 * value here.
2533 *
2534 * The (pages_high-pages_low) and (pages_low-pages_min)
2535 * deltas controls asynch page reclaim, and so should
2536 * not be capped for highmem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 */
2538 int min_pages;
2539
2540 min_pages = zone->present_pages / 1024;
2541 if (min_pages < SWAP_CLUSTER_MAX)
2542 min_pages = SWAP_CLUSTER_MAX;
2543 if (min_pages > 128)
2544 min_pages = 128;
2545 zone->pages_min = min_pages;
2546 } else {
Nick Piggin669ed172005-11-13 16:06:45 -08002547 /*
2548 * If it's a lowmem zone, reserve a number of pages
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 * proportionate to the zone's size.
2550 */
Nick Piggin669ed172005-11-13 16:06:45 -08002551 zone->pages_min = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 }
2553
Nick Piggin669ed172005-11-13 16:06:45 -08002554 zone->pages_low = zone->pages_min + tmp / 4;
2555 zone->pages_high = zone->pages_min + tmp / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 spin_unlock_irqrestore(&zone->lru_lock, flags);
2557 }
2558}
2559
2560/*
2561 * Initialise min_free_kbytes.
2562 *
2563 * For small machines we want it small (128k min). For large machines
2564 * we want it large (64MB max). But it is not linear, because network
2565 * bandwidth does not increase linearly with machine size. We use
2566 *
2567 * min_free_kbytes = 4 * sqrt(lowmem_kbytes), for better accuracy:
2568 * min_free_kbytes = sqrt(lowmem_kbytes * 16)
2569 *
2570 * which yields
2571 *
2572 * 16MB: 512k
2573 * 32MB: 724k
2574 * 64MB: 1024k
2575 * 128MB: 1448k
2576 * 256MB: 2048k
2577 * 512MB: 2896k
2578 * 1024MB: 4096k
2579 * 2048MB: 5792k
2580 * 4096MB: 8192k
2581 * 8192MB: 11584k
2582 * 16384MB: 16384k
2583 */
2584static int __init init_per_zone_pages_min(void)
2585{
2586 unsigned long lowmem_kbytes;
2587
2588 lowmem_kbytes = nr_free_buffer_pages() * (PAGE_SIZE >> 10);
2589
2590 min_free_kbytes = int_sqrt(lowmem_kbytes * 16);
2591 if (min_free_kbytes < 128)
2592 min_free_kbytes = 128;
2593 if (min_free_kbytes > 65536)
2594 min_free_kbytes = 65536;
2595 setup_per_zone_pages_min();
2596 setup_per_zone_lowmem_reserve();
2597 return 0;
2598}
2599module_init(init_per_zone_pages_min)
2600
2601/*
2602 * min_free_kbytes_sysctl_handler - just a wrapper around proc_dointvec() so
2603 * that we can call two helper functions whenever min_free_kbytes
2604 * changes.
2605 */
2606int min_free_kbytes_sysctl_handler(ctl_table *table, int write,
2607 struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
2608{
2609 proc_dointvec(table, write, file, buffer, length, ppos);
2610 setup_per_zone_pages_min();
2611 return 0;
2612}
2613
2614/*
2615 * lowmem_reserve_ratio_sysctl_handler - just a wrapper around
2616 * proc_dointvec() so that we can call setup_per_zone_lowmem_reserve()
2617 * whenever sysctl_lowmem_reserve_ratio changes.
2618 *
2619 * The reserve ratio obviously has absolutely no relation with the
2620 * pages_min watermarks. The lowmem reserve ratio can only make sense
2621 * if in function of the boot time zone sizes.
2622 */
2623int lowmem_reserve_ratio_sysctl_handler(ctl_table *table, int write,
2624 struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
2625{
2626 proc_dointvec_minmax(table, write, file, buffer, length, ppos);
2627 setup_per_zone_lowmem_reserve();
2628 return 0;
2629}
2630
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08002631/*
2632 * percpu_pagelist_fraction - changes the pcp->high for each zone on each
2633 * cpu. It is the fraction of total pages in each zone that a hot per cpu pagelist
2634 * can have before it gets flushed back to buddy allocator.
2635 */
2636
2637int percpu_pagelist_fraction_sysctl_handler(ctl_table *table, int write,
2638 struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
2639{
2640 struct zone *zone;
2641 unsigned int cpu;
2642 int ret;
2643
2644 ret = proc_dointvec_minmax(table, write, file, buffer, length, ppos);
2645 if (!write || (ret == -EINVAL))
2646 return ret;
2647 for_each_zone(zone) {
2648 for_each_online_cpu(cpu) {
2649 unsigned long high;
2650 high = zone->present_pages / percpu_pagelist_fraction;
2651 setup_pagelist_highmark(zone_pcp(zone, cpu), high);
2652 }
2653 }
2654 return 0;
2655}
2656
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657__initdata int hashdist = HASHDIST_DEFAULT;
2658
2659#ifdef CONFIG_NUMA
2660static int __init set_hashdist(char *str)
2661{
2662 if (!str)
2663 return 0;
2664 hashdist = simple_strtoul(str, &str, 0);
2665 return 1;
2666}
2667__setup("hashdist=", set_hashdist);
2668#endif
2669
2670/*
2671 * allocate a large system hash table from bootmem
2672 * - it is assumed that the hash table must contain an exact power-of-2
2673 * quantity of entries
2674 * - limit is the number of hash buckets, not the total allocation size
2675 */
2676void *__init alloc_large_system_hash(const char *tablename,
2677 unsigned long bucketsize,
2678 unsigned long numentries,
2679 int scale,
2680 int flags,
2681 unsigned int *_hash_shift,
2682 unsigned int *_hash_mask,
2683 unsigned long limit)
2684{
2685 unsigned long long max = limit;
2686 unsigned long log2qty, size;
2687 void *table = NULL;
2688
2689 /* allow the kernel cmdline to have a say */
2690 if (!numentries) {
2691 /* round applicable memory size up to nearest megabyte */
2692 numentries = (flags & HASH_HIGHMEM) ? nr_all_pages : nr_kernel_pages;
2693 numentries += (1UL << (20 - PAGE_SHIFT)) - 1;
2694 numentries >>= 20 - PAGE_SHIFT;
2695 numentries <<= 20 - PAGE_SHIFT;
2696
2697 /* limit to 1 bucket per 2^scale bytes of low memory */
2698 if (scale > PAGE_SHIFT)
2699 numentries >>= (scale - PAGE_SHIFT);
2700 else
2701 numentries <<= (PAGE_SHIFT - scale);
2702 }
2703 /* rounded up to nearest power of 2 in size */
2704 numentries = 1UL << (long_log2(numentries) + 1);
2705
2706 /* limit allocation size to 1/16 total memory by default */
2707 if (max == 0) {
2708 max = ((unsigned long long)nr_all_pages << PAGE_SHIFT) >> 4;
2709 do_div(max, bucketsize);
2710 }
2711
2712 if (numentries > max)
2713 numentries = max;
2714
2715 log2qty = long_log2(numentries);
2716
2717 do {
2718 size = bucketsize << log2qty;
2719 if (flags & HASH_EARLY)
2720 table = alloc_bootmem(size);
2721 else if (hashdist)
2722 table = __vmalloc(size, GFP_ATOMIC, PAGE_KERNEL);
2723 else {
2724 unsigned long order;
2725 for (order = 0; ((1UL << order) << PAGE_SHIFT) < size; order++)
2726 ;
2727 table = (void*) __get_free_pages(GFP_ATOMIC, order);
2728 }
2729 } while (!table && size > PAGE_SIZE && --log2qty);
2730
2731 if (!table)
2732 panic("Failed to allocate %s hash table\n", tablename);
2733
2734 printk("%s hash table entries: %d (order: %d, %lu bytes)\n",
2735 tablename,
2736 (1U << log2qty),
2737 long_log2(size) - PAGE_SHIFT,
2738 size);
2739
2740 if (_hash_shift)
2741 *_hash_shift = log2qty;
2742 if (_hash_mask)
2743 *_hash_mask = (1 << log2qty) - 1;
2744
2745 return table;
2746}