blob: 1125d818ea0684e7e24148d8ad20d93732b43235 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Generic hugetlb support.
3 * (C) William Irwin, April 2004
4 */
5#include <linux/gfp.h>
6#include <linux/list.h>
7#include <linux/init.h>
8#include <linux/module.h>
9#include <linux/mm.h>
Alexey Dobriyane1759c22008-10-15 23:50:22 +040010#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/sysctl.h>
12#include <linux/highmem.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070013#include <linux/mmu_notifier.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/nodemask.h>
David Gibson63551ae2005-06-21 17:14:44 -070015#include <linux/pagemap.h>
Christoph Lameter5da7ca82006-01-06 00:10:46 -080016#include <linux/mempolicy.h>
Christoph Lameteraea47ff2006-01-08 01:00:57 -080017#include <linux/cpuset.h>
David Gibson3935baa2006-03-22 00:08:53 -080018#include <linux/mutex.h>
Andi Kleenaa888a72008-07-23 21:27:47 -070019#include <linux/bootmem.h>
Nishanth Aravamudana3437872008-07-23 21:27:44 -070020#include <linux/sysfs.h>
Linus Torvaldsd6606682008-08-06 12:04:54 -070021
David Gibson63551ae2005-06-21 17:14:44 -070022#include <asm/page.h>
23#include <asm/pgtable.h>
Adrian Bunk78a34ae2008-07-28 15:46:30 -070024#include <asm/io.h>
David Gibson63551ae2005-06-21 17:14:44 -070025
26#include <linux/hugetlb.h>
Nick Piggin7835e982006-03-22 00:08:40 -080027#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29const unsigned long hugetlb_zero = 0, hugetlb_infinity = ~0UL;
Mel Gorman396faf02007-07-17 04:03:13 -070030static gfp_t htlb_alloc_mask = GFP_HIGHUSER;
31unsigned long hugepages_treat_as_movable;
Andi Kleena5516432008-07-23 21:27:41 -070032
Andi Kleene5ff2152008-07-23 21:27:42 -070033static int max_hstate;
34unsigned int default_hstate_idx;
35struct hstate hstates[HUGE_MAX_HSTATE];
36
Jon Tollefson53ba51d2008-07-23 21:27:52 -070037__initdata LIST_HEAD(huge_boot_pages);
38
Andi Kleene5ff2152008-07-23 21:27:42 -070039/* for command line parsing */
40static struct hstate * __initdata parsed_hstate;
41static unsigned long __initdata default_hstate_max_huge_pages;
Nick Piggine11bfbf2008-07-23 21:27:52 -070042static unsigned long __initdata default_hstate_size;
Andi Kleene5ff2152008-07-23 21:27:42 -070043
44#define for_each_hstate(h) \
45 for ((h) = hstates; (h) < &hstates[max_hstate]; (h)++)
Mel Gorman396faf02007-07-17 04:03:13 -070046
David Gibson3935baa2006-03-22 00:08:53 -080047/*
48 * Protects updates to hugepage_freelists, nr_huge_pages, and free_huge_pages
49 */
50static DEFINE_SPINLOCK(hugetlb_lock);
Eric Paris0bd0f9f2005-11-21 21:32:28 -080051
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -070052/*
Andy Whitcroft96822902008-07-23 21:27:29 -070053 * Region tracking -- allows tracking of reservations and instantiated pages
54 * across the pages in a mapping.
Andy Whitcroft84afd992008-07-23 21:27:32 -070055 *
56 * The region data structures are protected by a combination of the mmap_sem
57 * and the hugetlb_instantion_mutex. To access or modify a region the caller
58 * must either hold the mmap_sem for write, or the mmap_sem for read and
59 * the hugetlb_instantiation mutex:
60 *
61 * down_write(&mm->mmap_sem);
62 * or
63 * down_read(&mm->mmap_sem);
64 * mutex_lock(&hugetlb_instantiation_mutex);
Andy Whitcroft96822902008-07-23 21:27:29 -070065 */
66struct file_region {
67 struct list_head link;
68 long from;
69 long to;
70};
71
72static long region_add(struct list_head *head, long f, long t)
73{
74 struct file_region *rg, *nrg, *trg;
75
76 /* Locate the region we are either in or before. */
77 list_for_each_entry(rg, head, link)
78 if (f <= rg->to)
79 break;
80
81 /* Round our left edge to the current segment if it encloses us. */
82 if (f > rg->from)
83 f = rg->from;
84
85 /* Check for and consume any regions we now overlap with. */
86 nrg = rg;
87 list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
88 if (&rg->link == head)
89 break;
90 if (rg->from > t)
91 break;
92
93 /* If this area reaches higher then extend our area to
94 * include it completely. If this is not the first area
95 * which we intend to reuse, free it. */
96 if (rg->to > t)
97 t = rg->to;
98 if (rg != nrg) {
99 list_del(&rg->link);
100 kfree(rg);
101 }
102 }
103 nrg->from = f;
104 nrg->to = t;
105 return 0;
106}
107
108static long region_chg(struct list_head *head, long f, long t)
109{
110 struct file_region *rg, *nrg;
111 long chg = 0;
112
113 /* Locate the region we are before or in. */
114 list_for_each_entry(rg, head, link)
115 if (f <= rg->to)
116 break;
117
118 /* If we are below the current region then a new region is required.
119 * Subtle, allocate a new region at the position but make it zero
120 * size such that we can guarantee to record the reservation. */
121 if (&rg->link == head || t < rg->from) {
122 nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
123 if (!nrg)
124 return -ENOMEM;
125 nrg->from = f;
126 nrg->to = f;
127 INIT_LIST_HEAD(&nrg->link);
128 list_add(&nrg->link, rg->link.prev);
129
130 return t - f;
131 }
132
133 /* Round our left edge to the current segment if it encloses us. */
134 if (f > rg->from)
135 f = rg->from;
136 chg = t - f;
137
138 /* Check for and consume any regions we now overlap with. */
139 list_for_each_entry(rg, rg->link.prev, link) {
140 if (&rg->link == head)
141 break;
142 if (rg->from > t)
143 return chg;
144
145 /* We overlap with this area, if it extends futher than
146 * us then we must extend ourselves. Account for its
147 * existing reservation. */
148 if (rg->to > t) {
149 chg += rg->to - t;
150 t = rg->to;
151 }
152 chg -= rg->to - rg->from;
153 }
154 return chg;
155}
156
157static long region_truncate(struct list_head *head, long end)
158{
159 struct file_region *rg, *trg;
160 long chg = 0;
161
162 /* Locate the region we are either in or before. */
163 list_for_each_entry(rg, head, link)
164 if (end <= rg->to)
165 break;
166 if (&rg->link == head)
167 return 0;
168
169 /* If we are in the middle of a region then adjust it. */
170 if (end > rg->from) {
171 chg = rg->to - end;
172 rg->to = end;
173 rg = list_entry(rg->link.next, typeof(*rg), link);
174 }
175
176 /* Drop any remaining regions. */
177 list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
178 if (&rg->link == head)
179 break;
180 chg += rg->to - rg->from;
181 list_del(&rg->link);
182 kfree(rg);
183 }
184 return chg;
185}
186
Andy Whitcroft84afd992008-07-23 21:27:32 -0700187static long region_count(struct list_head *head, long f, long t)
188{
189 struct file_region *rg;
190 long chg = 0;
191
192 /* Locate each segment we overlap with, and count that overlap. */
193 list_for_each_entry(rg, head, link) {
194 int seg_from;
195 int seg_to;
196
197 if (rg->to <= f)
198 continue;
199 if (rg->from >= t)
200 break;
201
202 seg_from = max(rg->from, f);
203 seg_to = min(rg->to, t);
204
205 chg += seg_to - seg_from;
206 }
207
208 return chg;
209}
210
Andy Whitcroft96822902008-07-23 21:27:29 -0700211/*
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700212 * Convert the address within this vma to the page offset within
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700213 * the mapping, in pagecache page units; huge pages here.
214 */
Andi Kleena5516432008-07-23 21:27:41 -0700215static pgoff_t vma_hugecache_offset(struct hstate *h,
216 struct vm_area_struct *vma, unsigned long address)
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700217{
Andi Kleena5516432008-07-23 21:27:41 -0700218 return ((address - vma->vm_start) >> huge_page_shift(h)) +
219 (vma->vm_pgoff >> huge_page_order(h));
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700220}
221
Andy Whitcroft84afd992008-07-23 21:27:32 -0700222/*
Mel Gorman08fba692009-01-06 14:38:53 -0800223 * Return the size of the pages allocated when backing a VMA. In the majority
224 * cases this will be same size as used by the page table entries.
225 */
226unsigned long vma_kernel_pagesize(struct vm_area_struct *vma)
227{
228 struct hstate *hstate;
229
230 if (!is_vm_hugetlb_page(vma))
231 return PAGE_SIZE;
232
233 hstate = hstate_vma(vma);
234
235 return 1UL << (hstate->order + PAGE_SHIFT);
236}
Joerg Roedelf340ca02009-06-19 15:16:22 +0200237EXPORT_SYMBOL_GPL(vma_kernel_pagesize);
Mel Gorman08fba692009-01-06 14:38:53 -0800238
239/*
Mel Gorman33402892009-01-06 14:38:54 -0800240 * Return the page size being used by the MMU to back a VMA. In the majority
241 * of cases, the page size used by the kernel matches the MMU size. On
242 * architectures where it differs, an architecture-specific version of this
243 * function is required.
244 */
245#ifndef vma_mmu_pagesize
246unsigned long vma_mmu_pagesize(struct vm_area_struct *vma)
247{
248 return vma_kernel_pagesize(vma);
249}
250#endif
251
252/*
Andy Whitcroft84afd992008-07-23 21:27:32 -0700253 * Flags for MAP_PRIVATE reservations. These are stored in the bottom
254 * bits of the reservation map pointer, which are always clear due to
255 * alignment.
256 */
257#define HPAGE_RESV_OWNER (1UL << 0)
258#define HPAGE_RESV_UNMAPPED (1UL << 1)
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700259#define HPAGE_RESV_MASK (HPAGE_RESV_OWNER | HPAGE_RESV_UNMAPPED)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700260
Mel Gormana1e78772008-07-23 21:27:23 -0700261/*
262 * These helpers are used to track how many pages are reserved for
263 * faults in a MAP_PRIVATE mapping. Only the process that called mmap()
264 * is guaranteed to have their future faults succeed.
265 *
266 * With the exception of reset_vma_resv_huge_pages() which is called at fork(),
267 * the reserve counters are updated with the hugetlb_lock held. It is safe
268 * to reset the VMA at fork() time as it is not in use yet and there is no
269 * chance of the global counters getting corrupted as a result of the values.
Andy Whitcroft84afd992008-07-23 21:27:32 -0700270 *
271 * The private mapping reservation is represented in a subtly different
272 * manner to a shared mapping. A shared mapping has a region map associated
273 * with the underlying file, this region map represents the backing file
274 * pages which have ever had a reservation assigned which this persists even
275 * after the page is instantiated. A private mapping has a region map
276 * associated with the original mmap which is attached to all VMAs which
277 * reference it, this region map represents those offsets which have consumed
278 * reservation ie. where pages have been instantiated.
Mel Gormana1e78772008-07-23 21:27:23 -0700279 */
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700280static unsigned long get_vma_private_data(struct vm_area_struct *vma)
281{
282 return (unsigned long)vma->vm_private_data;
283}
284
285static void set_vma_private_data(struct vm_area_struct *vma,
286 unsigned long value)
287{
288 vma->vm_private_data = (void *)value;
289}
290
Andy Whitcroft84afd992008-07-23 21:27:32 -0700291struct resv_map {
292 struct kref refs;
293 struct list_head regions;
294};
295
Harvey Harrison2a4b3de2008-10-18 20:27:06 -0700296static struct resv_map *resv_map_alloc(void)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700297{
298 struct resv_map *resv_map = kmalloc(sizeof(*resv_map), GFP_KERNEL);
299 if (!resv_map)
300 return NULL;
301
302 kref_init(&resv_map->refs);
303 INIT_LIST_HEAD(&resv_map->regions);
304
305 return resv_map;
306}
307
Harvey Harrison2a4b3de2008-10-18 20:27:06 -0700308static void resv_map_release(struct kref *ref)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700309{
310 struct resv_map *resv_map = container_of(ref, struct resv_map, refs);
311
312 /* Clear out any active regions before we release the map. */
313 region_truncate(&resv_map->regions, 0);
314 kfree(resv_map);
315}
316
317static struct resv_map *vma_resv_map(struct vm_area_struct *vma)
Mel Gormana1e78772008-07-23 21:27:23 -0700318{
319 VM_BUG_ON(!is_vm_hugetlb_page(vma));
Mel Gormanf83a2752009-05-28 14:34:40 -0700320 if (!(vma->vm_flags & VM_MAYSHARE))
Andy Whitcroft84afd992008-07-23 21:27:32 -0700321 return (struct resv_map *)(get_vma_private_data(vma) &
322 ~HPAGE_RESV_MASK);
Harvey Harrison2a4b3de2008-10-18 20:27:06 -0700323 return NULL;
Mel Gormana1e78772008-07-23 21:27:23 -0700324}
325
Andy Whitcroft84afd992008-07-23 21:27:32 -0700326static void set_vma_resv_map(struct vm_area_struct *vma, struct resv_map *map)
Mel Gormana1e78772008-07-23 21:27:23 -0700327{
328 VM_BUG_ON(!is_vm_hugetlb_page(vma));
Mel Gormanf83a2752009-05-28 14:34:40 -0700329 VM_BUG_ON(vma->vm_flags & VM_MAYSHARE);
Mel Gormana1e78772008-07-23 21:27:23 -0700330
Andy Whitcroft84afd992008-07-23 21:27:32 -0700331 set_vma_private_data(vma, (get_vma_private_data(vma) &
332 HPAGE_RESV_MASK) | (unsigned long)map);
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700333}
334
335static void set_vma_resv_flags(struct vm_area_struct *vma, unsigned long flags)
336{
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700337 VM_BUG_ON(!is_vm_hugetlb_page(vma));
Mel Gormanf83a2752009-05-28 14:34:40 -0700338 VM_BUG_ON(vma->vm_flags & VM_MAYSHARE);
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700339
340 set_vma_private_data(vma, get_vma_private_data(vma) | flags);
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700341}
342
343static int is_vma_resv_set(struct vm_area_struct *vma, unsigned long flag)
344{
345 VM_BUG_ON(!is_vm_hugetlb_page(vma));
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700346
347 return (get_vma_private_data(vma) & flag) != 0;
Mel Gormana1e78772008-07-23 21:27:23 -0700348}
349
350/* Decrement the reserved pages in the hugepage pool by one */
Andi Kleena5516432008-07-23 21:27:41 -0700351static void decrement_hugepage_resv_vma(struct hstate *h,
352 struct vm_area_struct *vma)
Mel Gormana1e78772008-07-23 21:27:23 -0700353{
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700354 if (vma->vm_flags & VM_NORESERVE)
355 return;
356
Mel Gormanf83a2752009-05-28 14:34:40 -0700357 if (vma->vm_flags & VM_MAYSHARE) {
Mel Gormana1e78772008-07-23 21:27:23 -0700358 /* Shared mappings always use reserves */
Andi Kleena5516432008-07-23 21:27:41 -0700359 h->resv_huge_pages--;
Andy Whitcroft84afd992008-07-23 21:27:32 -0700360 } else if (is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
Mel Gormana1e78772008-07-23 21:27:23 -0700361 /*
362 * Only the process that called mmap() has reserves for
363 * private mappings.
364 */
Andi Kleena5516432008-07-23 21:27:41 -0700365 h->resv_huge_pages--;
Mel Gormana1e78772008-07-23 21:27:23 -0700366 }
367}
368
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700369/* Reset counters to 0 and clear all HPAGE_RESV_* flags */
Mel Gormana1e78772008-07-23 21:27:23 -0700370void reset_vma_resv_huge_pages(struct vm_area_struct *vma)
371{
372 VM_BUG_ON(!is_vm_hugetlb_page(vma));
Mel Gormanf83a2752009-05-28 14:34:40 -0700373 if (!(vma->vm_flags & VM_MAYSHARE))
Mel Gormana1e78772008-07-23 21:27:23 -0700374 vma->vm_private_data = (void *)0;
375}
376
377/* Returns true if the VMA has associated reserve pages */
Mel Gorman7f09ca52008-07-23 21:27:58 -0700378static int vma_has_reserves(struct vm_area_struct *vma)
Mel Gormana1e78772008-07-23 21:27:23 -0700379{
Mel Gormanf83a2752009-05-28 14:34:40 -0700380 if (vma->vm_flags & VM_MAYSHARE)
Mel Gorman7f09ca52008-07-23 21:27:58 -0700381 return 1;
382 if (is_vma_resv_set(vma, HPAGE_RESV_OWNER))
383 return 1;
384 return 0;
Mel Gormana1e78772008-07-23 21:27:23 -0700385}
386
Andy Whitcroft69d177c2008-11-06 12:53:26 -0800387static void clear_gigantic_page(struct page *page,
388 unsigned long addr, unsigned long sz)
389{
390 int i;
391 struct page *p = page;
392
393 might_sleep();
394 for (i = 0; i < sz/PAGE_SIZE; i++, p = mem_map_next(p, page, i)) {
395 cond_resched();
396 clear_user_highpage(p, addr + i * PAGE_SIZE);
397 }
398}
Andi Kleena5516432008-07-23 21:27:41 -0700399static void clear_huge_page(struct page *page,
400 unsigned long addr, unsigned long sz)
David Gibson79ac6ba2006-03-22 00:08:51 -0800401{
402 int i;
403
Hannes Ederebdd4ae2009-01-06 14:39:58 -0800404 if (unlikely(sz > MAX_ORDER_NR_PAGES)) {
405 clear_gigantic_page(page, addr, sz);
406 return;
407 }
Andy Whitcroft69d177c2008-11-06 12:53:26 -0800408
David Gibson79ac6ba2006-03-22 00:08:51 -0800409 might_sleep();
Andi Kleena5516432008-07-23 21:27:41 -0700410 for (i = 0; i < sz/PAGE_SIZE; i++) {
David Gibson79ac6ba2006-03-22 00:08:51 -0800411 cond_resched();
Ralf Baechle281e0e32007-10-01 01:20:10 -0700412 clear_user_highpage(page + i, addr + i * PAGE_SIZE);
David Gibson79ac6ba2006-03-22 00:08:51 -0800413 }
414}
415
Andy Whitcroft69d177c2008-11-06 12:53:26 -0800416static void copy_gigantic_page(struct page *dst, struct page *src,
417 unsigned long addr, struct vm_area_struct *vma)
418{
419 int i;
420 struct hstate *h = hstate_vma(vma);
421 struct page *dst_base = dst;
422 struct page *src_base = src;
423 might_sleep();
424 for (i = 0; i < pages_per_huge_page(h); ) {
425 cond_resched();
426 copy_user_highpage(dst, src, addr + i*PAGE_SIZE, vma);
427
428 i++;
429 dst = mem_map_next(dst, dst_base, i);
430 src = mem_map_next(src, src_base, i);
431 }
432}
David Gibson79ac6ba2006-03-22 00:08:51 -0800433static void copy_huge_page(struct page *dst, struct page *src,
Atsushi Nemoto9de455b2006-12-12 17:14:55 +0000434 unsigned long addr, struct vm_area_struct *vma)
David Gibson79ac6ba2006-03-22 00:08:51 -0800435{
436 int i;
Andi Kleena5516432008-07-23 21:27:41 -0700437 struct hstate *h = hstate_vma(vma);
David Gibson79ac6ba2006-03-22 00:08:51 -0800438
Hannes Ederebdd4ae2009-01-06 14:39:58 -0800439 if (unlikely(pages_per_huge_page(h) > MAX_ORDER_NR_PAGES)) {
440 copy_gigantic_page(dst, src, addr, vma);
441 return;
442 }
Andy Whitcroft69d177c2008-11-06 12:53:26 -0800443
David Gibson79ac6ba2006-03-22 00:08:51 -0800444 might_sleep();
Andi Kleena5516432008-07-23 21:27:41 -0700445 for (i = 0; i < pages_per_huge_page(h); i++) {
David Gibson79ac6ba2006-03-22 00:08:51 -0800446 cond_resched();
Atsushi Nemoto9de455b2006-12-12 17:14:55 +0000447 copy_user_highpage(dst + i, src + i, addr + i*PAGE_SIZE, vma);
David Gibson79ac6ba2006-03-22 00:08:51 -0800448 }
449}
450
Andi Kleena5516432008-07-23 21:27:41 -0700451static void enqueue_huge_page(struct hstate *h, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
453 int nid = page_to_nid(page);
Andi Kleena5516432008-07-23 21:27:41 -0700454 list_add(&page->lru, &h->hugepage_freelists[nid]);
455 h->free_huge_pages++;
456 h->free_huge_pages_node[nid]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
Andi Kleena5516432008-07-23 21:27:41 -0700459static struct page *dequeue_huge_page_vma(struct hstate *h,
460 struct vm_area_struct *vma,
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700461 unsigned long address, int avoid_reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Nishanth Aravamudan31a5c6e2007-07-15 23:38:02 -0700463 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 struct page *page = NULL;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -0700465 struct mempolicy *mpol;
Mel Gorman19770b32008-04-28 02:12:18 -0700466 nodemask_t *nodemask;
Mel Gorman396faf02007-07-17 04:03:13 -0700467 struct zonelist *zonelist = huge_zonelist(vma, address,
Mel Gorman19770b32008-04-28 02:12:18 -0700468 htlb_alloc_mask, &mpol, &nodemask);
Mel Gormandd1a2392008-04-28 02:12:17 -0700469 struct zone *zone;
470 struct zoneref *z;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Mel Gormana1e78772008-07-23 21:27:23 -0700472 /*
473 * A child process with MAP_PRIVATE mappings created by their parent
474 * have no page reserves. This check ensures that reservations are
475 * not "stolen". The child may still get SIGKILLed
476 */
Mel Gorman7f09ca52008-07-23 21:27:58 -0700477 if (!vma_has_reserves(vma) &&
Andi Kleena5516432008-07-23 21:27:41 -0700478 h->free_huge_pages - h->resv_huge_pages == 0)
Mel Gormana1e78772008-07-23 21:27:23 -0700479 return NULL;
480
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700481 /* If reserves cannot be used, ensure enough pages are in the pool */
Andi Kleena5516432008-07-23 21:27:41 -0700482 if (avoid_reserve && h->free_huge_pages - h->resv_huge_pages == 0)
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700483 return NULL;
484
Mel Gorman19770b32008-04-28 02:12:18 -0700485 for_each_zone_zonelist_nodemask(zone, z, zonelist,
486 MAX_NR_ZONES - 1, nodemask) {
Mel Gorman54a6eb52008-04-28 02:12:16 -0700487 nid = zone_to_nid(zone);
488 if (cpuset_zone_allowed_softwall(zone, htlb_alloc_mask) &&
Andi Kleena5516432008-07-23 21:27:41 -0700489 !list_empty(&h->hugepage_freelists[nid])) {
490 page = list_entry(h->hugepage_freelists[nid].next,
Andrew Morton3abf7af2007-07-19 01:49:08 -0700491 struct page, lru);
492 list_del(&page->lru);
Andi Kleena5516432008-07-23 21:27:41 -0700493 h->free_huge_pages--;
494 h->free_huge_pages_node[nid]--;
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700495
496 if (!avoid_reserve)
Andi Kleena5516432008-07-23 21:27:41 -0700497 decrement_hugepage_resv_vma(h, vma);
Mel Gormana1e78772008-07-23 21:27:23 -0700498
Ken Chen5ab3ee72007-07-23 18:44:00 -0700499 break;
Andrew Morton3abf7af2007-07-19 01:49:08 -0700500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 }
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -0700502 mpol_cond_put(mpol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return page;
504}
505
Andi Kleena5516432008-07-23 21:27:41 -0700506static void update_and_free_page(struct hstate *h, struct page *page)
Adam Litke6af2acb2007-10-16 01:26:16 -0700507{
508 int i;
Andi Kleena5516432008-07-23 21:27:41 -0700509
Andy Whitcroft18229df2008-11-06 12:53:27 -0800510 VM_BUG_ON(h->order >= MAX_ORDER);
511
Andi Kleena5516432008-07-23 21:27:41 -0700512 h->nr_huge_pages--;
513 h->nr_huge_pages_node[page_to_nid(page)]--;
514 for (i = 0; i < pages_per_huge_page(h); i++) {
Adam Litke6af2acb2007-10-16 01:26:16 -0700515 page[i].flags &= ~(1 << PG_locked | 1 << PG_error | 1 << PG_referenced |
516 1 << PG_dirty | 1 << PG_active | 1 << PG_reserved |
517 1 << PG_private | 1<< PG_writeback);
518 }
519 set_compound_page_dtor(page, NULL);
520 set_page_refcounted(page);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -0700521 arch_release_hugepage(page);
Andi Kleena5516432008-07-23 21:27:41 -0700522 __free_pages(page, huge_page_order(h));
Adam Litke6af2acb2007-10-16 01:26:16 -0700523}
524
Andi Kleene5ff2152008-07-23 21:27:42 -0700525struct hstate *size_to_hstate(unsigned long size)
526{
527 struct hstate *h;
528
529 for_each_hstate(h) {
530 if (huge_page_size(h) == size)
531 return h;
532 }
533 return NULL;
534}
535
David Gibson27a85ef2006-03-22 00:08:56 -0800536static void free_huge_page(struct page *page)
537{
Andi Kleena5516432008-07-23 21:27:41 -0700538 /*
539 * Can't pass hstate in here because it is called from the
540 * compound page destructor.
541 */
Andi Kleene5ff2152008-07-23 21:27:42 -0700542 struct hstate *h = page_hstate(page);
Adam Litke7893d1d2007-10-16 01:26:18 -0700543 int nid = page_to_nid(page);
Adam Litkec79fb752007-11-14 16:59:38 -0800544 struct address_space *mapping;
David Gibson27a85ef2006-03-22 00:08:56 -0800545
Adam Litkec79fb752007-11-14 16:59:38 -0800546 mapping = (struct address_space *) page_private(page);
Andy Whitcrofte5df70a2008-02-23 15:23:32 -0800547 set_page_private(page, 0);
Adam Litke7893d1d2007-10-16 01:26:18 -0700548 BUG_ON(page_count(page));
David Gibson27a85ef2006-03-22 00:08:56 -0800549 INIT_LIST_HEAD(&page->lru);
550
551 spin_lock(&hugetlb_lock);
Andi Kleenaa888a72008-07-23 21:27:47 -0700552 if (h->surplus_huge_pages_node[nid] && huge_page_order(h) < MAX_ORDER) {
Andi Kleena5516432008-07-23 21:27:41 -0700553 update_and_free_page(h, page);
554 h->surplus_huge_pages--;
555 h->surplus_huge_pages_node[nid]--;
Adam Litke7893d1d2007-10-16 01:26:18 -0700556 } else {
Andi Kleena5516432008-07-23 21:27:41 -0700557 enqueue_huge_page(h, page);
Adam Litke7893d1d2007-10-16 01:26:18 -0700558 }
David Gibson27a85ef2006-03-22 00:08:56 -0800559 spin_unlock(&hugetlb_lock);
Adam Litkec79fb752007-11-14 16:59:38 -0800560 if (mapping)
Adam Litke9a119c02007-11-14 16:59:41 -0800561 hugetlb_put_quota(mapping, 1);
David Gibson27a85ef2006-03-22 00:08:56 -0800562}
563
Andi Kleena5516432008-07-23 21:27:41 -0700564static void prep_new_huge_page(struct hstate *h, struct page *page, int nid)
Andi Kleenb7ba30c2008-07-23 21:27:40 -0700565{
566 set_compound_page_dtor(page, free_huge_page);
567 spin_lock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -0700568 h->nr_huge_pages++;
569 h->nr_huge_pages_node[nid]++;
Andi Kleenb7ba30c2008-07-23 21:27:40 -0700570 spin_unlock(&hugetlb_lock);
571 put_page(page); /* free it into the hugepage allocator */
572}
573
Wu Fengguang20a03072009-06-16 15:32:22 -0700574static void prep_compound_gigantic_page(struct page *page, unsigned long order)
575{
576 int i;
577 int nr_pages = 1 << order;
578 struct page *p = page + 1;
579
580 /* we rely on prep_new_huge_page to set the destructor */
581 set_compound_order(page, order);
582 __SetPageHead(page);
583 for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
584 __SetPageTail(p);
585 p->first_page = page;
586 }
587}
588
589int PageHuge(struct page *page)
590{
591 compound_page_dtor *dtor;
592
593 if (!PageCompound(page))
594 return 0;
595
596 page = compound_head(page);
597 dtor = get_compound_page_dtor(page);
598
599 return dtor == free_huge_page;
600}
601
Andi Kleena5516432008-07-23 21:27:41 -0700602static struct page *alloc_fresh_huge_page_node(struct hstate *h, int nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 struct page *page;
Joe Jinf96efd52007-07-15 23:38:12 -0700605
Andi Kleenaa888a72008-07-23 21:27:47 -0700606 if (h->order >= MAX_ORDER)
607 return NULL;
608
Mel Gorman6484eb32009-06-16 15:31:54 -0700609 page = alloc_pages_exact_node(nid,
Nishanth Aravamudan551883a2008-04-29 00:58:26 -0700610 htlb_alloc_mask|__GFP_COMP|__GFP_THISNODE|
611 __GFP_REPEAT|__GFP_NOWARN,
Andi Kleena5516432008-07-23 21:27:41 -0700612 huge_page_order(h));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (page) {
Gerald Schaefer7f2e9522008-04-28 02:13:29 -0700614 if (arch_prepare_hugepage(page)) {
Gerald Schaefercaff3a22008-08-12 15:08:38 -0700615 __free_pages(page, huge_page_order(h));
Harvey Harrison7b8ee842008-04-28 14:13:19 -0700616 return NULL;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -0700617 }
Andi Kleena5516432008-07-23 21:27:41 -0700618 prep_new_huge_page(h, page, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700620
621 return page;
622}
623
Andi Kleen5ced66c2008-07-23 21:27:45 -0700624/*
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800625 * common helper functions for hstate_next_node_to_{alloc|free}.
626 * We may have allocated or freed a huge page based on a different
627 * nodes_allowed previously, so h->next_node_to_{alloc|free} might
628 * be outside of *nodes_allowed. Ensure that we use an allowed
629 * node for alloc or free.
Lee Schermerhorn9a76db02009-12-14 17:58:15 -0800630 */
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800631static int next_node_allowed(int nid, nodemask_t *nodes_allowed)
Lee Schermerhorn9a76db02009-12-14 17:58:15 -0800632{
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800633 nid = next_node(nid, *nodes_allowed);
Lee Schermerhorn9a76db02009-12-14 17:58:15 -0800634 if (nid == MAX_NUMNODES)
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800635 nid = first_node(*nodes_allowed);
Lee Schermerhorn9a76db02009-12-14 17:58:15 -0800636 VM_BUG_ON(nid >= MAX_NUMNODES);
637
638 return nid;
639}
640
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800641static int get_valid_node_allowed(int nid, nodemask_t *nodes_allowed)
Andi Kleen5ced66c2008-07-23 21:27:45 -0700642{
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800643 if (!node_isset(nid, *nodes_allowed))
644 nid = next_node_allowed(nid, nodes_allowed);
Lee Schermerhorn9a76db02009-12-14 17:58:15 -0800645 return nid;
Andi Kleen5ced66c2008-07-23 21:27:45 -0700646}
647
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800648/*
649 * returns the previously saved node ["this node"] from which to
650 * allocate a persistent huge page for the pool and advance the
651 * next node from which to allocate, handling wrap at end of node
652 * mask.
653 */
654static int hstate_next_node_to_alloc(struct hstate *h,
655 nodemask_t *nodes_allowed)
656{
657 int nid;
658
659 VM_BUG_ON(!nodes_allowed);
660
661 nid = get_valid_node_allowed(h->next_nid_to_alloc, nodes_allowed);
662 h->next_nid_to_alloc = next_node_allowed(nid, nodes_allowed);
663
664 return nid;
665}
666
667static int alloc_fresh_huge_page(struct hstate *h, nodemask_t *nodes_allowed)
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700668{
669 struct page *page;
670 int start_nid;
671 int next_nid;
672 int ret = 0;
673
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800674 start_nid = hstate_next_node_to_alloc(h, nodes_allowed);
Lee Schermerhorne8c5c822009-09-21 17:01:22 -0700675 next_nid = start_nid;
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700676
677 do {
Lee Schermerhorne8c5c822009-09-21 17:01:22 -0700678 page = alloc_fresh_huge_page_node(h, next_nid);
Lee Schermerhorn9a76db02009-12-14 17:58:15 -0800679 if (page) {
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700680 ret = 1;
Lee Schermerhorn9a76db02009-12-14 17:58:15 -0800681 break;
682 }
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800683 next_nid = hstate_next_node_to_alloc(h, nodes_allowed);
Lee Schermerhorn9a76db02009-12-14 17:58:15 -0800684 } while (next_nid != start_nid);
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700685
Adam Litke3b116302008-04-28 02:13:06 -0700686 if (ret)
687 count_vm_event(HTLB_BUDDY_PGALLOC);
688 else
689 count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
690
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700691 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
Lee Schermerhorne8c5c822009-09-21 17:01:22 -0700694/*
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800695 * helper for free_pool_huge_page() - return the previously saved
696 * node ["this node"] from which to free a huge page. Advance the
697 * next node id whether or not we find a free huge page to free so
698 * that the next attempt to free addresses the next node.
Lee Schermerhorne8c5c822009-09-21 17:01:22 -0700699 */
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800700static int hstate_next_node_to_free(struct hstate *h, nodemask_t *nodes_allowed)
Lee Schermerhorne8c5c822009-09-21 17:01:22 -0700701{
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800702 int nid;
Lee Schermerhorn9a76db02009-12-14 17:58:15 -0800703
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800704 VM_BUG_ON(!nodes_allowed);
705
706 nid = get_valid_node_allowed(h->next_nid_to_free, nodes_allowed);
707 h->next_nid_to_free = next_node_allowed(nid, nodes_allowed);
708
Lee Schermerhorn9a76db02009-12-14 17:58:15 -0800709 return nid;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -0700710}
711
712/*
713 * Free huge page from pool from next node to free.
714 * Attempt to keep persistent huge pages more or less
715 * balanced over allowed nodes.
716 * Called with hugetlb_lock locked.
717 */
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800718static int free_pool_huge_page(struct hstate *h, nodemask_t *nodes_allowed,
719 bool acct_surplus)
Lee Schermerhorne8c5c822009-09-21 17:01:22 -0700720{
721 int start_nid;
722 int next_nid;
723 int ret = 0;
724
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800725 start_nid = hstate_next_node_to_free(h, nodes_allowed);
Lee Schermerhorne8c5c822009-09-21 17:01:22 -0700726 next_nid = start_nid;
727
728 do {
Lee Schermerhorn685f3452009-09-21 17:01:23 -0700729 /*
730 * If we're returning unused surplus pages, only examine
731 * nodes with surplus pages.
732 */
733 if ((!acct_surplus || h->surplus_huge_pages_node[next_nid]) &&
734 !list_empty(&h->hugepage_freelists[next_nid])) {
Lee Schermerhorne8c5c822009-09-21 17:01:22 -0700735 struct page *page =
736 list_entry(h->hugepage_freelists[next_nid].next,
737 struct page, lru);
738 list_del(&page->lru);
739 h->free_huge_pages--;
740 h->free_huge_pages_node[next_nid]--;
Lee Schermerhorn685f3452009-09-21 17:01:23 -0700741 if (acct_surplus) {
742 h->surplus_huge_pages--;
743 h->surplus_huge_pages_node[next_nid]--;
744 }
Lee Schermerhorne8c5c822009-09-21 17:01:22 -0700745 update_and_free_page(h, page);
746 ret = 1;
Lee Schermerhorn9a76db02009-12-14 17:58:15 -0800747 break;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -0700748 }
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800749 next_nid = hstate_next_node_to_free(h, nodes_allowed);
Lee Schermerhorn9a76db02009-12-14 17:58:15 -0800750 } while (next_nid != start_nid);
Lee Schermerhorne8c5c822009-09-21 17:01:22 -0700751
752 return ret;
753}
754
Andi Kleena5516432008-07-23 21:27:41 -0700755static struct page *alloc_buddy_huge_page(struct hstate *h,
756 struct vm_area_struct *vma, unsigned long address)
Adam Litke7893d1d2007-10-16 01:26:18 -0700757{
758 struct page *page;
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800759 unsigned int nid;
Adam Litke7893d1d2007-10-16 01:26:18 -0700760
Andi Kleenaa888a72008-07-23 21:27:47 -0700761 if (h->order >= MAX_ORDER)
762 return NULL;
763
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800764 /*
765 * Assume we will successfully allocate the surplus page to
766 * prevent racing processes from causing the surplus to exceed
767 * overcommit
768 *
769 * This however introduces a different race, where a process B
770 * tries to grow the static hugepage pool while alloc_pages() is
771 * called by process A. B will only examine the per-node
772 * counters in determining if surplus huge pages can be
773 * converted to normal huge pages in adjust_pool_surplus(). A
774 * won't be able to increment the per-node counter, until the
775 * lock is dropped by B, but B doesn't drop hugetlb_lock until
776 * no more huge pages can be converted from surplus to normal
777 * state (and doesn't try to convert again). Thus, we have a
778 * case where a surplus huge page exists, the pool is grown, and
779 * the surplus huge page still exists after, even though it
780 * should just have been converted to a normal huge page. This
781 * does not leak memory, though, as the hugepage will be freed
782 * once it is out of use. It also does not allow the counters to
783 * go out of whack in adjust_pool_surplus() as we don't modify
784 * the node values until we've gotten the hugepage and only the
785 * per-node value is checked there.
786 */
787 spin_lock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -0700788 if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages) {
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800789 spin_unlock(&hugetlb_lock);
790 return NULL;
791 } else {
Andi Kleena5516432008-07-23 21:27:41 -0700792 h->nr_huge_pages++;
793 h->surplus_huge_pages++;
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800794 }
795 spin_unlock(&hugetlb_lock);
796
Nishanth Aravamudan551883a2008-04-29 00:58:26 -0700797 page = alloc_pages(htlb_alloc_mask|__GFP_COMP|
798 __GFP_REPEAT|__GFP_NOWARN,
Andi Kleena5516432008-07-23 21:27:41 -0700799 huge_page_order(h));
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800800
Gerald Schaefercaff3a22008-08-12 15:08:38 -0700801 if (page && arch_prepare_hugepage(page)) {
802 __free_pages(page, huge_page_order(h));
803 return NULL;
804 }
805
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800806 spin_lock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700807 if (page) {
Adam Litke2668db92008-03-10 11:43:50 -0700808 /*
809 * This page is now managed by the hugetlb allocator and has
810 * no users -- drop the buddy allocator's reference.
811 */
812 put_page_testzero(page);
813 VM_BUG_ON(page_count(page));
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800814 nid = page_to_nid(page);
Adam Litke7893d1d2007-10-16 01:26:18 -0700815 set_compound_page_dtor(page, free_huge_page);
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800816 /*
817 * We incremented the global counters already
818 */
Andi Kleena5516432008-07-23 21:27:41 -0700819 h->nr_huge_pages_node[nid]++;
820 h->surplus_huge_pages_node[nid]++;
Adam Litke3b116302008-04-28 02:13:06 -0700821 __count_vm_event(HTLB_BUDDY_PGALLOC);
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800822 } else {
Andi Kleena5516432008-07-23 21:27:41 -0700823 h->nr_huge_pages--;
824 h->surplus_huge_pages--;
Adam Litke3b116302008-04-28 02:13:06 -0700825 __count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
Adam Litke7893d1d2007-10-16 01:26:18 -0700826 }
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800827 spin_unlock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700828
829 return page;
830}
831
Adam Litkee4e574b2007-10-16 01:26:19 -0700832/*
833 * Increase the hugetlb pool such that it can accomodate a reservation
834 * of size 'delta'.
835 */
Andi Kleena5516432008-07-23 21:27:41 -0700836static int gather_surplus_pages(struct hstate *h, int delta)
Adam Litkee4e574b2007-10-16 01:26:19 -0700837{
838 struct list_head surplus_list;
839 struct page *page, *tmp;
840 int ret, i;
841 int needed, allocated;
842
Andi Kleena5516432008-07-23 21:27:41 -0700843 needed = (h->resv_huge_pages + delta) - h->free_huge_pages;
Adam Litkeac09b3a2008-03-04 14:29:38 -0800844 if (needed <= 0) {
Andi Kleena5516432008-07-23 21:27:41 -0700845 h->resv_huge_pages += delta;
Adam Litkee4e574b2007-10-16 01:26:19 -0700846 return 0;
Adam Litkeac09b3a2008-03-04 14:29:38 -0800847 }
Adam Litkee4e574b2007-10-16 01:26:19 -0700848
849 allocated = 0;
850 INIT_LIST_HEAD(&surplus_list);
851
852 ret = -ENOMEM;
853retry:
854 spin_unlock(&hugetlb_lock);
855 for (i = 0; i < needed; i++) {
Andi Kleena5516432008-07-23 21:27:41 -0700856 page = alloc_buddy_huge_page(h, NULL, 0);
Adam Litkee4e574b2007-10-16 01:26:19 -0700857 if (!page) {
858 /*
859 * We were not able to allocate enough pages to
860 * satisfy the entire reservation so we free what
861 * we've allocated so far.
862 */
863 spin_lock(&hugetlb_lock);
864 needed = 0;
865 goto free;
866 }
867
868 list_add(&page->lru, &surplus_list);
869 }
870 allocated += needed;
871
872 /*
873 * After retaking hugetlb_lock, we need to recalculate 'needed'
874 * because either resv_huge_pages or free_huge_pages may have changed.
875 */
876 spin_lock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -0700877 needed = (h->resv_huge_pages + delta) -
878 (h->free_huge_pages + allocated);
Adam Litkee4e574b2007-10-16 01:26:19 -0700879 if (needed > 0)
880 goto retry;
881
882 /*
883 * The surplus_list now contains _at_least_ the number of extra pages
884 * needed to accomodate the reservation. Add the appropriate number
885 * of pages to the hugetlb pool and free the extras back to the buddy
Adam Litkeac09b3a2008-03-04 14:29:38 -0800886 * allocator. Commit the entire reservation here to prevent another
887 * process from stealing the pages as they are added to the pool but
888 * before they are reserved.
Adam Litkee4e574b2007-10-16 01:26:19 -0700889 */
890 needed += allocated;
Andi Kleena5516432008-07-23 21:27:41 -0700891 h->resv_huge_pages += delta;
Adam Litkee4e574b2007-10-16 01:26:19 -0700892 ret = 0;
893free:
Adam Litke19fc3f02008-04-28 02:12:20 -0700894 /* Free the needed pages to the hugetlb pool */
Adam Litkee4e574b2007-10-16 01:26:19 -0700895 list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
Adam Litke19fc3f02008-04-28 02:12:20 -0700896 if ((--needed) < 0)
897 break;
Adam Litkee4e574b2007-10-16 01:26:19 -0700898 list_del(&page->lru);
Andi Kleena5516432008-07-23 21:27:41 -0700899 enqueue_huge_page(h, page);
Adam Litke19fc3f02008-04-28 02:12:20 -0700900 }
901
902 /* Free unnecessary surplus pages to the buddy allocator */
903 if (!list_empty(&surplus_list)) {
904 spin_unlock(&hugetlb_lock);
905 list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
906 list_del(&page->lru);
Adam Litkeaf767cb2007-10-16 01:26:25 -0700907 /*
Adam Litke2668db92008-03-10 11:43:50 -0700908 * The page has a reference count of zero already, so
909 * call free_huge_page directly instead of using
910 * put_page. This must be done with hugetlb_lock
Adam Litkeaf767cb2007-10-16 01:26:25 -0700911 * unlocked which is safe because free_huge_page takes
912 * hugetlb_lock before deciding how to free the page.
913 */
Adam Litke2668db92008-03-10 11:43:50 -0700914 free_huge_page(page);
Adam Litkeaf767cb2007-10-16 01:26:25 -0700915 }
Adam Litke19fc3f02008-04-28 02:12:20 -0700916 spin_lock(&hugetlb_lock);
Adam Litkee4e574b2007-10-16 01:26:19 -0700917 }
918
919 return ret;
920}
921
922/*
923 * When releasing a hugetlb pool reservation, any surplus pages that were
924 * allocated to satisfy the reservation must be explicitly freed if they were
925 * never used.
Lee Schermerhorn685f3452009-09-21 17:01:23 -0700926 * Called with hugetlb_lock held.
Adam Litkee4e574b2007-10-16 01:26:19 -0700927 */
Andi Kleena5516432008-07-23 21:27:41 -0700928static void return_unused_surplus_pages(struct hstate *h,
929 unsigned long unused_resv_pages)
Adam Litkee4e574b2007-10-16 01:26:19 -0700930{
Adam Litkee4e574b2007-10-16 01:26:19 -0700931 unsigned long nr_pages;
932
Adam Litkeac09b3a2008-03-04 14:29:38 -0800933 /* Uncommit the reservation */
Andi Kleena5516432008-07-23 21:27:41 -0700934 h->resv_huge_pages -= unused_resv_pages;
Adam Litkeac09b3a2008-03-04 14:29:38 -0800935
Andi Kleenaa888a72008-07-23 21:27:47 -0700936 /* Cannot return gigantic pages currently */
937 if (h->order >= MAX_ORDER)
938 return;
939
Andi Kleena5516432008-07-23 21:27:41 -0700940 nr_pages = min(unused_resv_pages, h->surplus_huge_pages);
Adam Litkee4e574b2007-10-16 01:26:19 -0700941
Lee Schermerhorn685f3452009-09-21 17:01:23 -0700942 /*
943 * We want to release as many surplus pages as possible, spread
944 * evenly across all nodes. Iterate across all nodes until we
945 * can no longer free unreserved surplus pages. This occurs when
946 * the nodes with surplus pages have no free pages.
947 * free_pool_huge_page() will balance the the frees across the
948 * on-line nodes for us and will handle the hstate accounting.
949 */
950 while (nr_pages--) {
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -0800951 if (!free_pool_huge_page(h, &node_online_map, 1))
Lee Schermerhorn685f3452009-09-21 17:01:23 -0700952 break;
Adam Litkee4e574b2007-10-16 01:26:19 -0700953 }
954}
955
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700956/*
957 * Determine if the huge page at addr within the vma has an associated
958 * reservation. Where it does not we will need to logically increase
959 * reservation and actually increase quota before an allocation can occur.
960 * Where any new reservation would be required the reservation change is
961 * prepared, but not committed. Once the page has been quota'd allocated
962 * an instantiated the change should be committed via vma_commit_reservation.
963 * No action is required on failure.
964 */
Roel Kluine2f17d92009-03-31 15:23:15 -0700965static long vma_needs_reservation(struct hstate *h,
Andi Kleena5516432008-07-23 21:27:41 -0700966 struct vm_area_struct *vma, unsigned long addr)
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700967{
968 struct address_space *mapping = vma->vm_file->f_mapping;
969 struct inode *inode = mapping->host;
970
Mel Gormanf83a2752009-05-28 14:34:40 -0700971 if (vma->vm_flags & VM_MAYSHARE) {
Andi Kleena5516432008-07-23 21:27:41 -0700972 pgoff_t idx = vma_hugecache_offset(h, vma, addr);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700973 return region_chg(&inode->i_mapping->private_list,
974 idx, idx + 1);
975
Andy Whitcroft84afd992008-07-23 21:27:32 -0700976 } else if (!is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
977 return 1;
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700978
Andy Whitcroft84afd992008-07-23 21:27:32 -0700979 } else {
Roel Kluine2f17d92009-03-31 15:23:15 -0700980 long err;
Andi Kleena5516432008-07-23 21:27:41 -0700981 pgoff_t idx = vma_hugecache_offset(h, vma, addr);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700982 struct resv_map *reservations = vma_resv_map(vma);
983
984 err = region_chg(&reservations->regions, idx, idx + 1);
985 if (err < 0)
986 return err;
987 return 0;
988 }
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700989}
Andi Kleena5516432008-07-23 21:27:41 -0700990static void vma_commit_reservation(struct hstate *h,
991 struct vm_area_struct *vma, unsigned long addr)
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700992{
993 struct address_space *mapping = vma->vm_file->f_mapping;
994 struct inode *inode = mapping->host;
995
Mel Gormanf83a2752009-05-28 14:34:40 -0700996 if (vma->vm_flags & VM_MAYSHARE) {
Andi Kleena5516432008-07-23 21:27:41 -0700997 pgoff_t idx = vma_hugecache_offset(h, vma, addr);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700998 region_add(&inode->i_mapping->private_list, idx, idx + 1);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700999
1000 } else if (is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
Andi Kleena5516432008-07-23 21:27:41 -07001001 pgoff_t idx = vma_hugecache_offset(h, vma, addr);
Andy Whitcroft84afd992008-07-23 21:27:32 -07001002 struct resv_map *reservations = vma_resv_map(vma);
1003
1004 /* Mark this page used in the map. */
1005 region_add(&reservations->regions, idx, idx + 1);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07001006 }
1007}
1008
David Gibson27a85ef2006-03-22 00:08:56 -08001009static struct page *alloc_huge_page(struct vm_area_struct *vma,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001010 unsigned long addr, int avoid_reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
Andi Kleena5516432008-07-23 21:27:41 -07001012 struct hstate *h = hstate_vma(vma);
Adam Litke348ea202007-11-14 16:59:37 -08001013 struct page *page;
Adam Litke2fc39ce2007-11-14 16:59:39 -08001014 struct address_space *mapping = vma->vm_file->f_mapping;
Mel Gormana1e78772008-07-23 21:27:23 -07001015 struct inode *inode = mapping->host;
Roel Kluine2f17d92009-03-31 15:23:15 -07001016 long chg;
Adam Litke2fc39ce2007-11-14 16:59:39 -08001017
Mel Gormana1e78772008-07-23 21:27:23 -07001018 /*
1019 * Processes that did not create the mapping will have no reserves and
1020 * will not have accounted against quota. Check that the quota can be
1021 * made before satisfying the allocation
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07001022 * MAP_NORESERVE mappings may also need pages and quota allocated
1023 * if no reserve mapping overlaps.
Mel Gormana1e78772008-07-23 21:27:23 -07001024 */
Andi Kleena5516432008-07-23 21:27:41 -07001025 chg = vma_needs_reservation(h, vma, addr);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07001026 if (chg < 0)
1027 return ERR_PTR(chg);
1028 if (chg)
Mel Gormana1e78772008-07-23 21:27:23 -07001029 if (hugetlb_get_quota(inode->i_mapping, chg))
1030 return ERR_PTR(-ENOSPC);
Mel Gormana1e78772008-07-23 21:27:23 -07001031
1032 spin_lock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -07001033 page = dequeue_huge_page_vma(h, vma, addr, avoid_reserve);
Mel Gormana1e78772008-07-23 21:27:23 -07001034 spin_unlock(&hugetlb_lock);
1035
1036 if (!page) {
Andi Kleena5516432008-07-23 21:27:41 -07001037 page = alloc_buddy_huge_page(h, vma, addr);
Mel Gormana1e78772008-07-23 21:27:23 -07001038 if (!page) {
1039 hugetlb_put_quota(inode->i_mapping, chg);
1040 return ERR_PTR(-VM_FAULT_OOM);
1041 }
1042 }
1043
1044 set_page_refcounted(page);
1045 set_page_private(page, (unsigned long) mapping);
1046
Andi Kleena5516432008-07-23 21:27:41 -07001047 vma_commit_reservation(h, vma, addr);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07001048
Adam Litke90d8b7e2007-11-14 16:59:42 -08001049 return page;
David Gibsonb45b5bd2006-03-22 00:08:55 -08001050}
1051
Cyrill Gorcunov91f47662009-01-06 14:40:33 -08001052int __weak alloc_bootmem_huge_page(struct hstate *h)
Andi Kleenaa888a72008-07-23 21:27:47 -07001053{
1054 struct huge_bootmem_page *m;
1055 int nr_nodes = nodes_weight(node_online_map);
1056
1057 while (nr_nodes) {
1058 void *addr;
1059
1060 addr = __alloc_bootmem_node_nopanic(
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08001061 NODE_DATA(hstate_next_node_to_alloc(h,
1062 &node_online_map)),
Andi Kleenaa888a72008-07-23 21:27:47 -07001063 huge_page_size(h), huge_page_size(h), 0);
1064
1065 if (addr) {
1066 /*
1067 * Use the beginning of the huge page to store the
1068 * huge_bootmem_page struct (until gather_bootmem
1069 * puts them into the mem_map).
1070 */
1071 m = addr;
Cyrill Gorcunov91f47662009-01-06 14:40:33 -08001072 goto found;
Andi Kleenaa888a72008-07-23 21:27:47 -07001073 }
Andi Kleenaa888a72008-07-23 21:27:47 -07001074 nr_nodes--;
1075 }
1076 return 0;
1077
1078found:
1079 BUG_ON((unsigned long)virt_to_phys(m) & (huge_page_size(h) - 1));
1080 /* Put them into a private list first because mem_map is not up yet */
1081 list_add(&m->list, &huge_boot_pages);
1082 m->hstate = h;
1083 return 1;
1084}
1085
Andy Whitcroft18229df2008-11-06 12:53:27 -08001086static void prep_compound_huge_page(struct page *page, int order)
1087{
1088 if (unlikely(order > (MAX_ORDER - 1)))
1089 prep_compound_gigantic_page(page, order);
1090 else
1091 prep_compound_page(page, order);
1092}
1093
Andi Kleenaa888a72008-07-23 21:27:47 -07001094/* Put bootmem huge pages into the standard lists after mem_map is up */
1095static void __init gather_bootmem_prealloc(void)
1096{
1097 struct huge_bootmem_page *m;
1098
1099 list_for_each_entry(m, &huge_boot_pages, list) {
1100 struct page *page = virt_to_page(m);
1101 struct hstate *h = m->hstate;
1102 __ClearPageReserved(page);
1103 WARN_ON(page_count(page) != 1);
Andy Whitcroft18229df2008-11-06 12:53:27 -08001104 prep_compound_huge_page(page, h->order);
Andi Kleenaa888a72008-07-23 21:27:47 -07001105 prep_new_huge_page(h, page, page_to_nid(page));
1106 }
1107}
1108
Andi Kleen8faa8b02008-07-23 21:27:48 -07001109static void __init hugetlb_hstate_alloc_pages(struct hstate *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
1111 unsigned long i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Andi Kleene5ff2152008-07-23 21:27:42 -07001113 for (i = 0; i < h->max_huge_pages; ++i) {
Andi Kleenaa888a72008-07-23 21:27:47 -07001114 if (h->order >= MAX_ORDER) {
1115 if (!alloc_bootmem_huge_page(h))
1116 break;
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08001117 } else if (!alloc_fresh_huge_page(h, &node_online_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
Andi Kleen8faa8b02008-07-23 21:27:48 -07001120 h->max_huge_pages = i;
Andi Kleene5ff2152008-07-23 21:27:42 -07001121}
1122
1123static void __init hugetlb_init_hstates(void)
1124{
1125 struct hstate *h;
1126
1127 for_each_hstate(h) {
Andi Kleen8faa8b02008-07-23 21:27:48 -07001128 /* oversize hugepages were init'ed in early boot */
1129 if (h->order < MAX_ORDER)
1130 hugetlb_hstate_alloc_pages(h);
Andi Kleene5ff2152008-07-23 21:27:42 -07001131 }
1132}
1133
Andi Kleen4abd32d2008-07-23 21:27:49 -07001134static char * __init memfmt(char *buf, unsigned long n)
1135{
1136 if (n >= (1UL << 30))
1137 sprintf(buf, "%lu GB", n >> 30);
1138 else if (n >= (1UL << 20))
1139 sprintf(buf, "%lu MB", n >> 20);
1140 else
1141 sprintf(buf, "%lu KB", n >> 10);
1142 return buf;
1143}
1144
Andi Kleene5ff2152008-07-23 21:27:42 -07001145static void __init report_hugepages(void)
1146{
1147 struct hstate *h;
1148
1149 for_each_hstate(h) {
Andi Kleen4abd32d2008-07-23 21:27:49 -07001150 char buf[32];
1151 printk(KERN_INFO "HugeTLB registered %s page size, "
1152 "pre-allocated %ld pages\n",
1153 memfmt(buf, huge_page_size(h)),
1154 h->free_huge_pages);
Andi Kleene5ff2152008-07-23 21:27:42 -07001155 }
1156}
1157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158#ifdef CONFIG_HIGHMEM
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08001159static void try_to_free_low(struct hstate *h, unsigned long count,
1160 nodemask_t *nodes_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
Christoph Lameter4415cc82006-09-25 23:31:55 -07001162 int i;
1163
Andi Kleenaa888a72008-07-23 21:27:47 -07001164 if (h->order >= MAX_ORDER)
1165 return;
1166
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08001167 for_each_node_mask(i, *nodes_allowed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 struct page *page, *next;
Andi Kleena5516432008-07-23 21:27:41 -07001169 struct list_head *freel = &h->hugepage_freelists[i];
1170 list_for_each_entry_safe(page, next, freel, lru) {
1171 if (count >= h->nr_huge_pages)
Adam Litke6b0c8802007-10-16 01:26:23 -07001172 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 if (PageHighMem(page))
1174 continue;
1175 list_del(&page->lru);
Andi Kleene5ff2152008-07-23 21:27:42 -07001176 update_and_free_page(h, page);
Andi Kleena5516432008-07-23 21:27:41 -07001177 h->free_huge_pages--;
1178 h->free_huge_pages_node[page_to_nid(page)]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
1180 }
1181}
1182#else
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08001183static inline void try_to_free_low(struct hstate *h, unsigned long count,
1184 nodemask_t *nodes_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
1186}
1187#endif
1188
Wu Fengguang20a03072009-06-16 15:32:22 -07001189/*
1190 * Increment or decrement surplus_huge_pages. Keep node-specific counters
1191 * balanced by operating on them in a round-robin fashion.
1192 * Returns 1 if an adjustment was made.
1193 */
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08001194static int adjust_pool_surplus(struct hstate *h, nodemask_t *nodes_allowed,
1195 int delta)
Wu Fengguang20a03072009-06-16 15:32:22 -07001196{
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001197 int start_nid, next_nid;
Wu Fengguang20a03072009-06-16 15:32:22 -07001198 int ret = 0;
1199
1200 VM_BUG_ON(delta != -1 && delta != 1);
Wu Fengguang20a03072009-06-16 15:32:22 -07001201
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001202 if (delta < 0)
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08001203 start_nid = hstate_next_node_to_alloc(h, nodes_allowed);
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001204 else
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08001205 start_nid = hstate_next_node_to_free(h, nodes_allowed);
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001206 next_nid = start_nid;
1207
1208 do {
1209 int nid = next_nid;
1210 if (delta < 0) {
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001211 /*
1212 * To shrink on this node, there must be a surplus page
1213 */
Lee Schermerhorn9a76db02009-12-14 17:58:15 -08001214 if (!h->surplus_huge_pages_node[nid]) {
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08001215 next_nid = hstate_next_node_to_alloc(h,
1216 nodes_allowed);
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001217 continue;
Lee Schermerhorn9a76db02009-12-14 17:58:15 -08001218 }
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001219 }
1220 if (delta > 0) {
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001221 /*
1222 * Surplus cannot exceed the total number of pages
1223 */
1224 if (h->surplus_huge_pages_node[nid] >=
Lee Schermerhorn9a76db02009-12-14 17:58:15 -08001225 h->nr_huge_pages_node[nid]) {
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08001226 next_nid = hstate_next_node_to_free(h,
1227 nodes_allowed);
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001228 continue;
Lee Schermerhorn9a76db02009-12-14 17:58:15 -08001229 }
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001230 }
Wu Fengguang20a03072009-06-16 15:32:22 -07001231
1232 h->surplus_huge_pages += delta;
1233 h->surplus_huge_pages_node[nid] += delta;
1234 ret = 1;
1235 break;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001236 } while (next_nid != start_nid);
Wu Fengguang20a03072009-06-16 15:32:22 -07001237
Wu Fengguang20a03072009-06-16 15:32:22 -07001238 return ret;
1239}
1240
Andi Kleena5516432008-07-23 21:27:41 -07001241#define persistent_huge_pages(h) (h->nr_huge_pages - h->surplus_huge_pages)
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08001242static unsigned long set_max_huge_pages(struct hstate *h, unsigned long count,
1243 nodemask_t *nodes_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
Adam Litke7893d1d2007-10-16 01:26:18 -07001245 unsigned long min_count, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Andi Kleenaa888a72008-07-23 21:27:47 -07001247 if (h->order >= MAX_ORDER)
1248 return h->max_huge_pages;
1249
Adam Litke7893d1d2007-10-16 01:26:18 -07001250 /*
1251 * Increase the pool size
1252 * First take pages out of surplus state. Then make up the
1253 * remaining difference by allocating fresh huge pages.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001254 *
1255 * We might race with alloc_buddy_huge_page() here and be unable
1256 * to convert a surplus huge page to a normal huge page. That is
1257 * not critical, though, it just means the overall size of the
1258 * pool might be one hugepage larger than it needs to be, but
1259 * within all the constraints specified by the sysctls.
Adam Litke7893d1d2007-10-16 01:26:18 -07001260 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 spin_lock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -07001262 while (h->surplus_huge_pages && count > persistent_huge_pages(h)) {
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08001263 if (!adjust_pool_surplus(h, nodes_allowed, -1))
Adam Litke7893d1d2007-10-16 01:26:18 -07001264 break;
1265 }
1266
Andi Kleena5516432008-07-23 21:27:41 -07001267 while (count > persistent_huge_pages(h)) {
Adam Litke7893d1d2007-10-16 01:26:18 -07001268 /*
1269 * If this allocation races such that we no longer need the
1270 * page, free_huge_page will handle it by freeing the page
1271 * and reducing the surplus.
1272 */
1273 spin_unlock(&hugetlb_lock);
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08001274 ret = alloc_fresh_huge_page(h, nodes_allowed);
Adam Litke7893d1d2007-10-16 01:26:18 -07001275 spin_lock(&hugetlb_lock);
1276 if (!ret)
1277 goto out;
1278
1279 }
Adam Litke7893d1d2007-10-16 01:26:18 -07001280
1281 /*
1282 * Decrease the pool size
1283 * First return free pages to the buddy allocator (being careful
1284 * to keep enough around to satisfy reservations). Then place
1285 * pages into surplus state as needed so the pool will shrink
1286 * to the desired size as pages become free.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001287 *
1288 * By placing pages into the surplus state independent of the
1289 * overcommit value, we are allowing the surplus pool size to
1290 * exceed overcommit. There are few sane options here. Since
1291 * alloc_buddy_huge_page() is checking the global counter,
1292 * though, we'll note that we're not allowed to exceed surplus
1293 * and won't grow the pool anywhere else. Not until one of the
1294 * sysctls are changed, or the surplus pages go out of use.
Adam Litke7893d1d2007-10-16 01:26:18 -07001295 */
Andi Kleena5516432008-07-23 21:27:41 -07001296 min_count = h->resv_huge_pages + h->nr_huge_pages - h->free_huge_pages;
Adam Litke6b0c8802007-10-16 01:26:23 -07001297 min_count = max(count, min_count);
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08001298 try_to_free_low(h, min_count, nodes_allowed);
Andi Kleena5516432008-07-23 21:27:41 -07001299 while (min_count < persistent_huge_pages(h)) {
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08001300 if (!free_pool_huge_page(h, nodes_allowed, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
Andi Kleena5516432008-07-23 21:27:41 -07001303 while (count < persistent_huge_pages(h)) {
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08001304 if (!adjust_pool_surplus(h, nodes_allowed, 1))
Adam Litke7893d1d2007-10-16 01:26:18 -07001305 break;
1306 }
1307out:
Andi Kleena5516432008-07-23 21:27:41 -07001308 ret = persistent_huge_pages(h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 spin_unlock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -07001310 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311}
1312
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001313#define HSTATE_ATTR_RO(_name) \
1314 static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
1315
1316#define HSTATE_ATTR(_name) \
1317 static struct kobj_attribute _name##_attr = \
1318 __ATTR(_name, 0644, _name##_show, _name##_store)
1319
1320static struct kobject *hugepages_kobj;
1321static struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
1322
1323static struct hstate *kobj_to_hstate(struct kobject *kobj)
1324{
1325 int i;
1326 for (i = 0; i < HUGE_MAX_HSTATE; i++)
1327 if (hstate_kobjs[i] == kobj)
1328 return &hstates[i];
1329 BUG();
1330 return NULL;
1331}
1332
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001333static ssize_t nr_hugepages_show_common(struct kobject *kobj,
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001334 struct kobj_attribute *attr, char *buf)
1335{
1336 struct hstate *h = kobj_to_hstate(kobj);
1337 return sprintf(buf, "%lu\n", h->nr_huge_pages);
1338}
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001339static ssize_t nr_hugepages_store_common(bool obey_mempolicy,
1340 struct kobject *kobj, struct kobj_attribute *attr,
1341 const char *buf, size_t len)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001342{
1343 int err;
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001344 unsigned long count;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001345 struct hstate *h = kobj_to_hstate(kobj);
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001346 NODEMASK_ALLOC(nodemask_t, nodes_allowed);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001347
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001348 err = strict_strtoul(buf, 10, &count);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001349 if (err)
1350 return 0;
1351
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001352 if (!(obey_mempolicy && init_nodemask_of_mempolicy(nodes_allowed))) {
1353 NODEMASK_FREE(nodes_allowed);
1354 nodes_allowed = &node_online_map;
1355 }
1356 h->max_huge_pages = set_max_huge_pages(h, count, nodes_allowed);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001357
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001358 if (nodes_allowed != &node_online_map)
1359 NODEMASK_FREE(nodes_allowed);
1360
1361 return len;
1362}
1363
1364static ssize_t nr_hugepages_show(struct kobject *kobj,
1365 struct kobj_attribute *attr, char *buf)
1366{
1367 return nr_hugepages_show_common(kobj, attr, buf);
1368}
1369
1370static ssize_t nr_hugepages_store(struct kobject *kobj,
1371 struct kobj_attribute *attr, const char *buf, size_t len)
1372{
1373 return nr_hugepages_store_common(false, kobj, attr, buf, len);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001374}
1375HSTATE_ATTR(nr_hugepages);
1376
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001377#ifdef CONFIG_NUMA
1378
1379/*
1380 * hstate attribute for optionally mempolicy-based constraint on persistent
1381 * huge page alloc/free.
1382 */
1383static ssize_t nr_hugepages_mempolicy_show(struct kobject *kobj,
1384 struct kobj_attribute *attr, char *buf)
1385{
1386 return nr_hugepages_show_common(kobj, attr, buf);
1387}
1388
1389static ssize_t nr_hugepages_mempolicy_store(struct kobject *kobj,
1390 struct kobj_attribute *attr, const char *buf, size_t len)
1391{
1392 return nr_hugepages_store_common(true, kobj, attr, buf, len);
1393}
1394HSTATE_ATTR(nr_hugepages_mempolicy);
1395#endif
1396
1397
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001398static ssize_t nr_overcommit_hugepages_show(struct kobject *kobj,
1399 struct kobj_attribute *attr, char *buf)
1400{
1401 struct hstate *h = kobj_to_hstate(kobj);
1402 return sprintf(buf, "%lu\n", h->nr_overcommit_huge_pages);
1403}
1404static ssize_t nr_overcommit_hugepages_store(struct kobject *kobj,
1405 struct kobj_attribute *attr, const char *buf, size_t count)
1406{
1407 int err;
1408 unsigned long input;
1409 struct hstate *h = kobj_to_hstate(kobj);
1410
1411 err = strict_strtoul(buf, 10, &input);
1412 if (err)
1413 return 0;
1414
1415 spin_lock(&hugetlb_lock);
1416 h->nr_overcommit_huge_pages = input;
1417 spin_unlock(&hugetlb_lock);
1418
1419 return count;
1420}
1421HSTATE_ATTR(nr_overcommit_hugepages);
1422
1423static ssize_t free_hugepages_show(struct kobject *kobj,
1424 struct kobj_attribute *attr, char *buf)
1425{
1426 struct hstate *h = kobj_to_hstate(kobj);
1427 return sprintf(buf, "%lu\n", h->free_huge_pages);
1428}
1429HSTATE_ATTR_RO(free_hugepages);
1430
1431static ssize_t resv_hugepages_show(struct kobject *kobj,
1432 struct kobj_attribute *attr, char *buf)
1433{
1434 struct hstate *h = kobj_to_hstate(kobj);
1435 return sprintf(buf, "%lu\n", h->resv_huge_pages);
1436}
1437HSTATE_ATTR_RO(resv_hugepages);
1438
1439static ssize_t surplus_hugepages_show(struct kobject *kobj,
1440 struct kobj_attribute *attr, char *buf)
1441{
1442 struct hstate *h = kobj_to_hstate(kobj);
1443 return sprintf(buf, "%lu\n", h->surplus_huge_pages);
1444}
1445HSTATE_ATTR_RO(surplus_hugepages);
1446
1447static struct attribute *hstate_attrs[] = {
1448 &nr_hugepages_attr.attr,
1449 &nr_overcommit_hugepages_attr.attr,
1450 &free_hugepages_attr.attr,
1451 &resv_hugepages_attr.attr,
1452 &surplus_hugepages_attr.attr,
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001453#ifdef CONFIG_NUMA
1454 &nr_hugepages_mempolicy_attr.attr,
1455#endif
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001456 NULL,
1457};
1458
1459static struct attribute_group hstate_attr_group = {
1460 .attrs = hstate_attrs,
1461};
1462
1463static int __init hugetlb_sysfs_add_hstate(struct hstate *h)
1464{
1465 int retval;
1466
1467 hstate_kobjs[h - hstates] = kobject_create_and_add(h->name,
1468 hugepages_kobj);
1469 if (!hstate_kobjs[h - hstates])
1470 return -ENOMEM;
1471
1472 retval = sysfs_create_group(hstate_kobjs[h - hstates],
1473 &hstate_attr_group);
1474 if (retval)
1475 kobject_put(hstate_kobjs[h - hstates]);
1476
1477 return retval;
1478}
1479
1480static void __init hugetlb_sysfs_init(void)
1481{
1482 struct hstate *h;
1483 int err;
1484
1485 hugepages_kobj = kobject_create_and_add("hugepages", mm_kobj);
1486 if (!hugepages_kobj)
1487 return;
1488
1489 for_each_hstate(h) {
1490 err = hugetlb_sysfs_add_hstate(h);
1491 if (err)
1492 printk(KERN_ERR "Hugetlb: Unable to add hstate %s",
1493 h->name);
1494 }
1495}
1496
1497static void __exit hugetlb_exit(void)
1498{
1499 struct hstate *h;
1500
1501 for_each_hstate(h) {
1502 kobject_put(hstate_kobjs[h - hstates]);
1503 }
1504
1505 kobject_put(hugepages_kobj);
1506}
1507module_exit(hugetlb_exit);
1508
1509static int __init hugetlb_init(void)
1510{
Benjamin Herrenschmidt0ef89d22008-07-31 00:07:30 -07001511 /* Some platform decide whether they support huge pages at boot
1512 * time. On these, such as powerpc, HPAGE_SHIFT is set to 0 when
1513 * there is no such support
1514 */
1515 if (HPAGE_SHIFT == 0)
1516 return 0;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001517
Nick Piggine11bfbf2008-07-23 21:27:52 -07001518 if (!size_to_hstate(default_hstate_size)) {
1519 default_hstate_size = HPAGE_SIZE;
1520 if (!size_to_hstate(default_hstate_size))
1521 hugetlb_add_hstate(HUGETLB_PAGE_ORDER);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001522 }
Nick Piggine11bfbf2008-07-23 21:27:52 -07001523 default_hstate_idx = size_to_hstate(default_hstate_size) - hstates;
1524 if (default_hstate_max_huge_pages)
1525 default_hstate.max_huge_pages = default_hstate_max_huge_pages;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001526
1527 hugetlb_init_hstates();
1528
Andi Kleenaa888a72008-07-23 21:27:47 -07001529 gather_bootmem_prealloc();
1530
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001531 report_hugepages();
1532
1533 hugetlb_sysfs_init();
1534
1535 return 0;
1536}
1537module_init(hugetlb_init);
1538
1539/* Should be called on processing a hugepagesz=... option */
1540void __init hugetlb_add_hstate(unsigned order)
1541{
1542 struct hstate *h;
Andi Kleen8faa8b02008-07-23 21:27:48 -07001543 unsigned long i;
1544
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001545 if (size_to_hstate(PAGE_SIZE << order)) {
1546 printk(KERN_WARNING "hugepagesz= specified twice, ignoring\n");
1547 return;
1548 }
1549 BUG_ON(max_hstate >= HUGE_MAX_HSTATE);
1550 BUG_ON(order == 0);
1551 h = &hstates[max_hstate++];
1552 h->order = order;
1553 h->mask = ~((1ULL << (order + PAGE_SHIFT)) - 1);
Andi Kleen8faa8b02008-07-23 21:27:48 -07001554 h->nr_huge_pages = 0;
1555 h->free_huge_pages = 0;
1556 for (i = 0; i < MAX_NUMNODES; ++i)
1557 INIT_LIST_HEAD(&h->hugepage_freelists[i]);
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07001558 h->next_nid_to_alloc = first_node(node_online_map);
1559 h->next_nid_to_free = first_node(node_online_map);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001560 snprintf(h->name, HSTATE_NAME_LEN, "hugepages-%lukB",
1561 huge_page_size(h)/1024);
Andi Kleen8faa8b02008-07-23 21:27:48 -07001562
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001563 parsed_hstate = h;
1564}
1565
Nick Piggine11bfbf2008-07-23 21:27:52 -07001566static int __init hugetlb_nrpages_setup(char *s)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001567{
1568 unsigned long *mhp;
Andi Kleen8faa8b02008-07-23 21:27:48 -07001569 static unsigned long *last_mhp;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001570
1571 /*
1572 * !max_hstate means we haven't parsed a hugepagesz= parameter yet,
1573 * so this hugepages= parameter goes to the "default hstate".
1574 */
1575 if (!max_hstate)
1576 mhp = &default_hstate_max_huge_pages;
1577 else
1578 mhp = &parsed_hstate->max_huge_pages;
1579
Andi Kleen8faa8b02008-07-23 21:27:48 -07001580 if (mhp == last_mhp) {
1581 printk(KERN_WARNING "hugepages= specified twice without "
1582 "interleaving hugepagesz=, ignoring\n");
1583 return 1;
1584 }
1585
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001586 if (sscanf(s, "%lu", mhp) <= 0)
1587 *mhp = 0;
1588
Andi Kleen8faa8b02008-07-23 21:27:48 -07001589 /*
1590 * Global state is always initialized later in hugetlb_init.
1591 * But we need to allocate >= MAX_ORDER hstates here early to still
1592 * use the bootmem allocator.
1593 */
1594 if (max_hstate && parsed_hstate->order >= MAX_ORDER)
1595 hugetlb_hstate_alloc_pages(parsed_hstate);
1596
1597 last_mhp = mhp;
1598
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001599 return 1;
1600}
Nick Piggine11bfbf2008-07-23 21:27:52 -07001601__setup("hugepages=", hugetlb_nrpages_setup);
1602
1603static int __init hugetlb_default_setup(char *s)
1604{
1605 default_hstate_size = memparse(s, &s);
1606 return 1;
1607}
1608__setup("default_hugepagesz=", hugetlb_default_setup);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001609
Nishanth Aravamudan8a213462008-07-25 19:44:37 -07001610static unsigned int cpuset_mems_nr(unsigned int *array)
1611{
1612 int node;
1613 unsigned int nr = 0;
1614
1615 for_each_node_mask(node, cpuset_current_mems_allowed)
1616 nr += array[node];
1617
1618 return nr;
1619}
1620
1621#ifdef CONFIG_SYSCTL
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001622static int hugetlb_sysctl_handler_common(bool obey_mempolicy,
1623 struct ctl_table *table, int write,
1624 void __user *buffer, size_t *length, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625{
Andi Kleene5ff2152008-07-23 21:27:42 -07001626 struct hstate *h = &default_hstate;
1627 unsigned long tmp;
1628
1629 if (!write)
1630 tmp = h->max_huge_pages;
1631
1632 table->data = &tmp;
1633 table->maxlen = sizeof(unsigned long);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001634 proc_doulongvec_minmax(table, write, buffer, length, ppos);
Andi Kleene5ff2152008-07-23 21:27:42 -07001635
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001636 if (write) {
1637 NODEMASK_ALLOC(nodemask_t, nodes_allowed);
1638 if (!(obey_mempolicy &&
1639 init_nodemask_of_mempolicy(nodes_allowed))) {
1640 NODEMASK_FREE(nodes_allowed);
1641 nodes_allowed = &node_states[N_HIGH_MEMORY];
1642 }
1643 h->max_huge_pages = set_max_huge_pages(h, tmp, nodes_allowed);
1644
1645 if (nodes_allowed != &node_states[N_HIGH_MEMORY])
1646 NODEMASK_FREE(nodes_allowed);
1647 }
Andi Kleene5ff2152008-07-23 21:27:42 -07001648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 return 0;
1650}
Mel Gorman396faf02007-07-17 04:03:13 -07001651
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001652int hugetlb_sysctl_handler(struct ctl_table *table, int write,
1653 void __user *buffer, size_t *length, loff_t *ppos)
1654{
1655
1656 return hugetlb_sysctl_handler_common(false, table, write,
1657 buffer, length, ppos);
1658}
1659
1660#ifdef CONFIG_NUMA
1661int hugetlb_mempolicy_sysctl_handler(struct ctl_table *table, int write,
1662 void __user *buffer, size_t *length, loff_t *ppos)
1663{
1664 return hugetlb_sysctl_handler_common(true, table, write,
1665 buffer, length, ppos);
1666}
1667#endif /* CONFIG_NUMA */
1668
Mel Gorman396faf02007-07-17 04:03:13 -07001669int hugetlb_treat_movable_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001670 void __user *buffer,
Mel Gorman396faf02007-07-17 04:03:13 -07001671 size_t *length, loff_t *ppos)
1672{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001673 proc_dointvec(table, write, buffer, length, ppos);
Mel Gorman396faf02007-07-17 04:03:13 -07001674 if (hugepages_treat_as_movable)
1675 htlb_alloc_mask = GFP_HIGHUSER_MOVABLE;
1676 else
1677 htlb_alloc_mask = GFP_HIGHUSER;
1678 return 0;
1679}
1680
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08001681int hugetlb_overcommit_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001682 void __user *buffer,
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08001683 size_t *length, loff_t *ppos)
1684{
Andi Kleena5516432008-07-23 21:27:41 -07001685 struct hstate *h = &default_hstate;
Andi Kleene5ff2152008-07-23 21:27:42 -07001686 unsigned long tmp;
1687
1688 if (!write)
1689 tmp = h->nr_overcommit_huge_pages;
1690
1691 table->data = &tmp;
1692 table->maxlen = sizeof(unsigned long);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001693 proc_doulongvec_minmax(table, write, buffer, length, ppos);
Andi Kleene5ff2152008-07-23 21:27:42 -07001694
1695 if (write) {
1696 spin_lock(&hugetlb_lock);
1697 h->nr_overcommit_huge_pages = tmp;
1698 spin_unlock(&hugetlb_lock);
1699 }
1700
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08001701 return 0;
1702}
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704#endif /* CONFIG_SYSCTL */
1705
Alexey Dobriyane1759c22008-10-15 23:50:22 +04001706void hugetlb_report_meminfo(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707{
Andi Kleena5516432008-07-23 21:27:41 -07001708 struct hstate *h = &default_hstate;
Alexey Dobriyane1759c22008-10-15 23:50:22 +04001709 seq_printf(m,
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001710 "HugePages_Total: %5lu\n"
1711 "HugePages_Free: %5lu\n"
1712 "HugePages_Rsvd: %5lu\n"
1713 "HugePages_Surp: %5lu\n"
1714 "Hugepagesize: %8lu kB\n",
Andi Kleena5516432008-07-23 21:27:41 -07001715 h->nr_huge_pages,
1716 h->free_huge_pages,
1717 h->resv_huge_pages,
1718 h->surplus_huge_pages,
1719 1UL << (huge_page_order(h) + PAGE_SHIFT - 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720}
1721
1722int hugetlb_report_node_meminfo(int nid, char *buf)
1723{
Andi Kleena5516432008-07-23 21:27:41 -07001724 struct hstate *h = &default_hstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 return sprintf(buf,
1726 "Node %d HugePages_Total: %5u\n"
Nishanth Aravamudana1de0912008-03-26 14:37:53 -07001727 "Node %d HugePages_Free: %5u\n"
1728 "Node %d HugePages_Surp: %5u\n",
Andi Kleena5516432008-07-23 21:27:41 -07001729 nid, h->nr_huge_pages_node[nid],
1730 nid, h->free_huge_pages_node[nid],
1731 nid, h->surplus_huge_pages_node[nid]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732}
1733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734/* Return the number pages of memory we physically have, in PAGE_SIZE units. */
1735unsigned long hugetlb_total_pages(void)
1736{
Andi Kleena5516432008-07-23 21:27:41 -07001737 struct hstate *h = &default_hstate;
1738 return h->nr_huge_pages * pages_per_huge_page(h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Andi Kleena5516432008-07-23 21:27:41 -07001741static int hugetlb_acct_memory(struct hstate *h, long delta)
Mel Gormanfc1b8a72008-07-23 21:27:22 -07001742{
1743 int ret = -ENOMEM;
1744
1745 spin_lock(&hugetlb_lock);
1746 /*
1747 * When cpuset is configured, it breaks the strict hugetlb page
1748 * reservation as the accounting is done on a global variable. Such
1749 * reservation is completely rubbish in the presence of cpuset because
1750 * the reservation is not checked against page availability for the
1751 * current cpuset. Application can still potentially OOM'ed by kernel
1752 * with lack of free htlb page in cpuset that the task is in.
1753 * Attempt to enforce strict accounting with cpuset is almost
1754 * impossible (or too ugly) because cpuset is too fluid that
1755 * task or memory node can be dynamically moved between cpusets.
1756 *
1757 * The change of semantics for shared hugetlb mapping with cpuset is
1758 * undesirable. However, in order to preserve some of the semantics,
1759 * we fall back to check against current free page availability as
1760 * a best attempt and hopefully to minimize the impact of changing
1761 * semantics that cpuset has.
1762 */
1763 if (delta > 0) {
Andi Kleena5516432008-07-23 21:27:41 -07001764 if (gather_surplus_pages(h, delta) < 0)
Mel Gormanfc1b8a72008-07-23 21:27:22 -07001765 goto out;
1766
Andi Kleena5516432008-07-23 21:27:41 -07001767 if (delta > cpuset_mems_nr(h->free_huge_pages_node)) {
1768 return_unused_surplus_pages(h, delta);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07001769 goto out;
1770 }
1771 }
1772
1773 ret = 0;
1774 if (delta < 0)
Andi Kleena5516432008-07-23 21:27:41 -07001775 return_unused_surplus_pages(h, (unsigned long) -delta);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07001776
1777out:
1778 spin_unlock(&hugetlb_lock);
1779 return ret;
1780}
1781
Andy Whitcroft84afd992008-07-23 21:27:32 -07001782static void hugetlb_vm_op_open(struct vm_area_struct *vma)
1783{
1784 struct resv_map *reservations = vma_resv_map(vma);
1785
1786 /*
1787 * This new VMA should share its siblings reservation map if present.
1788 * The VMA will only ever have a valid reservation map pointer where
1789 * it is being copied for another still existing VMA. As that VMA
1790 * has a reference to the reservation map it cannot dissappear until
1791 * after this open call completes. It is therefore safe to take a
1792 * new reference here without additional locking.
1793 */
1794 if (reservations)
1795 kref_get(&reservations->refs);
1796}
1797
Mel Gormana1e78772008-07-23 21:27:23 -07001798static void hugetlb_vm_op_close(struct vm_area_struct *vma)
1799{
Andi Kleena5516432008-07-23 21:27:41 -07001800 struct hstate *h = hstate_vma(vma);
Andy Whitcroft84afd992008-07-23 21:27:32 -07001801 struct resv_map *reservations = vma_resv_map(vma);
1802 unsigned long reserve;
1803 unsigned long start;
1804 unsigned long end;
1805
1806 if (reservations) {
Andi Kleena5516432008-07-23 21:27:41 -07001807 start = vma_hugecache_offset(h, vma, vma->vm_start);
1808 end = vma_hugecache_offset(h, vma, vma->vm_end);
Andy Whitcroft84afd992008-07-23 21:27:32 -07001809
1810 reserve = (end - start) -
1811 region_count(&reservations->regions, start, end);
1812
1813 kref_put(&reservations->refs, resv_map_release);
1814
Adam Litke7251ff72008-07-23 21:27:59 -07001815 if (reserve) {
Andi Kleena5516432008-07-23 21:27:41 -07001816 hugetlb_acct_memory(h, -reserve);
Adam Litke7251ff72008-07-23 21:27:59 -07001817 hugetlb_put_quota(vma->vm_file->f_mapping, reserve);
1818 }
Andy Whitcroft84afd992008-07-23 21:27:32 -07001819 }
Mel Gormana1e78772008-07-23 21:27:23 -07001820}
1821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822/*
1823 * We cannot handle pagefaults against hugetlb pages at all. They cause
1824 * handle_mm_fault() to try to instantiate regular-sized pages in the
1825 * hugegpage VMA. do_page_fault() is supposed to trap this, so BUG is we get
1826 * this far.
1827 */
Nick Piggind0217ac2007-07-19 01:47:03 -07001828static int hugetlb_vm_op_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
1830 BUG();
Nick Piggind0217ac2007-07-19 01:47:03 -07001831 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832}
1833
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001834const struct vm_operations_struct hugetlb_vm_ops = {
Nick Piggind0217ac2007-07-19 01:47:03 -07001835 .fault = hugetlb_vm_op_fault,
Andy Whitcroft84afd992008-07-23 21:27:32 -07001836 .open = hugetlb_vm_op_open,
Mel Gormana1e78772008-07-23 21:27:23 -07001837 .close = hugetlb_vm_op_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838};
1839
David Gibson1e8f8892006-01-06 00:10:44 -08001840static pte_t make_huge_pte(struct vm_area_struct *vma, struct page *page,
1841 int writable)
David Gibson63551ae2005-06-21 17:14:44 -07001842{
1843 pte_t entry;
1844
David Gibson1e8f8892006-01-06 00:10:44 -08001845 if (writable) {
David Gibson63551ae2005-06-21 17:14:44 -07001846 entry =
1847 pte_mkwrite(pte_mkdirty(mk_pte(page, vma->vm_page_prot)));
1848 } else {
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001849 entry = huge_pte_wrprotect(mk_pte(page, vma->vm_page_prot));
David Gibson63551ae2005-06-21 17:14:44 -07001850 }
1851 entry = pte_mkyoung(entry);
1852 entry = pte_mkhuge(entry);
1853
1854 return entry;
1855}
1856
David Gibson1e8f8892006-01-06 00:10:44 -08001857static void set_huge_ptep_writable(struct vm_area_struct *vma,
1858 unsigned long address, pte_t *ptep)
1859{
1860 pte_t entry;
1861
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001862 entry = pte_mkwrite(pte_mkdirty(huge_ptep_get(ptep)));
1863 if (huge_ptep_set_access_flags(vma, address, ptep, entry, 1)) {
Benjamin Herrenschmidt8dab5242007-06-16 10:16:12 -07001864 update_mmu_cache(vma, address, entry);
Benjamin Herrenschmidt8dab5242007-06-16 10:16:12 -07001865 }
David Gibson1e8f8892006-01-06 00:10:44 -08001866}
1867
1868
David Gibson63551ae2005-06-21 17:14:44 -07001869int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
1870 struct vm_area_struct *vma)
1871{
1872 pte_t *src_pte, *dst_pte, entry;
1873 struct page *ptepage;
Hugh Dickins1c598272005-10-19 21:23:43 -07001874 unsigned long addr;
David Gibson1e8f8892006-01-06 00:10:44 -08001875 int cow;
Andi Kleena5516432008-07-23 21:27:41 -07001876 struct hstate *h = hstate_vma(vma);
1877 unsigned long sz = huge_page_size(h);
David Gibson1e8f8892006-01-06 00:10:44 -08001878
1879 cow = (vma->vm_flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE;
David Gibson63551ae2005-06-21 17:14:44 -07001880
Andi Kleena5516432008-07-23 21:27:41 -07001881 for (addr = vma->vm_start; addr < vma->vm_end; addr += sz) {
Hugh Dickinsc74df322005-10-29 18:16:23 -07001882 src_pte = huge_pte_offset(src, addr);
1883 if (!src_pte)
1884 continue;
Andi Kleena5516432008-07-23 21:27:41 -07001885 dst_pte = huge_pte_alloc(dst, addr, sz);
David Gibson63551ae2005-06-21 17:14:44 -07001886 if (!dst_pte)
1887 goto nomem;
Larry Woodmanc5c99422008-01-24 05:49:25 -08001888
1889 /* If the pagetables are shared don't copy or take references */
1890 if (dst_pte == src_pte)
1891 continue;
1892
Hugh Dickinsc74df322005-10-29 18:16:23 -07001893 spin_lock(&dst->page_table_lock);
Nick Piggin46478752008-06-05 22:45:57 -07001894 spin_lock_nested(&src->page_table_lock, SINGLE_DEPTH_NESTING);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001895 if (!huge_pte_none(huge_ptep_get(src_pte))) {
David Gibson1e8f8892006-01-06 00:10:44 -08001896 if (cow)
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001897 huge_ptep_set_wrprotect(src, addr, src_pte);
1898 entry = huge_ptep_get(src_pte);
Hugh Dickins1c598272005-10-19 21:23:43 -07001899 ptepage = pte_page(entry);
1900 get_page(ptepage);
Hugh Dickins1c598272005-10-19 21:23:43 -07001901 set_huge_pte_at(dst, addr, dst_pte, entry);
1902 }
1903 spin_unlock(&src->page_table_lock);
Hugh Dickinsc74df322005-10-29 18:16:23 -07001904 spin_unlock(&dst->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -07001905 }
1906 return 0;
1907
1908nomem:
1909 return -ENOMEM;
1910}
1911
Chen, Kenneth W502717f2006-10-11 01:20:46 -07001912void __unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001913 unsigned long end, struct page *ref_page)
David Gibson63551ae2005-06-21 17:14:44 -07001914{
1915 struct mm_struct *mm = vma->vm_mm;
1916 unsigned long address;
David Gibsonc7546f82005-08-05 11:59:35 -07001917 pte_t *ptep;
David Gibson63551ae2005-06-21 17:14:44 -07001918 pte_t pte;
1919 struct page *page;
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07001920 struct page *tmp;
Andi Kleena5516432008-07-23 21:27:41 -07001921 struct hstate *h = hstate_vma(vma);
1922 unsigned long sz = huge_page_size(h);
1923
Chen, Kenneth Wc0a499c2006-12-06 20:31:39 -08001924 /*
1925 * A page gathering list, protected by per file i_mmap_lock. The
1926 * lock is used to avoid list corruption from multiple unmapping
1927 * of the same page since we are using page->lru.
1928 */
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07001929 LIST_HEAD(page_list);
David Gibson63551ae2005-06-21 17:14:44 -07001930
1931 WARN_ON(!is_vm_hugetlb_page(vma));
Andi Kleena5516432008-07-23 21:27:41 -07001932 BUG_ON(start & ~huge_page_mask(h));
1933 BUG_ON(end & ~huge_page_mask(h));
David Gibson63551ae2005-06-21 17:14:44 -07001934
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001935 mmu_notifier_invalidate_range_start(mm, start, end);
Hugh Dickins508034a2005-10-29 18:16:30 -07001936 spin_lock(&mm->page_table_lock);
Andi Kleena5516432008-07-23 21:27:41 -07001937 for (address = start; address < end; address += sz) {
David Gibsonc7546f82005-08-05 11:59:35 -07001938 ptep = huge_pte_offset(mm, address);
Adam Litke4c887262005-10-29 18:16:46 -07001939 if (!ptep)
David Gibsonc7546f82005-08-05 11:59:35 -07001940 continue;
1941
Chen, Kenneth W39dde652006-12-06 20:32:03 -08001942 if (huge_pmd_unshare(mm, &address, ptep))
1943 continue;
1944
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001945 /*
1946 * If a reference page is supplied, it is because a specific
1947 * page is being unmapped, not a range. Ensure the page we
1948 * are about to unmap is the actual page of interest.
1949 */
1950 if (ref_page) {
1951 pte = huge_ptep_get(ptep);
1952 if (huge_pte_none(pte))
1953 continue;
1954 page = pte_page(pte);
1955 if (page != ref_page)
1956 continue;
1957
1958 /*
1959 * Mark the VMA as having unmapped its page so that
1960 * future faults in this VMA will fail rather than
1961 * looking like data was lost
1962 */
1963 set_vma_resv_flags(vma, HPAGE_RESV_UNMAPPED);
1964 }
1965
David Gibsonc7546f82005-08-05 11:59:35 -07001966 pte = huge_ptep_get_and_clear(mm, address, ptep);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001967 if (huge_pte_none(pte))
David Gibson63551ae2005-06-21 17:14:44 -07001968 continue;
David Gibsonc7546f82005-08-05 11:59:35 -07001969
David Gibson63551ae2005-06-21 17:14:44 -07001970 page = pte_page(pte);
Ken Chen6649a382007-02-08 14:20:27 -08001971 if (pte_dirty(pte))
1972 set_page_dirty(page);
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07001973 list_add(&page->lru, &page_list);
David Gibson63551ae2005-06-21 17:14:44 -07001974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 spin_unlock(&mm->page_table_lock);
Hugh Dickins508034a2005-10-29 18:16:30 -07001976 flush_tlb_range(vma, start, end);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001977 mmu_notifier_invalidate_range_end(mm, start, end);
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07001978 list_for_each_entry_safe(page, tmp, &page_list, lru) {
1979 list_del(&page->lru);
1980 put_page(page);
1981 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982}
David Gibson63551ae2005-06-21 17:14:44 -07001983
Chen, Kenneth W502717f2006-10-11 01:20:46 -07001984void unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001985 unsigned long end, struct page *ref_page)
Chen, Kenneth W502717f2006-10-11 01:20:46 -07001986{
Andi Kleena137e1c2008-07-23 21:27:43 -07001987 spin_lock(&vma->vm_file->f_mapping->i_mmap_lock);
1988 __unmap_hugepage_range(vma, start, end, ref_page);
1989 spin_unlock(&vma->vm_file->f_mapping->i_mmap_lock);
Chen, Kenneth W502717f2006-10-11 01:20:46 -07001990}
1991
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001992/*
1993 * This is called when the original mapper is failing to COW a MAP_PRIVATE
1994 * mappping it owns the reserve page for. The intention is to unmap the page
1995 * from other VMAs and let the children be SIGKILLed if they are faulting the
1996 * same region.
1997 */
Harvey Harrison2a4b3de2008-10-18 20:27:06 -07001998static int unmap_ref_private(struct mm_struct *mm, struct vm_area_struct *vma,
1999 struct page *page, unsigned long address)
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002000{
Adam Litke75266742008-11-12 13:24:56 -08002001 struct hstate *h = hstate_vma(vma);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002002 struct vm_area_struct *iter_vma;
2003 struct address_space *mapping;
2004 struct prio_tree_iter iter;
2005 pgoff_t pgoff;
2006
2007 /*
2008 * vm_pgoff is in PAGE_SIZE units, hence the different calculation
2009 * from page cache lookup which is in HPAGE_SIZE units.
2010 */
Adam Litke75266742008-11-12 13:24:56 -08002011 address = address & huge_page_mask(h);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002012 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT)
2013 + (vma->vm_pgoff >> PAGE_SHIFT);
2014 mapping = (struct address_space *)page_private(page);
2015
2016 vma_prio_tree_foreach(iter_vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
2017 /* Do not unmap the current VMA */
2018 if (iter_vma == vma)
2019 continue;
2020
2021 /*
2022 * Unmap the page from other VMAs without their own reserves.
2023 * They get marked to be SIGKILLed if they fault in these
2024 * areas. This is because a future no-page fault on this VMA
2025 * could insert a zeroed page instead of the data existing
2026 * from the time of fork. This would look like data corruption
2027 */
2028 if (!is_vma_resv_set(iter_vma, HPAGE_RESV_OWNER))
2029 unmap_hugepage_range(iter_vma,
Adam Litke75266742008-11-12 13:24:56 -08002030 address, address + huge_page_size(h),
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002031 page);
2032 }
2033
2034 return 1;
2035}
2036
David Gibson1e8f8892006-01-06 00:10:44 -08002037static int hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002038 unsigned long address, pte_t *ptep, pte_t pte,
2039 struct page *pagecache_page)
David Gibson1e8f8892006-01-06 00:10:44 -08002040{
Andi Kleena5516432008-07-23 21:27:41 -07002041 struct hstate *h = hstate_vma(vma);
David Gibson1e8f8892006-01-06 00:10:44 -08002042 struct page *old_page, *new_page;
David Gibson79ac6ba2006-03-22 00:08:51 -08002043 int avoidcopy;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002044 int outside_reserve = 0;
David Gibson1e8f8892006-01-06 00:10:44 -08002045
2046 old_page = pte_page(pte);
2047
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002048retry_avoidcopy:
David Gibson1e8f8892006-01-06 00:10:44 -08002049 /* If no-one else is actually using this page, avoid the copy
2050 * and just make the page writable */
2051 avoidcopy = (page_count(old_page) == 1);
2052 if (avoidcopy) {
2053 set_huge_ptep_writable(vma, address, ptep);
Nick Piggin83c54072007-07-19 01:47:05 -07002054 return 0;
David Gibson1e8f8892006-01-06 00:10:44 -08002055 }
2056
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002057 /*
2058 * If the process that created a MAP_PRIVATE mapping is about to
2059 * perform a COW due to a shared page count, attempt to satisfy
2060 * the allocation without using the existing reserves. The pagecache
2061 * page is used to determine if the reserve at this address was
2062 * consumed or not. If reserves were used, a partial faulted mapping
2063 * at the time of fork() could consume its reserves on COW instead
2064 * of the full address range.
2065 */
Mel Gormanf83a2752009-05-28 14:34:40 -07002066 if (!(vma->vm_flags & VM_MAYSHARE) &&
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002067 is_vma_resv_set(vma, HPAGE_RESV_OWNER) &&
2068 old_page != pagecache_page)
2069 outside_reserve = 1;
2070
David Gibson1e8f8892006-01-06 00:10:44 -08002071 page_cache_get(old_page);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002072 new_page = alloc_huge_page(vma, address, outside_reserve);
David Gibson1e8f8892006-01-06 00:10:44 -08002073
Adam Litke2fc39ce2007-11-14 16:59:39 -08002074 if (IS_ERR(new_page)) {
David Gibson1e8f8892006-01-06 00:10:44 -08002075 page_cache_release(old_page);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002076
2077 /*
2078 * If a process owning a MAP_PRIVATE mapping fails to COW,
2079 * it is due to references held by a child and an insufficient
2080 * huge page pool. To guarantee the original mappers
2081 * reliability, unmap the page from child processes. The child
2082 * may get SIGKILLed if it later faults.
2083 */
2084 if (outside_reserve) {
2085 BUG_ON(huge_pte_none(pte));
2086 if (unmap_ref_private(mm, vma, old_page, address)) {
2087 BUG_ON(page_count(old_page) != 1);
2088 BUG_ON(huge_pte_none(pte));
2089 goto retry_avoidcopy;
2090 }
2091 WARN_ON_ONCE(1);
2092 }
2093
Adam Litke2fc39ce2007-11-14 16:59:39 -08002094 return -PTR_ERR(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -08002095 }
2096
2097 spin_unlock(&mm->page_table_lock);
Atsushi Nemoto9de455b2006-12-12 17:14:55 +00002098 copy_huge_page(new_page, old_page, address, vma);
Nick Piggin0ed361d2008-02-04 22:29:34 -08002099 __SetPageUptodate(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -08002100 spin_lock(&mm->page_table_lock);
2101
Andi Kleena5516432008-07-23 21:27:41 -07002102 ptep = huge_pte_offset(mm, address & huge_page_mask(h));
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07002103 if (likely(pte_same(huge_ptep_get(ptep), pte))) {
David Gibson1e8f8892006-01-06 00:10:44 -08002104 /* Break COW */
Gerald Schaefer8fe627e2008-04-28 02:13:28 -07002105 huge_ptep_clear_flush(vma, address, ptep);
David Gibson1e8f8892006-01-06 00:10:44 -08002106 set_huge_pte_at(mm, address, ptep,
2107 make_huge_pte(vma, new_page, 1));
2108 /* Make the old page be freed below */
2109 new_page = old_page;
2110 }
2111 page_cache_release(new_page);
2112 page_cache_release(old_page);
Nick Piggin83c54072007-07-19 01:47:05 -07002113 return 0;
David Gibson1e8f8892006-01-06 00:10:44 -08002114}
2115
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002116/* Return the pagecache page at a given address within a VMA */
Andi Kleena5516432008-07-23 21:27:41 -07002117static struct page *hugetlbfs_pagecache_page(struct hstate *h,
2118 struct vm_area_struct *vma, unsigned long address)
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002119{
2120 struct address_space *mapping;
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -07002121 pgoff_t idx;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002122
2123 mapping = vma->vm_file->f_mapping;
Andi Kleena5516432008-07-23 21:27:41 -07002124 idx = vma_hugecache_offset(h, vma, address);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002125
2126 return find_lock_page(mapping, idx);
2127}
2128
Hugh Dickins3ae77f42009-09-21 17:03:33 -07002129/*
2130 * Return whether there is a pagecache page to back given address within VMA.
2131 * Caller follow_hugetlb_page() holds page_table_lock so we cannot lock_page.
2132 */
2133static bool hugetlbfs_pagecache_present(struct hstate *h,
Hugh Dickins2a15efc2009-09-21 17:03:27 -07002134 struct vm_area_struct *vma, unsigned long address)
2135{
2136 struct address_space *mapping;
2137 pgoff_t idx;
2138 struct page *page;
2139
2140 mapping = vma->vm_file->f_mapping;
2141 idx = vma_hugecache_offset(h, vma, address);
2142
2143 page = find_get_page(mapping, idx);
2144 if (page)
2145 put_page(page);
2146 return page != NULL;
2147}
2148
Robert P. J. Daya1ed3dd2007-07-17 04:03:33 -07002149static int hugetlb_no_page(struct mm_struct *mm, struct vm_area_struct *vma,
Hugh Dickins788c7df2009-06-23 13:49:05 +01002150 unsigned long address, pte_t *ptep, unsigned int flags)
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01002151{
Andi Kleena5516432008-07-23 21:27:41 -07002152 struct hstate *h = hstate_vma(vma);
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01002153 int ret = VM_FAULT_SIGBUS;
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -07002154 pgoff_t idx;
Adam Litke4c887262005-10-29 18:16:46 -07002155 unsigned long size;
Adam Litke4c887262005-10-29 18:16:46 -07002156 struct page *page;
2157 struct address_space *mapping;
David Gibson1e8f8892006-01-06 00:10:44 -08002158 pte_t new_pte;
Adam Litke4c887262005-10-29 18:16:46 -07002159
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002160 /*
2161 * Currently, we are forced to kill the process in the event the
2162 * original mapper has unmapped pages from the child due to a failed
2163 * COW. Warn that such a situation has occured as it may not be obvious
2164 */
2165 if (is_vma_resv_set(vma, HPAGE_RESV_UNMAPPED)) {
2166 printk(KERN_WARNING
2167 "PID %d killed due to inadequate hugepage pool\n",
2168 current->pid);
2169 return ret;
2170 }
2171
Adam Litke4c887262005-10-29 18:16:46 -07002172 mapping = vma->vm_file->f_mapping;
Andi Kleena5516432008-07-23 21:27:41 -07002173 idx = vma_hugecache_offset(h, vma, address);
Adam Litke4c887262005-10-29 18:16:46 -07002174
2175 /*
2176 * Use page lock to guard against racing truncation
2177 * before we get page_table_lock.
2178 */
Christoph Lameter6bda6662006-01-06 00:10:49 -08002179retry:
2180 page = find_lock_page(mapping, idx);
2181 if (!page) {
Andi Kleena5516432008-07-23 21:27:41 -07002182 size = i_size_read(mapping->host) >> huge_page_shift(h);
Hugh Dickinsebed4bf2006-10-28 10:38:43 -07002183 if (idx >= size)
2184 goto out;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002185 page = alloc_huge_page(vma, address, 0);
Adam Litke2fc39ce2007-11-14 16:59:39 -08002186 if (IS_ERR(page)) {
2187 ret = -PTR_ERR(page);
Christoph Lameter6bda6662006-01-06 00:10:49 -08002188 goto out;
2189 }
Andi Kleena5516432008-07-23 21:27:41 -07002190 clear_huge_page(page, address, huge_page_size(h));
Nick Piggin0ed361d2008-02-04 22:29:34 -08002191 __SetPageUptodate(page);
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01002192
Mel Gormanf83a2752009-05-28 14:34:40 -07002193 if (vma->vm_flags & VM_MAYSHARE) {
Christoph Lameter6bda6662006-01-06 00:10:49 -08002194 int err;
Ken Chen45c682a2007-11-14 16:59:44 -08002195 struct inode *inode = mapping->host;
Christoph Lameter6bda6662006-01-06 00:10:49 -08002196
2197 err = add_to_page_cache(page, mapping, idx, GFP_KERNEL);
2198 if (err) {
2199 put_page(page);
Christoph Lameter6bda6662006-01-06 00:10:49 -08002200 if (err == -EEXIST)
2201 goto retry;
2202 goto out;
2203 }
Ken Chen45c682a2007-11-14 16:59:44 -08002204
2205 spin_lock(&inode->i_lock);
Andi Kleena5516432008-07-23 21:27:41 -07002206 inode->i_blocks += blocks_per_huge_page(h);
Ken Chen45c682a2007-11-14 16:59:44 -08002207 spin_unlock(&inode->i_lock);
Christoph Lameter6bda6662006-01-06 00:10:49 -08002208 } else
2209 lock_page(page);
2210 }
David Gibson1e8f8892006-01-06 00:10:44 -08002211
Andy Whitcroft57303d82008-08-12 15:08:47 -07002212 /*
2213 * If we are going to COW a private mapping later, we examine the
2214 * pending reservations for this page now. This will ensure that
2215 * any allocations necessary to record that reservation occur outside
2216 * the spinlock.
2217 */
Hugh Dickins788c7df2009-06-23 13:49:05 +01002218 if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED))
Andy Whitcroft2b267362008-08-12 15:08:49 -07002219 if (vma_needs_reservation(h, vma, address) < 0) {
2220 ret = VM_FAULT_OOM;
2221 goto backout_unlocked;
2222 }
Andy Whitcroft57303d82008-08-12 15:08:47 -07002223
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01002224 spin_lock(&mm->page_table_lock);
Andi Kleena5516432008-07-23 21:27:41 -07002225 size = i_size_read(mapping->host) >> huge_page_shift(h);
Adam Litke4c887262005-10-29 18:16:46 -07002226 if (idx >= size)
2227 goto backout;
2228
Nick Piggin83c54072007-07-19 01:47:05 -07002229 ret = 0;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07002230 if (!huge_pte_none(huge_ptep_get(ptep)))
Adam Litke4c887262005-10-29 18:16:46 -07002231 goto backout;
2232
David Gibson1e8f8892006-01-06 00:10:44 -08002233 new_pte = make_huge_pte(vma, page, ((vma->vm_flags & VM_WRITE)
2234 && (vma->vm_flags & VM_SHARED)));
2235 set_huge_pte_at(mm, address, ptep, new_pte);
2236
Hugh Dickins788c7df2009-06-23 13:49:05 +01002237 if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
David Gibson1e8f8892006-01-06 00:10:44 -08002238 /* Optimization, do the COW without a second fault */
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002239 ret = hugetlb_cow(mm, vma, address, ptep, new_pte, page);
David Gibson1e8f8892006-01-06 00:10:44 -08002240 }
2241
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01002242 spin_unlock(&mm->page_table_lock);
Adam Litke4c887262005-10-29 18:16:46 -07002243 unlock_page(page);
2244out:
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01002245 return ret;
Adam Litke4c887262005-10-29 18:16:46 -07002246
2247backout:
2248 spin_unlock(&mm->page_table_lock);
Andy Whitcroft2b267362008-08-12 15:08:49 -07002249backout_unlocked:
Adam Litke4c887262005-10-29 18:16:46 -07002250 unlock_page(page);
2251 put_page(page);
2252 goto out;
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01002253}
2254
Adam Litke86e52162006-01-06 00:10:43 -08002255int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
Hugh Dickins788c7df2009-06-23 13:49:05 +01002256 unsigned long address, unsigned int flags)
Adam Litke86e52162006-01-06 00:10:43 -08002257{
2258 pte_t *ptep;
2259 pte_t entry;
David Gibson1e8f8892006-01-06 00:10:44 -08002260 int ret;
Andy Whitcroft57303d82008-08-12 15:08:47 -07002261 struct page *pagecache_page = NULL;
David Gibson3935baa2006-03-22 00:08:53 -08002262 static DEFINE_MUTEX(hugetlb_instantiation_mutex);
Andi Kleena5516432008-07-23 21:27:41 -07002263 struct hstate *h = hstate_vma(vma);
Adam Litke86e52162006-01-06 00:10:43 -08002264
Andi Kleena5516432008-07-23 21:27:41 -07002265 ptep = huge_pte_alloc(mm, address, huge_page_size(h));
Adam Litke86e52162006-01-06 00:10:43 -08002266 if (!ptep)
2267 return VM_FAULT_OOM;
2268
David Gibson3935baa2006-03-22 00:08:53 -08002269 /*
2270 * Serialize hugepage allocation and instantiation, so that we don't
2271 * get spurious allocation failures if two CPUs race to instantiate
2272 * the same page in the page cache.
2273 */
2274 mutex_lock(&hugetlb_instantiation_mutex);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07002275 entry = huge_ptep_get(ptep);
2276 if (huge_pte_none(entry)) {
Hugh Dickins788c7df2009-06-23 13:49:05 +01002277 ret = hugetlb_no_page(mm, vma, address, ptep, flags);
David Gibsonb4d1d992008-10-15 22:01:11 -07002278 goto out_mutex;
David Gibson3935baa2006-03-22 00:08:53 -08002279 }
Adam Litke86e52162006-01-06 00:10:43 -08002280
Nick Piggin83c54072007-07-19 01:47:05 -07002281 ret = 0;
David Gibson1e8f8892006-01-06 00:10:44 -08002282
Andy Whitcroft57303d82008-08-12 15:08:47 -07002283 /*
2284 * If we are going to COW the mapping later, we examine the pending
2285 * reservations for this page now. This will ensure that any
2286 * allocations necessary to record that reservation occur outside the
2287 * spinlock. For private mappings, we also lookup the pagecache
2288 * page now as it is used to determine if a reservation has been
2289 * consumed.
2290 */
Hugh Dickins788c7df2009-06-23 13:49:05 +01002291 if ((flags & FAULT_FLAG_WRITE) && !pte_write(entry)) {
Andy Whitcroft2b267362008-08-12 15:08:49 -07002292 if (vma_needs_reservation(h, vma, address) < 0) {
2293 ret = VM_FAULT_OOM;
David Gibsonb4d1d992008-10-15 22:01:11 -07002294 goto out_mutex;
Andy Whitcroft2b267362008-08-12 15:08:49 -07002295 }
Andy Whitcroft57303d82008-08-12 15:08:47 -07002296
Mel Gormanf83a2752009-05-28 14:34:40 -07002297 if (!(vma->vm_flags & VM_MAYSHARE))
Andy Whitcroft57303d82008-08-12 15:08:47 -07002298 pagecache_page = hugetlbfs_pagecache_page(h,
2299 vma, address);
2300 }
2301
David Gibson1e8f8892006-01-06 00:10:44 -08002302 spin_lock(&mm->page_table_lock);
2303 /* Check for a racing update before calling hugetlb_cow */
David Gibsonb4d1d992008-10-15 22:01:11 -07002304 if (unlikely(!pte_same(entry, huge_ptep_get(ptep))))
2305 goto out_page_table_lock;
2306
2307
Hugh Dickins788c7df2009-06-23 13:49:05 +01002308 if (flags & FAULT_FLAG_WRITE) {
David Gibsonb4d1d992008-10-15 22:01:11 -07002309 if (!pte_write(entry)) {
Andy Whitcroft57303d82008-08-12 15:08:47 -07002310 ret = hugetlb_cow(mm, vma, address, ptep, entry,
2311 pagecache_page);
David Gibsonb4d1d992008-10-15 22:01:11 -07002312 goto out_page_table_lock;
2313 }
2314 entry = pte_mkdirty(entry);
2315 }
2316 entry = pte_mkyoung(entry);
Hugh Dickins788c7df2009-06-23 13:49:05 +01002317 if (huge_ptep_set_access_flags(vma, address, ptep, entry,
2318 flags & FAULT_FLAG_WRITE))
David Gibsonb4d1d992008-10-15 22:01:11 -07002319 update_mmu_cache(vma, address, entry);
2320
2321out_page_table_lock:
David Gibson1e8f8892006-01-06 00:10:44 -08002322 spin_unlock(&mm->page_table_lock);
Andy Whitcroft57303d82008-08-12 15:08:47 -07002323
2324 if (pagecache_page) {
2325 unlock_page(pagecache_page);
2326 put_page(pagecache_page);
2327 }
2328
David Gibsonb4d1d992008-10-15 22:01:11 -07002329out_mutex:
David Gibson3935baa2006-03-22 00:08:53 -08002330 mutex_unlock(&hugetlb_instantiation_mutex);
David Gibson1e8f8892006-01-06 00:10:44 -08002331
2332 return ret;
Adam Litke86e52162006-01-06 00:10:43 -08002333}
2334
Andi Kleenceb86872008-07-23 21:27:50 -07002335/* Can be overriden by architectures */
2336__attribute__((weak)) struct page *
2337follow_huge_pud(struct mm_struct *mm, unsigned long address,
2338 pud_t *pud, int write)
2339{
2340 BUG();
2341 return NULL;
2342}
2343
David Gibson63551ae2005-06-21 17:14:44 -07002344int follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma,
2345 struct page **pages, struct vm_area_struct **vmas,
Adam Litke5b23dbe2007-11-14 16:59:33 -08002346 unsigned long *position, int *length, int i,
Hugh Dickins2a15efc2009-09-21 17:03:27 -07002347 unsigned int flags)
David Gibson63551ae2005-06-21 17:14:44 -07002348{
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002349 unsigned long pfn_offset;
2350 unsigned long vaddr = *position;
David Gibson63551ae2005-06-21 17:14:44 -07002351 int remainder = *length;
Andi Kleena5516432008-07-23 21:27:41 -07002352 struct hstate *h = hstate_vma(vma);
David Gibson63551ae2005-06-21 17:14:44 -07002353
Hugh Dickins1c598272005-10-19 21:23:43 -07002354 spin_lock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -07002355 while (vaddr < vma->vm_end && remainder) {
Adam Litke4c887262005-10-29 18:16:46 -07002356 pte_t *pte;
Hugh Dickins2a15efc2009-09-21 17:03:27 -07002357 int absent;
Adam Litke4c887262005-10-29 18:16:46 -07002358 struct page *page;
2359
2360 /*
2361 * Some archs (sparc64, sh*) have multiple pte_ts to
Hugh Dickins2a15efc2009-09-21 17:03:27 -07002362 * each hugepage. We have to make sure we get the
Adam Litke4c887262005-10-29 18:16:46 -07002363 * first, for the page indexing below to work.
2364 */
Andi Kleena5516432008-07-23 21:27:41 -07002365 pte = huge_pte_offset(mm, vaddr & huge_page_mask(h));
Hugh Dickins2a15efc2009-09-21 17:03:27 -07002366 absent = !pte || huge_pte_none(huge_ptep_get(pte));
Adam Litke4c887262005-10-29 18:16:46 -07002367
Hugh Dickins2a15efc2009-09-21 17:03:27 -07002368 /*
2369 * When coredumping, it suits get_dump_page if we just return
Hugh Dickins3ae77f42009-09-21 17:03:33 -07002370 * an error where there's an empty slot with no huge pagecache
2371 * to back it. This way, we avoid allocating a hugepage, and
2372 * the sparse dumpfile avoids allocating disk blocks, but its
2373 * huge holes still show up with zeroes where they need to be.
Hugh Dickins2a15efc2009-09-21 17:03:27 -07002374 */
Hugh Dickins3ae77f42009-09-21 17:03:33 -07002375 if (absent && (flags & FOLL_DUMP) &&
2376 !hugetlbfs_pagecache_present(h, vma, vaddr)) {
Hugh Dickins2a15efc2009-09-21 17:03:27 -07002377 remainder = 0;
2378 break;
2379 }
2380
2381 if (absent ||
2382 ((flags & FOLL_WRITE) && !pte_write(huge_ptep_get(pte)))) {
Adam Litke4c887262005-10-29 18:16:46 -07002383 int ret;
2384
2385 spin_unlock(&mm->page_table_lock);
Hugh Dickins2a15efc2009-09-21 17:03:27 -07002386 ret = hugetlb_fault(mm, vma, vaddr,
2387 (flags & FOLL_WRITE) ? FAULT_FLAG_WRITE : 0);
Adam Litke4c887262005-10-29 18:16:46 -07002388 spin_lock(&mm->page_table_lock);
Adam Litkea89182c2007-08-22 14:01:51 -07002389 if (!(ret & VM_FAULT_ERROR))
Adam Litke4c887262005-10-29 18:16:46 -07002390 continue;
2391
2392 remainder = 0;
Adam Litke4c887262005-10-29 18:16:46 -07002393 break;
2394 }
David Gibson63551ae2005-06-21 17:14:44 -07002395
Andi Kleena5516432008-07-23 21:27:41 -07002396 pfn_offset = (vaddr & ~huge_page_mask(h)) >> PAGE_SHIFT;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07002397 page = pte_page(huge_ptep_get(pte));
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002398same_page:
Chen, Kenneth Wd6692182006-03-31 02:29:57 -08002399 if (pages) {
Hugh Dickins2a15efc2009-09-21 17:03:27 -07002400 pages[i] = mem_map_offset(page, pfn_offset);
KOSAKI Motohiro4b2e38a2008-10-18 20:27:10 -07002401 get_page(pages[i]);
Chen, Kenneth Wd6692182006-03-31 02:29:57 -08002402 }
David Gibson63551ae2005-06-21 17:14:44 -07002403
2404 if (vmas)
2405 vmas[i] = vma;
2406
2407 vaddr += PAGE_SIZE;
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002408 ++pfn_offset;
David Gibson63551ae2005-06-21 17:14:44 -07002409 --remainder;
2410 ++i;
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002411 if (vaddr < vma->vm_end && remainder &&
Andi Kleena5516432008-07-23 21:27:41 -07002412 pfn_offset < pages_per_huge_page(h)) {
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002413 /*
2414 * We use pfn_offset to avoid touching the pageframes
2415 * of this compound page.
2416 */
2417 goto same_page;
2418 }
David Gibson63551ae2005-06-21 17:14:44 -07002419 }
Hugh Dickins1c598272005-10-19 21:23:43 -07002420 spin_unlock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -07002421 *length = remainder;
2422 *position = vaddr;
2423
Hugh Dickins2a15efc2009-09-21 17:03:27 -07002424 return i ? i : -EFAULT;
David Gibson63551ae2005-06-21 17:14:44 -07002425}
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002426
2427void hugetlb_change_protection(struct vm_area_struct *vma,
2428 unsigned long address, unsigned long end, pgprot_t newprot)
2429{
2430 struct mm_struct *mm = vma->vm_mm;
2431 unsigned long start = address;
2432 pte_t *ptep;
2433 pte_t pte;
Andi Kleena5516432008-07-23 21:27:41 -07002434 struct hstate *h = hstate_vma(vma);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002435
2436 BUG_ON(address >= end);
2437 flush_cache_range(vma, address, end);
2438
Chen, Kenneth W39dde652006-12-06 20:32:03 -08002439 spin_lock(&vma->vm_file->f_mapping->i_mmap_lock);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002440 spin_lock(&mm->page_table_lock);
Andi Kleena5516432008-07-23 21:27:41 -07002441 for (; address < end; address += huge_page_size(h)) {
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002442 ptep = huge_pte_offset(mm, address);
2443 if (!ptep)
2444 continue;
Chen, Kenneth W39dde652006-12-06 20:32:03 -08002445 if (huge_pmd_unshare(mm, &address, ptep))
2446 continue;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07002447 if (!huge_pte_none(huge_ptep_get(ptep))) {
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002448 pte = huge_ptep_get_and_clear(mm, address, ptep);
2449 pte = pte_mkhuge(pte_modify(pte, newprot));
2450 set_huge_pte_at(mm, address, ptep, pte);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002451 }
2452 }
2453 spin_unlock(&mm->page_table_lock);
Chen, Kenneth W39dde652006-12-06 20:32:03 -08002454 spin_unlock(&vma->vm_file->f_mapping->i_mmap_lock);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002455
2456 flush_tlb_range(vma, start, end);
2457}
2458
Mel Gormana1e78772008-07-23 21:27:23 -07002459int hugetlb_reserve_pages(struct inode *inode,
2460 long from, long to,
Mel Gorman5a6fe122009-02-10 14:02:27 +00002461 struct vm_area_struct *vma,
2462 int acctflag)
Adam Litkee4e574b2007-10-16 01:26:19 -07002463{
Mel Gorman17c9d122009-02-11 16:34:16 +00002464 long ret, chg;
Andi Kleena5516432008-07-23 21:27:41 -07002465 struct hstate *h = hstate_inode(inode);
Adam Litkee4e574b2007-10-16 01:26:19 -07002466
Mel Gormana1e78772008-07-23 21:27:23 -07002467 /*
Mel Gorman17c9d122009-02-11 16:34:16 +00002468 * Only apply hugepage reservation if asked. At fault time, an
2469 * attempt will be made for VM_NORESERVE to allocate a page
2470 * and filesystem quota without using reserves
2471 */
2472 if (acctflag & VM_NORESERVE)
2473 return 0;
2474
2475 /*
Mel Gormana1e78772008-07-23 21:27:23 -07002476 * Shared mappings base their reservation on the number of pages that
2477 * are already allocated on behalf of the file. Private mappings need
2478 * to reserve the full area even if read-only as mprotect() may be
2479 * called to make the mapping read-write. Assume !vma is a shm mapping
2480 */
Mel Gormanf83a2752009-05-28 14:34:40 -07002481 if (!vma || vma->vm_flags & VM_MAYSHARE)
Mel Gormana1e78772008-07-23 21:27:23 -07002482 chg = region_chg(&inode->i_mapping->private_list, from, to);
Mel Gorman5a6fe122009-02-10 14:02:27 +00002483 else {
2484 struct resv_map *resv_map = resv_map_alloc();
Mel Gorman5a6fe122009-02-10 14:02:27 +00002485 if (!resv_map)
2486 return -ENOMEM;
2487
Mel Gorman17c9d122009-02-11 16:34:16 +00002488 chg = to - from;
2489
Mel Gorman5a6fe122009-02-10 14:02:27 +00002490 set_vma_resv_map(vma, resv_map);
2491 set_vma_resv_flags(vma, HPAGE_RESV_OWNER);
2492 }
2493
Mel Gorman17c9d122009-02-11 16:34:16 +00002494 if (chg < 0)
2495 return chg;
2496
2497 /* There must be enough filesystem quota for the mapping */
2498 if (hugetlb_get_quota(inode->i_mapping, chg))
2499 return -ENOSPC;
2500
2501 /*
2502 * Check enough hugepages are available for the reservation.
2503 * Hand back the quota if there are not
2504 */
2505 ret = hugetlb_acct_memory(h, chg);
2506 if (ret < 0) {
2507 hugetlb_put_quota(inode->i_mapping, chg);
2508 return ret;
2509 }
2510
2511 /*
2512 * Account for the reservations made. Shared mappings record regions
2513 * that have reservations as they are shared by multiple VMAs.
2514 * When the last VMA disappears, the region map says how much
2515 * the reservation was and the page cache tells how much of
2516 * the reservation was consumed. Private mappings are per-VMA and
2517 * only the consumed reservations are tracked. When the VMA
2518 * disappears, the original reservation is the VMA size and the
2519 * consumed reservations are stored in the map. Hence, nothing
2520 * else has to be done for private mappings here
2521 */
Mel Gormanf83a2752009-05-28 14:34:40 -07002522 if (!vma || vma->vm_flags & VM_MAYSHARE)
Mel Gorman17c9d122009-02-11 16:34:16 +00002523 region_add(&inode->i_mapping->private_list, from, to);
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07002524 return 0;
2525}
2526
2527void hugetlb_unreserve_pages(struct inode *inode, long offset, long freed)
2528{
Andi Kleena5516432008-07-23 21:27:41 -07002529 struct hstate *h = hstate_inode(inode);
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07002530 long chg = region_truncate(&inode->i_mapping->private_list, offset);
Ken Chen45c682a2007-11-14 16:59:44 -08002531
2532 spin_lock(&inode->i_lock);
Eric Sandeene4c6f8b2009-07-29 15:02:16 -07002533 inode->i_blocks -= (blocks_per_huge_page(h) * freed);
Ken Chen45c682a2007-11-14 16:59:44 -08002534 spin_unlock(&inode->i_lock);
2535
Adam Litke90d8b7e2007-11-14 16:59:42 -08002536 hugetlb_put_quota(inode->i_mapping, (chg - freed));
Andi Kleena5516432008-07-23 21:27:41 -07002537 hugetlb_acct_memory(h, -(chg - freed));
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07002538}