kexec applied from
[linux-2.6.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/config.h>
18 #include <linux/stddef.h>
19 #include <linux/mm.h>
20 #include <linux/swap.h>
21 #include <linux/interrupt.h>
22 #include <linux/pagemap.h>
23 #include <linux/bootmem.h>
24 #include <linux/compiler.h>
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/ckrm_mem_inline.h>
35 #include <linux/vs_base.h>
36 #include <linux/vs_limit.h>
37 #include <linux/nodemask.h>
38 #include <linux/ckrm_mem_inline.h>
39
40 #include <asm/tlbflush.h>
41
42 nodemask_t node_online_map = NODE_MASK_NONE;
43 nodemask_t node_possible_map = NODE_MASK_ALL;
44 struct pglist_data *pgdat_list;
45 unsigned long totalram_pages;
46 unsigned long totalhigh_pages;
47 long nr_swap_pages;
48 int numnodes = 1;
49 int sysctl_lower_zone_protection = 0;
50
51 EXPORT_SYMBOL(totalram_pages);
52 EXPORT_SYMBOL(nr_swap_pages);
53
54 #ifdef CONFIG_CRASH_DUMP
55 /* This symbol has to be exported to use 'for_each_pgdat' macro by modules. */
56 EXPORT_SYMBOL(pgdat_list);
57 #endif
58
59 /*
60  * Used by page_zone() to look up the address of the struct zone whose
61  * id is encoded in the upper bits of page->flags
62  */
63 struct zone *zone_table[1 << (ZONES_SHIFT + NODES_SHIFT)];
64 EXPORT_SYMBOL(zone_table);
65
66 static char *zone_names[MAX_NR_ZONES] = { "DMA", "Normal", "HighMem" };
67 int min_free_kbytes = 1024;
68
69 unsigned long __initdata nr_kernel_pages;
70 unsigned long __initdata nr_all_pages;
71
72 /*
73  * Temporary debugging check for pages not lying within a given zone.
74  */
75 static int bad_range(struct zone *zone, struct page *page)
76 {
77         if (page_to_pfn(page) >= zone->zone_start_pfn + zone->spanned_pages)
78                 return 1;
79         if (page_to_pfn(page) < zone->zone_start_pfn)
80                 return 1;
81         if (zone != page_zone(page))
82                 return 1;
83         return 0;
84 }
85
86 static void bad_page(const char *function, struct page *page)
87 {
88         printk(KERN_EMERG "Bad page state at %s (in process '%s', page %p)\n",
89                 function, current->comm, page);
90         printk(KERN_EMERG "flags:0x%0*lx mapping:%p mapcount:%d count:%d (%s)\n",
91                 (int)(2*sizeof(page_flags_t)), (unsigned long)page->flags,
92                 page->mapping, page_mapcount(page), page_count(page), print_tainted());
93         printk(KERN_EMERG "Backtrace:\n");
94         dump_stack();
95         printk(KERN_EMERG "Trying to fix it up, but a reboot is needed\n");
96         page->flags &= ~(1 << PG_private        |
97                         1 << PG_locked  |
98                         1 << PG_lru     |
99                         1 << PG_active  |
100                         1 << PG_dirty   |
101                         1 << PG_swapcache |
102                         1 << PG_writeback);
103         set_page_count(page, 0);
104         reset_page_mapcount(page);
105         page->mapping = NULL;
106         tainted |= TAINT_BAD_PAGE;
107 }
108
109 #if !defined(CONFIG_HUGETLB_PAGE) && !defined(CONFIG_CRASH_DUMP)
110 #define prep_compound_page(page, order) do { } while (0)
111 #define destroy_compound_page(page, order) do { } while (0)
112 #else
113 /*
114  * Higher-order pages are called "compound pages".  They are structured thusly:
115  *
116  * The first PAGE_SIZE page is called the "head page".
117  *
118  * The remaining PAGE_SIZE pages are called "tail pages".
119  *
120  * All pages have PG_compound set.  All pages have their ->private pointing at
121  * the head page (even the head page has this).
122  *
123  * The first tail page's ->mapping, if non-zero, holds the address of the
124  * compound page's put_page() function.
125  *
126  * The order of the allocation is stored in the first tail page's ->index
127  * This is only for debug at present.  This usage means that zero-order pages
128  * may not be compound.
129  */
130 static void prep_compound_page(struct page *page, unsigned long order)
131 {
132         int i;
133         int nr_pages = 1 << order;
134
135         page[1].mapping = NULL;
136         page[1].index = order;
137         for (i = 0; i < nr_pages; i++) {
138                 struct page *p = page + i;
139
140                 SetPageCompound(p);
141                 p->private = (unsigned long)page;
142         }
143 }
144
145 static void destroy_compound_page(struct page *page, unsigned long order)
146 {
147         int i;
148         int nr_pages = 1 << order;
149
150         if (!PageCompound(page))
151                 return;
152
153         if (page[1].index != order)
154                 bad_page(__FUNCTION__, page);
155
156         for (i = 0; i < nr_pages; i++) {
157                 struct page *p = page + i;
158
159                 if (!PageCompound(p))
160                         bad_page(__FUNCTION__, page);
161                 if (p->private != (unsigned long)page)
162                         bad_page(__FUNCTION__, page);
163                 ClearPageCompound(p);
164         }
165 }
166 #endif          /* CONFIG_HUGETLB_PAGE */
167
168 /*
169  * Freeing function for a buddy system allocator.
170  *
171  * The concept of a buddy system is to maintain direct-mapped table
172  * (containing bit values) for memory blocks of various "orders".
173  * The bottom level table contains the map for the smallest allocatable
174  * units of memory (here, pages), and each level above it describes
175  * pairs of units from the levels below, hence, "buddies".
176  * At a high level, all that happens here is marking the table entry
177  * at the bottom level available, and propagating the changes upward
178  * as necessary, plus some accounting needed to play nicely with other
179  * parts of the VM system.
180  * At each level, we keep one bit for each pair of blocks, which
181  * is set to 1 iff only one of the pair is allocated.  So when we
182  * are allocating or freeing one, we can derive the state of the
183  * other.  That is, if we allocate a small block, and both were   
184  * free, the remainder of the region must be split into blocks.   
185  * If a block is freed, and its buddy is also free, then this
186  * triggers coalescing into a block of larger size.            
187  *
188  * -- wli
189  */
190
191 static inline void __free_pages_bulk (struct page *page, struct page *base,
192                 struct zone *zone, struct free_area *area, unsigned int order)
193 {
194         unsigned long page_idx, index, mask;
195
196         if (order)
197                 destroy_compound_page(page, order);
198         mask = (~0UL) << order;
199         page_idx = page - base;
200         if (page_idx & ~mask)
201                 BUG();
202         index = page_idx >> (1 + order);
203
204         zone->free_pages += 1 << order;
205         while (order < MAX_ORDER-1) {
206                 struct page *buddy1, *buddy2;
207
208                 BUG_ON(area >= zone->free_area + MAX_ORDER);
209                 if (!__test_and_change_bit(index, area->map))
210                         /*
211                          * the buddy page is still allocated.
212                          */
213                         break;
214
215                 /* Move the buddy up one level. */
216                 buddy1 = base + (page_idx ^ (1 << order));
217                 buddy2 = base + page_idx;
218                 BUG_ON(bad_range(zone, buddy1));
219                 BUG_ON(bad_range(zone, buddy2));
220                 list_del(&buddy1->lru);
221                 mask <<= 1;
222                 order++;
223                 area++;
224                 index >>= 1;
225                 page_idx &= mask;
226         }
227         list_add(&(base + page_idx)->lru, &area->free_list);
228 }
229
230 static inline void free_pages_check(const char *function, struct page *page)
231 {
232         if (    page_mapped(page) ||
233                 page->mapping != NULL ||
234                 page_count(page) != 0 ||
235                 (page->flags & (
236                         1 << PG_lru     |
237                         1 << PG_private |
238                         1 << PG_locked  |
239                         1 << PG_active  |
240                         1 << PG_reclaim |
241                         1 << PG_slab    |
242                         1 << PG_swapcache |
243                         1 << PG_writeback )))
244                 bad_page(function, page);
245         if (PageDirty(page))
246                 ClearPageDirty(page);
247 }
248
249 /*
250  * Frees a list of pages. 
251  * Assumes all pages on list are in same zone, and of same order.
252  * count is the number of pages to free, or 0 for all on the list.
253  *
254  * If the zone was previously in an "all pages pinned" state then look to
255  * see if this freeing clears that state.
256  *
257  * And clear the zone's pages_scanned counter, to hold off the "all pages are
258  * pinned" detection logic.
259  */
260 static int
261 free_pages_bulk(struct zone *zone, int count,
262                 struct list_head *list, unsigned int order)
263 {
264         unsigned long flags;
265         struct free_area *area;
266         struct page *base, *page = NULL;
267         int ret = 0;
268
269         base = zone->zone_mem_map;
270         area = zone->free_area + order;
271         spin_lock_irqsave(&zone->lock, flags);
272         zone->all_unreclaimable = 0;
273         zone->pages_scanned = 0;
274         while (!list_empty(list) && count--) {
275                 page = list_entry(list->prev, struct page, lru);
276                 /* have to delete it as __free_pages_bulk list manipulates */
277                 list_del(&page->lru);
278                 __free_pages_bulk(page, base, zone, area, order);
279                 ckrm_clear_page_class(page);
280                 ret++;
281         }
282         spin_unlock_irqrestore(&zone->lock, flags);
283         return ret;
284 }
285
286 void __free_pages_ok(struct page *page, unsigned int order)
287 {
288         LIST_HEAD(list);
289         int i;
290
291         arch_free_page(page, order);
292
293         mod_page_state(pgfree, 1 << order);
294         for (i = 0 ; i < (1 << order) ; ++i)
295                 free_pages_check(__FUNCTION__, page + i);
296         list_add(&page->lru, &list);
297         kernel_map_pages(page, 1<<order, 0);
298         free_pages_bulk(page_zone(page), 1, &list, order);
299 }
300
301 #define MARK_USED(index, order, area) \
302         __change_bit((index) >> (1+(order)), (area)->map)
303
304 /*
305  * The order of subdivision here is critical for the IO subsystem.
306  * Please do not alter this order without good reasons and regression
307  * testing. Specifically, as large blocks of memory are subdivided,
308  * the order in which smaller blocks are delivered depends on the order
309  * they're subdivided in this function. This is the primary factor
310  * influencing the order in which pages are delivered to the IO
311  * subsystem according to empirical testing, and this is also justified
312  * by considering the behavior of a buddy system containing a single
313  * large block of memory acted on by a series of small allocations.
314  * This behavior is a critical factor in sglist merging's success.
315  *
316  * -- wli
317  */
318 static inline struct page *
319 expand(struct zone *zone, struct page *page,
320          unsigned long index, int low, int high, struct free_area *area)
321 {
322         unsigned long size = 1 << high;
323
324         while (high > low) {
325                 area--;
326                 high--;
327                 size >>= 1;
328                 BUG_ON(bad_range(zone, &page[size]));
329                 list_add(&page[size].lru, &area->free_list);
330                 MARK_USED(index + size, high, area);
331         }
332         return page;
333 }
334
335 static inline void set_page_refs(struct page *page, int order)
336 {
337 #ifdef CONFIG_MMU
338         set_page_count(page, 1);
339 #else
340         int i;
341
342         /*
343          * We need to reference all the pages for this order, otherwise if
344          * anyone accesses one of the pages with (get/put) it will be freed.
345          */
346         for (i = 0; i < (1 << order); i++)
347                 set_page_count(page+i, 1);
348 #endif /* CONFIG_MMU */
349 }
350
351 /*
352  * This page is about to be returned from the page allocator
353  */
354 static void prep_new_page(struct page *page, int order)
355 {
356         if (page->mapping || page_mapped(page) ||
357             (page->flags & (
358                         1 << PG_private |
359                         1 << PG_locked  |
360                         1 << PG_lru     |
361                         1 << PG_active  |
362                         1 << PG_dirty   |
363                         1 << PG_reclaim |
364                         1 << PG_swapcache |
365                         1 << PG_writeback )))
366                 bad_page(__FUNCTION__, page);
367
368         page->flags &= ~(1 << PG_uptodate | 1 << PG_error |
369                         1 << PG_referenced | 1 << PG_arch_1 |
370 #ifdef CONFIG_CKRM_RES_MEM
371                         1 << PG_ckrm_account |
372 #endif
373                         1 << PG_checked | 1 << PG_mappedtodisk);
374         page->private = 0;
375         ckrm_page_init(page);
376         set_page_refs(page, order);
377 }
378
379 /* 
380  * Do the hard work of removing an element from the buddy allocator.
381  * Call me with the zone->lock already held.
382  */
383 static struct page *__rmqueue(struct zone *zone, unsigned int order)
384 {
385         struct free_area * area;
386         unsigned int current_order;
387         struct page *page;
388         unsigned int index;
389
390         for (current_order = order; current_order < MAX_ORDER; ++current_order) {
391                 area = zone->free_area + current_order;
392                 if (list_empty(&area->free_list))
393                         continue;
394
395                 page = list_entry(area->free_list.next, struct page, lru);
396                 list_del(&page->lru);
397                 index = page - zone->zone_mem_map;
398                 if (current_order != MAX_ORDER-1)
399                         MARK_USED(index, current_order, area);
400                 zone->free_pages -= 1UL << order;
401                 return expand(zone, page, index, order, current_order, area);
402         }
403
404         return NULL;
405 }
406
407 /* 
408  * Obtain a specified number of elements from the buddy allocator, all under
409  * a single hold of the lock, for efficiency.  Add them to the supplied list.
410  * Returns the number of new pages which were placed at *list.
411  */
412 static int rmqueue_bulk(struct zone *zone, unsigned int order, 
413                         unsigned long count, struct list_head *list)
414 {
415         unsigned long flags;
416         int i;
417         int allocated = 0;
418         struct page *page;
419         
420         spin_lock_irqsave(&zone->lock, flags);
421         for (i = 0; i < count; ++i) {
422                 page = __rmqueue(zone, order);
423                 if (page == NULL)
424                         break;
425                 allocated++;
426                 list_add_tail(&page->lru, list);
427         }
428         spin_unlock_irqrestore(&zone->lock, flags);
429         return allocated;
430 }
431
432 #if defined(CONFIG_PM) || defined(CONFIG_HOTPLUG_CPU)
433 static void __drain_pages(unsigned int cpu)
434 {
435         struct zone *zone;
436         int i;
437
438         for_each_zone(zone) {
439                 struct per_cpu_pageset *pset;
440
441                 pset = &zone->pageset[cpu];
442                 for (i = 0; i < ARRAY_SIZE(pset->pcp); i++) {
443                         struct per_cpu_pages *pcp;
444
445                         pcp = &pset->pcp[i];
446                         pcp->count -= free_pages_bulk(zone, pcp->count,
447                                                 &pcp->list, 0);
448                 }
449         }
450 }
451 #endif /* CONFIG_PM || CONFIG_HOTPLUG_CPU */
452
453 #ifdef CONFIG_PM
454 int is_head_of_free_region(struct page *page)
455 {
456         struct zone *zone = page_zone(page);
457         unsigned long flags;
458         int order;
459         struct list_head *curr;
460
461         /*
462          * Should not matter as we need quiescent system for
463          * suspend anyway, but...
464          */
465         spin_lock_irqsave(&zone->lock, flags);
466         for (order = MAX_ORDER - 1; order >= 0; --order)
467                 list_for_each(curr, &zone->free_area[order].free_list)
468                         if (page == list_entry(curr, struct page, lru)) {
469                                 spin_unlock_irqrestore(&zone->lock, flags);
470                                 return 1 << order;
471                         }
472         spin_unlock_irqrestore(&zone->lock, flags);
473         return 0;
474 }
475
476 /*
477  * Spill all of this CPU's per-cpu pages back into the buddy allocator.
478  */
479 void drain_local_pages(void)
480 {
481         unsigned long flags;
482
483         local_irq_save(flags);  
484         __drain_pages(smp_processor_id());
485         local_irq_restore(flags);       
486 }
487 #endif /* CONFIG_PM */
488
489 static void zone_statistics(struct zonelist *zonelist, struct zone *z)
490 {
491 #ifdef CONFIG_NUMA
492         unsigned long flags;
493         int cpu;
494         pg_data_t *pg = z->zone_pgdat;
495         pg_data_t *orig = zonelist->zones[0]->zone_pgdat;
496         struct per_cpu_pageset *p;
497
498         local_irq_save(flags);
499         cpu = smp_processor_id();
500         p = &z->pageset[cpu];
501         if (pg == orig) {
502                 z->pageset[cpu].numa_hit++;
503         } else {
504                 p->numa_miss++;
505                 zonelist->zones[0]->pageset[cpu].numa_foreign++;
506         }
507         if (pg == NODE_DATA(numa_node_id()))
508                 p->local_node++;
509         else
510                 p->other_node++;
511         local_irq_restore(flags);
512 #endif
513 }
514
515 /*
516  * Free a 0-order page
517  */
518 static void FASTCALL(free_hot_cold_page(struct page *page, int cold));
519 static void fastcall free_hot_cold_page(struct page *page, int cold)
520 {
521         struct zone *zone = page_zone(page);
522         struct per_cpu_pages *pcp;
523         unsigned long flags;
524
525         arch_free_page(page, 0);
526
527         kernel_map_pages(page, 1, 0);
528         inc_page_state(pgfree);
529         if (PageAnon(page))
530                 page->mapping = NULL;
531         free_pages_check(__FUNCTION__, page);
532         pcp = &zone->pageset[get_cpu()].pcp[cold];
533         local_irq_save(flags);
534         if (pcp->count >= pcp->high)
535                 pcp->count -= free_pages_bulk(zone, pcp->batch, &pcp->list, 0);
536         list_add(&page->lru, &pcp->list);
537         pcp->count++;
538         local_irq_restore(flags);
539         put_cpu();
540 }
541
542 void fastcall free_hot_page(struct page *page)
543 {
544         free_hot_cold_page(page, 0);
545 }
546         
547 void fastcall free_cold_page(struct page *page)
548 {
549         free_hot_cold_page(page, 1);
550 }
551
552 /*
553  * Really, prep_compound_page() should be called from __rmqueue_bulk().  But
554  * we cheat by calling it from here, in the order > 0 path.  Saves a branch
555  * or two.
556  */
557
558 static struct page *
559 buffered_rmqueue(struct zone *zone, int order, int gfp_flags)
560 {
561         unsigned long flags;
562         struct page *page = NULL;
563         int cold = !!(gfp_flags & __GFP_COLD);
564
565         if (order == 0) {
566                 struct per_cpu_pages *pcp;
567
568                 pcp = &zone->pageset[get_cpu()].pcp[cold];
569                 local_irq_save(flags);
570                 if (pcp->count <= pcp->low)
571                         pcp->count += rmqueue_bulk(zone, 0,
572                                                 pcp->batch, &pcp->list);
573                 if (pcp->count) {
574                         page = list_entry(pcp->list.next, struct page, lru);
575                         list_del(&page->lru);
576                         pcp->count--;
577                 }
578                 local_irq_restore(flags);
579                 put_cpu();
580         }
581
582         if (page == NULL) {
583                 spin_lock_irqsave(&zone->lock, flags);
584                 page = __rmqueue(zone, order);
585                 spin_unlock_irqrestore(&zone->lock, flags);
586         }
587
588         if (page != NULL) {
589                 BUG_ON(bad_range(zone, page));
590                 mod_page_state_zone(zone, pgalloc, 1 << order);
591                 prep_new_page(page, order);
592                 if (order && (gfp_flags & __GFP_COMP))
593                         prep_compound_page(page, order);
594         }
595         return page;
596 }
597
598 /*
599  * This is the 'heart' of the zoned buddy allocator.
600  *
601  * Herein lies the mysterious "incremental min".  That's the
602  *
603  *      local_low = z->pages_low;
604  *      min += local_low;
605  *
606  * thing.  The intent here is to provide additional protection to low zones for
607  * allocation requests which _could_ use higher zones.  So a GFP_HIGHMEM
608  * request is not allowed to dip as deeply into the normal zone as a GFP_KERNEL
609  * request.  This preserves additional space in those lower zones for requests
610  * which really do need memory from those zones.  It means that on a decent
611  * sized machine, GFP_HIGHMEM and GFP_KERNEL requests basically leave the DMA
612  * zone untouched.
613  */
614 struct page * fastcall
615 __alloc_pages(unsigned int gfp_mask, unsigned int order,
616                 struct zonelist *zonelist)
617 {
618         const int wait = gfp_mask & __GFP_WAIT;
619         unsigned long min;
620         struct zone **zones, *z;
621         struct page *page;
622         struct reclaim_state reclaim_state;
623         struct task_struct *p = current;
624         int i;
625         int alloc_type;
626         int do_retry;
627         int can_try_harder;
628
629         might_sleep_if(wait);
630
631         /*
632          * The caller may dip into page reserves a bit more if the caller
633          * cannot run direct reclaim, or is the caller has realtime scheduling
634          * policy
635          */
636         can_try_harder = (unlikely(rt_task(p)) && !in_interrupt()) || !wait;
637
638         if (!in_interrupt() && !ckrm_class_limit_ok(ckrm_get_mem_class(p)))
639                 return NULL;
640
641         zones = zonelist->zones;  /* the list of zones suitable for gfp_mask */
642
643         if (unlikely(zones[0] == NULL)) {
644                 /* Should this ever happen?? */
645                 return NULL;
646         }
647
648         alloc_type = zone_idx(zones[0]);
649
650         /* Go through the zonelist once, looking for a zone with enough free */
651         for (i = 0; (z = zones[i]) != NULL; i++) {
652                 min = z->pages_low + (1<<order) + z->protection[alloc_type];
653
654                 if (z->free_pages < min)
655                         continue;
656
657                 page = buffered_rmqueue(z, order, gfp_mask);
658                 if (page)
659                         goto got_pg;
660         }
661
662         for (i = 0; (z = zones[i]) != NULL; i++)
663                 wakeup_kswapd(z);
664
665         /*
666          * Go through the zonelist again. Let __GFP_HIGH and allocations
667          * coming from realtime tasks to go deeper into reserves
668          */
669         for (i = 0; (z = zones[i]) != NULL; i++) {
670                 min = z->pages_min;
671                 if (gfp_mask & __GFP_HIGH)
672                         min /= 2;
673                 if (can_try_harder)
674                         min -= min / 4;
675                 min += (1<<order) + z->protection[alloc_type];
676
677                 if (z->free_pages < min)
678                         continue;
679
680                 page = buffered_rmqueue(z, order, gfp_mask);
681                 if (page)
682                         goto got_pg;
683         }
684
685         /* This allocation should allow future memory freeing. */
686         if ((p->flags & (PF_MEMALLOC | PF_MEMDIE)) && !in_interrupt()) {
687                 /* go through the zonelist yet again, ignoring mins */
688                 for (i = 0; (z = zones[i]) != NULL; i++) {
689                         page = buffered_rmqueue(z, order, gfp_mask);
690                         if (page)
691                                 goto got_pg;
692                 }
693                 goto nopage;
694         }
695
696         /* Atomic allocations - we can't balance anything */
697         if (!wait)
698                 goto nopage;
699
700 rebalance:
701         /* We now go into synchronous reclaim */
702         p->flags |= PF_MEMALLOC;
703         reclaim_state.reclaimed_slab = 0;
704         p->reclaim_state = &reclaim_state;
705
706         try_to_free_pages(zones, gfp_mask, order);
707
708         p->reclaim_state = NULL;
709         p->flags &= ~PF_MEMALLOC;
710
711         /* go through the zonelist yet one more time */
712         for (i = 0; (z = zones[i]) != NULL; i++) {
713                 min = z->pages_min;
714                 if (gfp_mask & __GFP_HIGH)
715                         min /= 2;
716                 if (can_try_harder)
717                         min -= min / 4;
718                 min += (1<<order) + z->protection[alloc_type];
719
720                 if (z->free_pages < min)
721                         continue;
722
723                 page = buffered_rmqueue(z, order, gfp_mask);
724                 if (page)
725                         goto got_pg;
726         }
727
728         /*
729          * Don't let big-order allocations loop unless the caller explicitly
730          * requests that.  Wait for some write requests to complete then retry.
731          *
732          * In this implementation, __GFP_REPEAT means __GFP_NOFAIL for order
733          * <= 3, but that may not be true in other implementations.
734          */
735         do_retry = 0;
736         if (!(gfp_mask & __GFP_NORETRY)) {
737                 if ((order <= 3) || (gfp_mask & __GFP_REPEAT))
738                         do_retry = 1;
739                 if (gfp_mask & __GFP_NOFAIL)
740                         do_retry = 1;
741         }
742         if (do_retry) {
743                 blk_congestion_wait(WRITE, HZ/50);
744                 goto rebalance;
745         }
746
747 nopage:
748         if (!(gfp_mask & __GFP_NOWARN) && printk_ratelimit()) {
749                 printk(KERN_WARNING "%s: page allocation failure."
750                         " order:%d, mode:0x%x\n",
751                         p->comm, order, gfp_mask);
752                 dump_stack();
753         }
754         return NULL;
755 got_pg:
756         zone_statistics(zonelist, z);
757         kernel_map_pages(page, 1 << order, 1);
758         return page;
759 }
760
761 EXPORT_SYMBOL(__alloc_pages);
762
763 /*
764  * Common helper functions.
765  */
766 fastcall unsigned long __get_free_pages(unsigned int gfp_mask, unsigned int order)
767 {
768         struct page * page;
769         page = alloc_pages(gfp_mask, order);
770         if (!page)
771                 return 0;
772         return (unsigned long) page_address(page);
773 }
774
775 EXPORT_SYMBOL(__get_free_pages);
776
777 fastcall unsigned long get_zeroed_page(unsigned int gfp_mask)
778 {
779         struct page * page;
780
781         /*
782          * get_zeroed_page() returns a 32-bit address, which cannot represent
783          * a highmem page
784          */
785         BUG_ON(gfp_mask & __GFP_HIGHMEM);
786
787         page = alloc_pages(gfp_mask, 0);
788         if (page) {
789                 void *address = page_address(page);
790                 clear_page(address);
791                 return (unsigned long) address;
792         }
793         return 0;
794 }
795
796 EXPORT_SYMBOL(get_zeroed_page);
797
798 void __pagevec_free(struct pagevec *pvec)
799 {
800         int i = pagevec_count(pvec);
801
802         while (--i >= 0)
803                 free_hot_cold_page(pvec->pages[i], pvec->cold);
804 }
805
806 fastcall void __free_pages(struct page *page, unsigned int order)
807 {
808         if (!PageReserved(page) && put_page_testzero(page)) {
809                 if (order == 0)
810                         free_hot_page(page);
811                 else
812                         __free_pages_ok(page, order);
813         }
814 }
815
816 EXPORT_SYMBOL(__free_pages);
817
818 fastcall void free_pages(unsigned long addr, unsigned int order)
819 {
820         if (addr != 0) {
821                 BUG_ON(!virt_addr_valid((void *)addr));
822                 __free_pages(virt_to_page((void *)addr), order);
823         }
824 }
825
826 EXPORT_SYMBOL(free_pages);
827
828 /*
829  * Total amount of free (allocatable) RAM:
830  */
831 unsigned int nr_free_pages(void)
832 {
833         unsigned int sum = 0;
834         struct zone *zone;
835
836         for_each_zone(zone)
837                 sum += zone->free_pages;
838
839         return sum;
840 }
841
842 EXPORT_SYMBOL(nr_free_pages);
843
844 #ifdef CONFIG_NUMA
845 unsigned int nr_free_pages_pgdat(pg_data_t *pgdat)
846 {
847         unsigned int i, sum = 0;
848
849         for (i = 0; i < MAX_NR_ZONES; i++)
850                 sum += pgdat->node_zones[i].free_pages;
851
852         return sum;
853 }
854 #endif
855
856 static unsigned int nr_free_zone_pages(int offset)
857 {
858         pg_data_t *pgdat;
859         unsigned int sum = 0;
860
861         for_each_pgdat(pgdat) {
862                 struct zonelist *zonelist = pgdat->node_zonelists + offset;
863                 struct zone **zonep = zonelist->zones;
864                 struct zone *zone;
865
866                 for (zone = *zonep++; zone; zone = *zonep++) {
867                         unsigned long size = zone->present_pages;
868                         unsigned long high = zone->pages_high;
869                         if (size > high)
870                                 sum += size - high;
871                 }
872         }
873
874         return sum;
875 }
876
877 /*
878  * Amount of free RAM allocatable within ZONE_DMA and ZONE_NORMAL
879  */
880 unsigned int nr_free_buffer_pages(void)
881 {
882         return nr_free_zone_pages(GFP_USER & GFP_ZONEMASK);
883 }
884
885 /*
886  * Amount of free RAM allocatable within all zones
887  */
888 unsigned int nr_free_pagecache_pages(void)
889 {
890         return nr_free_zone_pages(GFP_HIGHUSER & GFP_ZONEMASK);
891 }
892
893 #ifdef CONFIG_HIGHMEM
894 unsigned int nr_free_highpages (void)
895 {
896         pg_data_t *pgdat;
897         unsigned int pages = 0;
898
899         for_each_pgdat(pgdat)
900                 pages += pgdat->node_zones[ZONE_HIGHMEM].free_pages;
901
902         return pages;
903 }
904 #endif
905
906 #ifdef CONFIG_NUMA
907 static void show_node(struct zone *zone)
908 {
909         printk("Node %d ", zone->zone_pgdat->node_id);
910 }
911 #else
912 #define show_node(zone) do { } while (0)
913 #endif
914
915 /*
916  * Accumulate the page_state information across all CPUs.
917  * The result is unavoidably approximate - it can change
918  * during and after execution of this function.
919  */
920 DEFINE_PER_CPU(struct page_state, page_states) = {0};
921 EXPORT_PER_CPU_SYMBOL(page_states);
922
923 atomic_t nr_pagecache = ATOMIC_INIT(0);
924 EXPORT_SYMBOL(nr_pagecache);
925 #ifdef CONFIG_SMP
926 DEFINE_PER_CPU(long, nr_pagecache_local) = 0;
927 #endif
928
929 void __get_page_state(struct page_state *ret, int nr)
930 {
931         int cpu = 0;
932
933         memset(ret, 0, sizeof(*ret));
934         while (cpu < NR_CPUS) {
935                 unsigned long *in, *out, off;
936
937                 if (!cpu_possible(cpu)) {
938                         cpu++;
939                         continue;
940                 }
941
942                 in = (unsigned long *)&per_cpu(page_states, cpu);
943                 cpu++;
944                 if (cpu < NR_CPUS && cpu_possible(cpu))
945                         prefetch(&per_cpu(page_states, cpu));
946                 out = (unsigned long *)ret;
947                 for (off = 0; off < nr; off++)
948                         *out++ += *in++;
949         }
950 }
951
952 void get_page_state(struct page_state *ret)
953 {
954         int nr;
955
956         nr = offsetof(struct page_state, GET_PAGE_STATE_LAST);
957         nr /= sizeof(unsigned long);
958
959         __get_page_state(ret, nr + 1);
960 }
961
962 void get_full_page_state(struct page_state *ret)
963 {
964         __get_page_state(ret, sizeof(*ret) / sizeof(unsigned long));
965 }
966
967 unsigned long __read_page_state(unsigned offset)
968 {
969         unsigned long ret = 0;
970         int cpu;
971
972         for (cpu = 0; cpu < NR_CPUS; cpu++) {
973                 unsigned long in;
974
975                 if (!cpu_possible(cpu))
976                         continue;
977
978                 in = (unsigned long)&per_cpu(page_states, cpu) + offset;
979                 ret += *((unsigned long *)in);
980         }
981         return ret;
982 }
983
984 void __get_zone_counts(unsigned long *active, unsigned long *inactive,
985                         unsigned long *free, struct pglist_data *pgdat)
986 {
987         struct zone *zones = pgdat->node_zones;
988         int i;
989
990         *active = 0;
991         *inactive = 0;
992         *free = 0;
993         for (i = 0; i < MAX_NR_ZONES; i++) {
994                 *active += zones[i].nr_active;
995                 *inactive += zones[i].nr_inactive;
996                 *free += zones[i].free_pages;
997         }
998 }
999
1000 void get_zone_counts(unsigned long *active,
1001                 unsigned long *inactive, unsigned long *free)
1002 {
1003         struct pglist_data *pgdat;
1004
1005         *active = 0;
1006         *inactive = 0;
1007         *free = 0;
1008         for_each_pgdat(pgdat) {
1009                 unsigned long l, m, n;
1010                 __get_zone_counts(&l, &m, &n, pgdat);
1011                 *active += l;
1012                 *inactive += m;
1013                 *free += n;
1014         }
1015 }
1016
1017 void si_meminfo(struct sysinfo *val)
1018 {
1019         val->totalram = totalram_pages;
1020         val->sharedram = 0;
1021         val->freeram = nr_free_pages();
1022         val->bufferram = nr_blockdev_pages();
1023 #ifdef CONFIG_HIGHMEM
1024         val->totalhigh = totalhigh_pages;
1025         val->freehigh = nr_free_highpages();
1026 #else
1027         val->totalhigh = 0;
1028         val->freehigh = 0;
1029 #endif
1030         val->mem_unit = PAGE_SIZE;
1031         if (vx_flags(VXF_VIRT_MEM, 0))
1032                 vx_vsi_meminfo(val);
1033 }
1034
1035 EXPORT_SYMBOL(si_meminfo);
1036
1037 #ifdef CONFIG_NUMA
1038 void si_meminfo_node(struct sysinfo *val, int nid)
1039 {
1040         pg_data_t *pgdat = NODE_DATA(nid);
1041
1042         val->totalram = pgdat->node_present_pages;
1043         val->freeram = nr_free_pages_pgdat(pgdat);
1044         val->totalhigh = pgdat->node_zones[ZONE_HIGHMEM].present_pages;
1045         val->freehigh = pgdat->node_zones[ZONE_HIGHMEM].free_pages;
1046         val->mem_unit = PAGE_SIZE;
1047 }
1048 #endif
1049
1050 #define K(x) ((x) << (PAGE_SHIFT-10))
1051
1052 /*
1053  * Show free area list (used inside shift_scroll-lock stuff)
1054  * We also calculate the percentage fragmentation. We do this by counting the
1055  * memory on each free list with the exception of the first item on the list.
1056  */
1057 void show_free_areas(void)
1058 {
1059         struct page_state ps;
1060         int cpu, temperature;
1061         unsigned long active;
1062         unsigned long inactive;
1063         unsigned long free;
1064         struct zone *zone;
1065
1066         for_each_zone(zone) {
1067                 show_node(zone);
1068                 printk("%s per-cpu:", zone->name);
1069
1070                 if (!zone->present_pages) {
1071                         printk(" empty\n");
1072                         continue;
1073                 } else
1074                         printk("\n");
1075
1076                 for (cpu = 0; cpu < NR_CPUS; ++cpu) {
1077                         struct per_cpu_pageset *pageset;
1078
1079                         if (!cpu_possible(cpu))
1080                                 continue;
1081
1082                         pageset = zone->pageset + cpu;
1083
1084                         for (temperature = 0; temperature < 2; temperature++)
1085                                 printk("cpu %d %s: low %d, high %d, batch %d\n",
1086                                         cpu,
1087                                         temperature ? "cold" : "hot",
1088                                         pageset->pcp[temperature].low,
1089                                         pageset->pcp[temperature].high,
1090                                         pageset->pcp[temperature].batch);
1091                 }
1092         }
1093
1094         get_page_state(&ps);
1095         get_zone_counts(&active, &inactive, &free);
1096
1097         printk("\nFree pages: %11ukB (%ukB HighMem)\n",
1098                 K(nr_free_pages()),
1099                 K(nr_free_highpages()));
1100
1101         printk("Active:%lu inactive:%lu dirty:%lu writeback:%lu "
1102                 "unstable:%lu free:%u slab:%lu mapped:%lu pagetables:%lu\n",
1103                 active,
1104                 inactive,
1105                 ps.nr_dirty,
1106                 ps.nr_writeback,
1107                 ps.nr_unstable,
1108                 nr_free_pages(),
1109                 ps.nr_slab,
1110                 ps.nr_mapped,
1111                 ps.nr_page_table_pages);
1112
1113         for_each_zone(zone) {
1114                 int i;
1115
1116                 show_node(zone);
1117                 printk("%s"
1118                         " free:%lukB"
1119                         " min:%lukB"
1120                         " low:%lukB"
1121                         " high:%lukB"
1122                         " active:%lukB"
1123                         " inactive:%lukB"
1124                         " present:%lukB"
1125                         " pages_scanned:%lu"
1126                         " all_unreclaimable? %s"
1127                         "\n",
1128                         zone->name,
1129                         K(zone->free_pages),
1130                         K(zone->pages_min),
1131                         K(zone->pages_low),
1132                         K(zone->pages_high),
1133                         K(zone->nr_active),
1134                         K(zone->nr_inactive),
1135                         K(zone->present_pages),
1136                         zone->pages_scanned,
1137                         (zone->all_unreclaimable ? "yes" : "no")
1138                         );
1139                 printk("protections[]:");
1140                 for (i = 0; i < MAX_NR_ZONES; i++)
1141                         printk(" %lu", zone->protection[i]);
1142                 printk("\n");
1143         }
1144
1145         for_each_zone(zone) {
1146                 struct list_head *elem;
1147                 unsigned long nr, flags, order, total = 0;
1148
1149                 show_node(zone);
1150                 printk("%s: ", zone->name);
1151                 if (!zone->present_pages) {
1152                         printk("empty\n");
1153                         continue;
1154                 }
1155
1156                 spin_lock_irqsave(&zone->lock, flags);
1157                 for (order = 0; order < MAX_ORDER; order++) {
1158                         nr = 0;
1159                         list_for_each(elem, &zone->free_area[order].free_list)
1160                                 ++nr;
1161                         total += nr << order;
1162                         printk("%lu*%lukB ", nr, K(1UL) << order);
1163                 }
1164                 spin_unlock_irqrestore(&zone->lock, flags);
1165                 printk("= %lukB\n", K(total));
1166         }
1167
1168         show_swap_cache_info();
1169 }
1170
1171 /*
1172  * Builds allocation fallback zone lists.
1173  */
1174 static int __init build_zonelists_node(pg_data_t *pgdat, struct zonelist *zonelist, int j, int k)
1175 {
1176         switch (k) {
1177                 struct zone *zone;
1178         default:
1179                 BUG();
1180         case ZONE_HIGHMEM:
1181                 zone = pgdat->node_zones + ZONE_HIGHMEM;
1182                 if (zone->present_pages) {
1183 #ifndef CONFIG_HIGHMEM
1184                         BUG();
1185 #endif
1186                         zonelist->zones[j++] = zone;
1187                 }
1188         case ZONE_NORMAL:
1189                 zone = pgdat->node_zones + ZONE_NORMAL;
1190                 if (zone->present_pages)
1191                         zonelist->zones[j++] = zone;
1192         case ZONE_DMA:
1193                 zone = pgdat->node_zones + ZONE_DMA;
1194                 if (zone->present_pages)
1195                         zonelist->zones[j++] = zone;
1196         }
1197
1198         return j;
1199 }
1200
1201 #ifdef CONFIG_NUMA
1202 #define MAX_NODE_LOAD (numnodes)
1203 static int __initdata node_load[MAX_NUMNODES];
1204 /**
1205  * find_next_best_node - find the next node that should appear in a given
1206  *    node's fallback list
1207  * @node: node whose fallback list we're appending
1208  * @used_node_mask: pointer to the bitmap of already used nodes
1209  *
1210  * We use a number of factors to determine which is the next node that should
1211  * appear on a given node's fallback list.  The node should not have appeared
1212  * already in @node's fallback list, and it should be the next closest node
1213  * according to the distance array (which contains arbitrary distance values
1214  * from each node to each node in the system), and should also prefer nodes
1215  * with no CPUs, since presumably they'll have very little allocation pressure
1216  * on them otherwise.
1217  * It returns -1 if no node is found.
1218  */
1219 static int __init find_next_best_node(int node, void *used_node_mask)
1220 {
1221         int i, n, val;
1222         int min_val = INT_MAX;
1223         int best_node = -1;
1224
1225         for (i = 0; i < numnodes; i++) {
1226                 cpumask_t tmp;
1227
1228                 /* Start from local node */
1229                 n = (node+i)%numnodes;
1230
1231                 /* Don't want a node to appear more than once */
1232                 if (test_bit(n, used_node_mask))
1233                         continue;
1234
1235                 /* Use the local node if we haven't already */
1236                 if (!test_bit(node, used_node_mask)) {
1237                         best_node = node;
1238                         break;
1239                 }
1240
1241                 /* Use the distance array to find the distance */
1242                 val = node_distance(node, n);
1243
1244                 /* Give preference to headless and unused nodes */
1245                 tmp = node_to_cpumask(n);
1246                 if (!cpus_empty(tmp))
1247                         val += PENALTY_FOR_NODE_WITH_CPUS;
1248
1249                 /* Slight preference for less loaded node */
1250                 val *= (MAX_NODE_LOAD*MAX_NUMNODES);
1251                 val += node_load[n];
1252
1253                 if (val < min_val) {
1254                         min_val = val;
1255                         best_node = n;
1256                 }
1257         }
1258
1259         if (best_node >= 0)
1260                 set_bit(best_node, used_node_mask);
1261
1262         return best_node;
1263 }
1264
1265 static void __init build_zonelists(pg_data_t *pgdat)
1266 {
1267         int i, j, k, node, local_node;
1268         int prev_node, load;
1269         struct zonelist *zonelist;
1270         DECLARE_BITMAP(used_mask, MAX_NUMNODES);
1271
1272         /* initialize zonelists */
1273         for (i = 0; i < GFP_ZONETYPES; i++) {
1274                 zonelist = pgdat->node_zonelists + i;
1275                 memset(zonelist, 0, sizeof(*zonelist));
1276                 zonelist->zones[0] = NULL;
1277         }
1278
1279         /* NUMA-aware ordering of nodes */
1280         local_node = pgdat->node_id;
1281         load = numnodes;
1282         prev_node = local_node;
1283         bitmap_zero(used_mask, MAX_NUMNODES);
1284         while ((node = find_next_best_node(local_node, used_mask)) >= 0) {
1285                 /*
1286                  * We don't want to pressure a particular node.
1287                  * So adding penalty to the first node in same
1288                  * distance group to make it round-robin.
1289                  */
1290                 if (node_distance(local_node, node) !=
1291                                 node_distance(local_node, prev_node))
1292                         node_load[node] += load;
1293                 prev_node = node;
1294                 load--;
1295                 for (i = 0; i < GFP_ZONETYPES; i++) {
1296                         zonelist = pgdat->node_zonelists + i;
1297                         for (j = 0; zonelist->zones[j] != NULL; j++);
1298
1299                         k = ZONE_NORMAL;
1300                         if (i & __GFP_HIGHMEM)
1301                                 k = ZONE_HIGHMEM;
1302                         if (i & __GFP_DMA)
1303                                 k = ZONE_DMA;
1304
1305                         j = build_zonelists_node(NODE_DATA(node), zonelist, j, k);
1306                         zonelist->zones[j] = NULL;
1307                 }
1308         }
1309 }
1310
1311 #else   /* CONFIG_NUMA */
1312
1313 static void __init build_zonelists(pg_data_t *pgdat)
1314 {
1315         int i, j, k, node, local_node;
1316
1317         local_node = pgdat->node_id;
1318         for (i = 0; i < GFP_ZONETYPES; i++) {
1319                 struct zonelist *zonelist;
1320
1321                 zonelist = pgdat->node_zonelists + i;
1322                 memset(zonelist, 0, sizeof(*zonelist));
1323
1324                 j = 0;
1325                 k = ZONE_NORMAL;
1326                 if (i & __GFP_HIGHMEM)
1327                         k = ZONE_HIGHMEM;
1328                 if (i & __GFP_DMA)
1329                         k = ZONE_DMA;
1330
1331                 j = build_zonelists_node(pgdat, zonelist, j, k);
1332                 /*
1333                  * Now we build the zonelist so that it contains the zones
1334                  * of all the other nodes.
1335                  * We don't want to pressure a particular node, so when
1336                  * building the zones for node N, we make sure that the
1337                  * zones coming right after the local ones are those from
1338                  * node N+1 (modulo N)
1339                  */
1340                 for (node = local_node + 1; node < numnodes; node++)
1341                         j = build_zonelists_node(NODE_DATA(node), zonelist, j, k);
1342                 for (node = 0; node < local_node; node++)
1343                         j = build_zonelists_node(NODE_DATA(node), zonelist, j, k);
1344  
1345                 zonelist->zones[j] = NULL;
1346         }
1347 }
1348
1349 #endif  /* CONFIG_NUMA */
1350
1351 void __init build_all_zonelists(void)
1352 {
1353         int i;
1354
1355         for(i = 0 ; i < numnodes ; i++)
1356                 build_zonelists(NODE_DATA(i));
1357         printk("Built %i zonelists\n", numnodes);
1358 }
1359
1360 /*
1361  * Helper functions to size the waitqueue hash table.
1362  * Essentially these want to choose hash table sizes sufficiently
1363  * large so that collisions trying to wait on pages are rare.
1364  * But in fact, the number of active page waitqueues on typical
1365  * systems is ridiculously low, less than 200. So this is even
1366  * conservative, even though it seems large.
1367  *
1368  * The constant PAGES_PER_WAITQUEUE specifies the ratio of pages to
1369  * waitqueues, i.e. the size of the waitq table given the number of pages.
1370  */
1371 #define PAGES_PER_WAITQUEUE     256
1372
1373 static inline unsigned long wait_table_size(unsigned long pages)
1374 {
1375         unsigned long size = 1;
1376
1377         pages /= PAGES_PER_WAITQUEUE;
1378
1379         while (size < pages)
1380                 size <<= 1;
1381
1382         /*
1383          * Once we have dozens or even hundreds of threads sleeping
1384          * on IO we've got bigger problems than wait queue collision.
1385          * Limit the size of the wait table to a reasonable size.
1386          */
1387         size = min(size, 4096UL);
1388
1389         return max(size, 4UL);
1390 }
1391
1392 /*
1393  * This is an integer logarithm so that shifts can be used later
1394  * to extract the more random high bits from the multiplicative
1395  * hash function before the remainder is taken.
1396  */
1397 static inline unsigned long wait_table_bits(unsigned long size)
1398 {
1399         return ffz(~size);
1400 }
1401
1402 #define LONG_ALIGN(x) (((x)+(sizeof(long))-1)&~((sizeof(long))-1))
1403
1404 static void __init calculate_zone_totalpages(struct pglist_data *pgdat,
1405                 unsigned long *zones_size, unsigned long *zholes_size)
1406 {
1407         unsigned long realtotalpages, totalpages = 0;
1408         int i;
1409
1410         for (i = 0; i < MAX_NR_ZONES; i++)
1411                 totalpages += zones_size[i];
1412         pgdat->node_spanned_pages = totalpages;
1413
1414         realtotalpages = totalpages;
1415         if (zholes_size)
1416                 for (i = 0; i < MAX_NR_ZONES; i++)
1417                         realtotalpages -= zholes_size[i];
1418         pgdat->node_present_pages = realtotalpages;
1419         printk(KERN_DEBUG "On node %d totalpages: %lu\n", pgdat->node_id, realtotalpages);
1420 }
1421
1422
1423 /*
1424  * Initially all pages are reserved - free ones are freed
1425  * up by free_all_bootmem() once the early boot process is
1426  * done. Non-atomic initialization, single-pass.
1427  */
1428 void __init memmap_init_zone(unsigned long size, int nid, unsigned long zone,
1429                 unsigned long start_pfn)
1430 {
1431         struct page *start = pfn_to_page(start_pfn);
1432         struct page *page;
1433
1434         for (page = start; page < (start + size); page++) {
1435                 set_page_zone(page, NODEZONE(nid, zone));
1436                 set_page_count(page, 0);
1437                 reset_page_mapcount(page);
1438                 SetPageReserved(page);
1439                 INIT_LIST_HEAD(&page->lru);
1440 #ifdef WANT_PAGE_VIRTUAL
1441                 /* The shift won't overflow because ZONE_NORMAL is below 4G. */
1442                 if (!is_highmem_idx(zone))
1443                         set_page_address(page, __va(start_pfn << PAGE_SHIFT));
1444 #endif
1445                 start_pfn++;
1446         }
1447 }
1448
1449 /*
1450  * Page buddy system uses "index >> (i+1)", where "index" is
1451  * at most "size-1".
1452  *
1453  * The extra "+3" is to round down to byte size (8 bits per byte
1454  * assumption). Thus we get "(size-1) >> (i+4)" as the last byte
1455  * we can access.
1456  *
1457  * The "+1" is because we want to round the byte allocation up
1458  * rather than down. So we should have had a "+7" before we shifted
1459  * down by three. Also, we have to add one as we actually _use_ the
1460  * last bit (it's [0,n] inclusive, not [0,n[).
1461  *
1462  * So we actually had +7+1 before we shift down by 3. But
1463  * (n+8) >> 3 == (n >> 3) + 1 (modulo overflows, which we do not have).
1464  *
1465  * Finally, we LONG_ALIGN because all bitmap operations are on longs.
1466  */
1467 unsigned long pages_to_bitmap_size(unsigned long order, unsigned long nr_pages)
1468 {
1469         unsigned long bitmap_size;
1470
1471         bitmap_size = (nr_pages-1) >> (order+4);
1472         bitmap_size = LONG_ALIGN(bitmap_size+1);
1473
1474         return bitmap_size;
1475 }
1476
1477 void zone_init_free_lists(struct pglist_data *pgdat, struct zone *zone, unsigned long size)
1478 {
1479         int order;
1480         for (order = 0; ; order++) {
1481                 unsigned long bitmap_size;
1482
1483                 INIT_LIST_HEAD(&zone->free_area[order].free_list);
1484                 if (order == MAX_ORDER-1) {
1485                         zone->free_area[order].map = NULL;
1486                         break;
1487                 }
1488
1489                 bitmap_size = pages_to_bitmap_size(order, size);
1490                 zone->free_area[order].map =
1491                   (unsigned long *) alloc_bootmem_node(pgdat, bitmap_size);
1492         }
1493 }
1494
1495 #ifndef __HAVE_ARCH_MEMMAP_INIT
1496 #define memmap_init(size, nid, zone, start_pfn) \
1497         memmap_init_zone((size), (nid), (zone), (start_pfn))
1498 #endif
1499
1500 /*
1501  * Set up the zone data structures:
1502  *   - mark all pages reserved
1503  *   - mark all memory queues empty
1504  *   - clear the memory bitmaps
1505  */
1506 static void __init free_area_init_core(struct pglist_data *pgdat,
1507                 unsigned long *zones_size, unsigned long *zholes_size)
1508 {
1509         unsigned long i, j;
1510         const unsigned long zone_required_alignment = 1UL << (MAX_ORDER-1);
1511         int cpu, nid = pgdat->node_id;
1512         unsigned long zone_start_pfn = pgdat->node_start_pfn;
1513
1514         pgdat->nr_zones = 0;
1515         init_waitqueue_head(&pgdat->kswapd_wait);
1516         
1517         for (j = 0; j < MAX_NR_ZONES; j++) {
1518                 struct zone *zone = pgdat->node_zones + j;
1519                 unsigned long size, realsize;
1520                 unsigned long batch;
1521
1522                 zone_table[NODEZONE(nid, j)] = zone;
1523                 realsize = size = zones_size[j];
1524                 if (zholes_size)
1525                         realsize -= zholes_size[j];
1526
1527                 if (j == ZONE_DMA || j == ZONE_NORMAL)
1528                         nr_kernel_pages += realsize;
1529                 nr_all_pages += realsize;
1530
1531                 zone->spanned_pages = size;
1532                 zone->present_pages = realsize;
1533                 zone->name = zone_names[j];
1534                 spin_lock_init(&zone->lock);
1535                 spin_lock_init(&zone->lru_lock);
1536                 zone->zone_pgdat = pgdat;
1537                 zone->free_pages = 0;
1538
1539                 zone->temp_priority = zone->prev_priority = DEF_PRIORITY;
1540
1541                 /*
1542                  * The per-cpu-pages pools are set to around 1000th of the
1543                  * size of the zone.  But no more than 1/4 of a meg - there's
1544                  * no point in going beyond the size of L2 cache.
1545                  *
1546                  * OK, so we don't know how big the cache is.  So guess.
1547                  */
1548                 batch = zone->present_pages / 1024;
1549                 if (batch * PAGE_SIZE > 256 * 1024)
1550                         batch = (256 * 1024) / PAGE_SIZE;
1551                 batch /= 4;             /* We effectively *= 4 below */
1552                 if (batch < 1)
1553                         batch = 1;
1554
1555                 for (cpu = 0; cpu < NR_CPUS; cpu++) {
1556                         struct per_cpu_pages *pcp;
1557
1558                         pcp = &zone->pageset[cpu].pcp[0];       /* hot */
1559                         pcp->count = 0;
1560                         pcp->low = 2 * batch;
1561                         pcp->high = 6 * batch;
1562                         pcp->batch = 1 * batch;
1563                         INIT_LIST_HEAD(&pcp->list);
1564
1565                         pcp = &zone->pageset[cpu].pcp[1];       /* cold */
1566                         pcp->count = 0;
1567                         pcp->low = 0;
1568                         pcp->high = 2 * batch;
1569                         pcp->batch = 1 * batch;
1570                         INIT_LIST_HEAD(&pcp->list);
1571                 }
1572                 printk(KERN_DEBUG "  %s zone: %lu pages, LIFO batch:%lu\n",
1573                                 zone_names[j], realsize, batch);
1574                 ckrm_init_lists(zone);
1575                 zone->nr_scan_active = 0;
1576                 zone->nr_scan_inactive = 0;
1577                 zone->nr_active = 0;
1578                 zone->nr_inactive = 0;
1579                 if (!size)
1580                         continue;
1581
1582                 /*
1583                  * The per-page waitqueue mechanism uses hashed waitqueues
1584                  * per zone.
1585                  */
1586                 zone->wait_table_size = wait_table_size(size);
1587                 zone->wait_table_bits =
1588                         wait_table_bits(zone->wait_table_size);
1589                 zone->wait_table = (wait_queue_head_t *)
1590                         alloc_bootmem_node(pgdat, zone->wait_table_size
1591                                                 * sizeof(wait_queue_head_t));
1592
1593                 for(i = 0; i < zone->wait_table_size; ++i)
1594                         init_waitqueue_head(zone->wait_table + i);
1595
1596                 pgdat->nr_zones = j+1;
1597
1598                 zone->zone_mem_map = pfn_to_page(zone_start_pfn);
1599                 zone->zone_start_pfn = zone_start_pfn;
1600
1601                 if ((zone_start_pfn) & (zone_required_alignment-1))
1602                         printk("BUG: wrong zone alignment, it will crash\n");
1603
1604                 memmap_init(size, nid, j, zone_start_pfn);
1605
1606                 zone_start_pfn += size;
1607
1608                 zone_init_free_lists(pgdat, zone, zone->spanned_pages);
1609         }
1610 }
1611
1612 void __init node_alloc_mem_map(struct pglist_data *pgdat)
1613 {
1614         unsigned long size;
1615
1616         size = (pgdat->node_spanned_pages + 1) * sizeof(struct page);
1617         pgdat->node_mem_map = alloc_bootmem_node(pgdat, size);
1618 #ifndef CONFIG_DISCONTIGMEM
1619         mem_map = contig_page_data.node_mem_map;
1620 #endif
1621 }
1622
1623 void __init free_area_init_node(int nid, struct pglist_data *pgdat,
1624                 unsigned long *zones_size, unsigned long node_start_pfn,
1625                 unsigned long *zholes_size)
1626 {
1627         pgdat->node_id = nid;
1628         pgdat->node_start_pfn = node_start_pfn;
1629         calculate_zone_totalpages(pgdat, zones_size, zholes_size);
1630
1631         if (!pfn_to_page(node_start_pfn))
1632                 node_alloc_mem_map(pgdat);
1633
1634         free_area_init_core(pgdat, zones_size, zholes_size);
1635 }
1636
1637 #ifndef CONFIG_DISCONTIGMEM
1638 static bootmem_data_t contig_bootmem_data;
1639 struct pglist_data contig_page_data = { .bdata = &contig_bootmem_data };
1640
1641 EXPORT_SYMBOL(contig_page_data);
1642
1643 void __init free_area_init(unsigned long *zones_size)
1644 {
1645         free_area_init_node(0, &contig_page_data, zones_size,
1646                         __pa(PAGE_OFFSET) >> PAGE_SHIFT, NULL);
1647 }
1648 #endif
1649
1650 #ifdef CONFIG_PROC_FS
1651
1652 #include <linux/seq_file.h>
1653
1654 static void *frag_start(struct seq_file *m, loff_t *pos)
1655 {
1656         pg_data_t *pgdat;
1657         loff_t node = *pos;
1658
1659         for (pgdat = pgdat_list; pgdat && node; pgdat = pgdat->pgdat_next)
1660                 --node;
1661
1662         return pgdat;
1663 }
1664
1665 static void *frag_next(struct seq_file *m, void *arg, loff_t *pos)
1666 {
1667         pg_data_t *pgdat = (pg_data_t *)arg;
1668
1669         (*pos)++;
1670         return pgdat->pgdat_next;
1671 }
1672
1673 static void frag_stop(struct seq_file *m, void *arg)
1674 {
1675 }
1676
1677 /* 
1678  * This walks the freelist for each zone. Whilst this is slow, I'd rather 
1679  * be slow here than slow down the fast path by keeping stats - mjbligh
1680  */
1681 static int frag_show(struct seq_file *m, void *arg)
1682 {
1683         pg_data_t *pgdat = (pg_data_t *)arg;
1684         struct zone *zone;
1685         struct zone *node_zones = pgdat->node_zones;
1686         unsigned long flags;
1687         int order;
1688
1689         for (zone = node_zones; zone - node_zones < MAX_NR_ZONES; ++zone) {
1690                 if (!zone->present_pages)
1691                         continue;
1692
1693                 spin_lock_irqsave(&zone->lock, flags);
1694                 seq_printf(m, "Node %d, zone %8s ", pgdat->node_id, zone->name);
1695                 for (order = 0; order < MAX_ORDER; ++order) {
1696                         unsigned long nr_bufs = 0;
1697                         struct list_head *elem;
1698
1699                         list_for_each(elem, &(zone->free_area[order].free_list))
1700                                 ++nr_bufs;
1701                         seq_printf(m, "%6lu ", nr_bufs);
1702                 }
1703                 spin_unlock_irqrestore(&zone->lock, flags);
1704                 seq_putc(m, '\n');
1705         }
1706         return 0;
1707 }
1708
1709 struct seq_operations fragmentation_op = {
1710         .start  = frag_start,
1711         .next   = frag_next,
1712         .stop   = frag_stop,
1713         .show   = frag_show,
1714 };
1715
1716 static char *vmstat_text[] = {
1717         "nr_dirty",
1718         "nr_writeback",
1719         "nr_unstable",
1720         "nr_page_table_pages",
1721         "nr_mapped",
1722         "nr_slab",
1723
1724         "pgpgin",
1725         "pgpgout",
1726         "pswpin",
1727         "pswpout",
1728         "pgalloc_high",
1729
1730         "pgalloc_normal",
1731         "pgalloc_dma",
1732         "pgfree",
1733         "pgactivate",
1734         "pgdeactivate",
1735
1736         "pgfault",
1737         "pgmajfault",
1738         "pgrefill_high",
1739         "pgrefill_normal",
1740         "pgrefill_dma",
1741
1742         "pgsteal_high",
1743         "pgsteal_normal",
1744         "pgsteal_dma",
1745         "pgscan_kswapd_high",
1746         "pgscan_kswapd_normal",
1747
1748         "pgscan_kswapd_dma",
1749         "pgscan_direct_high",
1750         "pgscan_direct_normal",
1751         "pgscan_direct_dma",
1752         "pginodesteal",
1753
1754         "slabs_scanned",
1755         "kswapd_steal",
1756         "kswapd_inodesteal",
1757         "pageoutrun",
1758         "allocstall",
1759
1760         "pgrotated",
1761 };
1762
1763 static void *vmstat_start(struct seq_file *m, loff_t *pos)
1764 {
1765         struct page_state *ps;
1766
1767         if (*pos >= ARRAY_SIZE(vmstat_text))
1768                 return NULL;
1769
1770         ps = kmalloc(sizeof(*ps), GFP_KERNEL);
1771         m->private = ps;
1772         if (!ps)
1773                 return ERR_PTR(-ENOMEM);
1774         get_full_page_state(ps);
1775         ps->pgpgin /= 2;                /* sectors -> kbytes */
1776         ps->pgpgout /= 2;
1777         return (unsigned long *)ps + *pos;
1778 }
1779
1780 static void *vmstat_next(struct seq_file *m, void *arg, loff_t *pos)
1781 {
1782         (*pos)++;
1783         if (*pos >= ARRAY_SIZE(vmstat_text))
1784                 return NULL;
1785         return (unsigned long *)m->private + *pos;
1786 }
1787
1788 static int vmstat_show(struct seq_file *m, void *arg)
1789 {
1790         unsigned long *l = arg;
1791         unsigned long off = l - (unsigned long *)m->private;
1792
1793         seq_printf(m, "%s %lu\n", vmstat_text[off], *l);
1794         return 0;
1795 }
1796
1797 static void vmstat_stop(struct seq_file *m, void *arg)
1798 {
1799         kfree(m->private);
1800         m->private = NULL;
1801 }
1802
1803 struct seq_operations vmstat_op = {
1804         .start  = vmstat_start,
1805         .next   = vmstat_next,
1806         .stop   = vmstat_stop,
1807         .show   = vmstat_show,
1808 };
1809
1810 #endif /* CONFIG_PROC_FS */
1811
1812 #ifdef CONFIG_HOTPLUG_CPU
1813 static int page_alloc_cpu_notify(struct notifier_block *self,
1814                                  unsigned long action, void *hcpu)
1815 {
1816         int cpu = (unsigned long)hcpu;
1817         long *count;
1818
1819         if (action == CPU_DEAD) {
1820                 /* Drain local pagecache count. */
1821                 count = &per_cpu(nr_pagecache_local, cpu);
1822                 atomic_add(*count, &nr_pagecache);
1823                 *count = 0;
1824                 local_irq_disable();
1825                 __drain_pages(cpu);
1826                 local_irq_enable();
1827         }
1828         return NOTIFY_OK;
1829 }
1830 #endif /* CONFIG_HOTPLUG_CPU */
1831
1832 void __init page_alloc_init(void)
1833 {
1834         hotcpu_notifier(page_alloc_cpu_notify, 0);
1835 }
1836
1837 static unsigned long higherzone_val(struct zone *z, int max_zone,
1838                                         int alloc_type)
1839 {
1840         int z_idx = zone_idx(z);
1841         struct zone *higherzone;
1842         unsigned long pages;
1843
1844         /* there is no higher zone to get a contribution from */
1845         if (z_idx == MAX_NR_ZONES-1)
1846                 return 0;
1847
1848         higherzone = &z->zone_pgdat->node_zones[z_idx+1];
1849
1850         /* We always start with the higher zone's protection value */
1851         pages = higherzone->protection[alloc_type];
1852
1853         /*
1854          * We get a lower-zone-protection contribution only if there are
1855          * pages in the higher zone and if we're not the highest zone
1856          * in the current zonelist.  e.g., never happens for GFP_DMA. Happens
1857          * only for ZONE_DMA in a GFP_KERNEL allocation and happens for ZONE_DMA
1858          * and ZONE_NORMAL for a GFP_HIGHMEM allocation.
1859          */
1860         if (higherzone->present_pages && z_idx < alloc_type)
1861                 pages += higherzone->pages_low * sysctl_lower_zone_protection;
1862
1863         return pages;
1864 }
1865
1866 /*
1867  * setup_per_zone_protection - called whenver min_free_kbytes or
1868  *      sysctl_lower_zone_protection changes.  Ensures that each zone
1869  *      has a correct pages_protected value, so an adequate number of
1870  *      pages are left in the zone after a successful __alloc_pages().
1871  *
1872  *      This algorithm is way confusing.  I tries to keep the same behavior
1873  *      as we had with the incremental min iterative algorithm.
1874  */
1875 static void setup_per_zone_protection(void)
1876 {
1877         struct pglist_data *pgdat;
1878         struct zone *zones, *zone;
1879         int max_zone;
1880         int i, j;
1881
1882         for_each_pgdat(pgdat) {
1883                 zones = pgdat->node_zones;
1884
1885                 for (i = 0, max_zone = 0; i < MAX_NR_ZONES; i++)
1886                         if (zones[i].present_pages)
1887                                 max_zone = i;
1888
1889                 /*
1890                  * For each of the different allocation types:
1891                  * GFP_DMA -> GFP_KERNEL -> GFP_HIGHMEM
1892                  */
1893                 for (i = 0; i < GFP_ZONETYPES; i++) {
1894                         /*
1895                          * For each of the zones:
1896                          * ZONE_HIGHMEM -> ZONE_NORMAL -> ZONE_DMA
1897                          */
1898                         for (j = MAX_NR_ZONES-1; j >= 0; j--) {
1899                                 zone = &zones[j];
1900
1901                                 /*
1902                                  * We never protect zones that don't have memory
1903                                  * in them (j>max_zone) or zones that aren't in
1904                                  * the zonelists for a certain type of
1905                                  * allocation (j>=i).  We have to assign these
1906                                  * to zero because the lower zones take
1907                                  * contributions from the higher zones.
1908                                  */
1909                                 if (j > max_zone || j >= i) {
1910                                         zone->protection[i] = 0;
1911                                         continue;
1912                                 }
1913                                 /*
1914                                  * The contribution of the next higher zone
1915                                  */
1916                                 zone->protection[i] = higherzone_val(zone,
1917                                                                 max_zone, i);
1918                         }
1919                 }
1920         }
1921 }
1922
1923 /*
1924  * setup_per_zone_pages_min - called when min_free_kbytes changes.  Ensures 
1925  *      that the pages_{min,low,high} values for each zone are set correctly 
1926  *      with respect to min_free_kbytes.
1927  */
1928 static void setup_per_zone_pages_min(void)
1929 {
1930         unsigned long pages_min = min_free_kbytes >> (PAGE_SHIFT - 10);
1931         unsigned long lowmem_pages = 0;
1932         struct zone *zone;
1933         unsigned long flags;
1934
1935         /* Calculate total number of !ZONE_HIGHMEM pages */
1936         for_each_zone(zone) {
1937                 if (!is_highmem(zone))
1938                         lowmem_pages += zone->present_pages;
1939         }
1940
1941         for_each_zone(zone) {
1942                 spin_lock_irqsave(&zone->lru_lock, flags);
1943                 if (is_highmem(zone)) {
1944                         /*
1945                          * Often, highmem doesn't need to reserve any pages.
1946                          * But the pages_min/low/high values are also used for
1947                          * batching up page reclaim activity so we need a
1948                          * decent value here.
1949                          */
1950                         int min_pages;
1951
1952                         min_pages = zone->present_pages / 1024;
1953                         if (min_pages < SWAP_CLUSTER_MAX)
1954                                 min_pages = SWAP_CLUSTER_MAX;
1955                         if (min_pages > 128)
1956                                 min_pages = 128;
1957                         zone->pages_min = min_pages;
1958                 } else {
1959                         /* if it's a lowmem zone, reserve a number of pages 
1960                          * proportionate to the zone's size.
1961                          */
1962                         zone->pages_min = (pages_min * zone->present_pages) / 
1963                                            lowmem_pages;
1964                 }
1965
1966                 /*
1967                  * When interpreting these watermarks, just keep in mind that:
1968                  * zone->pages_min == (zone->pages_min * 4) / 4;
1969                  */
1970                 zone->pages_low   = (zone->pages_min * 5) / 4;
1971                 zone->pages_high  = (zone->pages_min * 6) / 4;
1972                 spin_unlock_irqrestore(&zone->lru_lock, flags);
1973         }
1974 }
1975
1976 /*
1977  * Initialise min_free_kbytes.
1978  *
1979  * For small machines we want it small (128k min).  For large machines
1980  * we want it large (64MB max).  But it is not linear, because network
1981  * bandwidth does not increase linearly with machine size.  We use
1982  *
1983  *      min_free_kbytes = 4 * sqrt(lowmem_kbytes), for better accuracy:
1984  *      min_free_kbytes = sqrt(lowmem_kbytes * 16)
1985  *
1986  * which yields
1987  *
1988  * 16MB:        512k
1989  * 32MB:        724k
1990  * 64MB:        1024k
1991  * 128MB:       1448k
1992  * 256MB:       2048k
1993  * 512MB:       2896k
1994  * 1024MB:      4096k
1995  * 2048MB:      5792k
1996  * 4096MB:      8192k
1997  * 8192MB:      11584k
1998  * 16384MB:     16384k
1999  */
2000 static int __init init_per_zone_pages_min(void)
2001 {
2002         unsigned long lowmem_kbytes;
2003
2004         lowmem_kbytes = nr_free_buffer_pages() * (PAGE_SIZE >> 10);
2005
2006         min_free_kbytes = int_sqrt(lowmem_kbytes * 16);
2007         if (min_free_kbytes < 128)
2008                 min_free_kbytes = 128;
2009         if (min_free_kbytes > 65536)
2010                 min_free_kbytes = 65536;
2011         setup_per_zone_pages_min();
2012         setup_per_zone_protection();
2013         return 0;
2014 }
2015 module_init(init_per_zone_pages_min)
2016
2017 /*
2018  * min_free_kbytes_sysctl_handler - just a wrapper around proc_dointvec() so 
2019  *      that we can call two helper functions whenever min_free_kbytes
2020  *      changes.
2021  */
2022 int min_free_kbytes_sysctl_handler(ctl_table *table, int write, 
2023                 struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
2024 {
2025         proc_dointvec(table, write, file, buffer, length, ppos);
2026         setup_per_zone_pages_min();
2027         setup_per_zone_protection();
2028         return 0;
2029 }
2030
2031 /*
2032  * lower_zone_protection_sysctl_handler - just a wrapper around
2033  *      proc_dointvec() so that we can call setup_per_zone_protection()
2034  *      whenever sysctl_lower_zone_protection changes.
2035  */
2036 int lower_zone_protection_sysctl_handler(ctl_table *table, int write,
2037                  struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
2038 {
2039         proc_dointvec_minmax(table, write, file, buffer, length, ppos);
2040         setup_per_zone_protection();
2041         return 0;
2042 }
2043
2044 /*
2045  * allocate a large system hash table from bootmem
2046  * - it is assumed that the hash table must contain an exact power-of-2
2047  *   quantity of entries
2048  */
2049 void *__init alloc_large_system_hash(const char *tablename,
2050                                      unsigned long bucketsize,
2051                                      unsigned long numentries,
2052                                      int scale,
2053                                      int consider_highmem,
2054                                      unsigned int *_hash_shift,
2055                                      unsigned int *_hash_mask)
2056 {
2057         unsigned long long max;
2058         unsigned long log2qty, size;
2059         void *table;
2060
2061         /* allow the kernel cmdline to have a say */
2062         if (!numentries) {
2063                 /* round applicable memory size up to nearest megabyte */
2064                 numentries = consider_highmem ? nr_all_pages : nr_kernel_pages;
2065                 numentries += (1UL << (20 - PAGE_SHIFT)) - 1;
2066                 numentries >>= 20 - PAGE_SHIFT;
2067                 numentries <<= 20 - PAGE_SHIFT;
2068
2069                 /* limit to 1 bucket per 2^scale bytes of low memory */
2070                 if (scale > PAGE_SHIFT)
2071                         numentries >>= (scale - PAGE_SHIFT);
2072                 else
2073                         numentries <<= (PAGE_SHIFT - scale);
2074         }
2075         /* rounded up to nearest power of 2 in size */
2076         numentries = 1UL << (long_log2(numentries) + 1);
2077
2078         /* limit allocation size to 1/16 total memory */
2079         max = ((unsigned long long)nr_all_pages << PAGE_SHIFT) >> 4;
2080         do_div(max, bucketsize);
2081
2082         if (numentries > max)
2083                 numentries = max;
2084
2085         log2qty = long_log2(numentries);
2086
2087         do {
2088                 size = bucketsize << log2qty;
2089                 table = alloc_bootmem(size);
2090         } while (!table && size > PAGE_SIZE && --log2qty);
2091
2092         if (!table)
2093                 panic("Failed to allocate %s hash table\n", tablename);
2094
2095         printk("%s hash table entries: %d (order: %d, %lu bytes)\n",
2096                tablename,
2097                (1U << log2qty),
2098                long_log2(size) - PAGE_SHIFT,
2099                size);
2100
2101         if (_hash_shift)
2102                 *_hash_shift = log2qty;
2103         if (_hash_mask)
2104                 *_hash_mask = (1 << log2qty) - 1;
2105
2106         return table;
2107 }