blob: 05bc9af4fca983b5c85b1c21ac24e2ae68bf33b3 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/sysctl.h>
11#include <linux/highmem.h>
12#include <linux/nodemask.h>
David Gibson63551ae2005-06-21 17:14:44 -070013#include <linux/pagemap.h>
Christoph Lameter5da7ca82006-01-06 00:10:46 -080014#include <linux/mempolicy.h>
Christoph Lameteraea47ff2006-01-08 01:00:57 -080015#include <linux/cpuset.h>
David Gibson3935baa2006-03-22 00:08:53 -080016#include <linux/mutex.h>
Christoph Lameter5da7ca82006-01-06 00:10:46 -080017
David Gibson63551ae2005-06-21 17:14:44 -070018#include <asm/page.h>
19#include <asm/pgtable.h>
20
21#include <linux/hugetlb.h>
Nick Piggin7835e982006-03-22 00:08:40 -080022#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24const unsigned long hugetlb_zero = 0, hugetlb_infinity = ~0UL;
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -070025static unsigned long nr_huge_pages, free_huge_pages, resv_huge_pages;
Adam Litke7893d1d2007-10-16 01:26:18 -070026static unsigned long surplus_huge_pages;
Nishanth Aravamudan064d9ef2008-02-13 15:03:19 -080027static unsigned long nr_overcommit_huge_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028unsigned long max_huge_pages;
Nishanth Aravamudan064d9ef2008-02-13 15:03:19 -080029unsigned long sysctl_overcommit_huge_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030static struct list_head hugepage_freelists[MAX_NUMNODES];
31static unsigned int nr_huge_pages_node[MAX_NUMNODES];
32static unsigned int free_huge_pages_node[MAX_NUMNODES];
Adam Litke7893d1d2007-10-16 01:26:18 -070033static unsigned int surplus_huge_pages_node[MAX_NUMNODES];
Mel Gorman396faf02007-07-17 04:03:13 -070034static gfp_t htlb_alloc_mask = GFP_HIGHUSER;
35unsigned long hugepages_treat_as_movable;
Nishanth Aravamudan63b46132007-10-16 01:26:24 -070036static int hugetlb_next_nid;
Mel Gorman396faf02007-07-17 04:03:13 -070037
David Gibson3935baa2006-03-22 00:08:53 -080038/*
39 * Protects updates to hugepage_freelists, nr_huge_pages, and free_huge_pages
40 */
41static DEFINE_SPINLOCK(hugetlb_lock);
Eric Paris0bd0f9f2005-11-21 21:32:28 -080042
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -070043/*
Andy Whitcroft96822902008-07-23 21:27:29 -070044 * Region tracking -- allows tracking of reservations and instantiated pages
45 * across the pages in a mapping.
46 */
47struct file_region {
48 struct list_head link;
49 long from;
50 long to;
51};
52
53static long region_add(struct list_head *head, long f, long t)
54{
55 struct file_region *rg, *nrg, *trg;
56
57 /* Locate the region we are either in or before. */
58 list_for_each_entry(rg, head, link)
59 if (f <= rg->to)
60 break;
61
62 /* Round our left edge to the current segment if it encloses us. */
63 if (f > rg->from)
64 f = rg->from;
65
66 /* Check for and consume any regions we now overlap with. */
67 nrg = rg;
68 list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
69 if (&rg->link == head)
70 break;
71 if (rg->from > t)
72 break;
73
74 /* If this area reaches higher then extend our area to
75 * include it completely. If this is not the first area
76 * which we intend to reuse, free it. */
77 if (rg->to > t)
78 t = rg->to;
79 if (rg != nrg) {
80 list_del(&rg->link);
81 kfree(rg);
82 }
83 }
84 nrg->from = f;
85 nrg->to = t;
86 return 0;
87}
88
89static long region_chg(struct list_head *head, long f, long t)
90{
91 struct file_region *rg, *nrg;
92 long chg = 0;
93
94 /* Locate the region we are before or in. */
95 list_for_each_entry(rg, head, link)
96 if (f <= rg->to)
97 break;
98
99 /* If we are below the current region then a new region is required.
100 * Subtle, allocate a new region at the position but make it zero
101 * size such that we can guarantee to record the reservation. */
102 if (&rg->link == head || t < rg->from) {
103 nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
104 if (!nrg)
105 return -ENOMEM;
106 nrg->from = f;
107 nrg->to = f;
108 INIT_LIST_HEAD(&nrg->link);
109 list_add(&nrg->link, rg->link.prev);
110
111 return t - f;
112 }
113
114 /* Round our left edge to the current segment if it encloses us. */
115 if (f > rg->from)
116 f = rg->from;
117 chg = t - f;
118
119 /* Check for and consume any regions we now overlap with. */
120 list_for_each_entry(rg, rg->link.prev, link) {
121 if (&rg->link == head)
122 break;
123 if (rg->from > t)
124 return chg;
125
126 /* We overlap with this area, if it extends futher than
127 * us then we must extend ourselves. Account for its
128 * existing reservation. */
129 if (rg->to > t) {
130 chg += rg->to - t;
131 t = rg->to;
132 }
133 chg -= rg->to - rg->from;
134 }
135 return chg;
136}
137
138static long region_truncate(struct list_head *head, long end)
139{
140 struct file_region *rg, *trg;
141 long chg = 0;
142
143 /* Locate the region we are either in or before. */
144 list_for_each_entry(rg, head, link)
145 if (end <= rg->to)
146 break;
147 if (&rg->link == head)
148 return 0;
149
150 /* If we are in the middle of a region then adjust it. */
151 if (end > rg->from) {
152 chg = rg->to - end;
153 rg->to = end;
154 rg = list_entry(rg->link.next, typeof(*rg), link);
155 }
156
157 /* Drop any remaining regions. */
158 list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
159 if (&rg->link == head)
160 break;
161 chg += rg->to - rg->from;
162 list_del(&rg->link);
163 kfree(rg);
164 }
165 return chg;
166}
167
168/*
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700169 * Convert the address within this vma to the page offset within
170 * the mapping, in base page units.
171 */
172static pgoff_t vma_page_offset(struct vm_area_struct *vma,
173 unsigned long address)
174{
175 return ((address - vma->vm_start) >> PAGE_SHIFT) +
176 (vma->vm_pgoff >> PAGE_SHIFT);
177}
178
179/*
180 * Convert the address within this vma to the page offset within
181 * the mapping, in pagecache page units; huge pages here.
182 */
183static pgoff_t vma_pagecache_offset(struct vm_area_struct *vma,
184 unsigned long address)
185{
186 return ((address - vma->vm_start) >> HPAGE_SHIFT) +
187 (vma->vm_pgoff >> (HPAGE_SHIFT - PAGE_SHIFT));
188}
189
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700190#define HPAGE_RESV_OWNER (1UL << (BITS_PER_LONG - 1))
191#define HPAGE_RESV_UNMAPPED (1UL << (BITS_PER_LONG - 2))
192#define HPAGE_RESV_MASK (HPAGE_RESV_OWNER | HPAGE_RESV_UNMAPPED)
Mel Gormana1e78772008-07-23 21:27:23 -0700193/*
194 * These helpers are used to track how many pages are reserved for
195 * faults in a MAP_PRIVATE mapping. Only the process that called mmap()
196 * is guaranteed to have their future faults succeed.
197 *
198 * With the exception of reset_vma_resv_huge_pages() which is called at fork(),
199 * the reserve counters are updated with the hugetlb_lock held. It is safe
200 * to reset the VMA at fork() time as it is not in use yet and there is no
201 * chance of the global counters getting corrupted as a result of the values.
202 */
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700203static unsigned long get_vma_private_data(struct vm_area_struct *vma)
204{
205 return (unsigned long)vma->vm_private_data;
206}
207
208static void set_vma_private_data(struct vm_area_struct *vma,
209 unsigned long value)
210{
211 vma->vm_private_data = (void *)value;
212}
213
Mel Gormana1e78772008-07-23 21:27:23 -0700214static unsigned long vma_resv_huge_pages(struct vm_area_struct *vma)
215{
216 VM_BUG_ON(!is_vm_hugetlb_page(vma));
217 if (!(vma->vm_flags & VM_SHARED))
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700218 return get_vma_private_data(vma) & ~HPAGE_RESV_MASK;
Mel Gormana1e78772008-07-23 21:27:23 -0700219 return 0;
220}
221
222static void set_vma_resv_huge_pages(struct vm_area_struct *vma,
223 unsigned long reserve)
224{
225 VM_BUG_ON(!is_vm_hugetlb_page(vma));
226 VM_BUG_ON(vma->vm_flags & VM_SHARED);
227
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700228 set_vma_private_data(vma,
229 (get_vma_private_data(vma) & HPAGE_RESV_MASK) | reserve);
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700230}
231
232static void set_vma_resv_flags(struct vm_area_struct *vma, unsigned long flags)
233{
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700234 VM_BUG_ON(!is_vm_hugetlb_page(vma));
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700235 VM_BUG_ON(vma->vm_flags & VM_SHARED);
236
237 set_vma_private_data(vma, get_vma_private_data(vma) | flags);
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700238}
239
240static int is_vma_resv_set(struct vm_area_struct *vma, unsigned long flag)
241{
242 VM_BUG_ON(!is_vm_hugetlb_page(vma));
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700243
244 return (get_vma_private_data(vma) & flag) != 0;
Mel Gormana1e78772008-07-23 21:27:23 -0700245}
246
247/* Decrement the reserved pages in the hugepage pool by one */
248static void decrement_hugepage_resv_vma(struct vm_area_struct *vma)
249{
250 if (vma->vm_flags & VM_SHARED) {
251 /* Shared mappings always use reserves */
252 resv_huge_pages--;
253 } else {
254 /*
255 * Only the process that called mmap() has reserves for
256 * private mappings.
257 */
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700258 if (is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
259 unsigned long flags, reserve;
Mel Gormana1e78772008-07-23 21:27:23 -0700260 resv_huge_pages--;
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700261 flags = (unsigned long)vma->vm_private_data &
262 HPAGE_RESV_MASK;
Mel Gormana1e78772008-07-23 21:27:23 -0700263 reserve = (unsigned long)vma->vm_private_data - 1;
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700264 vma->vm_private_data = (void *)(reserve | flags);
Mel Gormana1e78772008-07-23 21:27:23 -0700265 }
266 }
267}
268
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700269/* Reset counters to 0 and clear all HPAGE_RESV_* flags */
Mel Gormana1e78772008-07-23 21:27:23 -0700270void reset_vma_resv_huge_pages(struct vm_area_struct *vma)
271{
272 VM_BUG_ON(!is_vm_hugetlb_page(vma));
273 if (!(vma->vm_flags & VM_SHARED))
274 vma->vm_private_data = (void *)0;
275}
276
277/* Returns true if the VMA has associated reserve pages */
278static int vma_has_private_reserves(struct vm_area_struct *vma)
279{
280 if (vma->vm_flags & VM_SHARED)
281 return 0;
282 if (!vma_resv_huge_pages(vma))
283 return 0;
284 return 1;
285}
286
David Gibson79ac6ba2006-03-22 00:08:51 -0800287static void clear_huge_page(struct page *page, unsigned long addr)
288{
289 int i;
290
291 might_sleep();
292 for (i = 0; i < (HPAGE_SIZE/PAGE_SIZE); i++) {
293 cond_resched();
Ralf Baechle281e0e32007-10-01 01:20:10 -0700294 clear_user_highpage(page + i, addr + i * PAGE_SIZE);
David Gibson79ac6ba2006-03-22 00:08:51 -0800295 }
296}
297
298static void copy_huge_page(struct page *dst, struct page *src,
Atsushi Nemoto9de455b2006-12-12 17:14:55 +0000299 unsigned long addr, struct vm_area_struct *vma)
David Gibson79ac6ba2006-03-22 00:08:51 -0800300{
301 int i;
302
303 might_sleep();
304 for (i = 0; i < HPAGE_SIZE/PAGE_SIZE; i++) {
305 cond_resched();
Atsushi Nemoto9de455b2006-12-12 17:14:55 +0000306 copy_user_highpage(dst + i, src + i, addr + i*PAGE_SIZE, vma);
David Gibson79ac6ba2006-03-22 00:08:51 -0800307 }
308}
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310static void enqueue_huge_page(struct page *page)
311{
312 int nid = page_to_nid(page);
313 list_add(&page->lru, &hugepage_freelists[nid]);
314 free_huge_pages++;
315 free_huge_pages_node[nid]++;
316}
317
Nishanth Aravamudan348e1e02008-03-04 14:29:42 -0800318static struct page *dequeue_huge_page(void)
319{
320 int nid;
321 struct page *page = NULL;
322
323 for (nid = 0; nid < MAX_NUMNODES; ++nid) {
324 if (!list_empty(&hugepage_freelists[nid])) {
325 page = list_entry(hugepage_freelists[nid].next,
326 struct page, lru);
327 list_del(&page->lru);
328 free_huge_pages--;
329 free_huge_pages_node[nid]--;
330 break;
331 }
332 }
333 return page;
334}
335
336static struct page *dequeue_huge_page_vma(struct vm_area_struct *vma,
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700337 unsigned long address, int avoid_reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Nishanth Aravamudan31a5c6e2007-07-15 23:38:02 -0700339 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 struct page *page = NULL;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -0700341 struct mempolicy *mpol;
Mel Gorman19770b32008-04-28 02:12:18 -0700342 nodemask_t *nodemask;
Mel Gorman396faf02007-07-17 04:03:13 -0700343 struct zonelist *zonelist = huge_zonelist(vma, address,
Mel Gorman19770b32008-04-28 02:12:18 -0700344 htlb_alloc_mask, &mpol, &nodemask);
Mel Gormandd1a2392008-04-28 02:12:17 -0700345 struct zone *zone;
346 struct zoneref *z;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Mel Gormana1e78772008-07-23 21:27:23 -0700348 /*
349 * A child process with MAP_PRIVATE mappings created by their parent
350 * have no page reserves. This check ensures that reservations are
351 * not "stolen". The child may still get SIGKILLed
352 */
353 if (!vma_has_private_reserves(vma) &&
354 free_huge_pages - resv_huge_pages == 0)
355 return NULL;
356
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700357 /* If reserves cannot be used, ensure enough pages are in the pool */
358 if (avoid_reserve && free_huge_pages - resv_huge_pages == 0)
359 return NULL;
360
Mel Gorman19770b32008-04-28 02:12:18 -0700361 for_each_zone_zonelist_nodemask(zone, z, zonelist,
362 MAX_NR_ZONES - 1, nodemask) {
Mel Gorman54a6eb52008-04-28 02:12:16 -0700363 nid = zone_to_nid(zone);
364 if (cpuset_zone_allowed_softwall(zone, htlb_alloc_mask) &&
Andrew Morton3abf7af2007-07-19 01:49:08 -0700365 !list_empty(&hugepage_freelists[nid])) {
366 page = list_entry(hugepage_freelists[nid].next,
367 struct page, lru);
368 list_del(&page->lru);
369 free_huge_pages--;
370 free_huge_pages_node[nid]--;
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700371
372 if (!avoid_reserve)
373 decrement_hugepage_resv_vma(vma);
Mel Gormana1e78772008-07-23 21:27:23 -0700374
Ken Chen5ab3ee72007-07-23 18:44:00 -0700375 break;
Andrew Morton3abf7af2007-07-19 01:49:08 -0700376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -0700378 mpol_cond_put(mpol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return page;
380}
381
Adam Litke6af2acb2007-10-16 01:26:16 -0700382static void update_and_free_page(struct page *page)
383{
384 int i;
385 nr_huge_pages--;
386 nr_huge_pages_node[page_to_nid(page)]--;
387 for (i = 0; i < (HPAGE_SIZE / PAGE_SIZE); i++) {
388 page[i].flags &= ~(1 << PG_locked | 1 << PG_error | 1 << PG_referenced |
389 1 << PG_dirty | 1 << PG_active | 1 << PG_reserved |
390 1 << PG_private | 1<< PG_writeback);
391 }
392 set_compound_page_dtor(page, NULL);
393 set_page_refcounted(page);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -0700394 arch_release_hugepage(page);
Adam Litke6af2acb2007-10-16 01:26:16 -0700395 __free_pages(page, HUGETLB_PAGE_ORDER);
396}
397
David Gibson27a85ef2006-03-22 00:08:56 -0800398static void free_huge_page(struct page *page)
399{
Adam Litke7893d1d2007-10-16 01:26:18 -0700400 int nid = page_to_nid(page);
Adam Litkec79fb752007-11-14 16:59:38 -0800401 struct address_space *mapping;
David Gibson27a85ef2006-03-22 00:08:56 -0800402
Adam Litkec79fb752007-11-14 16:59:38 -0800403 mapping = (struct address_space *) page_private(page);
Andy Whitcrofte5df70a2008-02-23 15:23:32 -0800404 set_page_private(page, 0);
Adam Litke7893d1d2007-10-16 01:26:18 -0700405 BUG_ON(page_count(page));
David Gibson27a85ef2006-03-22 00:08:56 -0800406 INIT_LIST_HEAD(&page->lru);
407
408 spin_lock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700409 if (surplus_huge_pages_node[nid]) {
410 update_and_free_page(page);
411 surplus_huge_pages--;
412 surplus_huge_pages_node[nid]--;
413 } else {
414 enqueue_huge_page(page);
415 }
David Gibson27a85ef2006-03-22 00:08:56 -0800416 spin_unlock(&hugetlb_lock);
Adam Litkec79fb752007-11-14 16:59:38 -0800417 if (mapping)
Adam Litke9a119c02007-11-14 16:59:41 -0800418 hugetlb_put_quota(mapping, 1);
David Gibson27a85ef2006-03-22 00:08:56 -0800419}
420
Adam Litke7893d1d2007-10-16 01:26:18 -0700421/*
422 * Increment or decrement surplus_huge_pages. Keep node-specific counters
423 * balanced by operating on them in a round-robin fashion.
424 * Returns 1 if an adjustment was made.
425 */
426static int adjust_pool_surplus(int delta)
427{
428 static int prev_nid;
429 int nid = prev_nid;
430 int ret = 0;
431
432 VM_BUG_ON(delta != -1 && delta != 1);
433 do {
434 nid = next_node(nid, node_online_map);
435 if (nid == MAX_NUMNODES)
436 nid = first_node(node_online_map);
437
438 /* To shrink on this node, there must be a surplus page */
439 if (delta < 0 && !surplus_huge_pages_node[nid])
440 continue;
441 /* Surplus cannot exceed the total number of pages */
442 if (delta > 0 && surplus_huge_pages_node[nid] >=
443 nr_huge_pages_node[nid])
444 continue;
445
446 surplus_huge_pages += delta;
447 surplus_huge_pages_node[nid] += delta;
448 ret = 1;
449 break;
450 } while (nid != prev_nid);
451
452 prev_nid = nid;
453 return ret;
454}
455
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700456static struct page *alloc_fresh_huge_page_node(int nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 struct page *page;
Joe Jinf96efd52007-07-15 23:38:12 -0700459
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700460 page = alloc_pages_node(nid,
Nishanth Aravamudan551883a2008-04-29 00:58:26 -0700461 htlb_alloc_mask|__GFP_COMP|__GFP_THISNODE|
462 __GFP_REPEAT|__GFP_NOWARN,
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700463 HUGETLB_PAGE_ORDER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 if (page) {
Gerald Schaefer7f2e9522008-04-28 02:13:29 -0700465 if (arch_prepare_hugepage(page)) {
466 __free_pages(page, HUGETLB_PAGE_ORDER);
Harvey Harrison7b8ee842008-04-28 14:13:19 -0700467 return NULL;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -0700468 }
Andy Whitcroft33f2ef82006-12-06 20:33:32 -0800469 set_compound_page_dtor(page, free_huge_page);
Eric Paris0bd0f9f2005-11-21 21:32:28 -0800470 spin_lock(&hugetlb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 nr_huge_pages++;
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700472 nr_huge_pages_node[nid]++;
Eric Paris0bd0f9f2005-11-21 21:32:28 -0800473 spin_unlock(&hugetlb_lock);
Nick Piggina4822892006-03-22 00:08:08 -0800474 put_page(page); /* free it into the hugepage allocator */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700476
477 return page;
478}
479
480static int alloc_fresh_huge_page(void)
481{
482 struct page *page;
483 int start_nid;
484 int next_nid;
485 int ret = 0;
486
487 start_nid = hugetlb_next_nid;
488
489 do {
490 page = alloc_fresh_huge_page_node(hugetlb_next_nid);
491 if (page)
492 ret = 1;
493 /*
494 * Use a helper variable to find the next node and then
495 * copy it back to hugetlb_next_nid afterwards:
496 * otherwise there's a window in which a racer might
497 * pass invalid nid MAX_NUMNODES to alloc_pages_node.
498 * But we don't need to use a spin_lock here: it really
499 * doesn't matter if occasionally a racer chooses the
500 * same nid as we do. Move nid forward in the mask even
501 * if we just successfully allocated a hugepage so that
502 * the next caller gets hugepages on the next node.
503 */
504 next_nid = next_node(hugetlb_next_nid, node_online_map);
505 if (next_nid == MAX_NUMNODES)
506 next_nid = first_node(node_online_map);
507 hugetlb_next_nid = next_nid;
508 } while (!page && hugetlb_next_nid != start_nid);
509
Adam Litke3b116302008-04-28 02:13:06 -0700510 if (ret)
511 count_vm_event(HTLB_BUDDY_PGALLOC);
512 else
513 count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
514
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700515 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
Adam Litke7893d1d2007-10-16 01:26:18 -0700518static struct page *alloc_buddy_huge_page(struct vm_area_struct *vma,
519 unsigned long address)
520{
521 struct page *page;
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800522 unsigned int nid;
Adam Litke7893d1d2007-10-16 01:26:18 -0700523
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800524 /*
525 * Assume we will successfully allocate the surplus page to
526 * prevent racing processes from causing the surplus to exceed
527 * overcommit
528 *
529 * This however introduces a different race, where a process B
530 * tries to grow the static hugepage pool while alloc_pages() is
531 * called by process A. B will only examine the per-node
532 * counters in determining if surplus huge pages can be
533 * converted to normal huge pages in adjust_pool_surplus(). A
534 * won't be able to increment the per-node counter, until the
535 * lock is dropped by B, but B doesn't drop hugetlb_lock until
536 * no more huge pages can be converted from surplus to normal
537 * state (and doesn't try to convert again). Thus, we have a
538 * case where a surplus huge page exists, the pool is grown, and
539 * the surplus huge page still exists after, even though it
540 * should just have been converted to a normal huge page. This
541 * does not leak memory, though, as the hugepage will be freed
542 * once it is out of use. It also does not allow the counters to
543 * go out of whack in adjust_pool_surplus() as we don't modify
544 * the node values until we've gotten the hugepage and only the
545 * per-node value is checked there.
546 */
547 spin_lock(&hugetlb_lock);
548 if (surplus_huge_pages >= nr_overcommit_huge_pages) {
549 spin_unlock(&hugetlb_lock);
550 return NULL;
551 } else {
552 nr_huge_pages++;
553 surplus_huge_pages++;
554 }
555 spin_unlock(&hugetlb_lock);
556
Nishanth Aravamudan551883a2008-04-29 00:58:26 -0700557 page = alloc_pages(htlb_alloc_mask|__GFP_COMP|
558 __GFP_REPEAT|__GFP_NOWARN,
Adam Litke7893d1d2007-10-16 01:26:18 -0700559 HUGETLB_PAGE_ORDER);
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800560
561 spin_lock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700562 if (page) {
Adam Litke2668db92008-03-10 11:43:50 -0700563 /*
564 * This page is now managed by the hugetlb allocator and has
565 * no users -- drop the buddy allocator's reference.
566 */
567 put_page_testzero(page);
568 VM_BUG_ON(page_count(page));
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800569 nid = page_to_nid(page);
Adam Litke7893d1d2007-10-16 01:26:18 -0700570 set_compound_page_dtor(page, free_huge_page);
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800571 /*
572 * We incremented the global counters already
573 */
574 nr_huge_pages_node[nid]++;
575 surplus_huge_pages_node[nid]++;
Adam Litke3b116302008-04-28 02:13:06 -0700576 __count_vm_event(HTLB_BUDDY_PGALLOC);
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800577 } else {
578 nr_huge_pages--;
579 surplus_huge_pages--;
Adam Litke3b116302008-04-28 02:13:06 -0700580 __count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
Adam Litke7893d1d2007-10-16 01:26:18 -0700581 }
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800582 spin_unlock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700583
584 return page;
585}
586
Adam Litkee4e574b2007-10-16 01:26:19 -0700587/*
588 * Increase the hugetlb pool such that it can accomodate a reservation
589 * of size 'delta'.
590 */
591static int gather_surplus_pages(int delta)
592{
593 struct list_head surplus_list;
594 struct page *page, *tmp;
595 int ret, i;
596 int needed, allocated;
597
598 needed = (resv_huge_pages + delta) - free_huge_pages;
Adam Litkeac09b3a2008-03-04 14:29:38 -0800599 if (needed <= 0) {
600 resv_huge_pages += delta;
Adam Litkee4e574b2007-10-16 01:26:19 -0700601 return 0;
Adam Litkeac09b3a2008-03-04 14:29:38 -0800602 }
Adam Litkee4e574b2007-10-16 01:26:19 -0700603
604 allocated = 0;
605 INIT_LIST_HEAD(&surplus_list);
606
607 ret = -ENOMEM;
608retry:
609 spin_unlock(&hugetlb_lock);
610 for (i = 0; i < needed; i++) {
611 page = alloc_buddy_huge_page(NULL, 0);
612 if (!page) {
613 /*
614 * We were not able to allocate enough pages to
615 * satisfy the entire reservation so we free what
616 * we've allocated so far.
617 */
618 spin_lock(&hugetlb_lock);
619 needed = 0;
620 goto free;
621 }
622
623 list_add(&page->lru, &surplus_list);
624 }
625 allocated += needed;
626
627 /*
628 * After retaking hugetlb_lock, we need to recalculate 'needed'
629 * because either resv_huge_pages or free_huge_pages may have changed.
630 */
631 spin_lock(&hugetlb_lock);
632 needed = (resv_huge_pages + delta) - (free_huge_pages + allocated);
633 if (needed > 0)
634 goto retry;
635
636 /*
637 * The surplus_list now contains _at_least_ the number of extra pages
638 * needed to accomodate the reservation. Add the appropriate number
639 * of pages to the hugetlb pool and free the extras back to the buddy
Adam Litkeac09b3a2008-03-04 14:29:38 -0800640 * allocator. Commit the entire reservation here to prevent another
641 * process from stealing the pages as they are added to the pool but
642 * before they are reserved.
Adam Litkee4e574b2007-10-16 01:26:19 -0700643 */
644 needed += allocated;
Adam Litkeac09b3a2008-03-04 14:29:38 -0800645 resv_huge_pages += delta;
Adam Litkee4e574b2007-10-16 01:26:19 -0700646 ret = 0;
647free:
Adam Litke19fc3f02008-04-28 02:12:20 -0700648 /* Free the needed pages to the hugetlb pool */
Adam Litkee4e574b2007-10-16 01:26:19 -0700649 list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
Adam Litke19fc3f02008-04-28 02:12:20 -0700650 if ((--needed) < 0)
651 break;
Adam Litkee4e574b2007-10-16 01:26:19 -0700652 list_del(&page->lru);
Adam Litke19fc3f02008-04-28 02:12:20 -0700653 enqueue_huge_page(page);
654 }
655
656 /* Free unnecessary surplus pages to the buddy allocator */
657 if (!list_empty(&surplus_list)) {
658 spin_unlock(&hugetlb_lock);
659 list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
660 list_del(&page->lru);
Adam Litkeaf767cb2007-10-16 01:26:25 -0700661 /*
Adam Litke2668db92008-03-10 11:43:50 -0700662 * The page has a reference count of zero already, so
663 * call free_huge_page directly instead of using
664 * put_page. This must be done with hugetlb_lock
Adam Litkeaf767cb2007-10-16 01:26:25 -0700665 * unlocked which is safe because free_huge_page takes
666 * hugetlb_lock before deciding how to free the page.
667 */
Adam Litke2668db92008-03-10 11:43:50 -0700668 free_huge_page(page);
Adam Litkeaf767cb2007-10-16 01:26:25 -0700669 }
Adam Litke19fc3f02008-04-28 02:12:20 -0700670 spin_lock(&hugetlb_lock);
Adam Litkee4e574b2007-10-16 01:26:19 -0700671 }
672
673 return ret;
674}
675
676/*
677 * When releasing a hugetlb pool reservation, any surplus pages that were
678 * allocated to satisfy the reservation must be explicitly freed if they were
679 * never used.
680 */
Adrian Bunk8cde0452007-11-14 16:59:43 -0800681static void return_unused_surplus_pages(unsigned long unused_resv_pages)
Adam Litkee4e574b2007-10-16 01:26:19 -0700682{
683 static int nid = -1;
684 struct page *page;
685 unsigned long nr_pages;
686
Nishanth Aravamudan11320d12008-03-26 14:40:20 -0700687 /*
688 * We want to release as many surplus pages as possible, spread
689 * evenly across all nodes. Iterate across all nodes until we
690 * can no longer free unreserved surplus pages. This occurs when
691 * the nodes with surplus pages have no free pages.
692 */
693 unsigned long remaining_iterations = num_online_nodes();
694
Adam Litkeac09b3a2008-03-04 14:29:38 -0800695 /* Uncommit the reservation */
696 resv_huge_pages -= unused_resv_pages;
697
Adam Litkee4e574b2007-10-16 01:26:19 -0700698 nr_pages = min(unused_resv_pages, surplus_huge_pages);
699
Nishanth Aravamudan11320d12008-03-26 14:40:20 -0700700 while (remaining_iterations-- && nr_pages) {
Adam Litkee4e574b2007-10-16 01:26:19 -0700701 nid = next_node(nid, node_online_map);
702 if (nid == MAX_NUMNODES)
703 nid = first_node(node_online_map);
704
705 if (!surplus_huge_pages_node[nid])
706 continue;
707
708 if (!list_empty(&hugepage_freelists[nid])) {
709 page = list_entry(hugepage_freelists[nid].next,
710 struct page, lru);
711 list_del(&page->lru);
712 update_and_free_page(page);
713 free_huge_pages--;
714 free_huge_pages_node[nid]--;
715 surplus_huge_pages--;
716 surplus_huge_pages_node[nid]--;
717 nr_pages--;
Nishanth Aravamudan11320d12008-03-26 14:40:20 -0700718 remaining_iterations = num_online_nodes();
Adam Litkee4e574b2007-10-16 01:26:19 -0700719 }
720 }
721}
722
David Gibson27a85ef2006-03-22 00:08:56 -0800723static struct page *alloc_huge_page(struct vm_area_struct *vma,
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700724 unsigned long addr, int avoid_reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Adam Litke348ea202007-11-14 16:59:37 -0800726 struct page *page;
Adam Litke2fc39ce2007-11-14 16:59:39 -0800727 struct address_space *mapping = vma->vm_file->f_mapping;
Mel Gormana1e78772008-07-23 21:27:23 -0700728 struct inode *inode = mapping->host;
729 unsigned int chg = 0;
Adam Litke2fc39ce2007-11-14 16:59:39 -0800730
Mel Gormana1e78772008-07-23 21:27:23 -0700731 /*
732 * Processes that did not create the mapping will have no reserves and
733 * will not have accounted against quota. Check that the quota can be
734 * made before satisfying the allocation
735 */
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700736 if (!(vma->vm_flags & VM_SHARED) &&
737 !is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
Mel Gormana1e78772008-07-23 21:27:23 -0700738 chg = 1;
739 if (hugetlb_get_quota(inode->i_mapping, chg))
740 return ERR_PTR(-ENOSPC);
Adam Litke90d8b7e2007-11-14 16:59:42 -0800741 }
Mel Gormana1e78772008-07-23 21:27:23 -0700742
743 spin_lock(&hugetlb_lock);
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700744 page = dequeue_huge_page_vma(vma, addr, avoid_reserve);
Mel Gormana1e78772008-07-23 21:27:23 -0700745 spin_unlock(&hugetlb_lock);
746
747 if (!page) {
748 page = alloc_buddy_huge_page(vma, addr);
749 if (!page) {
750 hugetlb_put_quota(inode->i_mapping, chg);
751 return ERR_PTR(-VM_FAULT_OOM);
752 }
753 }
754
755 set_page_refcounted(page);
756 set_page_private(page, (unsigned long) mapping);
757
Adam Litke90d8b7e2007-11-14 16:59:42 -0800758 return page;
David Gibsonb45b5bd2006-03-22 00:08:55 -0800759}
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761static int __init hugetlb_init(void)
762{
763 unsigned long i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100765 if (HPAGE_SHIFT == 0)
766 return 0;
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 for (i = 0; i < MAX_NUMNODES; ++i)
769 INIT_LIST_HEAD(&hugepage_freelists[i]);
770
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700771 hugetlb_next_nid = first_node(node_online_map);
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 for (i = 0; i < max_huge_pages; ++i) {
Nick Piggina4822892006-03-22 00:08:08 -0800774 if (!alloc_fresh_huge_page())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
777 max_huge_pages = free_huge_pages = nr_huge_pages = i;
778 printk("Total HugeTLB memory allocated, %ld\n", free_huge_pages);
779 return 0;
780}
781module_init(hugetlb_init);
782
783static int __init hugetlb_setup(char *s)
784{
785 if (sscanf(s, "%lu", &max_huge_pages) <= 0)
786 max_huge_pages = 0;
787 return 1;
788}
789__setup("hugepages=", hugetlb_setup);
790
Ken Chen8a630112007-05-09 02:33:34 -0700791static unsigned int cpuset_mems_nr(unsigned int *array)
792{
793 int node;
794 unsigned int nr = 0;
795
796 for_each_node_mask(node, cpuset_current_mems_allowed)
797 nr += array[node];
798
799 return nr;
800}
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802#ifdef CONFIG_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803#ifdef CONFIG_HIGHMEM
804static void try_to_free_low(unsigned long count)
805{
Christoph Lameter4415cc82006-09-25 23:31:55 -0700806 int i;
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 for (i = 0; i < MAX_NUMNODES; ++i) {
809 struct page *page, *next;
810 list_for_each_entry_safe(page, next, &hugepage_freelists[i], lru) {
Adam Litke6b0c8802007-10-16 01:26:23 -0700811 if (count >= nr_huge_pages)
812 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (PageHighMem(page))
814 continue;
815 list_del(&page->lru);
816 update_and_free_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 free_huge_pages--;
Christoph Lameter4415cc82006-09-25 23:31:55 -0700818 free_huge_pages_node[page_to_nid(page)]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820 }
821}
822#else
823static inline void try_to_free_low(unsigned long count)
824{
825}
826#endif
827
Adam Litke7893d1d2007-10-16 01:26:18 -0700828#define persistent_huge_pages (nr_huge_pages - surplus_huge_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829static unsigned long set_max_huge_pages(unsigned long count)
830{
Adam Litke7893d1d2007-10-16 01:26:18 -0700831 unsigned long min_count, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Adam Litke7893d1d2007-10-16 01:26:18 -0700833 /*
834 * Increase the pool size
835 * First take pages out of surplus state. Then make up the
836 * remaining difference by allocating fresh huge pages.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800837 *
838 * We might race with alloc_buddy_huge_page() here and be unable
839 * to convert a surplus huge page to a normal huge page. That is
840 * not critical, though, it just means the overall size of the
841 * pool might be one hugepage larger than it needs to be, but
842 * within all the constraints specified by the sysctls.
Adam Litke7893d1d2007-10-16 01:26:18 -0700843 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 spin_lock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700845 while (surplus_huge_pages && count > persistent_huge_pages) {
846 if (!adjust_pool_surplus(-1))
847 break;
848 }
849
850 while (count > persistent_huge_pages) {
Adam Litke7893d1d2007-10-16 01:26:18 -0700851 /*
852 * If this allocation races such that we no longer need the
853 * page, free_huge_page will handle it by freeing the page
854 * and reducing the surplus.
855 */
856 spin_unlock(&hugetlb_lock);
857 ret = alloc_fresh_huge_page();
858 spin_lock(&hugetlb_lock);
859 if (!ret)
860 goto out;
861
862 }
Adam Litke7893d1d2007-10-16 01:26:18 -0700863
864 /*
865 * Decrease the pool size
866 * First return free pages to the buddy allocator (being careful
867 * to keep enough around to satisfy reservations). Then place
868 * pages into surplus state as needed so the pool will shrink
869 * to the desired size as pages become free.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800870 *
871 * By placing pages into the surplus state independent of the
872 * overcommit value, we are allowing the surplus pool size to
873 * exceed overcommit. There are few sane options here. Since
874 * alloc_buddy_huge_page() is checking the global counter,
875 * though, we'll note that we're not allowed to exceed surplus
876 * and won't grow the pool anywhere else. Not until one of the
877 * sysctls are changed, or the surplus pages go out of use.
Adam Litke7893d1d2007-10-16 01:26:18 -0700878 */
Adam Litke6b0c8802007-10-16 01:26:23 -0700879 min_count = resv_huge_pages + nr_huge_pages - free_huge_pages;
880 min_count = max(count, min_count);
Adam Litke7893d1d2007-10-16 01:26:18 -0700881 try_to_free_low(min_count);
882 while (min_count < persistent_huge_pages) {
Nishanth Aravamudan348e1e02008-03-04 14:29:42 -0800883 struct page *page = dequeue_huge_page();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 if (!page)
885 break;
886 update_and_free_page(page);
887 }
Adam Litke7893d1d2007-10-16 01:26:18 -0700888 while (count < persistent_huge_pages) {
889 if (!adjust_pool_surplus(1))
890 break;
891 }
892out:
893 ret = persistent_huge_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 spin_unlock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700895 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
898int hugetlb_sysctl_handler(struct ctl_table *table, int write,
899 struct file *file, void __user *buffer,
900 size_t *length, loff_t *ppos)
901{
902 proc_doulongvec_minmax(table, write, file, buffer, length, ppos);
903 max_huge_pages = set_max_huge_pages(max_huge_pages);
904 return 0;
905}
Mel Gorman396faf02007-07-17 04:03:13 -0700906
907int hugetlb_treat_movable_handler(struct ctl_table *table, int write,
908 struct file *file, void __user *buffer,
909 size_t *length, loff_t *ppos)
910{
911 proc_dointvec(table, write, file, buffer, length, ppos);
912 if (hugepages_treat_as_movable)
913 htlb_alloc_mask = GFP_HIGHUSER_MOVABLE;
914 else
915 htlb_alloc_mask = GFP_HIGHUSER;
916 return 0;
917}
918
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -0800919int hugetlb_overcommit_handler(struct ctl_table *table, int write,
920 struct file *file, void __user *buffer,
921 size_t *length, loff_t *ppos)
922{
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -0800923 proc_doulongvec_minmax(table, write, file, buffer, length, ppos);
Nishanth Aravamudan064d9ef2008-02-13 15:03:19 -0800924 spin_lock(&hugetlb_lock);
925 nr_overcommit_huge_pages = sysctl_overcommit_huge_pages;
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -0800926 spin_unlock(&hugetlb_lock);
927 return 0;
928}
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930#endif /* CONFIG_SYSCTL */
931
932int hugetlb_report_meminfo(char *buf)
933{
934 return sprintf(buf,
935 "HugePages_Total: %5lu\n"
936 "HugePages_Free: %5lu\n"
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -0700937 "HugePages_Rsvd: %5lu\n"
Adam Litke7893d1d2007-10-16 01:26:18 -0700938 "HugePages_Surp: %5lu\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 "Hugepagesize: %5lu kB\n",
940 nr_huge_pages,
941 free_huge_pages,
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -0700942 resv_huge_pages,
Adam Litke7893d1d2007-10-16 01:26:18 -0700943 surplus_huge_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 HPAGE_SIZE/1024);
945}
946
947int hugetlb_report_node_meminfo(int nid, char *buf)
948{
949 return sprintf(buf,
950 "Node %d HugePages_Total: %5u\n"
Nishanth Aravamudana1de0912008-03-26 14:37:53 -0700951 "Node %d HugePages_Free: %5u\n"
952 "Node %d HugePages_Surp: %5u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 nid, nr_huge_pages_node[nid],
Nishanth Aravamudana1de0912008-03-26 14:37:53 -0700954 nid, free_huge_pages_node[nid],
955 nid, surplus_huge_pages_node[nid]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958/* Return the number pages of memory we physically have, in PAGE_SIZE units. */
959unsigned long hugetlb_total_pages(void)
960{
961 return nr_huge_pages * (HPAGE_SIZE / PAGE_SIZE);
962}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Mel Gormanfc1b8a72008-07-23 21:27:22 -0700964static int hugetlb_acct_memory(long delta)
965{
966 int ret = -ENOMEM;
967
968 spin_lock(&hugetlb_lock);
969 /*
970 * When cpuset is configured, it breaks the strict hugetlb page
971 * reservation as the accounting is done on a global variable. Such
972 * reservation is completely rubbish in the presence of cpuset because
973 * the reservation is not checked against page availability for the
974 * current cpuset. Application can still potentially OOM'ed by kernel
975 * with lack of free htlb page in cpuset that the task is in.
976 * Attempt to enforce strict accounting with cpuset is almost
977 * impossible (or too ugly) because cpuset is too fluid that
978 * task or memory node can be dynamically moved between cpusets.
979 *
980 * The change of semantics for shared hugetlb mapping with cpuset is
981 * undesirable. However, in order to preserve some of the semantics,
982 * we fall back to check against current free page availability as
983 * a best attempt and hopefully to minimize the impact of changing
984 * semantics that cpuset has.
985 */
986 if (delta > 0) {
987 if (gather_surplus_pages(delta) < 0)
988 goto out;
989
990 if (delta > cpuset_mems_nr(free_huge_pages_node)) {
991 return_unused_surplus_pages(delta);
992 goto out;
993 }
994 }
995
996 ret = 0;
997 if (delta < 0)
998 return_unused_surplus_pages((unsigned long) -delta);
999
1000out:
1001 spin_unlock(&hugetlb_lock);
1002 return ret;
1003}
1004
Mel Gormana1e78772008-07-23 21:27:23 -07001005static void hugetlb_vm_op_close(struct vm_area_struct *vma)
1006{
1007 unsigned long reserve = vma_resv_huge_pages(vma);
1008 if (reserve)
1009 hugetlb_acct_memory(-reserve);
1010}
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012/*
1013 * We cannot handle pagefaults against hugetlb pages at all. They cause
1014 * handle_mm_fault() to try to instantiate regular-sized pages in the
1015 * hugegpage VMA. do_page_fault() is supposed to trap this, so BUG is we get
1016 * this far.
1017 */
Nick Piggind0217ac2007-07-19 01:47:03 -07001018static int hugetlb_vm_op_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
1020 BUG();
Nick Piggind0217ac2007-07-19 01:47:03 -07001021 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022}
1023
1024struct vm_operations_struct hugetlb_vm_ops = {
Nick Piggind0217ac2007-07-19 01:47:03 -07001025 .fault = hugetlb_vm_op_fault,
Mel Gormana1e78772008-07-23 21:27:23 -07001026 .close = hugetlb_vm_op_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027};
1028
David Gibson1e8f8892006-01-06 00:10:44 -08001029static pte_t make_huge_pte(struct vm_area_struct *vma, struct page *page,
1030 int writable)
David Gibson63551ae2005-06-21 17:14:44 -07001031{
1032 pte_t entry;
1033
David Gibson1e8f8892006-01-06 00:10:44 -08001034 if (writable) {
David Gibson63551ae2005-06-21 17:14:44 -07001035 entry =
1036 pte_mkwrite(pte_mkdirty(mk_pte(page, vma->vm_page_prot)));
1037 } else {
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001038 entry = huge_pte_wrprotect(mk_pte(page, vma->vm_page_prot));
David Gibson63551ae2005-06-21 17:14:44 -07001039 }
1040 entry = pte_mkyoung(entry);
1041 entry = pte_mkhuge(entry);
1042
1043 return entry;
1044}
1045
David Gibson1e8f8892006-01-06 00:10:44 -08001046static void set_huge_ptep_writable(struct vm_area_struct *vma,
1047 unsigned long address, pte_t *ptep)
1048{
1049 pte_t entry;
1050
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001051 entry = pte_mkwrite(pte_mkdirty(huge_ptep_get(ptep)));
1052 if (huge_ptep_set_access_flags(vma, address, ptep, entry, 1)) {
Benjamin Herrenschmidt8dab5242007-06-16 10:16:12 -07001053 update_mmu_cache(vma, address, entry);
Benjamin Herrenschmidt8dab5242007-06-16 10:16:12 -07001054 }
David Gibson1e8f8892006-01-06 00:10:44 -08001055}
1056
1057
David Gibson63551ae2005-06-21 17:14:44 -07001058int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
1059 struct vm_area_struct *vma)
1060{
1061 pte_t *src_pte, *dst_pte, entry;
1062 struct page *ptepage;
Hugh Dickins1c598272005-10-19 21:23:43 -07001063 unsigned long addr;
David Gibson1e8f8892006-01-06 00:10:44 -08001064 int cow;
1065
1066 cow = (vma->vm_flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE;
David Gibson63551ae2005-06-21 17:14:44 -07001067
Hugh Dickins1c598272005-10-19 21:23:43 -07001068 for (addr = vma->vm_start; addr < vma->vm_end; addr += HPAGE_SIZE) {
Hugh Dickinsc74df322005-10-29 18:16:23 -07001069 src_pte = huge_pte_offset(src, addr);
1070 if (!src_pte)
1071 continue;
David Gibson63551ae2005-06-21 17:14:44 -07001072 dst_pte = huge_pte_alloc(dst, addr);
1073 if (!dst_pte)
1074 goto nomem;
Larry Woodmanc5c99422008-01-24 05:49:25 -08001075
1076 /* If the pagetables are shared don't copy or take references */
1077 if (dst_pte == src_pte)
1078 continue;
1079
Hugh Dickinsc74df322005-10-29 18:16:23 -07001080 spin_lock(&dst->page_table_lock);
Nick Piggin46478752008-06-05 22:45:57 -07001081 spin_lock_nested(&src->page_table_lock, SINGLE_DEPTH_NESTING);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001082 if (!huge_pte_none(huge_ptep_get(src_pte))) {
David Gibson1e8f8892006-01-06 00:10:44 -08001083 if (cow)
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001084 huge_ptep_set_wrprotect(src, addr, src_pte);
1085 entry = huge_ptep_get(src_pte);
Hugh Dickins1c598272005-10-19 21:23:43 -07001086 ptepage = pte_page(entry);
1087 get_page(ptepage);
Hugh Dickins1c598272005-10-19 21:23:43 -07001088 set_huge_pte_at(dst, addr, dst_pte, entry);
1089 }
1090 spin_unlock(&src->page_table_lock);
Hugh Dickinsc74df322005-10-29 18:16:23 -07001091 spin_unlock(&dst->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -07001092 }
1093 return 0;
1094
1095nomem:
1096 return -ENOMEM;
1097}
1098
Chen, Kenneth W502717f2006-10-11 01:20:46 -07001099void __unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001100 unsigned long end, struct page *ref_page)
David Gibson63551ae2005-06-21 17:14:44 -07001101{
1102 struct mm_struct *mm = vma->vm_mm;
1103 unsigned long address;
David Gibsonc7546f82005-08-05 11:59:35 -07001104 pte_t *ptep;
David Gibson63551ae2005-06-21 17:14:44 -07001105 pte_t pte;
1106 struct page *page;
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07001107 struct page *tmp;
Chen, Kenneth Wc0a499c2006-12-06 20:31:39 -08001108 /*
1109 * A page gathering list, protected by per file i_mmap_lock. The
1110 * lock is used to avoid list corruption from multiple unmapping
1111 * of the same page since we are using page->lru.
1112 */
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07001113 LIST_HEAD(page_list);
David Gibson63551ae2005-06-21 17:14:44 -07001114
1115 WARN_ON(!is_vm_hugetlb_page(vma));
1116 BUG_ON(start & ~HPAGE_MASK);
1117 BUG_ON(end & ~HPAGE_MASK);
1118
Hugh Dickins508034a2005-10-29 18:16:30 -07001119 spin_lock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -07001120 for (address = start; address < end; address += HPAGE_SIZE) {
David Gibsonc7546f82005-08-05 11:59:35 -07001121 ptep = huge_pte_offset(mm, address);
Adam Litke4c887262005-10-29 18:16:46 -07001122 if (!ptep)
David Gibsonc7546f82005-08-05 11:59:35 -07001123 continue;
1124
Chen, Kenneth W39dde652006-12-06 20:32:03 -08001125 if (huge_pmd_unshare(mm, &address, ptep))
1126 continue;
1127
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001128 /*
1129 * If a reference page is supplied, it is because a specific
1130 * page is being unmapped, not a range. Ensure the page we
1131 * are about to unmap is the actual page of interest.
1132 */
1133 if (ref_page) {
1134 pte = huge_ptep_get(ptep);
1135 if (huge_pte_none(pte))
1136 continue;
1137 page = pte_page(pte);
1138 if (page != ref_page)
1139 continue;
1140
1141 /*
1142 * Mark the VMA as having unmapped its page so that
1143 * future faults in this VMA will fail rather than
1144 * looking like data was lost
1145 */
1146 set_vma_resv_flags(vma, HPAGE_RESV_UNMAPPED);
1147 }
1148
David Gibsonc7546f82005-08-05 11:59:35 -07001149 pte = huge_ptep_get_and_clear(mm, address, ptep);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001150 if (huge_pte_none(pte))
David Gibson63551ae2005-06-21 17:14:44 -07001151 continue;
David Gibsonc7546f82005-08-05 11:59:35 -07001152
David Gibson63551ae2005-06-21 17:14:44 -07001153 page = pte_page(pte);
Ken Chen6649a382007-02-08 14:20:27 -08001154 if (pte_dirty(pte))
1155 set_page_dirty(page);
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07001156 list_add(&page->lru, &page_list);
David Gibson63551ae2005-06-21 17:14:44 -07001157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 spin_unlock(&mm->page_table_lock);
Hugh Dickins508034a2005-10-29 18:16:30 -07001159 flush_tlb_range(vma, start, end);
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07001160 list_for_each_entry_safe(page, tmp, &page_list, lru) {
1161 list_del(&page->lru);
1162 put_page(page);
1163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
David Gibson63551ae2005-06-21 17:14:44 -07001165
Chen, Kenneth W502717f2006-10-11 01:20:46 -07001166void unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001167 unsigned long end, struct page *ref_page)
Chen, Kenneth W502717f2006-10-11 01:20:46 -07001168{
1169 /*
1170 * It is undesirable to test vma->vm_file as it should be non-null
1171 * for valid hugetlb area. However, vm_file will be NULL in the error
1172 * cleanup path of do_mmap_pgoff. When hugetlbfs ->mmap method fails,
1173 * do_mmap_pgoff() nullifies vma->vm_file before calling this function
1174 * to clean up. Since no pte has actually been setup, it is safe to
1175 * do nothing in this case.
1176 */
1177 if (vma->vm_file) {
1178 spin_lock(&vma->vm_file->f_mapping->i_mmap_lock);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001179 __unmap_hugepage_range(vma, start, end, ref_page);
Chen, Kenneth W502717f2006-10-11 01:20:46 -07001180 spin_unlock(&vma->vm_file->f_mapping->i_mmap_lock);
1181 }
1182}
1183
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001184/*
1185 * This is called when the original mapper is failing to COW a MAP_PRIVATE
1186 * mappping it owns the reserve page for. The intention is to unmap the page
1187 * from other VMAs and let the children be SIGKILLed if they are faulting the
1188 * same region.
1189 */
1190int unmap_ref_private(struct mm_struct *mm,
1191 struct vm_area_struct *vma,
1192 struct page *page,
1193 unsigned long address)
1194{
1195 struct vm_area_struct *iter_vma;
1196 struct address_space *mapping;
1197 struct prio_tree_iter iter;
1198 pgoff_t pgoff;
1199
1200 /*
1201 * vm_pgoff is in PAGE_SIZE units, hence the different calculation
1202 * from page cache lookup which is in HPAGE_SIZE units.
1203 */
1204 address = address & huge_page_mask(hstate_vma(vma));
1205 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT)
1206 + (vma->vm_pgoff >> PAGE_SHIFT);
1207 mapping = (struct address_space *)page_private(page);
1208
1209 vma_prio_tree_foreach(iter_vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
1210 /* Do not unmap the current VMA */
1211 if (iter_vma == vma)
1212 continue;
1213
1214 /*
1215 * Unmap the page from other VMAs without their own reserves.
1216 * They get marked to be SIGKILLed if they fault in these
1217 * areas. This is because a future no-page fault on this VMA
1218 * could insert a zeroed page instead of the data existing
1219 * from the time of fork. This would look like data corruption
1220 */
1221 if (!is_vma_resv_set(iter_vma, HPAGE_RESV_OWNER))
1222 unmap_hugepage_range(iter_vma,
1223 address, address + HPAGE_SIZE,
1224 page);
1225 }
1226
1227 return 1;
1228}
1229
David Gibson1e8f8892006-01-06 00:10:44 -08001230static int hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001231 unsigned long address, pte_t *ptep, pte_t pte,
1232 struct page *pagecache_page)
David Gibson1e8f8892006-01-06 00:10:44 -08001233{
1234 struct page *old_page, *new_page;
David Gibson79ac6ba2006-03-22 00:08:51 -08001235 int avoidcopy;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001236 int outside_reserve = 0;
David Gibson1e8f8892006-01-06 00:10:44 -08001237
1238 old_page = pte_page(pte);
1239
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001240retry_avoidcopy:
David Gibson1e8f8892006-01-06 00:10:44 -08001241 /* If no-one else is actually using this page, avoid the copy
1242 * and just make the page writable */
1243 avoidcopy = (page_count(old_page) == 1);
1244 if (avoidcopy) {
1245 set_huge_ptep_writable(vma, address, ptep);
Nick Piggin83c54072007-07-19 01:47:05 -07001246 return 0;
David Gibson1e8f8892006-01-06 00:10:44 -08001247 }
1248
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001249 /*
1250 * If the process that created a MAP_PRIVATE mapping is about to
1251 * perform a COW due to a shared page count, attempt to satisfy
1252 * the allocation without using the existing reserves. The pagecache
1253 * page is used to determine if the reserve at this address was
1254 * consumed or not. If reserves were used, a partial faulted mapping
1255 * at the time of fork() could consume its reserves on COW instead
1256 * of the full address range.
1257 */
1258 if (!(vma->vm_flags & VM_SHARED) &&
1259 is_vma_resv_set(vma, HPAGE_RESV_OWNER) &&
1260 old_page != pagecache_page)
1261 outside_reserve = 1;
1262
David Gibson1e8f8892006-01-06 00:10:44 -08001263 page_cache_get(old_page);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001264 new_page = alloc_huge_page(vma, address, outside_reserve);
David Gibson1e8f8892006-01-06 00:10:44 -08001265
Adam Litke2fc39ce2007-11-14 16:59:39 -08001266 if (IS_ERR(new_page)) {
David Gibson1e8f8892006-01-06 00:10:44 -08001267 page_cache_release(old_page);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001268
1269 /*
1270 * If a process owning a MAP_PRIVATE mapping fails to COW,
1271 * it is due to references held by a child and an insufficient
1272 * huge page pool. To guarantee the original mappers
1273 * reliability, unmap the page from child processes. The child
1274 * may get SIGKILLed if it later faults.
1275 */
1276 if (outside_reserve) {
1277 BUG_ON(huge_pte_none(pte));
1278 if (unmap_ref_private(mm, vma, old_page, address)) {
1279 BUG_ON(page_count(old_page) != 1);
1280 BUG_ON(huge_pte_none(pte));
1281 goto retry_avoidcopy;
1282 }
1283 WARN_ON_ONCE(1);
1284 }
1285
Adam Litke2fc39ce2007-11-14 16:59:39 -08001286 return -PTR_ERR(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -08001287 }
1288
1289 spin_unlock(&mm->page_table_lock);
Atsushi Nemoto9de455b2006-12-12 17:14:55 +00001290 copy_huge_page(new_page, old_page, address, vma);
Nick Piggin0ed361d2008-02-04 22:29:34 -08001291 __SetPageUptodate(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -08001292 spin_lock(&mm->page_table_lock);
1293
1294 ptep = huge_pte_offset(mm, address & HPAGE_MASK);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001295 if (likely(pte_same(huge_ptep_get(ptep), pte))) {
David Gibson1e8f8892006-01-06 00:10:44 -08001296 /* Break COW */
Gerald Schaefer8fe627e2008-04-28 02:13:28 -07001297 huge_ptep_clear_flush(vma, address, ptep);
David Gibson1e8f8892006-01-06 00:10:44 -08001298 set_huge_pte_at(mm, address, ptep,
1299 make_huge_pte(vma, new_page, 1));
1300 /* Make the old page be freed below */
1301 new_page = old_page;
1302 }
1303 page_cache_release(new_page);
1304 page_cache_release(old_page);
Nick Piggin83c54072007-07-19 01:47:05 -07001305 return 0;
David Gibson1e8f8892006-01-06 00:10:44 -08001306}
1307
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001308/* Return the pagecache page at a given address within a VMA */
1309static struct page *hugetlbfs_pagecache_page(struct vm_area_struct *vma,
1310 unsigned long address)
1311{
1312 struct address_space *mapping;
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -07001313 pgoff_t idx;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001314
1315 mapping = vma->vm_file->f_mapping;
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -07001316 idx = vma_pagecache_offset(vma, address);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001317
1318 return find_lock_page(mapping, idx);
1319}
1320
Robert P. J. Daya1ed3dd2007-07-17 04:03:33 -07001321static int hugetlb_no_page(struct mm_struct *mm, struct vm_area_struct *vma,
David Gibson1e8f8892006-01-06 00:10:44 -08001322 unsigned long address, pte_t *ptep, int write_access)
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001323{
1324 int ret = VM_FAULT_SIGBUS;
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -07001325 pgoff_t idx;
Adam Litke4c887262005-10-29 18:16:46 -07001326 unsigned long size;
Adam Litke4c887262005-10-29 18:16:46 -07001327 struct page *page;
1328 struct address_space *mapping;
David Gibson1e8f8892006-01-06 00:10:44 -08001329 pte_t new_pte;
Adam Litke4c887262005-10-29 18:16:46 -07001330
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001331 /*
1332 * Currently, we are forced to kill the process in the event the
1333 * original mapper has unmapped pages from the child due to a failed
1334 * COW. Warn that such a situation has occured as it may not be obvious
1335 */
1336 if (is_vma_resv_set(vma, HPAGE_RESV_UNMAPPED)) {
1337 printk(KERN_WARNING
1338 "PID %d killed due to inadequate hugepage pool\n",
1339 current->pid);
1340 return ret;
1341 }
1342
Adam Litke4c887262005-10-29 18:16:46 -07001343 mapping = vma->vm_file->f_mapping;
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -07001344 idx = vma_pagecache_offset(vma, address);
Adam Litke4c887262005-10-29 18:16:46 -07001345
1346 /*
1347 * Use page lock to guard against racing truncation
1348 * before we get page_table_lock.
1349 */
Christoph Lameter6bda6662006-01-06 00:10:49 -08001350retry:
1351 page = find_lock_page(mapping, idx);
1352 if (!page) {
Hugh Dickinsebed4bf2006-10-28 10:38:43 -07001353 size = i_size_read(mapping->host) >> HPAGE_SHIFT;
1354 if (idx >= size)
1355 goto out;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001356 page = alloc_huge_page(vma, address, 0);
Adam Litke2fc39ce2007-11-14 16:59:39 -08001357 if (IS_ERR(page)) {
1358 ret = -PTR_ERR(page);
Christoph Lameter6bda6662006-01-06 00:10:49 -08001359 goto out;
1360 }
David Gibson79ac6ba2006-03-22 00:08:51 -08001361 clear_huge_page(page, address);
Nick Piggin0ed361d2008-02-04 22:29:34 -08001362 __SetPageUptodate(page);
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001363
Christoph Lameter6bda6662006-01-06 00:10:49 -08001364 if (vma->vm_flags & VM_SHARED) {
1365 int err;
Ken Chen45c682a2007-11-14 16:59:44 -08001366 struct inode *inode = mapping->host;
Christoph Lameter6bda6662006-01-06 00:10:49 -08001367
1368 err = add_to_page_cache(page, mapping, idx, GFP_KERNEL);
1369 if (err) {
1370 put_page(page);
Christoph Lameter6bda6662006-01-06 00:10:49 -08001371 if (err == -EEXIST)
1372 goto retry;
1373 goto out;
1374 }
Ken Chen45c682a2007-11-14 16:59:44 -08001375
1376 spin_lock(&inode->i_lock);
1377 inode->i_blocks += BLOCKS_PER_HUGEPAGE;
1378 spin_unlock(&inode->i_lock);
Christoph Lameter6bda6662006-01-06 00:10:49 -08001379 } else
1380 lock_page(page);
1381 }
David Gibson1e8f8892006-01-06 00:10:44 -08001382
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001383 spin_lock(&mm->page_table_lock);
Adam Litke4c887262005-10-29 18:16:46 -07001384 size = i_size_read(mapping->host) >> HPAGE_SHIFT;
1385 if (idx >= size)
1386 goto backout;
1387
Nick Piggin83c54072007-07-19 01:47:05 -07001388 ret = 0;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001389 if (!huge_pte_none(huge_ptep_get(ptep)))
Adam Litke4c887262005-10-29 18:16:46 -07001390 goto backout;
1391
David Gibson1e8f8892006-01-06 00:10:44 -08001392 new_pte = make_huge_pte(vma, page, ((vma->vm_flags & VM_WRITE)
1393 && (vma->vm_flags & VM_SHARED)));
1394 set_huge_pte_at(mm, address, ptep, new_pte);
1395
1396 if (write_access && !(vma->vm_flags & VM_SHARED)) {
1397 /* Optimization, do the COW without a second fault */
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001398 ret = hugetlb_cow(mm, vma, address, ptep, new_pte, page);
David Gibson1e8f8892006-01-06 00:10:44 -08001399 }
1400
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001401 spin_unlock(&mm->page_table_lock);
Adam Litke4c887262005-10-29 18:16:46 -07001402 unlock_page(page);
1403out:
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001404 return ret;
Adam Litke4c887262005-10-29 18:16:46 -07001405
1406backout:
1407 spin_unlock(&mm->page_table_lock);
Adam Litke4c887262005-10-29 18:16:46 -07001408 unlock_page(page);
1409 put_page(page);
1410 goto out;
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001411}
1412
Adam Litke86e52162006-01-06 00:10:43 -08001413int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
1414 unsigned long address, int write_access)
1415{
1416 pte_t *ptep;
1417 pte_t entry;
David Gibson1e8f8892006-01-06 00:10:44 -08001418 int ret;
David Gibson3935baa2006-03-22 00:08:53 -08001419 static DEFINE_MUTEX(hugetlb_instantiation_mutex);
Adam Litke86e52162006-01-06 00:10:43 -08001420
1421 ptep = huge_pte_alloc(mm, address);
1422 if (!ptep)
1423 return VM_FAULT_OOM;
1424
David Gibson3935baa2006-03-22 00:08:53 -08001425 /*
1426 * Serialize hugepage allocation and instantiation, so that we don't
1427 * get spurious allocation failures if two CPUs race to instantiate
1428 * the same page in the page cache.
1429 */
1430 mutex_lock(&hugetlb_instantiation_mutex);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001431 entry = huge_ptep_get(ptep);
1432 if (huge_pte_none(entry)) {
David Gibson3935baa2006-03-22 00:08:53 -08001433 ret = hugetlb_no_page(mm, vma, address, ptep, write_access);
1434 mutex_unlock(&hugetlb_instantiation_mutex);
1435 return ret;
1436 }
Adam Litke86e52162006-01-06 00:10:43 -08001437
Nick Piggin83c54072007-07-19 01:47:05 -07001438 ret = 0;
David Gibson1e8f8892006-01-06 00:10:44 -08001439
1440 spin_lock(&mm->page_table_lock);
1441 /* Check for a racing update before calling hugetlb_cow */
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001442 if (likely(pte_same(entry, huge_ptep_get(ptep))))
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001443 if (write_access && !pte_write(entry)) {
1444 struct page *page;
1445 page = hugetlbfs_pagecache_page(vma, address);
1446 ret = hugetlb_cow(mm, vma, address, ptep, entry, page);
1447 if (page) {
1448 unlock_page(page);
1449 put_page(page);
1450 }
1451 }
David Gibson1e8f8892006-01-06 00:10:44 -08001452 spin_unlock(&mm->page_table_lock);
David Gibson3935baa2006-03-22 00:08:53 -08001453 mutex_unlock(&hugetlb_instantiation_mutex);
David Gibson1e8f8892006-01-06 00:10:44 -08001454
1455 return ret;
Adam Litke86e52162006-01-06 00:10:43 -08001456}
1457
David Gibson63551ae2005-06-21 17:14:44 -07001458int follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma,
1459 struct page **pages, struct vm_area_struct **vmas,
Adam Litke5b23dbe2007-11-14 16:59:33 -08001460 unsigned long *position, int *length, int i,
1461 int write)
David Gibson63551ae2005-06-21 17:14:44 -07001462{
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08001463 unsigned long pfn_offset;
1464 unsigned long vaddr = *position;
David Gibson63551ae2005-06-21 17:14:44 -07001465 int remainder = *length;
1466
Hugh Dickins1c598272005-10-19 21:23:43 -07001467 spin_lock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -07001468 while (vaddr < vma->vm_end && remainder) {
Adam Litke4c887262005-10-29 18:16:46 -07001469 pte_t *pte;
1470 struct page *page;
1471
1472 /*
1473 * Some archs (sparc64, sh*) have multiple pte_ts to
1474 * each hugepage. We have to make * sure we get the
1475 * first, for the page indexing below to work.
1476 */
1477 pte = huge_pte_offset(mm, vaddr & HPAGE_MASK);
1478
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001479 if (!pte || huge_pte_none(huge_ptep_get(pte)) ||
1480 (write && !pte_write(huge_ptep_get(pte)))) {
Adam Litke4c887262005-10-29 18:16:46 -07001481 int ret;
1482
1483 spin_unlock(&mm->page_table_lock);
Adam Litke5b23dbe2007-11-14 16:59:33 -08001484 ret = hugetlb_fault(mm, vma, vaddr, write);
Adam Litke4c887262005-10-29 18:16:46 -07001485 spin_lock(&mm->page_table_lock);
Adam Litkea89182c2007-08-22 14:01:51 -07001486 if (!(ret & VM_FAULT_ERROR))
Adam Litke4c887262005-10-29 18:16:46 -07001487 continue;
1488
1489 remainder = 0;
1490 if (!i)
1491 i = -EFAULT;
1492 break;
1493 }
David Gibson63551ae2005-06-21 17:14:44 -07001494
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08001495 pfn_offset = (vaddr & ~HPAGE_MASK) >> PAGE_SHIFT;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001496 page = pte_page(huge_ptep_get(pte));
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08001497same_page:
Chen, Kenneth Wd6692182006-03-31 02:29:57 -08001498 if (pages) {
1499 get_page(page);
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08001500 pages[i] = page + pfn_offset;
Chen, Kenneth Wd6692182006-03-31 02:29:57 -08001501 }
David Gibson63551ae2005-06-21 17:14:44 -07001502
1503 if (vmas)
1504 vmas[i] = vma;
1505
1506 vaddr += PAGE_SIZE;
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08001507 ++pfn_offset;
David Gibson63551ae2005-06-21 17:14:44 -07001508 --remainder;
1509 ++i;
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08001510 if (vaddr < vma->vm_end && remainder &&
1511 pfn_offset < HPAGE_SIZE/PAGE_SIZE) {
1512 /*
1513 * We use pfn_offset to avoid touching the pageframes
1514 * of this compound page.
1515 */
1516 goto same_page;
1517 }
David Gibson63551ae2005-06-21 17:14:44 -07001518 }
Hugh Dickins1c598272005-10-19 21:23:43 -07001519 spin_unlock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -07001520 *length = remainder;
1521 *position = vaddr;
1522
1523 return i;
1524}
Zhang, Yanmin8f860592006-03-22 00:08:50 -08001525
1526void hugetlb_change_protection(struct vm_area_struct *vma,
1527 unsigned long address, unsigned long end, pgprot_t newprot)
1528{
1529 struct mm_struct *mm = vma->vm_mm;
1530 unsigned long start = address;
1531 pte_t *ptep;
1532 pte_t pte;
1533
1534 BUG_ON(address >= end);
1535 flush_cache_range(vma, address, end);
1536
Chen, Kenneth W39dde652006-12-06 20:32:03 -08001537 spin_lock(&vma->vm_file->f_mapping->i_mmap_lock);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08001538 spin_lock(&mm->page_table_lock);
1539 for (; address < end; address += HPAGE_SIZE) {
1540 ptep = huge_pte_offset(mm, address);
1541 if (!ptep)
1542 continue;
Chen, Kenneth W39dde652006-12-06 20:32:03 -08001543 if (huge_pmd_unshare(mm, &address, ptep))
1544 continue;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001545 if (!huge_pte_none(huge_ptep_get(ptep))) {
Zhang, Yanmin8f860592006-03-22 00:08:50 -08001546 pte = huge_ptep_get_and_clear(mm, address, ptep);
1547 pte = pte_mkhuge(pte_modify(pte, newprot));
1548 set_huge_pte_at(mm, address, ptep, pte);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08001549 }
1550 }
1551 spin_unlock(&mm->page_table_lock);
Chen, Kenneth W39dde652006-12-06 20:32:03 -08001552 spin_unlock(&vma->vm_file->f_mapping->i_mmap_lock);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08001553
1554 flush_tlb_range(vma, start, end);
1555}
1556
Mel Gormana1e78772008-07-23 21:27:23 -07001557int hugetlb_reserve_pages(struct inode *inode,
1558 long from, long to,
1559 struct vm_area_struct *vma)
Adam Litkee4e574b2007-10-16 01:26:19 -07001560{
1561 long ret, chg;
1562
Mel Gormana1e78772008-07-23 21:27:23 -07001563 /*
1564 * Shared mappings base their reservation on the number of pages that
1565 * are already allocated on behalf of the file. Private mappings need
1566 * to reserve the full area even if read-only as mprotect() may be
1567 * called to make the mapping read-write. Assume !vma is a shm mapping
1568 */
1569 if (!vma || vma->vm_flags & VM_SHARED)
1570 chg = region_chg(&inode->i_mapping->private_list, from, to);
1571 else {
1572 chg = to - from;
1573 set_vma_resv_huge_pages(vma, chg);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001574 set_vma_resv_flags(vma, HPAGE_RESV_OWNER);
Mel Gormana1e78772008-07-23 21:27:23 -07001575 }
1576
Adam Litkee4e574b2007-10-16 01:26:19 -07001577 if (chg < 0)
1578 return chg;
Ken Chen8a630112007-05-09 02:33:34 -07001579
Adam Litke90d8b7e2007-11-14 16:59:42 -08001580 if (hugetlb_get_quota(inode->i_mapping, chg))
1581 return -ENOSPC;
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001582 ret = hugetlb_acct_memory(chg);
Ken Chen68842c92008-01-14 00:55:19 -08001583 if (ret < 0) {
1584 hugetlb_put_quota(inode->i_mapping, chg);
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001585 return ret;
Ken Chen68842c92008-01-14 00:55:19 -08001586 }
Mel Gormana1e78772008-07-23 21:27:23 -07001587 if (!vma || vma->vm_flags & VM_SHARED)
1588 region_add(&inode->i_mapping->private_list, from, to);
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001589 return 0;
1590}
1591
1592void hugetlb_unreserve_pages(struct inode *inode, long offset, long freed)
1593{
1594 long chg = region_truncate(&inode->i_mapping->private_list, offset);
Ken Chen45c682a2007-11-14 16:59:44 -08001595
1596 spin_lock(&inode->i_lock);
1597 inode->i_blocks -= BLOCKS_PER_HUGEPAGE * freed;
1598 spin_unlock(&inode->i_lock);
1599
Adam Litke90d8b7e2007-11-14 16:59:42 -08001600 hugetlb_put_quota(inode->i_mapping, (chg - freed));
1601 hugetlb_acct_memory(-(chg - freed));
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001602}