Remove obsolete #include <linux/config.h>
[pandora-kernel.git] / mm / page_alloc.c
1 /*
2  *  linux/mm/page_alloc.c
3  *
4  *  Manages the free list, the system allocates free pages here.
5  *  Note that kmalloc() lives in slab.c
6  *
7  *  Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
8  *  Swap reorganised 29.12.95, Stephen Tweedie
9  *  Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
10  *  Reshaped it to be a zoned allocator, Ingo Molnar, Red Hat, 1999
11  *  Discontiguous memory support, Kanoj Sarcar, SGI, Nov 1999
12  *  Zone balancing, Kanoj Sarcar, SGI, Jan 2000
13  *  Per cpu hot/cold page lists, bulk allocation, Martin J. Bligh, Sept 2002
14  *          (lots of bits borrowed from Ingo Molnar & Andrew Morton)
15  */
16
17 #include <linux/stddef.h>
18 #include <linux/mm.h>
19 #include <linux/swap.h>
20 #include <linux/interrupt.h>
21 #include <linux/pagemap.h>
22 #include <linux/bootmem.h>
23 #include <linux/compiler.h>
24 #include <linux/kernel.h>
25 #include <linux/module.h>
26 #include <linux/suspend.h>
27 #include <linux/pagevec.h>
28 #include <linux/blkdev.h>
29 #include <linux/slab.h>
30 #include <linux/notifier.h>
31 #include <linux/topology.h>
32 #include <linux/sysctl.h>
33 #include <linux/cpu.h>
34 #include <linux/cpuset.h>
35 #include <linux/memory_hotplug.h>
36 #include <linux/nodemask.h>
37 #include <linux/vmalloc.h>
38 #include <linux/mempolicy.h>
39 #include <linux/stop_machine.h>
40
41 #include <asm/tlbflush.h>
42 #include <asm/div64.h>
43 #include "internal.h"
44
45 /*
46  * MCD - HACK: Find somewhere to initialize this EARLY, or make this
47  * initializer cleaner
48  */
49 nodemask_t node_online_map __read_mostly = { { [0] = 1UL } };
50 EXPORT_SYMBOL(node_online_map);
51 nodemask_t node_possible_map __read_mostly = NODE_MASK_ALL;
52 EXPORT_SYMBOL(node_possible_map);
53 unsigned long totalram_pages __read_mostly;
54 unsigned long totalhigh_pages __read_mostly;
55 unsigned long totalreserve_pages __read_mostly;
56 long nr_swap_pages;
57 int percpu_pagelist_fraction;
58
59 static void __free_pages_ok(struct page *page, unsigned int order);
60
61 /*
62  * results with 256, 32 in the lowmem_reserve sysctl:
63  *      1G machine -> (16M dma, 800M-16M normal, 1G-800M high)
64  *      1G machine -> (16M dma, 784M normal, 224M high)
65  *      NORMAL allocation will leave 784M/256 of ram reserved in the ZONE_DMA
66  *      HIGHMEM allocation will leave 224M/32 of ram reserved in ZONE_NORMAL
67  *      HIGHMEM allocation will (224M+784M)/256 of ram reserved in ZONE_DMA
68  *
69  * TBD: should special case ZONE_DMA32 machines here - in those we normally
70  * don't need any ZONE_NORMAL reservation
71  */
72 int sysctl_lowmem_reserve_ratio[MAX_NR_ZONES-1] = { 256, 256, 32 };
73
74 EXPORT_SYMBOL(totalram_pages);
75
76 /*
77  * Used by page_zone() to look up the address of the struct zone whose
78  * id is encoded in the upper bits of page->flags
79  */
80 struct zone *zone_table[1 << ZONETABLE_SHIFT] __read_mostly;
81 EXPORT_SYMBOL(zone_table);
82
83 static char *zone_names[MAX_NR_ZONES] = { "DMA", "DMA32", "Normal", "HighMem" };
84 int min_free_kbytes = 1024;
85
86 unsigned long __meminitdata nr_kernel_pages;
87 unsigned long __meminitdata nr_all_pages;
88
89 #ifdef CONFIG_DEBUG_VM
90 static int page_outside_zone_boundaries(struct zone *zone, struct page *page)
91 {
92         int ret = 0;
93         unsigned seq;
94         unsigned long pfn = page_to_pfn(page);
95
96         do {
97                 seq = zone_span_seqbegin(zone);
98                 if (pfn >= zone->zone_start_pfn + zone->spanned_pages)
99                         ret = 1;
100                 else if (pfn < zone->zone_start_pfn)
101                         ret = 1;
102         } while (zone_span_seqretry(zone, seq));
103
104         return ret;
105 }
106
107 static int page_is_consistent(struct zone *zone, struct page *page)
108 {
109 #ifdef CONFIG_HOLES_IN_ZONE
110         if (!pfn_valid(page_to_pfn(page)))
111                 return 0;
112 #endif
113         if (zone != page_zone(page))
114                 return 0;
115
116         return 1;
117 }
118 /*
119  * Temporary debugging check for pages not lying within a given zone.
120  */
121 static int bad_range(struct zone *zone, struct page *page)
122 {
123         if (page_outside_zone_boundaries(zone, page))
124                 return 1;
125         if (!page_is_consistent(zone, page))
126                 return 1;
127
128         return 0;
129 }
130
131 #else
132 static inline int bad_range(struct zone *zone, struct page *page)
133 {
134         return 0;
135 }
136 #endif
137
138 static void bad_page(struct page *page)
139 {
140         printk(KERN_EMERG "Bad page state in process '%s'\n"
141                 KERN_EMERG "page:%p flags:0x%0*lx mapping:%p mapcount:%d count:%d\n"
142                 KERN_EMERG "Trying to fix it up, but a reboot is needed\n"
143                 KERN_EMERG "Backtrace:\n",
144                 current->comm, page, (int)(2*sizeof(unsigned long)),
145                 (unsigned long)page->flags, page->mapping,
146                 page_mapcount(page), page_count(page));
147         dump_stack();
148         page->flags &= ~(1 << PG_lru    |
149                         1 << PG_private |
150                         1 << PG_locked  |
151                         1 << PG_active  |
152                         1 << PG_dirty   |
153                         1 << PG_reclaim |
154                         1 << PG_slab    |
155                         1 << PG_swapcache |
156                         1 << PG_writeback |
157                         1 << PG_buddy );
158         set_page_count(page, 0);
159         reset_page_mapcount(page);
160         page->mapping = NULL;
161         add_taint(TAINT_BAD_PAGE);
162 }
163
164 /*
165  * Higher-order pages are called "compound pages".  They are structured thusly:
166  *
167  * The first PAGE_SIZE page is called the "head page".
168  *
169  * The remaining PAGE_SIZE pages are called "tail pages".
170  *
171  * All pages have PG_compound set.  All pages have their ->private pointing at
172  * the head page (even the head page has this).
173  *
174  * The first tail page's ->lru.next holds the address of the compound page's
175  * put_page() function.  Its ->lru.prev holds the order of allocation.
176  * This usage means that zero-order pages may not be compound.
177  */
178
179 static void free_compound_page(struct page *page)
180 {
181         __free_pages_ok(page, (unsigned long)page[1].lru.prev);
182 }
183
184 static void prep_compound_page(struct page *page, unsigned long order)
185 {
186         int i;
187         int nr_pages = 1 << order;
188
189         page[1].lru.next = (void *)free_compound_page;  /* set dtor */
190         page[1].lru.prev = (void *)order;
191         for (i = 0; i < nr_pages; i++) {
192                 struct page *p = page + i;
193
194                 __SetPageCompound(p);
195                 set_page_private(p, (unsigned long)page);
196         }
197 }
198
199 static void destroy_compound_page(struct page *page, unsigned long order)
200 {
201         int i;
202         int nr_pages = 1 << order;
203
204         if (unlikely((unsigned long)page[1].lru.prev != order))
205                 bad_page(page);
206
207         for (i = 0; i < nr_pages; i++) {
208                 struct page *p = page + i;
209
210                 if (unlikely(!PageCompound(p) |
211                                 (page_private(p) != (unsigned long)page)))
212                         bad_page(page);
213                 __ClearPageCompound(p);
214         }
215 }
216
217 static inline void prep_zero_page(struct page *page, int order, gfp_t gfp_flags)
218 {
219         int i;
220
221         BUG_ON((gfp_flags & (__GFP_WAIT | __GFP_HIGHMEM)) == __GFP_HIGHMEM);
222         /*
223          * clear_highpage() will use KM_USER0, so it's a bug to use __GFP_ZERO
224          * and __GFP_HIGHMEM from hard or soft interrupt context.
225          */
226         BUG_ON((gfp_flags & __GFP_HIGHMEM) && in_interrupt());
227         for (i = 0; i < (1 << order); i++)
228                 clear_highpage(page + i);
229 }
230
231 /*
232  * function for dealing with page's order in buddy system.
233  * zone->lock is already acquired when we use these.
234  * So, we don't need atomic page->flags operations here.
235  */
236 static inline unsigned long page_order(struct page *page)
237 {
238         return page_private(page);
239 }
240
241 static inline void set_page_order(struct page *page, int order)
242 {
243         set_page_private(page, order);
244         __SetPageBuddy(page);
245 }
246
247 static inline void rmv_page_order(struct page *page)
248 {
249         __ClearPageBuddy(page);
250         set_page_private(page, 0);
251 }
252
253 /*
254  * Locate the struct page for both the matching buddy in our
255  * pair (buddy1) and the combined O(n+1) page they form (page).
256  *
257  * 1) Any buddy B1 will have an order O twin B2 which satisfies
258  * the following equation:
259  *     B2 = B1 ^ (1 << O)
260  * For example, if the starting buddy (buddy2) is #8 its order
261  * 1 buddy is #10:
262  *     B2 = 8 ^ (1 << 1) = 8 ^ 2 = 10
263  *
264  * 2) Any buddy B will have an order O+1 parent P which
265  * satisfies the following equation:
266  *     P = B & ~(1 << O)
267  *
268  * Assumption: *_mem_map is contiguous at least up to MAX_ORDER
269  */
270 static inline struct page *
271 __page_find_buddy(struct page *page, unsigned long page_idx, unsigned int order)
272 {
273         unsigned long buddy_idx = page_idx ^ (1 << order);
274
275         return page + (buddy_idx - page_idx);
276 }
277
278 static inline unsigned long
279 __find_combined_index(unsigned long page_idx, unsigned int order)
280 {
281         return (page_idx & ~(1 << order));
282 }
283
284 /*
285  * This function checks whether a page is free && is the buddy
286  * we can do coalesce a page and its buddy if
287  * (a) the buddy is not in a hole &&
288  * (b) the buddy is in the buddy system &&
289  * (c) a page and its buddy have the same order &&
290  * (d) a page and its buddy are in the same zone.
291  *
292  * For recording whether a page is in the buddy system, we use PG_buddy.
293  * Setting, clearing, and testing PG_buddy is serialized by zone->lock.
294  *
295  * For recording page's order, we use page_private(page).
296  */
297 static inline int page_is_buddy(struct page *page, struct page *buddy,
298                                                                 int order)
299 {
300 #ifdef CONFIG_HOLES_IN_ZONE
301         if (!pfn_valid(page_to_pfn(buddy)))
302                 return 0;
303 #endif
304
305         if (page_zone_id(page) != page_zone_id(buddy))
306                 return 0;
307
308         if (PageBuddy(buddy) && page_order(buddy) == order) {
309                 BUG_ON(page_count(buddy) != 0);
310                 return 1;
311         }
312         return 0;
313 }
314
315 /*
316  * Freeing function for a buddy system allocator.
317  *
318  * The concept of a buddy system is to maintain direct-mapped table
319  * (containing bit values) for memory blocks of various "orders".
320  * The bottom level table contains the map for the smallest allocatable
321  * units of memory (here, pages), and each level above it describes
322  * pairs of units from the levels below, hence, "buddies".
323  * At a high level, all that happens here is marking the table entry
324  * at the bottom level available, and propagating the changes upward
325  * as necessary, plus some accounting needed to play nicely with other
326  * parts of the VM system.
327  * At each level, we keep a list of pages, which are heads of continuous
328  * free pages of length of (1 << order) and marked with PG_buddy. Page's
329  * order is recorded in page_private(page) field.
330  * So when we are allocating or freeing one, we can derive the state of the
331  * other.  That is, if we allocate a small block, and both were   
332  * free, the remainder of the region must be split into blocks.   
333  * If a block is freed, and its buddy is also free, then this
334  * triggers coalescing into a block of larger size.            
335  *
336  * -- wli
337  */
338
339 static inline void __free_one_page(struct page *page,
340                 struct zone *zone, unsigned int order)
341 {
342         unsigned long page_idx;
343         int order_size = 1 << order;
344
345         if (unlikely(PageCompound(page)))
346                 destroy_compound_page(page, order);
347
348         page_idx = page_to_pfn(page) & ((1 << MAX_ORDER) - 1);
349
350         BUG_ON(page_idx & (order_size - 1));
351         BUG_ON(bad_range(zone, page));
352
353         zone->free_pages += order_size;
354         while (order < MAX_ORDER-1) {
355                 unsigned long combined_idx;
356                 struct free_area *area;
357                 struct page *buddy;
358
359                 buddy = __page_find_buddy(page, page_idx, order);
360                 if (!page_is_buddy(page, buddy, order))
361                         break;          /* Move the buddy up one level. */
362
363                 list_del(&buddy->lru);
364                 area = zone->free_area + order;
365                 area->nr_free--;
366                 rmv_page_order(buddy);
367                 combined_idx = __find_combined_index(page_idx, order);
368                 page = page + (combined_idx - page_idx);
369                 page_idx = combined_idx;
370                 order++;
371         }
372         set_page_order(page, order);
373         list_add(&page->lru, &zone->free_area[order].free_list);
374         zone->free_area[order].nr_free++;
375 }
376
377 static inline int free_pages_check(struct page *page)
378 {
379         if (unlikely(page_mapcount(page) |
380                 (page->mapping != NULL)  |
381                 (page_count(page) != 0)  |
382                 (page->flags & (
383                         1 << PG_lru     |
384                         1 << PG_private |
385                         1 << PG_locked  |
386                         1 << PG_active  |
387                         1 << PG_reclaim |
388                         1 << PG_slab    |
389                         1 << PG_swapcache |
390                         1 << PG_writeback |
391                         1 << PG_reserved |
392                         1 << PG_buddy ))))
393                 bad_page(page);
394         if (PageDirty(page))
395                 __ClearPageDirty(page);
396         /*
397          * For now, we report if PG_reserved was found set, but do not
398          * clear it, and do not free the page.  But we shall soon need
399          * to do more, for when the ZERO_PAGE count wraps negative.
400          */
401         return PageReserved(page);
402 }
403
404 /*
405  * Frees a list of pages. 
406  * Assumes all pages on list are in same zone, and of same order.
407  * count is the number of pages to free.
408  *
409  * If the zone was previously in an "all pages pinned" state then look to
410  * see if this freeing clears that state.
411  *
412  * And clear the zone's pages_scanned counter, to hold off the "all pages are
413  * pinned" detection logic.
414  */
415 static void free_pages_bulk(struct zone *zone, int count,
416                                         struct list_head *list, int order)
417 {
418         spin_lock(&zone->lock);
419         zone->all_unreclaimable = 0;
420         zone->pages_scanned = 0;
421         while (count--) {
422                 struct page *page;
423
424                 BUG_ON(list_empty(list));
425                 page = list_entry(list->prev, struct page, lru);
426                 /* have to delete it as __free_one_page list manipulates */
427                 list_del(&page->lru);
428                 __free_one_page(page, zone, order);
429         }
430         spin_unlock(&zone->lock);
431 }
432
433 static void free_one_page(struct zone *zone, struct page *page, int order)
434 {
435         LIST_HEAD(list);
436         list_add(&page->lru, &list);
437         free_pages_bulk(zone, 1, &list, order);
438 }
439
440 static void __free_pages_ok(struct page *page, unsigned int order)
441 {
442         unsigned long flags;
443         int i;
444         int reserved = 0;
445
446         arch_free_page(page, order);
447         if (!PageHighMem(page))
448                 debug_check_no_locks_freed(page_address(page),
449                                            PAGE_SIZE<<order);
450
451         for (i = 0 ; i < (1 << order) ; ++i)
452                 reserved += free_pages_check(page + i);
453         if (reserved)
454                 return;
455
456         kernel_map_pages(page, 1 << order, 0);
457         local_irq_save(flags);
458         __mod_page_state(pgfree, 1 << order);
459         free_one_page(page_zone(page), page, order);
460         local_irq_restore(flags);
461 }
462
463 /*
464  * permit the bootmem allocator to evade page validation on high-order frees
465  */
466 void fastcall __init __free_pages_bootmem(struct page *page, unsigned int order)
467 {
468         if (order == 0) {
469                 __ClearPageReserved(page);
470                 set_page_count(page, 0);
471                 set_page_refcounted(page);
472                 __free_page(page);
473         } else {
474                 int loop;
475
476                 prefetchw(page);
477                 for (loop = 0; loop < BITS_PER_LONG; loop++) {
478                         struct page *p = &page[loop];
479
480                         if (loop + 1 < BITS_PER_LONG)
481                                 prefetchw(p + 1);
482                         __ClearPageReserved(p);
483                         set_page_count(p, 0);
484                 }
485
486                 set_page_refcounted(page);
487                 __free_pages(page, order);
488         }
489 }
490
491
492 /*
493  * The order of subdivision here is critical for the IO subsystem.
494  * Please do not alter this order without good reasons and regression
495  * testing. Specifically, as large blocks of memory are subdivided,
496  * the order in which smaller blocks are delivered depends on the order
497  * they're subdivided in this function. This is the primary factor
498  * influencing the order in which pages are delivered to the IO
499  * subsystem according to empirical testing, and this is also justified
500  * by considering the behavior of a buddy system containing a single
501  * large block of memory acted on by a series of small allocations.
502  * This behavior is a critical factor in sglist merging's success.
503  *
504  * -- wli
505  */
506 static inline void expand(struct zone *zone, struct page *page,
507         int low, int high, struct free_area *area)
508 {
509         unsigned long size = 1 << high;
510
511         while (high > low) {
512                 area--;
513                 high--;
514                 size >>= 1;
515                 BUG_ON(bad_range(zone, &page[size]));
516                 list_add(&page[size].lru, &area->free_list);
517                 area->nr_free++;
518                 set_page_order(&page[size], high);
519         }
520 }
521
522 /*
523  * This page is about to be returned from the page allocator
524  */
525 static int prep_new_page(struct page *page, int order, gfp_t gfp_flags)
526 {
527         if (unlikely(page_mapcount(page) |
528                 (page->mapping != NULL)  |
529                 (page_count(page) != 0)  |
530                 (page->flags & (
531                         1 << PG_lru     |
532                         1 << PG_private |
533                         1 << PG_locked  |
534                         1 << PG_active  |
535                         1 << PG_dirty   |
536                         1 << PG_reclaim |
537                         1 << PG_slab    |
538                         1 << PG_swapcache |
539                         1 << PG_writeback |
540                         1 << PG_reserved |
541                         1 << PG_buddy ))))
542                 bad_page(page);
543
544         /*
545          * For now, we report if PG_reserved was found set, but do not
546          * clear it, and do not allocate the page: as a safety net.
547          */
548         if (PageReserved(page))
549                 return 1;
550
551         page->flags &= ~(1 << PG_uptodate | 1 << PG_error |
552                         1 << PG_referenced | 1 << PG_arch_1 |
553                         1 << PG_checked | 1 << PG_mappedtodisk);
554         set_page_private(page, 0);
555         set_page_refcounted(page);
556         kernel_map_pages(page, 1 << order, 1);
557
558         if (gfp_flags & __GFP_ZERO)
559                 prep_zero_page(page, order, gfp_flags);
560
561         if (order && (gfp_flags & __GFP_COMP))
562                 prep_compound_page(page, order);
563
564         return 0;
565 }
566
567 /* 
568  * Do the hard work of removing an element from the buddy allocator.
569  * Call me with the zone->lock already held.
570  */
571 static struct page *__rmqueue(struct zone *zone, unsigned int order)
572 {
573         struct free_area * area;
574         unsigned int current_order;
575         struct page *page;
576
577         for (current_order = order; current_order < MAX_ORDER; ++current_order) {
578                 area = zone->free_area + current_order;
579                 if (list_empty(&area->free_list))
580                         continue;
581
582                 page = list_entry(area->free_list.next, struct page, lru);
583                 list_del(&page->lru);
584                 rmv_page_order(page);
585                 area->nr_free--;
586                 zone->free_pages -= 1UL << order;
587                 expand(zone, page, order, current_order, area);
588                 return page;
589         }
590
591         return NULL;
592 }
593
594 /* 
595  * Obtain a specified number of elements from the buddy allocator, all under
596  * a single hold of the lock, for efficiency.  Add them to the supplied list.
597  * Returns the number of new pages which were placed at *list.
598  */
599 static int rmqueue_bulk(struct zone *zone, unsigned int order, 
600                         unsigned long count, struct list_head *list)
601 {
602         int i;
603         
604         spin_lock(&zone->lock);
605         for (i = 0; i < count; ++i) {
606                 struct page *page = __rmqueue(zone, order);
607                 if (unlikely(page == NULL))
608                         break;
609                 list_add_tail(&page->lru, list);
610         }
611         spin_unlock(&zone->lock);
612         return i;
613 }
614
615 #ifdef CONFIG_NUMA
616 /*
617  * Called from the slab reaper to drain pagesets on a particular node that
618  * belong to the currently executing processor.
619  * Note that this function must be called with the thread pinned to
620  * a single processor.
621  */
622 void drain_node_pages(int nodeid)
623 {
624         int i, z;
625         unsigned long flags;
626
627         for (z = 0; z < MAX_NR_ZONES; z++) {
628                 struct zone *zone = NODE_DATA(nodeid)->node_zones + z;
629                 struct per_cpu_pageset *pset;
630
631                 pset = zone_pcp(zone, smp_processor_id());
632                 for (i = 0; i < ARRAY_SIZE(pset->pcp); i++) {
633                         struct per_cpu_pages *pcp;
634
635                         pcp = &pset->pcp[i];
636                         if (pcp->count) {
637                                 local_irq_save(flags);
638                                 free_pages_bulk(zone, pcp->count, &pcp->list, 0);
639                                 pcp->count = 0;
640                                 local_irq_restore(flags);
641                         }
642                 }
643         }
644 }
645 #endif
646
647 #if defined(CONFIG_PM) || defined(CONFIG_HOTPLUG_CPU)
648 static void __drain_pages(unsigned int cpu)
649 {
650         unsigned long flags;
651         struct zone *zone;
652         int i;
653
654         for_each_zone(zone) {
655                 struct per_cpu_pageset *pset;
656
657                 pset = zone_pcp(zone, cpu);
658                 for (i = 0; i < ARRAY_SIZE(pset->pcp); i++) {
659                         struct per_cpu_pages *pcp;
660
661                         pcp = &pset->pcp[i];
662                         local_irq_save(flags);
663                         free_pages_bulk(zone, pcp->count, &pcp->list, 0);
664                         pcp->count = 0;
665                         local_irq_restore(flags);
666                 }
667         }
668 }
669 #endif /* CONFIG_PM || CONFIG_HOTPLUG_CPU */
670
671 #ifdef CONFIG_PM
672
673 void mark_free_pages(struct zone *zone)
674 {
675         unsigned long zone_pfn, flags;
676         int order;
677         struct list_head *curr;
678
679         if (!zone->spanned_pages)
680                 return;
681
682         spin_lock_irqsave(&zone->lock, flags);
683         for (zone_pfn = 0; zone_pfn < zone->spanned_pages; ++zone_pfn)
684                 ClearPageNosaveFree(pfn_to_page(zone_pfn + zone->zone_start_pfn));
685
686         for (order = MAX_ORDER - 1; order >= 0; --order)
687                 list_for_each(curr, &zone->free_area[order].free_list) {
688                         unsigned long start_pfn, i;
689
690                         start_pfn = page_to_pfn(list_entry(curr, struct page, lru));
691
692                         for (i=0; i < (1<<order); i++)
693                                 SetPageNosaveFree(pfn_to_page(start_pfn+i));
694         }
695         spin_unlock_irqrestore(&zone->lock, flags);
696 }
697
698 /*
699  * Spill all of this CPU's per-cpu pages back into the buddy allocator.
700  */
701 void drain_local_pages(void)
702 {
703         unsigned long flags;
704
705         local_irq_save(flags);  
706         __drain_pages(smp_processor_id());
707         local_irq_restore(flags);       
708 }
709 #endif /* CONFIG_PM */
710
711 static void zone_statistics(struct zonelist *zonelist, struct zone *z, int cpu)
712 {
713 #ifdef CONFIG_NUMA
714         pg_data_t *pg = z->zone_pgdat;
715         pg_data_t *orig = zonelist->zones[0]->zone_pgdat;
716         struct per_cpu_pageset *p;
717
718         p = zone_pcp(z, cpu);
719         if (pg == orig) {
720                 p->numa_hit++;
721         } else {
722                 p->numa_miss++;
723                 zone_pcp(zonelist->zones[0], cpu)->numa_foreign++;
724         }
725         if (pg == NODE_DATA(numa_node_id()))
726                 p->local_node++;
727         else
728                 p->other_node++;
729 #endif
730 }
731
732 /*
733  * Free a 0-order page
734  */
735 static void fastcall free_hot_cold_page(struct page *page, int cold)
736 {
737         struct zone *zone = page_zone(page);
738         struct per_cpu_pages *pcp;
739         unsigned long flags;
740
741         arch_free_page(page, 0);
742
743         if (PageAnon(page))
744                 page->mapping = NULL;
745         if (free_pages_check(page))
746                 return;
747
748         kernel_map_pages(page, 1, 0);
749
750         pcp = &zone_pcp(zone, get_cpu())->pcp[cold];
751         local_irq_save(flags);
752         __inc_page_state(pgfree);
753         list_add(&page->lru, &pcp->list);
754         pcp->count++;
755         if (pcp->count >= pcp->high) {
756                 free_pages_bulk(zone, pcp->batch, &pcp->list, 0);
757                 pcp->count -= pcp->batch;
758         }
759         local_irq_restore(flags);
760         put_cpu();
761 }
762
763 void fastcall free_hot_page(struct page *page)
764 {
765         free_hot_cold_page(page, 0);
766 }
767         
768 void fastcall free_cold_page(struct page *page)
769 {
770         free_hot_cold_page(page, 1);
771 }
772
773 /*
774  * split_page takes a non-compound higher-order page, and splits it into
775  * n (1<<order) sub-pages: page[0..n]
776  * Each sub-page must be freed individually.
777  *
778  * Note: this is probably too low level an operation for use in drivers.
779  * Please consult with lkml before using this in your driver.
780  */
781 void split_page(struct page *page, unsigned int order)
782 {
783         int i;
784
785         BUG_ON(PageCompound(page));
786         BUG_ON(!page_count(page));
787         for (i = 1; i < (1 << order); i++)
788                 set_page_refcounted(page + i);
789 }
790
791 /*
792  * Really, prep_compound_page() should be called from __rmqueue_bulk().  But
793  * we cheat by calling it from here, in the order > 0 path.  Saves a branch
794  * or two.
795  */
796 static struct page *buffered_rmqueue(struct zonelist *zonelist,
797                         struct zone *zone, int order, gfp_t gfp_flags)
798 {
799         unsigned long flags;
800         struct page *page;
801         int cold = !!(gfp_flags & __GFP_COLD);
802         int cpu;
803
804 again:
805         cpu  = get_cpu();
806         if (likely(order == 0)) {
807                 struct per_cpu_pages *pcp;
808
809                 pcp = &zone_pcp(zone, cpu)->pcp[cold];
810                 local_irq_save(flags);
811                 if (!pcp->count) {
812                         pcp->count += rmqueue_bulk(zone, 0,
813                                                 pcp->batch, &pcp->list);
814                         if (unlikely(!pcp->count))
815                                 goto failed;
816                 }
817                 page = list_entry(pcp->list.next, struct page, lru);
818                 list_del(&page->lru);
819                 pcp->count--;
820         } else {
821                 spin_lock_irqsave(&zone->lock, flags);
822                 page = __rmqueue(zone, order);
823                 spin_unlock(&zone->lock);
824                 if (!page)
825                         goto failed;
826         }
827
828         __mod_page_state_zone(zone, pgalloc, 1 << order);
829         zone_statistics(zonelist, zone, cpu);
830         local_irq_restore(flags);
831         put_cpu();
832
833         BUG_ON(bad_range(zone, page));
834         if (prep_new_page(page, order, gfp_flags))
835                 goto again;
836         return page;
837
838 failed:
839         local_irq_restore(flags);
840         put_cpu();
841         return NULL;
842 }
843
844 #define ALLOC_NO_WATERMARKS     0x01 /* don't check watermarks at all */
845 #define ALLOC_WMARK_MIN         0x02 /* use pages_min watermark */
846 #define ALLOC_WMARK_LOW         0x04 /* use pages_low watermark */
847 #define ALLOC_WMARK_HIGH        0x08 /* use pages_high watermark */
848 #define ALLOC_HARDER            0x10 /* try to alloc harder */
849 #define ALLOC_HIGH              0x20 /* __GFP_HIGH set */
850 #define ALLOC_CPUSET            0x40 /* check for correct cpuset */
851
852 /*
853  * Return 1 if free pages are above 'mark'. This takes into account the order
854  * of the allocation.
855  */
856 int zone_watermark_ok(struct zone *z, int order, unsigned long mark,
857                       int classzone_idx, int alloc_flags)
858 {
859         /* free_pages my go negative - that's OK */
860         long min = mark, free_pages = z->free_pages - (1 << order) + 1;
861         int o;
862
863         if (alloc_flags & ALLOC_HIGH)
864                 min -= min / 2;
865         if (alloc_flags & ALLOC_HARDER)
866                 min -= min / 4;
867
868         if (free_pages <= min + z->lowmem_reserve[classzone_idx])
869                 return 0;
870         for (o = 0; o < order; o++) {
871                 /* At the next order, this order's pages become unavailable */
872                 free_pages -= z->free_area[o].nr_free << o;
873
874                 /* Require fewer higher order pages to be free */
875                 min >>= 1;
876
877                 if (free_pages <= min)
878                         return 0;
879         }
880         return 1;
881 }
882
883 /*
884  * get_page_from_freeliest goes through the zonelist trying to allocate
885  * a page.
886  */
887 static struct page *
888 get_page_from_freelist(gfp_t gfp_mask, unsigned int order,
889                 struct zonelist *zonelist, int alloc_flags)
890 {
891         struct zone **z = zonelist->zones;
892         struct page *page = NULL;
893         int classzone_idx = zone_idx(*z);
894
895         /*
896          * Go through the zonelist once, looking for a zone with enough free.
897          * See also cpuset_zone_allowed() comment in kernel/cpuset.c.
898          */
899         do {
900                 if ((alloc_flags & ALLOC_CPUSET) &&
901                                 !cpuset_zone_allowed(*z, gfp_mask))
902                         continue;
903
904                 if (!(alloc_flags & ALLOC_NO_WATERMARKS)) {
905                         unsigned long mark;
906                         if (alloc_flags & ALLOC_WMARK_MIN)
907                                 mark = (*z)->pages_min;
908                         else if (alloc_flags & ALLOC_WMARK_LOW)
909                                 mark = (*z)->pages_low;
910                         else
911                                 mark = (*z)->pages_high;
912                         if (!zone_watermark_ok(*z, order, mark,
913                                     classzone_idx, alloc_flags))
914                                 if (!zone_reclaim_mode ||
915                                     !zone_reclaim(*z, gfp_mask, order))
916                                         continue;
917                 }
918
919                 page = buffered_rmqueue(zonelist, *z, order, gfp_mask);
920                 if (page) {
921                         break;
922                 }
923         } while (*(++z) != NULL);
924         return page;
925 }
926
927 /*
928  * This is the 'heart' of the zoned buddy allocator.
929  */
930 struct page * fastcall
931 __alloc_pages(gfp_t gfp_mask, unsigned int order,
932                 struct zonelist *zonelist)
933 {
934         const gfp_t wait = gfp_mask & __GFP_WAIT;
935         struct zone **z;
936         struct page *page;
937         struct reclaim_state reclaim_state;
938         struct task_struct *p = current;
939         int do_retry;
940         int alloc_flags;
941         int did_some_progress;
942
943         might_sleep_if(wait);
944
945 restart:
946         z = zonelist->zones;  /* the list of zones suitable for gfp_mask */
947
948         if (unlikely(*z == NULL)) {
949                 /* Should this ever happen?? */
950                 return NULL;
951         }
952
953         page = get_page_from_freelist(gfp_mask|__GFP_HARDWALL, order,
954                                 zonelist, ALLOC_WMARK_LOW|ALLOC_CPUSET);
955         if (page)
956                 goto got_pg;
957
958         do {
959                 wakeup_kswapd(*z, order);
960         } while (*(++z));
961
962         /*
963          * OK, we're below the kswapd watermark and have kicked background
964          * reclaim. Now things get more complex, so set up alloc_flags according
965          * to how we want to proceed.
966          *
967          * The caller may dip into page reserves a bit more if the caller
968          * cannot run direct reclaim, or if the caller has realtime scheduling
969          * policy or is asking for __GFP_HIGH memory.  GFP_ATOMIC requests will
970          * set both ALLOC_HARDER (!wait) and ALLOC_HIGH (__GFP_HIGH).
971          */
972         alloc_flags = ALLOC_WMARK_MIN;
973         if ((unlikely(rt_task(p)) && !in_interrupt()) || !wait)
974                 alloc_flags |= ALLOC_HARDER;
975         if (gfp_mask & __GFP_HIGH)
976                 alloc_flags |= ALLOC_HIGH;
977         if (wait)
978                 alloc_flags |= ALLOC_CPUSET;
979
980         /*
981          * Go through the zonelist again. Let __GFP_HIGH and allocations
982          * coming from realtime tasks go deeper into reserves.
983          *
984          * This is the last chance, in general, before the goto nopage.
985          * Ignore cpuset if GFP_ATOMIC (!wait) rather than fail alloc.
986          * See also cpuset_zone_allowed() comment in kernel/cpuset.c.
987          */
988         page = get_page_from_freelist(gfp_mask, order, zonelist, alloc_flags);
989         if (page)
990                 goto got_pg;
991
992         /* This allocation should allow future memory freeing. */
993
994         if (((p->flags & PF_MEMALLOC) || unlikely(test_thread_flag(TIF_MEMDIE)))
995                         && !in_interrupt()) {
996                 if (!(gfp_mask & __GFP_NOMEMALLOC)) {
997 nofail_alloc:
998                         /* go through the zonelist yet again, ignoring mins */
999                         page = get_page_from_freelist(gfp_mask, order,
1000                                 zonelist, ALLOC_NO_WATERMARKS);
1001                         if (page)
1002                                 goto got_pg;
1003                         if (gfp_mask & __GFP_NOFAIL) {
1004                                 blk_congestion_wait(WRITE, HZ/50);
1005                                 goto nofail_alloc;
1006                         }
1007                 }
1008                 goto nopage;
1009         }
1010
1011         /* Atomic allocations - we can't balance anything */
1012         if (!wait)
1013                 goto nopage;
1014
1015 rebalance:
1016         cond_resched();
1017
1018         /* We now go into synchronous reclaim */
1019         cpuset_memory_pressure_bump();
1020         p->flags |= PF_MEMALLOC;
1021         reclaim_state.reclaimed_slab = 0;
1022         p->reclaim_state = &reclaim_state;
1023
1024         did_some_progress = try_to_free_pages(zonelist->zones, gfp_mask);
1025
1026         p->reclaim_state = NULL;
1027         p->flags &= ~PF_MEMALLOC;
1028
1029         cond_resched();
1030
1031         if (likely(did_some_progress)) {
1032                 page = get_page_from_freelist(gfp_mask, order,
1033                                                 zonelist, alloc_flags);
1034                 if (page)
1035                         goto got_pg;
1036         } else if ((gfp_mask & __GFP_FS) && !(gfp_mask & __GFP_NORETRY)) {
1037                 /*
1038                  * Go through the zonelist yet one more time, keep
1039                  * very high watermark here, this is only to catch
1040                  * a parallel oom killing, we must fail if we're still
1041                  * under heavy pressure.
1042                  */
1043                 page = get_page_from_freelist(gfp_mask|__GFP_HARDWALL, order,
1044                                 zonelist, ALLOC_WMARK_HIGH|ALLOC_CPUSET);
1045                 if (page)
1046                         goto got_pg;
1047
1048                 out_of_memory(zonelist, gfp_mask, order);
1049                 goto restart;
1050         }
1051
1052         /*
1053          * Don't let big-order allocations loop unless the caller explicitly
1054          * requests that.  Wait for some write requests to complete then retry.
1055          *
1056          * In this implementation, __GFP_REPEAT means __GFP_NOFAIL for order
1057          * <= 3, but that may not be true in other implementations.
1058          */
1059         do_retry = 0;
1060         if (!(gfp_mask & __GFP_NORETRY)) {
1061                 if ((order <= 3) || (gfp_mask & __GFP_REPEAT))
1062                         do_retry = 1;
1063                 if (gfp_mask & __GFP_NOFAIL)
1064                         do_retry = 1;
1065         }
1066         if (do_retry) {
1067                 blk_congestion_wait(WRITE, HZ/50);
1068                 goto rebalance;
1069         }
1070
1071 nopage:
1072         if (!(gfp_mask & __GFP_NOWARN) && printk_ratelimit()) {
1073                 printk(KERN_WARNING "%s: page allocation failure."
1074                         " order:%d, mode:0x%x\n",
1075                         p->comm, order, gfp_mask);
1076                 dump_stack();
1077                 show_mem();
1078         }
1079 got_pg:
1080         return page;
1081 }
1082
1083 EXPORT_SYMBOL(__alloc_pages);
1084
1085 /*
1086  * Common helper functions.
1087  */
1088 fastcall unsigned long __get_free_pages(gfp_t gfp_mask, unsigned int order)
1089 {
1090         struct page * page;
1091         page = alloc_pages(gfp_mask, order);
1092         if (!page)
1093                 return 0;
1094         return (unsigned long) page_address(page);
1095 }
1096
1097 EXPORT_SYMBOL(__get_free_pages);
1098
1099 fastcall unsigned long get_zeroed_page(gfp_t gfp_mask)
1100 {
1101         struct page * page;
1102
1103         /*
1104          * get_zeroed_page() returns a 32-bit address, which cannot represent
1105          * a highmem page
1106          */
1107         BUG_ON((gfp_mask & __GFP_HIGHMEM) != 0);
1108
1109         page = alloc_pages(gfp_mask | __GFP_ZERO, 0);
1110         if (page)
1111                 return (unsigned long) page_address(page);
1112         return 0;
1113 }
1114
1115 EXPORT_SYMBOL(get_zeroed_page);
1116
1117 void __pagevec_free(struct pagevec *pvec)
1118 {
1119         int i = pagevec_count(pvec);
1120
1121         while (--i >= 0)
1122                 free_hot_cold_page(pvec->pages[i], pvec->cold);
1123 }
1124
1125 fastcall void __free_pages(struct page *page, unsigned int order)
1126 {
1127         if (put_page_testzero(page)) {
1128                 if (order == 0)
1129                         free_hot_page(page);
1130                 else
1131                         __free_pages_ok(page, order);
1132         }
1133 }
1134
1135 EXPORT_SYMBOL(__free_pages);
1136
1137 fastcall void free_pages(unsigned long addr, unsigned int order)
1138 {
1139         if (addr != 0) {
1140                 BUG_ON(!virt_addr_valid((void *)addr));
1141                 __free_pages(virt_to_page((void *)addr), order);
1142         }
1143 }
1144
1145 EXPORT_SYMBOL(free_pages);
1146
1147 /*
1148  * Total amount of free (allocatable) RAM:
1149  */
1150 unsigned int nr_free_pages(void)
1151 {
1152         unsigned int sum = 0;
1153         struct zone *zone;
1154
1155         for_each_zone(zone)
1156                 sum += zone->free_pages;
1157
1158         return sum;
1159 }
1160
1161 EXPORT_SYMBOL(nr_free_pages);
1162
1163 #ifdef CONFIG_NUMA
1164 unsigned int nr_free_pages_pgdat(pg_data_t *pgdat)
1165 {
1166         unsigned int i, sum = 0;
1167
1168         for (i = 0; i < MAX_NR_ZONES; i++)
1169                 sum += pgdat->node_zones[i].free_pages;
1170
1171         return sum;
1172 }
1173 #endif
1174
1175 static unsigned int nr_free_zone_pages(int offset)
1176 {
1177         /* Just pick one node, since fallback list is circular */
1178         pg_data_t *pgdat = NODE_DATA(numa_node_id());
1179         unsigned int sum = 0;
1180
1181         struct zonelist *zonelist = pgdat->node_zonelists + offset;
1182         struct zone **zonep = zonelist->zones;
1183         struct zone *zone;
1184
1185         for (zone = *zonep++; zone; zone = *zonep++) {
1186                 unsigned long size = zone->present_pages;
1187                 unsigned long high = zone->pages_high;
1188                 if (size > high)
1189                         sum += size - high;
1190         }
1191
1192         return sum;
1193 }
1194
1195 /*
1196  * Amount of free RAM allocatable within ZONE_DMA and ZONE_NORMAL
1197  */
1198 unsigned int nr_free_buffer_pages(void)
1199 {
1200         return nr_free_zone_pages(gfp_zone(GFP_USER));
1201 }
1202
1203 /*
1204  * Amount of free RAM allocatable within all zones
1205  */
1206 unsigned int nr_free_pagecache_pages(void)
1207 {
1208         return nr_free_zone_pages(gfp_zone(GFP_HIGHUSER));
1209 }
1210
1211 #ifdef CONFIG_HIGHMEM
1212 unsigned int nr_free_highpages (void)
1213 {
1214         pg_data_t *pgdat;
1215         unsigned int pages = 0;
1216
1217         for_each_online_pgdat(pgdat)
1218                 pages += pgdat->node_zones[ZONE_HIGHMEM].free_pages;
1219
1220         return pages;
1221 }
1222 #endif
1223
1224 #ifdef CONFIG_NUMA
1225 static void show_node(struct zone *zone)
1226 {
1227         printk("Node %d ", zone->zone_pgdat->node_id);
1228 }
1229 #else
1230 #define show_node(zone) do { } while (0)
1231 #endif
1232
1233 /*
1234  * Accumulate the page_state information across all CPUs.
1235  * The result is unavoidably approximate - it can change
1236  * during and after execution of this function.
1237  */
1238 static DEFINE_PER_CPU(struct page_state, page_states) = {0};
1239
1240 atomic_t nr_pagecache = ATOMIC_INIT(0);
1241 EXPORT_SYMBOL(nr_pagecache);
1242 #ifdef CONFIG_SMP
1243 DEFINE_PER_CPU(long, nr_pagecache_local) = 0;
1244 #endif
1245
1246 static void __get_page_state(struct page_state *ret, int nr, cpumask_t *cpumask)
1247 {
1248         unsigned cpu;
1249
1250         memset(ret, 0, nr * sizeof(unsigned long));
1251         cpus_and(*cpumask, *cpumask, cpu_online_map);
1252
1253         for_each_cpu_mask(cpu, *cpumask) {
1254                 unsigned long *in;
1255                 unsigned long *out;
1256                 unsigned off;
1257                 unsigned next_cpu;
1258
1259                 in = (unsigned long *)&per_cpu(page_states, cpu);
1260
1261                 next_cpu = next_cpu(cpu, *cpumask);
1262                 if (likely(next_cpu < NR_CPUS))
1263                         prefetch(&per_cpu(page_states, next_cpu));
1264
1265                 out = (unsigned long *)ret;
1266                 for (off = 0; off < nr; off++)
1267                         *out++ += *in++;
1268         }
1269 }
1270
1271 void get_page_state_node(struct page_state *ret, int node)
1272 {
1273         int nr;
1274         cpumask_t mask = node_to_cpumask(node);
1275
1276         nr = offsetof(struct page_state, GET_PAGE_STATE_LAST);
1277         nr /= sizeof(unsigned long);
1278
1279         __get_page_state(ret, nr+1, &mask);
1280 }
1281
1282 void get_page_state(struct page_state *ret)
1283 {
1284         int nr;
1285         cpumask_t mask = CPU_MASK_ALL;
1286
1287         nr = offsetof(struct page_state, GET_PAGE_STATE_LAST);
1288         nr /= sizeof(unsigned long);
1289
1290         __get_page_state(ret, nr + 1, &mask);
1291 }
1292
1293 void get_full_page_state(struct page_state *ret)
1294 {
1295         cpumask_t mask = CPU_MASK_ALL;
1296
1297         __get_page_state(ret, sizeof(*ret) / sizeof(unsigned long), &mask);
1298 }
1299
1300 unsigned long read_page_state_offset(unsigned long offset)
1301 {
1302         unsigned long ret = 0;
1303         int cpu;
1304
1305         for_each_online_cpu(cpu) {
1306                 unsigned long in;
1307
1308                 in = (unsigned long)&per_cpu(page_states, cpu) + offset;
1309                 ret += *((unsigned long *)in);
1310         }
1311         return ret;
1312 }
1313
1314 void __mod_page_state_offset(unsigned long offset, unsigned long delta)
1315 {
1316         void *ptr;
1317
1318         ptr = &__get_cpu_var(page_states);
1319         *(unsigned long *)(ptr + offset) += delta;
1320 }
1321 EXPORT_SYMBOL(__mod_page_state_offset);
1322
1323 void mod_page_state_offset(unsigned long offset, unsigned long delta)
1324 {
1325         unsigned long flags;
1326         void *ptr;
1327
1328         local_irq_save(flags);
1329         ptr = &__get_cpu_var(page_states);
1330         *(unsigned long *)(ptr + offset) += delta;
1331         local_irq_restore(flags);
1332 }
1333 EXPORT_SYMBOL(mod_page_state_offset);
1334
1335 void __get_zone_counts(unsigned long *active, unsigned long *inactive,
1336                         unsigned long *free, struct pglist_data *pgdat)
1337 {
1338         struct zone *zones = pgdat->node_zones;
1339         int i;
1340
1341         *active = 0;
1342         *inactive = 0;
1343         *free = 0;
1344         for (i = 0; i < MAX_NR_ZONES; i++) {
1345                 *active += zones[i].nr_active;
1346                 *inactive += zones[i].nr_inactive;
1347                 *free += zones[i].free_pages;
1348         }
1349 }
1350
1351 void get_zone_counts(unsigned long *active,
1352                 unsigned long *inactive, unsigned long *free)
1353 {
1354         struct pglist_data *pgdat;
1355
1356         *active = 0;
1357         *inactive = 0;
1358         *free = 0;
1359         for_each_online_pgdat(pgdat) {
1360                 unsigned long l, m, n;
1361                 __get_zone_counts(&l, &m, &n, pgdat);
1362                 *active += l;
1363                 *inactive += m;
1364                 *free += n;
1365         }
1366 }
1367
1368 void si_meminfo(struct sysinfo *val)
1369 {
1370         val->totalram = totalram_pages;
1371         val->sharedram = 0;
1372         val->freeram = nr_free_pages();
1373         val->bufferram = nr_blockdev_pages();
1374 #ifdef CONFIG_HIGHMEM
1375         val->totalhigh = totalhigh_pages;
1376         val->freehigh = nr_free_highpages();
1377 #else
1378         val->totalhigh = 0;
1379         val->freehigh = 0;
1380 #endif
1381         val->mem_unit = PAGE_SIZE;
1382 }
1383
1384 EXPORT_SYMBOL(si_meminfo);
1385
1386 #ifdef CONFIG_NUMA
1387 void si_meminfo_node(struct sysinfo *val, int nid)
1388 {
1389         pg_data_t *pgdat = NODE_DATA(nid);
1390
1391         val->totalram = pgdat->node_present_pages;
1392         val->freeram = nr_free_pages_pgdat(pgdat);
1393         val->totalhigh = pgdat->node_zones[ZONE_HIGHMEM].present_pages;
1394         val->freehigh = pgdat->node_zones[ZONE_HIGHMEM].free_pages;
1395         val->mem_unit = PAGE_SIZE;
1396 }
1397 #endif
1398
1399 #define K(x) ((x) << (PAGE_SHIFT-10))
1400
1401 /*
1402  * Show free area list (used inside shift_scroll-lock stuff)
1403  * We also calculate the percentage fragmentation. We do this by counting the
1404  * memory on each free list with the exception of the first item on the list.
1405  */
1406 void show_free_areas(void)
1407 {
1408         struct page_state ps;
1409         int cpu, temperature;
1410         unsigned long active;
1411         unsigned long inactive;
1412         unsigned long free;
1413         struct zone *zone;
1414
1415         for_each_zone(zone) {
1416                 show_node(zone);
1417                 printk("%s per-cpu:", zone->name);
1418
1419                 if (!populated_zone(zone)) {
1420                         printk(" empty\n");
1421                         continue;
1422                 } else
1423                         printk("\n");
1424
1425                 for_each_online_cpu(cpu) {
1426                         struct per_cpu_pageset *pageset;
1427
1428                         pageset = zone_pcp(zone, cpu);
1429
1430                         for (temperature = 0; temperature < 2; temperature++)
1431                                 printk("cpu %d %s: high %d, batch %d used:%d\n",
1432                                         cpu,
1433                                         temperature ? "cold" : "hot",
1434                                         pageset->pcp[temperature].high,
1435                                         pageset->pcp[temperature].batch,
1436                                         pageset->pcp[temperature].count);
1437                 }
1438         }
1439
1440         get_page_state(&ps);
1441         get_zone_counts(&active, &inactive, &free);
1442
1443         printk("Free pages: %11ukB (%ukB HighMem)\n",
1444                 K(nr_free_pages()),
1445                 K(nr_free_highpages()));
1446
1447         printk("Active:%lu inactive:%lu dirty:%lu writeback:%lu "
1448                 "unstable:%lu free:%u slab:%lu mapped:%lu pagetables:%lu\n",
1449                 active,
1450                 inactive,
1451                 ps.nr_dirty,
1452                 ps.nr_writeback,
1453                 ps.nr_unstable,
1454                 nr_free_pages(),
1455                 ps.nr_slab,
1456                 ps.nr_mapped,
1457                 ps.nr_page_table_pages);
1458
1459         for_each_zone(zone) {
1460                 int i;
1461
1462                 show_node(zone);
1463                 printk("%s"
1464                         " free:%lukB"
1465                         " min:%lukB"
1466                         " low:%lukB"
1467                         " high:%lukB"
1468                         " active:%lukB"
1469                         " inactive:%lukB"
1470                         " present:%lukB"
1471                         " pages_scanned:%lu"
1472                         " all_unreclaimable? %s"
1473                         "\n",
1474                         zone->name,
1475                         K(zone->free_pages),
1476                         K(zone->pages_min),
1477                         K(zone->pages_low),
1478                         K(zone->pages_high),
1479                         K(zone->nr_active),
1480                         K(zone->nr_inactive),
1481                         K(zone->present_pages),
1482                         zone->pages_scanned,
1483                         (zone->all_unreclaimable ? "yes" : "no")
1484                         );
1485                 printk("lowmem_reserve[]:");
1486                 for (i = 0; i < MAX_NR_ZONES; i++)
1487                         printk(" %lu", zone->lowmem_reserve[i]);
1488                 printk("\n");
1489         }
1490
1491         for_each_zone(zone) {
1492                 unsigned long nr[MAX_ORDER], flags, order, total = 0;
1493
1494                 show_node(zone);
1495                 printk("%s: ", zone->name);
1496                 if (!populated_zone(zone)) {
1497                         printk("empty\n");
1498                         continue;
1499                 }
1500
1501                 spin_lock_irqsave(&zone->lock, flags);
1502                 for (order = 0; order < MAX_ORDER; order++) {
1503                         nr[order] = zone->free_area[order].nr_free;
1504                         total += nr[order] << order;
1505                 }
1506                 spin_unlock_irqrestore(&zone->lock, flags);
1507                 for (order = 0; order < MAX_ORDER; order++)
1508                         printk("%lu*%lukB ", nr[order], K(1UL) << order);
1509                 printk("= %lukB\n", K(total));
1510         }
1511
1512         show_swap_cache_info();
1513 }
1514
1515 /*
1516  * Builds allocation fallback zone lists.
1517  *
1518  * Add all populated zones of a node to the zonelist.
1519  */
1520 static int __meminit build_zonelists_node(pg_data_t *pgdat,
1521                         struct zonelist *zonelist, int nr_zones, int zone_type)
1522 {
1523         struct zone *zone;
1524
1525         BUG_ON(zone_type > ZONE_HIGHMEM);
1526
1527         do {
1528                 zone = pgdat->node_zones + zone_type;
1529                 if (populated_zone(zone)) {
1530 #ifndef CONFIG_HIGHMEM
1531                         BUG_ON(zone_type > ZONE_NORMAL);
1532 #endif
1533                         zonelist->zones[nr_zones++] = zone;
1534                         check_highest_zone(zone_type);
1535                 }
1536                 zone_type--;
1537
1538         } while (zone_type >= 0);
1539         return nr_zones;
1540 }
1541
1542 static inline int highest_zone(int zone_bits)
1543 {
1544         int res = ZONE_NORMAL;
1545         if (zone_bits & (__force int)__GFP_HIGHMEM)
1546                 res = ZONE_HIGHMEM;
1547         if (zone_bits & (__force int)__GFP_DMA32)
1548                 res = ZONE_DMA32;
1549         if (zone_bits & (__force int)__GFP_DMA)
1550                 res = ZONE_DMA;
1551         return res;
1552 }
1553
1554 #ifdef CONFIG_NUMA
1555 #define MAX_NODE_LOAD (num_online_nodes())
1556 static int __meminitdata node_load[MAX_NUMNODES];
1557 /**
1558  * find_next_best_node - find the next node that should appear in a given node's fallback list
1559  * @node: node whose fallback list we're appending
1560  * @used_node_mask: nodemask_t of already used nodes
1561  *
1562  * We use a number of factors to determine which is the next node that should
1563  * appear on a given node's fallback list.  The node should not have appeared
1564  * already in @node's fallback list, and it should be the next closest node
1565  * according to the distance array (which contains arbitrary distance values
1566  * from each node to each node in the system), and should also prefer nodes
1567  * with no CPUs, since presumably they'll have very little allocation pressure
1568  * on them otherwise.
1569  * It returns -1 if no node is found.
1570  */
1571 static int __meminit find_next_best_node(int node, nodemask_t *used_node_mask)
1572 {
1573         int n, val;
1574         int min_val = INT_MAX;
1575         int best_node = -1;
1576
1577         /* Use the local node if we haven't already */
1578         if (!node_isset(node, *used_node_mask)) {
1579                 node_set(node, *used_node_mask);
1580                 return node;
1581         }
1582
1583         for_each_online_node(n) {
1584                 cpumask_t tmp;
1585
1586                 /* Don't want a node to appear more than once */
1587                 if (node_isset(n, *used_node_mask))
1588                         continue;
1589
1590                 /* Use the distance array to find the distance */
1591                 val = node_distance(node, n);
1592
1593                 /* Penalize nodes under us ("prefer the next node") */
1594                 val += (n < node);
1595
1596                 /* Give preference to headless and unused nodes */
1597                 tmp = node_to_cpumask(n);
1598                 if (!cpus_empty(tmp))
1599                         val += PENALTY_FOR_NODE_WITH_CPUS;
1600
1601                 /* Slight preference for less loaded node */
1602                 val *= (MAX_NODE_LOAD*MAX_NUMNODES);
1603                 val += node_load[n];
1604
1605                 if (val < min_val) {
1606                         min_val = val;
1607                         best_node = n;
1608                 }
1609         }
1610
1611         if (best_node >= 0)
1612                 node_set(best_node, *used_node_mask);
1613
1614         return best_node;
1615 }
1616
1617 static void __meminit build_zonelists(pg_data_t *pgdat)
1618 {
1619         int i, j, k, node, local_node;
1620         int prev_node, load;
1621         struct zonelist *zonelist;
1622         nodemask_t used_mask;
1623
1624         /* initialize zonelists */
1625         for (i = 0; i < GFP_ZONETYPES; i++) {
1626                 zonelist = pgdat->node_zonelists + i;
1627                 zonelist->zones[0] = NULL;
1628         }
1629
1630         /* NUMA-aware ordering of nodes */
1631         local_node = pgdat->node_id;
1632         load = num_online_nodes();
1633         prev_node = local_node;
1634         nodes_clear(used_mask);
1635         while ((node = find_next_best_node(local_node, &used_mask)) >= 0) {
1636                 int distance = node_distance(local_node, node);
1637
1638                 /*
1639                  * If another node is sufficiently far away then it is better
1640                  * to reclaim pages in a zone before going off node.
1641                  */
1642                 if (distance > RECLAIM_DISTANCE)
1643                         zone_reclaim_mode = 1;
1644
1645                 /*
1646                  * We don't want to pressure a particular node.
1647                  * So adding penalty to the first node in same
1648                  * distance group to make it round-robin.
1649                  */
1650
1651                 if (distance != node_distance(local_node, prev_node))
1652                         node_load[node] += load;
1653                 prev_node = node;
1654                 load--;
1655                 for (i = 0; i < GFP_ZONETYPES; i++) {
1656                         zonelist = pgdat->node_zonelists + i;
1657                         for (j = 0; zonelist->zones[j] != NULL; j++);
1658
1659                         k = highest_zone(i);
1660
1661                         j = build_zonelists_node(NODE_DATA(node), zonelist, j, k);
1662                         zonelist->zones[j] = NULL;
1663                 }
1664         }
1665 }
1666
1667 #else   /* CONFIG_NUMA */
1668
1669 static void __meminit build_zonelists(pg_data_t *pgdat)
1670 {
1671         int i, j, k, node, local_node;
1672
1673         local_node = pgdat->node_id;
1674         for (i = 0; i < GFP_ZONETYPES; i++) {
1675                 struct zonelist *zonelist;
1676
1677                 zonelist = pgdat->node_zonelists + i;
1678
1679                 j = 0;
1680                 k = highest_zone(i);
1681                 j = build_zonelists_node(pgdat, zonelist, j, k);
1682                 /*
1683                  * Now we build the zonelist so that it contains the zones
1684                  * of all the other nodes.
1685                  * We don't want to pressure a particular node, so when
1686                  * building the zones for node N, we make sure that the
1687                  * zones coming right after the local ones are those from
1688                  * node N+1 (modulo N)
1689                  */
1690                 for (node = local_node + 1; node < MAX_NUMNODES; node++) {
1691                         if (!node_online(node))
1692                                 continue;
1693                         j = build_zonelists_node(NODE_DATA(node), zonelist, j, k);
1694                 }
1695                 for (node = 0; node < local_node; node++) {
1696                         if (!node_online(node))
1697                                 continue;
1698                         j = build_zonelists_node(NODE_DATA(node), zonelist, j, k);
1699                 }
1700
1701                 zonelist->zones[j] = NULL;
1702         }
1703 }
1704
1705 #endif  /* CONFIG_NUMA */
1706
1707 /* return values int ....just for stop_machine_run() */
1708 static int __meminit __build_all_zonelists(void *dummy)
1709 {
1710         int nid;
1711         for_each_online_node(nid)
1712                 build_zonelists(NODE_DATA(nid));
1713         return 0;
1714 }
1715
1716 void __meminit build_all_zonelists(void)
1717 {
1718         if (system_state == SYSTEM_BOOTING) {
1719                 __build_all_zonelists(0);
1720                 cpuset_init_current_mems_allowed();
1721         } else {
1722                 /* we have to stop all cpus to guaranntee there is no user
1723                    of zonelist */
1724                 stop_machine_run(__build_all_zonelists, NULL, NR_CPUS);
1725                 /* cpuset refresh routine should be here */
1726         }
1727         vm_total_pages = nr_free_pagecache_pages();
1728         printk("Built %i zonelists.  Total pages: %ld\n",
1729                         num_online_nodes(), vm_total_pages);
1730 }
1731
1732 /*
1733  * Helper functions to size the waitqueue hash table.
1734  * Essentially these want to choose hash table sizes sufficiently
1735  * large so that collisions trying to wait on pages are rare.
1736  * But in fact, the number of active page waitqueues on typical
1737  * systems is ridiculously low, less than 200. So this is even
1738  * conservative, even though it seems large.
1739  *
1740  * The constant PAGES_PER_WAITQUEUE specifies the ratio of pages to
1741  * waitqueues, i.e. the size of the waitq table given the number of pages.
1742  */
1743 #define PAGES_PER_WAITQUEUE     256
1744
1745 #ifndef CONFIG_MEMORY_HOTPLUG
1746 static inline unsigned long wait_table_hash_nr_entries(unsigned long pages)
1747 {
1748         unsigned long size = 1;
1749
1750         pages /= PAGES_PER_WAITQUEUE;
1751
1752         while (size < pages)
1753                 size <<= 1;
1754
1755         /*
1756          * Once we have dozens or even hundreds of threads sleeping
1757          * on IO we've got bigger problems than wait queue collision.
1758          * Limit the size of the wait table to a reasonable size.
1759          */
1760         size = min(size, 4096UL);
1761
1762         return max(size, 4UL);
1763 }
1764 #else
1765 /*
1766  * A zone's size might be changed by hot-add, so it is not possible to determine
1767  * a suitable size for its wait_table.  So we use the maximum size now.
1768  *
1769  * The max wait table size = 4096 x sizeof(wait_queue_head_t).   ie:
1770  *
1771  *    i386 (preemption config)    : 4096 x 16 = 64Kbyte.
1772  *    ia64, x86-64 (no preemption): 4096 x 20 = 80Kbyte.
1773  *    ia64, x86-64 (preemption)   : 4096 x 24 = 96Kbyte.
1774  *
1775  * The maximum entries are prepared when a zone's memory is (512K + 256) pages
1776  * or more by the traditional way. (See above).  It equals:
1777  *
1778  *    i386, x86-64, powerpc(4K page size) : =  ( 2G + 1M)byte.
1779  *    ia64(16K page size)                 : =  ( 8G + 4M)byte.
1780  *    powerpc (64K page size)             : =  (32G +16M)byte.
1781  */
1782 static inline unsigned long wait_table_hash_nr_entries(unsigned long pages)
1783 {
1784         return 4096UL;
1785 }
1786 #endif
1787
1788 /*
1789  * This is an integer logarithm so that shifts can be used later
1790  * to extract the more random high bits from the multiplicative
1791  * hash function before the remainder is taken.
1792  */
1793 static inline unsigned long wait_table_bits(unsigned long size)
1794 {
1795         return ffz(~size);
1796 }
1797
1798 #define LONG_ALIGN(x) (((x)+(sizeof(long))-1)&~((sizeof(long))-1))
1799
1800 static void __init calculate_zone_totalpages(struct pglist_data *pgdat,
1801                 unsigned long *zones_size, unsigned long *zholes_size)
1802 {
1803         unsigned long realtotalpages, totalpages = 0;
1804         int i;
1805
1806         for (i = 0; i < MAX_NR_ZONES; i++)
1807                 totalpages += zones_size[i];
1808         pgdat->node_spanned_pages = totalpages;
1809
1810         realtotalpages = totalpages;
1811         if (zholes_size)
1812                 for (i = 0; i < MAX_NR_ZONES; i++)
1813                         realtotalpages -= zholes_size[i];
1814         pgdat->node_present_pages = realtotalpages;
1815         printk(KERN_DEBUG "On node %d totalpages: %lu\n", pgdat->node_id, realtotalpages);
1816 }
1817
1818
1819 /*
1820  * Initially all pages are reserved - free ones are freed
1821  * up by free_all_bootmem() once the early boot process is
1822  * done. Non-atomic initialization, single-pass.
1823  */
1824 void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
1825                 unsigned long start_pfn)
1826 {
1827         struct page *page;
1828         unsigned long end_pfn = start_pfn + size;
1829         unsigned long pfn;
1830
1831         for (pfn = start_pfn; pfn < end_pfn; pfn++) {
1832                 if (!early_pfn_valid(pfn))
1833                         continue;
1834                 page = pfn_to_page(pfn);
1835                 set_page_links(page, zone, nid, pfn);
1836                 init_page_count(page);
1837                 reset_page_mapcount(page);
1838                 SetPageReserved(page);
1839                 INIT_LIST_HEAD(&page->lru);
1840 #ifdef WANT_PAGE_VIRTUAL
1841                 /* The shift won't overflow because ZONE_NORMAL is below 4G. */
1842                 if (!is_highmem_idx(zone))
1843                         set_page_address(page, __va(pfn << PAGE_SHIFT));
1844 #endif
1845         }
1846 }
1847
1848 void zone_init_free_lists(struct pglist_data *pgdat, struct zone *zone,
1849                                 unsigned long size)
1850 {
1851         int order;
1852         for (order = 0; order < MAX_ORDER ; order++) {
1853                 INIT_LIST_HEAD(&zone->free_area[order].free_list);
1854                 zone->free_area[order].nr_free = 0;
1855         }
1856 }
1857
1858 #define ZONETABLE_INDEX(x, zone_nr)     ((x << ZONES_SHIFT) | zone_nr)
1859 void zonetable_add(struct zone *zone, int nid, int zid, unsigned long pfn,
1860                 unsigned long size)
1861 {
1862         unsigned long snum = pfn_to_section_nr(pfn);
1863         unsigned long end = pfn_to_section_nr(pfn + size);
1864
1865         if (FLAGS_HAS_NODE)
1866                 zone_table[ZONETABLE_INDEX(nid, zid)] = zone;
1867         else
1868                 for (; snum <= end; snum++)
1869                         zone_table[ZONETABLE_INDEX(snum, zid)] = zone;
1870 }
1871
1872 #ifndef __HAVE_ARCH_MEMMAP_INIT
1873 #define memmap_init(size, nid, zone, start_pfn) \
1874         memmap_init_zone((size), (nid), (zone), (start_pfn))
1875 #endif
1876
1877 static int __cpuinit zone_batchsize(struct zone *zone)
1878 {
1879         int batch;
1880
1881         /*
1882          * The per-cpu-pages pools are set to around 1000th of the
1883          * size of the zone.  But no more than 1/2 of a meg.
1884          *
1885          * OK, so we don't know how big the cache is.  So guess.
1886          */
1887         batch = zone->present_pages / 1024;
1888         if (batch * PAGE_SIZE > 512 * 1024)
1889                 batch = (512 * 1024) / PAGE_SIZE;
1890         batch /= 4;             /* We effectively *= 4 below */
1891         if (batch < 1)
1892                 batch = 1;
1893
1894         /*
1895          * Clamp the batch to a 2^n - 1 value. Having a power
1896          * of 2 value was found to be more likely to have
1897          * suboptimal cache aliasing properties in some cases.
1898          *
1899          * For example if 2 tasks are alternately allocating
1900          * batches of pages, one task can end up with a lot
1901          * of pages of one half of the possible page colors
1902          * and the other with pages of the other colors.
1903          */
1904         batch = (1 << (fls(batch + batch/2)-1)) - 1;
1905
1906         return batch;
1907 }
1908
1909 inline void setup_pageset(struct per_cpu_pageset *p, unsigned long batch)
1910 {
1911         struct per_cpu_pages *pcp;
1912
1913         memset(p, 0, sizeof(*p));
1914
1915         pcp = &p->pcp[0];               /* hot */
1916         pcp->count = 0;
1917         pcp->high = 6 * batch;
1918         pcp->batch = max(1UL, 1 * batch);
1919         INIT_LIST_HEAD(&pcp->list);
1920
1921         pcp = &p->pcp[1];               /* cold*/
1922         pcp->count = 0;
1923         pcp->high = 2 * batch;
1924         pcp->batch = max(1UL, batch/2);
1925         INIT_LIST_HEAD(&pcp->list);
1926 }
1927
1928 /*
1929  * setup_pagelist_highmark() sets the high water mark for hot per_cpu_pagelist
1930  * to the value high for the pageset p.
1931  */
1932
1933 static void setup_pagelist_highmark(struct per_cpu_pageset *p,
1934                                 unsigned long high)
1935 {
1936         struct per_cpu_pages *pcp;
1937
1938         pcp = &p->pcp[0]; /* hot list */
1939         pcp->high = high;
1940         pcp->batch = max(1UL, high/4);
1941         if ((high/4) > (PAGE_SHIFT * 8))
1942                 pcp->batch = PAGE_SHIFT * 8;
1943 }
1944
1945
1946 #ifdef CONFIG_NUMA
1947 /*
1948  * Boot pageset table. One per cpu which is going to be used for all
1949  * zones and all nodes. The parameters will be set in such a way
1950  * that an item put on a list will immediately be handed over to
1951  * the buddy list. This is safe since pageset manipulation is done
1952  * with interrupts disabled.
1953  *
1954  * Some NUMA counter updates may also be caught by the boot pagesets.
1955  *
1956  * The boot_pagesets must be kept even after bootup is complete for
1957  * unused processors and/or zones. They do play a role for bootstrapping
1958  * hotplugged processors.
1959  *
1960  * zoneinfo_show() and maybe other functions do
1961  * not check if the processor is online before following the pageset pointer.
1962  * Other parts of the kernel may not check if the zone is available.
1963  */
1964 static struct per_cpu_pageset boot_pageset[NR_CPUS];
1965
1966 /*
1967  * Dynamically allocate memory for the
1968  * per cpu pageset array in struct zone.
1969  */
1970 static int __cpuinit process_zones(int cpu)
1971 {
1972         struct zone *zone, *dzone;
1973
1974         for_each_zone(zone) {
1975
1976                 zone_pcp(zone, cpu) = kmalloc_node(sizeof(struct per_cpu_pageset),
1977                                          GFP_KERNEL, cpu_to_node(cpu));
1978                 if (!zone_pcp(zone, cpu))
1979                         goto bad;
1980
1981                 setup_pageset(zone_pcp(zone, cpu), zone_batchsize(zone));
1982
1983                 if (percpu_pagelist_fraction)
1984                         setup_pagelist_highmark(zone_pcp(zone, cpu),
1985                                 (zone->present_pages / percpu_pagelist_fraction));
1986         }
1987
1988         return 0;
1989 bad:
1990         for_each_zone(dzone) {
1991                 if (dzone == zone)
1992                         break;
1993                 kfree(zone_pcp(dzone, cpu));
1994                 zone_pcp(dzone, cpu) = NULL;
1995         }
1996         return -ENOMEM;
1997 }
1998
1999 static inline void free_zone_pagesets(int cpu)
2000 {
2001         struct zone *zone;
2002
2003         for_each_zone(zone) {
2004                 struct per_cpu_pageset *pset = zone_pcp(zone, cpu);
2005
2006                 zone_pcp(zone, cpu) = NULL;
2007                 kfree(pset);
2008         }
2009 }
2010
2011 static int __cpuinit pageset_cpuup_callback(struct notifier_block *nfb,
2012                 unsigned long action,
2013                 void *hcpu)
2014 {
2015         int cpu = (long)hcpu;
2016         int ret = NOTIFY_OK;
2017
2018         switch (action) {
2019                 case CPU_UP_PREPARE:
2020                         if (process_zones(cpu))
2021                                 ret = NOTIFY_BAD;
2022                         break;
2023                 case CPU_UP_CANCELED:
2024                 case CPU_DEAD:
2025                         free_zone_pagesets(cpu);
2026                         break;
2027                 default:
2028                         break;
2029         }
2030         return ret;
2031 }
2032
2033 static struct notifier_block __cpuinitdata pageset_notifier =
2034         { &pageset_cpuup_callback, NULL, 0 };
2035
2036 void __init setup_per_cpu_pageset(void)
2037 {
2038         int err;
2039
2040         /* Initialize per_cpu_pageset for cpu 0.
2041          * A cpuup callback will do this for every cpu
2042          * as it comes online
2043          */
2044         err = process_zones(smp_processor_id());
2045         BUG_ON(err);
2046         register_cpu_notifier(&pageset_notifier);
2047 }
2048
2049 #endif
2050
2051 static __meminit
2052 int zone_wait_table_init(struct zone *zone, unsigned long zone_size_pages)
2053 {
2054         int i;
2055         struct pglist_data *pgdat = zone->zone_pgdat;
2056         size_t alloc_size;
2057
2058         /*
2059          * The per-page waitqueue mechanism uses hashed waitqueues
2060          * per zone.
2061          */
2062         zone->wait_table_hash_nr_entries =
2063                  wait_table_hash_nr_entries(zone_size_pages);
2064         zone->wait_table_bits =
2065                 wait_table_bits(zone->wait_table_hash_nr_entries);
2066         alloc_size = zone->wait_table_hash_nr_entries
2067                                         * sizeof(wait_queue_head_t);
2068
2069         if (system_state == SYSTEM_BOOTING) {
2070                 zone->wait_table = (wait_queue_head_t *)
2071                         alloc_bootmem_node(pgdat, alloc_size);
2072         } else {
2073                 /*
2074                  * This case means that a zone whose size was 0 gets new memory
2075                  * via memory hot-add.
2076                  * But it may be the case that a new node was hot-added.  In
2077                  * this case vmalloc() will not be able to use this new node's
2078                  * memory - this wait_table must be initialized to use this new
2079                  * node itself as well.
2080                  * To use this new node's memory, further consideration will be
2081                  * necessary.
2082                  */
2083                 zone->wait_table = (wait_queue_head_t *)vmalloc(alloc_size);
2084         }
2085         if (!zone->wait_table)
2086                 return -ENOMEM;
2087
2088         for(i = 0; i < zone->wait_table_hash_nr_entries; ++i)
2089                 init_waitqueue_head(zone->wait_table + i);
2090
2091         return 0;
2092 }
2093
2094 static __meminit void zone_pcp_init(struct zone *zone)
2095 {
2096         int cpu;
2097         unsigned long batch = zone_batchsize(zone);
2098
2099         for (cpu = 0; cpu < NR_CPUS; cpu++) {
2100 #ifdef CONFIG_NUMA
2101                 /* Early boot. Slab allocator not functional yet */
2102                 zone_pcp(zone, cpu) = &boot_pageset[cpu];
2103                 setup_pageset(&boot_pageset[cpu],0);
2104 #else
2105                 setup_pageset(zone_pcp(zone,cpu), batch);
2106 #endif
2107         }
2108         if (zone->present_pages)
2109                 printk(KERN_DEBUG "  %s zone: %lu pages, LIFO batch:%lu\n",
2110                         zone->name, zone->present_pages, batch);
2111 }
2112
2113 __meminit int init_currently_empty_zone(struct zone *zone,
2114                                         unsigned long zone_start_pfn,
2115                                         unsigned long size)
2116 {
2117         struct pglist_data *pgdat = zone->zone_pgdat;
2118         int ret;
2119         ret = zone_wait_table_init(zone, size);
2120         if (ret)
2121                 return ret;
2122         pgdat->nr_zones = zone_idx(zone) + 1;
2123
2124         zone->zone_start_pfn = zone_start_pfn;
2125
2126         memmap_init(size, pgdat->node_id, zone_idx(zone), zone_start_pfn);
2127
2128         zone_init_free_lists(pgdat, zone, zone->spanned_pages);
2129
2130         return 0;
2131 }
2132
2133 /*
2134  * Set up the zone data structures:
2135  *   - mark all pages reserved
2136  *   - mark all memory queues empty
2137  *   - clear the memory bitmaps
2138  */
2139 static void __meminit free_area_init_core(struct pglist_data *pgdat,
2140                 unsigned long *zones_size, unsigned long *zholes_size)
2141 {
2142         unsigned long j;
2143         int nid = pgdat->node_id;
2144         unsigned long zone_start_pfn = pgdat->node_start_pfn;
2145         int ret;
2146
2147         pgdat_resize_init(pgdat);
2148         pgdat->nr_zones = 0;
2149         init_waitqueue_head(&pgdat->kswapd_wait);
2150         pgdat->kswapd_max_order = 0;
2151         
2152         for (j = 0; j < MAX_NR_ZONES; j++) {
2153                 struct zone *zone = pgdat->node_zones + j;
2154                 unsigned long size, realsize;
2155
2156                 realsize = size = zones_size[j];
2157                 if (zholes_size)
2158                         realsize -= zholes_size[j];
2159
2160                 if (j < ZONE_HIGHMEM)
2161                         nr_kernel_pages += realsize;
2162                 nr_all_pages += realsize;
2163
2164                 zone->spanned_pages = size;
2165                 zone->present_pages = realsize;
2166                 zone->name = zone_names[j];
2167                 spin_lock_init(&zone->lock);
2168                 spin_lock_init(&zone->lru_lock);
2169                 zone_seqlock_init(zone);
2170                 zone->zone_pgdat = pgdat;
2171                 zone->free_pages = 0;
2172
2173                 zone->temp_priority = zone->prev_priority = DEF_PRIORITY;
2174
2175                 zone_pcp_init(zone);
2176                 INIT_LIST_HEAD(&zone->active_list);
2177                 INIT_LIST_HEAD(&zone->inactive_list);
2178                 zone->nr_scan_active = 0;
2179                 zone->nr_scan_inactive = 0;
2180                 zone->nr_active = 0;
2181                 zone->nr_inactive = 0;
2182                 atomic_set(&zone->reclaim_in_progress, 0);
2183                 if (!size)
2184                         continue;
2185
2186                 zonetable_add(zone, nid, j, zone_start_pfn, size);
2187                 ret = init_currently_empty_zone(zone, zone_start_pfn, size);
2188                 BUG_ON(ret);
2189                 zone_start_pfn += size;
2190         }
2191 }
2192
2193 static void __init alloc_node_mem_map(struct pglist_data *pgdat)
2194 {
2195         /* Skip empty nodes */
2196         if (!pgdat->node_spanned_pages)
2197                 return;
2198
2199 #ifdef CONFIG_FLAT_NODE_MEM_MAP
2200         /* ia64 gets its own node_mem_map, before this, without bootmem */
2201         if (!pgdat->node_mem_map) {
2202                 unsigned long size, start, end;
2203                 struct page *map;
2204
2205                 /*
2206                  * The zone's endpoints aren't required to be MAX_ORDER
2207                  * aligned but the node_mem_map endpoints must be in order
2208                  * for the buddy allocator to function correctly.
2209                  */
2210                 start = pgdat->node_start_pfn & ~(MAX_ORDER_NR_PAGES - 1);
2211                 end = pgdat->node_start_pfn + pgdat->node_spanned_pages;
2212                 end = ALIGN(end, MAX_ORDER_NR_PAGES);
2213                 size =  (end - start) * sizeof(struct page);
2214                 map = alloc_remap(pgdat->node_id, size);
2215                 if (!map)
2216                         map = alloc_bootmem_node(pgdat, size);
2217                 pgdat->node_mem_map = map + (pgdat->node_start_pfn - start);
2218         }
2219 #ifdef CONFIG_FLATMEM
2220         /*
2221          * With no DISCONTIG, the global mem_map is just set as node 0's
2222          */
2223         if (pgdat == NODE_DATA(0))
2224                 mem_map = NODE_DATA(0)->node_mem_map;
2225 #endif
2226 #endif /* CONFIG_FLAT_NODE_MEM_MAP */
2227 }
2228
2229 void __meminit free_area_init_node(int nid, struct pglist_data *pgdat,
2230                 unsigned long *zones_size, unsigned long node_start_pfn,
2231                 unsigned long *zholes_size)
2232 {
2233         pgdat->node_id = nid;
2234         pgdat->node_start_pfn = node_start_pfn;
2235         calculate_zone_totalpages(pgdat, zones_size, zholes_size);
2236
2237         alloc_node_mem_map(pgdat);
2238
2239         free_area_init_core(pgdat, zones_size, zholes_size);
2240 }
2241
2242 #ifndef CONFIG_NEED_MULTIPLE_NODES
2243 static bootmem_data_t contig_bootmem_data;
2244 struct pglist_data contig_page_data = { .bdata = &contig_bootmem_data };
2245
2246 EXPORT_SYMBOL(contig_page_data);
2247 #endif
2248
2249 void __init free_area_init(unsigned long *zones_size)
2250 {
2251         free_area_init_node(0, NODE_DATA(0), zones_size,
2252                         __pa(PAGE_OFFSET) >> PAGE_SHIFT, NULL);
2253 }
2254
2255 #ifdef CONFIG_PROC_FS
2256
2257 #include <linux/seq_file.h>
2258
2259 static void *frag_start(struct seq_file *m, loff_t *pos)
2260 {
2261         pg_data_t *pgdat;
2262         loff_t node = *pos;
2263         for (pgdat = first_online_pgdat();
2264              pgdat && node;
2265              pgdat = next_online_pgdat(pgdat))
2266                 --node;
2267
2268         return pgdat;
2269 }
2270
2271 static void *frag_next(struct seq_file *m, void *arg, loff_t *pos)
2272 {
2273         pg_data_t *pgdat = (pg_data_t *)arg;
2274
2275         (*pos)++;
2276         return next_online_pgdat(pgdat);
2277 }
2278
2279 static void frag_stop(struct seq_file *m, void *arg)
2280 {
2281 }
2282
2283 /* 
2284  * This walks the free areas for each zone.
2285  */
2286 static int frag_show(struct seq_file *m, void *arg)
2287 {
2288         pg_data_t *pgdat = (pg_data_t *)arg;
2289         struct zone *zone;
2290         struct zone *node_zones = pgdat->node_zones;
2291         unsigned long flags;
2292         int order;
2293
2294         for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
2295                 if (!populated_zone(zone))
2296                         continue;
2297
2298                 spin_lock_irqsave(&zone->lock, flags);
2299                 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
2300                 for (order = 0; order < MAX_ORDER; ++order)
2301                         seq_printf(m, "%6lu ", zone->free_area[order].nr_free);
2302                 spin_unlock_irqrestore(&zone->lock, flags);
2303                 seq_putc(m, '\n');
2304         }
2305         return 0;
2306 }
2307
2308 struct seq_operations fragmentation_op = {
2309         .start  = frag_start,
2310         .next   = frag_next,
2311         .stop   = frag_stop,
2312         .show   = frag_show,
2313 };
2314
2315 /*
2316  * Output information about zones in @pgdat.
2317  */
2318 static int zoneinfo_show(struct seq_file *m, void *arg)
2319 {
2320         pg_data_t *pgdat = arg;
2321         struct zone *zone;
2322         struct zone *node_zones = pgdat->node_zones;
2323         unsigned long flags;
2324
2325         for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; zone++) {
2326                 int i;
2327
2328                 if (!populated_zone(zone))
2329                         continue;
2330
2331                 spin_lock_irqsave(&zone->lock, flags);
2332                 seq_printf(m, "Node %d, zone %8s", pgdat->node_id, zone->name);
2333                 seq_printf(m,
2334                            "\n  pages free     %lu"
2335                            "\n        min      %lu"
2336                            "\n        low      %lu"
2337                            "\n        high     %lu"
2338                            "\n        active   %lu"
2339                            "\n        inactive %lu"
2340                            "\n        scanned  %lu (a: %lu i: %lu)"
2341                            "\n        spanned  %lu"
2342                            "\n        present  %lu",
2343                            zone->free_pages,
2344                            zone->pages_min,
2345                            zone->pages_low,
2346                            zone->pages_high,
2347                            zone->nr_active,
2348                            zone->nr_inactive,
2349                            zone->pages_scanned,
2350                            zone->nr_scan_active, zone->nr_scan_inactive,
2351                            zone->spanned_pages,
2352                            zone->present_pages);
2353                 seq_printf(m,
2354                            "\n        protection: (%lu",
2355                            zone->lowmem_reserve[0]);
2356                 for (i = 1; i < ARRAY_SIZE(zone->lowmem_reserve); i++)
2357                         seq_printf(m, ", %lu", zone->lowmem_reserve[i]);
2358                 seq_printf(m,
2359                            ")"
2360                            "\n  pagesets");
2361                 for_each_online_cpu(i) {
2362                         struct per_cpu_pageset *pageset;
2363                         int j;
2364
2365                         pageset = zone_pcp(zone, i);
2366                         for (j = 0; j < ARRAY_SIZE(pageset->pcp); j++) {
2367                                 if (pageset->pcp[j].count)
2368                                         break;
2369                         }
2370                         if (j == ARRAY_SIZE(pageset->pcp))
2371                                 continue;
2372                         for (j = 0; j < ARRAY_SIZE(pageset->pcp); j++) {
2373                                 seq_printf(m,
2374                                            "\n    cpu: %i pcp: %i"
2375                                            "\n              count: %i"
2376                                            "\n              high:  %i"
2377                                            "\n              batch: %i",
2378                                            i, j,
2379                                            pageset->pcp[j].count,
2380                                            pageset->pcp[j].high,
2381                                            pageset->pcp[j].batch);
2382                         }
2383 #ifdef CONFIG_NUMA
2384                         seq_printf(m,
2385                                    "\n            numa_hit:       %lu"
2386                                    "\n            numa_miss:      %lu"
2387                                    "\n            numa_foreign:   %lu"
2388                                    "\n            interleave_hit: %lu"
2389                                    "\n            local_node:     %lu"
2390                                    "\n            other_node:     %lu",
2391                                    pageset->numa_hit,
2392                                    pageset->numa_miss,
2393                                    pageset->numa_foreign,
2394                                    pageset->interleave_hit,
2395                                    pageset->local_node,
2396                                    pageset->other_node);
2397 #endif
2398                 }
2399                 seq_printf(m,
2400                            "\n  all_unreclaimable: %u"
2401                            "\n  prev_priority:     %i"
2402                            "\n  temp_priority:     %i"
2403                            "\n  start_pfn:         %lu",
2404                            zone->all_unreclaimable,
2405                            zone->prev_priority,
2406                            zone->temp_priority,
2407                            zone->zone_start_pfn);
2408                 spin_unlock_irqrestore(&zone->lock, flags);
2409                 seq_putc(m, '\n');
2410         }
2411         return 0;
2412 }
2413
2414 struct seq_operations zoneinfo_op = {
2415         .start  = frag_start, /* iterate over all zones. The same as in
2416                                * fragmentation. */
2417         .next   = frag_next,
2418         .stop   = frag_stop,
2419         .show   = zoneinfo_show,
2420 };
2421
2422 static char *vmstat_text[] = {
2423         "nr_dirty",
2424         "nr_writeback",
2425         "nr_unstable",
2426         "nr_page_table_pages",
2427         "nr_mapped",
2428         "nr_slab",
2429
2430         "pgpgin",
2431         "pgpgout",
2432         "pswpin",
2433         "pswpout",
2434
2435         "pgalloc_high",
2436         "pgalloc_normal",
2437         "pgalloc_dma32",
2438         "pgalloc_dma",
2439
2440         "pgfree",
2441         "pgactivate",
2442         "pgdeactivate",
2443
2444         "pgfault",
2445         "pgmajfault",
2446
2447         "pgrefill_high",
2448         "pgrefill_normal",
2449         "pgrefill_dma32",
2450         "pgrefill_dma",
2451
2452         "pgsteal_high",
2453         "pgsteal_normal",
2454         "pgsteal_dma32",
2455         "pgsteal_dma",
2456
2457         "pgscan_kswapd_high",
2458         "pgscan_kswapd_normal",
2459         "pgscan_kswapd_dma32",
2460         "pgscan_kswapd_dma",
2461
2462         "pgscan_direct_high",
2463         "pgscan_direct_normal",
2464         "pgscan_direct_dma32",
2465         "pgscan_direct_dma",
2466
2467         "pginodesteal",
2468         "slabs_scanned",
2469         "kswapd_steal",
2470         "kswapd_inodesteal",
2471         "pageoutrun",
2472         "allocstall",
2473
2474         "pgrotated",
2475         "nr_bounce",
2476 };
2477
2478 static void *vmstat_start(struct seq_file *m, loff_t *pos)
2479 {
2480         struct page_state *ps;
2481
2482         if (*pos >= ARRAY_SIZE(vmstat_text))
2483                 return NULL;
2484
2485         ps = kmalloc(sizeof(*ps), GFP_KERNEL);
2486         m->private = ps;
2487         if (!ps)
2488                 return ERR_PTR(-ENOMEM);
2489         get_full_page_state(ps);
2490         ps->pgpgin /= 2;                /* sectors -> kbytes */
2491         ps->pgpgout /= 2;
2492         return (unsigned long *)ps + *pos;
2493 }
2494
2495 static void *vmstat_next(struct seq_file *m, void *arg, loff_t *pos)
2496 {
2497         (*pos)++;
2498         if (*pos >= ARRAY_SIZE(vmstat_text))
2499                 return NULL;
2500         return (unsigned long *)m->private + *pos;
2501 }
2502
2503 static int vmstat_show(struct seq_file *m, void *arg)
2504 {
2505         unsigned long *l = arg;
2506         unsigned long off = l - (unsigned long *)m->private;
2507
2508         seq_printf(m, "%s %lu\n", vmstat_text[off], *l);
2509         return 0;
2510 }
2511
2512 static void vmstat_stop(struct seq_file *m, void *arg)
2513 {
2514         kfree(m->private);
2515         m->private = NULL;
2516 }
2517
2518 struct seq_operations vmstat_op = {
2519         .start  = vmstat_start,
2520         .next   = vmstat_next,
2521         .stop   = vmstat_stop,
2522         .show   = vmstat_show,
2523 };
2524
2525 #endif /* CONFIG_PROC_FS */
2526
2527 #ifdef CONFIG_HOTPLUG_CPU
2528 static int page_alloc_cpu_notify(struct notifier_block *self,
2529                                  unsigned long action, void *hcpu)
2530 {
2531         int cpu = (unsigned long)hcpu;
2532         long *count;
2533         unsigned long *src, *dest;
2534
2535         if (action == CPU_DEAD) {
2536                 int i;
2537
2538                 /* Drain local pagecache count. */
2539                 count = &per_cpu(nr_pagecache_local, cpu);
2540                 atomic_add(*count, &nr_pagecache);
2541                 *count = 0;
2542                 local_irq_disable();
2543                 __drain_pages(cpu);
2544
2545                 /* Add dead cpu's page_states to our own. */
2546                 dest = (unsigned long *)&__get_cpu_var(page_states);
2547                 src = (unsigned long *)&per_cpu(page_states, cpu);
2548
2549                 for (i = 0; i < sizeof(struct page_state)/sizeof(unsigned long);
2550                                 i++) {
2551                         dest[i] += src[i];
2552                         src[i] = 0;
2553                 }
2554
2555                 local_irq_enable();
2556         }
2557         return NOTIFY_OK;
2558 }
2559 #endif /* CONFIG_HOTPLUG_CPU */
2560
2561 void __init page_alloc_init(void)
2562 {
2563         hotcpu_notifier(page_alloc_cpu_notify, 0);
2564 }
2565
2566 /*
2567  * calculate_totalreserve_pages - called when sysctl_lower_zone_reserve_ratio
2568  *      or min_free_kbytes changes.
2569  */
2570 static void calculate_totalreserve_pages(void)
2571 {
2572         struct pglist_data *pgdat;
2573         unsigned long reserve_pages = 0;
2574         int i, j;
2575
2576         for_each_online_pgdat(pgdat) {
2577                 for (i = 0; i < MAX_NR_ZONES; i++) {
2578                         struct zone *zone = pgdat->node_zones + i;
2579                         unsigned long max = 0;
2580
2581                         /* Find valid and maximum lowmem_reserve in the zone */
2582                         for (j = i; j < MAX_NR_ZONES; j++) {
2583                                 if (zone->lowmem_reserve[j] > max)
2584                                         max = zone->lowmem_reserve[j];
2585                         }
2586
2587                         /* we treat pages_high as reserved pages. */
2588                         max += zone->pages_high;
2589
2590                         if (max > zone->present_pages)
2591                                 max = zone->present_pages;
2592                         reserve_pages += max;
2593                 }
2594         }
2595         totalreserve_pages = reserve_pages;
2596 }
2597
2598 /*
2599  * setup_per_zone_lowmem_reserve - called whenever
2600  *      sysctl_lower_zone_reserve_ratio changes.  Ensures that each zone
2601  *      has a correct pages reserved value, so an adequate number of
2602  *      pages are left in the zone after a successful __alloc_pages().
2603  */
2604 static void setup_per_zone_lowmem_reserve(void)
2605 {
2606         struct pglist_data *pgdat;
2607         int j, idx;
2608
2609         for_each_online_pgdat(pgdat) {
2610                 for (j = 0; j < MAX_NR_ZONES; j++) {
2611                         struct zone *zone = pgdat->node_zones + j;
2612                         unsigned long present_pages = zone->present_pages;
2613
2614                         zone->lowmem_reserve[j] = 0;
2615
2616                         for (idx = j-1; idx >= 0; idx--) {
2617                                 struct zone *lower_zone;
2618
2619                                 if (sysctl_lowmem_reserve_ratio[idx] < 1)
2620                                         sysctl_lowmem_reserve_ratio[idx] = 1;
2621
2622                                 lower_zone = pgdat->node_zones + idx;
2623                                 lower_zone->lowmem_reserve[j] = present_pages /
2624                                         sysctl_lowmem_reserve_ratio[idx];
2625                                 present_pages += lower_zone->present_pages;
2626                         }
2627                 }
2628         }
2629
2630         /* update totalreserve_pages */
2631         calculate_totalreserve_pages();
2632 }
2633
2634 /*
2635  * setup_per_zone_pages_min - called when min_free_kbytes changes.  Ensures 
2636  *      that the pages_{min,low,high} values for each zone are set correctly 
2637  *      with respect to min_free_kbytes.
2638  */
2639 void setup_per_zone_pages_min(void)
2640 {
2641         unsigned long pages_min = min_free_kbytes >> (PAGE_SHIFT - 10);
2642         unsigned long lowmem_pages = 0;
2643         struct zone *zone;
2644         unsigned long flags;
2645
2646         /* Calculate total number of !ZONE_HIGHMEM pages */
2647         for_each_zone(zone) {
2648                 if (!is_highmem(zone))
2649                         lowmem_pages += zone->present_pages;
2650         }
2651
2652         for_each_zone(zone) {
2653                 u64 tmp;
2654
2655                 spin_lock_irqsave(&zone->lru_lock, flags);
2656                 tmp = (u64)pages_min * zone->present_pages;
2657                 do_div(tmp, lowmem_pages);
2658                 if (is_highmem(zone)) {
2659                         /*
2660                          * __GFP_HIGH and PF_MEMALLOC allocations usually don't
2661                          * need highmem pages, so cap pages_min to a small
2662                          * value here.
2663                          *
2664                          * The (pages_high-pages_low) and (pages_low-pages_min)
2665                          * deltas controls asynch page reclaim, and so should
2666                          * not be capped for highmem.
2667                          */
2668                         int min_pages;
2669
2670                         min_pages = zone->present_pages / 1024;
2671                         if (min_pages < SWAP_CLUSTER_MAX)
2672                                 min_pages = SWAP_CLUSTER_MAX;
2673                         if (min_pages > 128)
2674                                 min_pages = 128;
2675                         zone->pages_min = min_pages;
2676                 } else {
2677                         /*
2678                          * If it's a lowmem zone, reserve a number of pages
2679                          * proportionate to the zone's size.
2680                          */
2681                         zone->pages_min = tmp;
2682                 }
2683
2684                 zone->pages_low   = zone->pages_min + (tmp >> 2);
2685                 zone->pages_high  = zone->pages_min + (tmp >> 1);
2686                 spin_unlock_irqrestore(&zone->lru_lock, flags);
2687         }
2688
2689         /* update totalreserve_pages */
2690         calculate_totalreserve_pages();
2691 }
2692
2693 /*
2694  * Initialise min_free_kbytes.
2695  *
2696  * For small machines we want it small (128k min).  For large machines
2697  * we want it large (64MB max).  But it is not linear, because network
2698  * bandwidth does not increase linearly with machine size.  We use
2699  *
2700  *      min_free_kbytes = 4 * sqrt(lowmem_kbytes), for better accuracy:
2701  *      min_free_kbytes = sqrt(lowmem_kbytes * 16)
2702  *
2703  * which yields
2704  *
2705  * 16MB:        512k
2706  * 32MB:        724k
2707  * 64MB:        1024k
2708  * 128MB:       1448k
2709  * 256MB:       2048k
2710  * 512MB:       2896k
2711  * 1024MB:      4096k
2712  * 2048MB:      5792k
2713  * 4096MB:      8192k
2714  * 8192MB:      11584k
2715  * 16384MB:     16384k
2716  */
2717 static int __init init_per_zone_pages_min(void)
2718 {
2719         unsigned long lowmem_kbytes;
2720
2721         lowmem_kbytes = nr_free_buffer_pages() * (PAGE_SIZE >> 10);
2722
2723         min_free_kbytes = int_sqrt(lowmem_kbytes * 16);
2724         if (min_free_kbytes < 128)
2725                 min_free_kbytes = 128;
2726         if (min_free_kbytes > 65536)
2727                 min_free_kbytes = 65536;
2728         setup_per_zone_pages_min();
2729         setup_per_zone_lowmem_reserve();
2730         return 0;
2731 }
2732 module_init(init_per_zone_pages_min)
2733
2734 /*
2735  * min_free_kbytes_sysctl_handler - just a wrapper around proc_dointvec() so 
2736  *      that we can call two helper functions whenever min_free_kbytes
2737  *      changes.
2738  */
2739 int min_free_kbytes_sysctl_handler(ctl_table *table, int write, 
2740         struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
2741 {
2742         proc_dointvec(table, write, file, buffer, length, ppos);
2743         setup_per_zone_pages_min();
2744         return 0;
2745 }
2746
2747 /*
2748  * lowmem_reserve_ratio_sysctl_handler - just a wrapper around
2749  *      proc_dointvec() so that we can call setup_per_zone_lowmem_reserve()
2750  *      whenever sysctl_lowmem_reserve_ratio changes.
2751  *
2752  * The reserve ratio obviously has absolutely no relation with the
2753  * pages_min watermarks. The lowmem reserve ratio can only make sense
2754  * if in function of the boot time zone sizes.
2755  */
2756 int lowmem_reserve_ratio_sysctl_handler(ctl_table *table, int write,
2757         struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
2758 {
2759         proc_dointvec_minmax(table, write, file, buffer, length, ppos);
2760         setup_per_zone_lowmem_reserve();
2761         return 0;
2762 }
2763
2764 /*
2765  * percpu_pagelist_fraction - changes the pcp->high for each zone on each
2766  * cpu.  It is the fraction of total pages in each zone that a hot per cpu pagelist
2767  * can have before it gets flushed back to buddy allocator.
2768  */
2769
2770 int percpu_pagelist_fraction_sysctl_handler(ctl_table *table, int write,
2771         struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
2772 {
2773         struct zone *zone;
2774         unsigned int cpu;
2775         int ret;
2776
2777         ret = proc_dointvec_minmax(table, write, file, buffer, length, ppos);
2778         if (!write || (ret == -EINVAL))
2779                 return ret;
2780         for_each_zone(zone) {
2781                 for_each_online_cpu(cpu) {
2782                         unsigned long  high;
2783                         high = zone->present_pages / percpu_pagelist_fraction;
2784                         setup_pagelist_highmark(zone_pcp(zone, cpu), high);
2785                 }
2786         }
2787         return 0;
2788 }
2789
2790 __initdata int hashdist = HASHDIST_DEFAULT;
2791
2792 #ifdef CONFIG_NUMA
2793 static int __init set_hashdist(char *str)
2794 {
2795         if (!str)
2796                 return 0;
2797         hashdist = simple_strtoul(str, &str, 0);
2798         return 1;
2799 }
2800 __setup("hashdist=", set_hashdist);
2801 #endif
2802
2803 /*
2804  * allocate a large system hash table from bootmem
2805  * - it is assumed that the hash table must contain an exact power-of-2
2806  *   quantity of entries
2807  * - limit is the number of hash buckets, not the total allocation size
2808  */
2809 void *__init alloc_large_system_hash(const char *tablename,
2810                                      unsigned long bucketsize,
2811                                      unsigned long numentries,
2812                                      int scale,
2813                                      int flags,
2814                                      unsigned int *_hash_shift,
2815                                      unsigned int *_hash_mask,
2816                                      unsigned long limit)
2817 {
2818         unsigned long long max = limit;
2819         unsigned long log2qty, size;
2820         void *table = NULL;
2821
2822         /* allow the kernel cmdline to have a say */
2823         if (!numentries) {
2824                 /* round applicable memory size up to nearest megabyte */
2825                 numentries = (flags & HASH_HIGHMEM) ? nr_all_pages : nr_kernel_pages;
2826                 numentries += (1UL << (20 - PAGE_SHIFT)) - 1;
2827                 numentries >>= 20 - PAGE_SHIFT;
2828                 numentries <<= 20 - PAGE_SHIFT;
2829
2830                 /* limit to 1 bucket per 2^scale bytes of low memory */
2831                 if (scale > PAGE_SHIFT)
2832                         numentries >>= (scale - PAGE_SHIFT);
2833                 else
2834                         numentries <<= (PAGE_SHIFT - scale);
2835         }
2836         numentries = roundup_pow_of_two(numentries);
2837
2838         /* limit allocation size to 1/16 total memory by default */
2839         if (max == 0) {
2840                 max = ((unsigned long long)nr_all_pages << PAGE_SHIFT) >> 4;
2841                 do_div(max, bucketsize);
2842         }
2843
2844         if (numentries > max)
2845                 numentries = max;
2846
2847         log2qty = long_log2(numentries);
2848
2849         do {
2850                 size = bucketsize << log2qty;
2851                 if (flags & HASH_EARLY)
2852                         table = alloc_bootmem(size);
2853                 else if (hashdist)
2854                         table = __vmalloc(size, GFP_ATOMIC, PAGE_KERNEL);
2855                 else {
2856                         unsigned long order;
2857                         for (order = 0; ((1UL << order) << PAGE_SHIFT) < size; order++)
2858                                 ;
2859                         table = (void*) __get_free_pages(GFP_ATOMIC, order);
2860                 }
2861         } while (!table && size > PAGE_SIZE && --log2qty);
2862
2863         if (!table)
2864                 panic("Failed to allocate %s hash table\n", tablename);
2865
2866         printk("%s hash table entries: %d (order: %d, %lu bytes)\n",
2867                tablename,
2868                (1U << log2qty),
2869                long_log2(size) - PAGE_SHIFT,
2870                size);
2871
2872         if (_hash_shift)
2873                 *_hash_shift = log2qty;
2874         if (_hash_mask)
2875                 *_hash_mask = (1 << log2qty) - 1;
2876
2877         return table;
2878 }
2879
2880 #ifdef CONFIG_OUT_OF_LINE_PFN_TO_PAGE
2881 struct page *pfn_to_page(unsigned long pfn)
2882 {
2883         return __pfn_to_page(pfn);
2884 }
2885 unsigned long page_to_pfn(struct page *page)
2886 {
2887         return __page_to_pfn(page);
2888 }
2889 EXPORT_SYMBOL(pfn_to_page);
2890 EXPORT_SYMBOL(page_to_pfn);
2891 #endif /* CONFIG_OUT_OF_LINE_PFN_TO_PAGE */