blob: 20e04c64468dd9b42b32d9af70a4386bd8336786 [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
David Gibson79ac6ba2006-03-22 00:08:51 -080043static void clear_huge_page(struct page *page, unsigned long addr)
44{
45 int i;
46
47 might_sleep();
48 for (i = 0; i < (HPAGE_SIZE/PAGE_SIZE); i++) {
49 cond_resched();
Ralf Baechle281e0e32007-10-01 01:20:10 -070050 clear_user_highpage(page + i, addr + i * PAGE_SIZE);
David Gibson79ac6ba2006-03-22 00:08:51 -080051 }
52}
53
54static void copy_huge_page(struct page *dst, struct page *src,
Atsushi Nemoto9de455b2006-12-12 17:14:55 +000055 unsigned long addr, struct vm_area_struct *vma)
David Gibson79ac6ba2006-03-22 00:08:51 -080056{
57 int i;
58
59 might_sleep();
60 for (i = 0; i < HPAGE_SIZE/PAGE_SIZE; i++) {
61 cond_resched();
Atsushi Nemoto9de455b2006-12-12 17:14:55 +000062 copy_user_highpage(dst + i, src + i, addr + i*PAGE_SIZE, vma);
David Gibson79ac6ba2006-03-22 00:08:51 -080063 }
64}
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static void enqueue_huge_page(struct page *page)
67{
68 int nid = page_to_nid(page);
69 list_add(&page->lru, &hugepage_freelists[nid]);
70 free_huge_pages++;
71 free_huge_pages_node[nid]++;
72}
73
Christoph Lameter5da7ca82006-01-06 00:10:46 -080074static struct page *dequeue_huge_page(struct vm_area_struct *vma,
75 unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Nishanth Aravamudan31a5c6e2007-07-15 23:38:02 -070077 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 struct page *page = NULL;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -070079 struct mempolicy *mpol;
Mel Gorman396faf02007-07-17 04:03:13 -070080 struct zonelist *zonelist = huge_zonelist(vma, address,
Lee Schermerhorn480eccf2007-09-18 22:46:47 -070081 htlb_alloc_mask, &mpol);
Christoph Lameter96df9332006-01-06 00:10:45 -080082 struct zone **z;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Christoph Lameter96df9332006-01-06 00:10:45 -080084 for (z = zonelist->zones; *z; z++) {
Christoph Lameter89fa3022006-09-25 23:31:55 -070085 nid = zone_to_nid(*z);
Mel Gorman396faf02007-07-17 04:03:13 -070086 if (cpuset_zone_allowed_softwall(*z, htlb_alloc_mask) &&
Andrew Morton3abf7af2007-07-19 01:49:08 -070087 !list_empty(&hugepage_freelists[nid])) {
88 page = list_entry(hugepage_freelists[nid].next,
89 struct page, lru);
90 list_del(&page->lru);
91 free_huge_pages--;
92 free_huge_pages_node[nid]--;
Adam Litkee4e574b2007-10-16 01:26:19 -070093 if (vma && vma->vm_flags & VM_MAYSHARE)
94 resv_huge_pages--;
Ken Chen5ab3ee72007-07-23 18:44:00 -070095 break;
Andrew Morton3abf7af2007-07-19 01:49:08 -070096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
Lee Schermerhorn480eccf2007-09-18 22:46:47 -070098 mpol_free(mpol); /* unref if mpol !NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return page;
100}
101
Adam Litke6af2acb2007-10-16 01:26:16 -0700102static void update_and_free_page(struct page *page)
103{
104 int i;
105 nr_huge_pages--;
106 nr_huge_pages_node[page_to_nid(page)]--;
107 for (i = 0; i < (HPAGE_SIZE / PAGE_SIZE); i++) {
108 page[i].flags &= ~(1 << PG_locked | 1 << PG_error | 1 << PG_referenced |
109 1 << PG_dirty | 1 << PG_active | 1 << PG_reserved |
110 1 << PG_private | 1<< PG_writeback);
111 }
112 set_compound_page_dtor(page, NULL);
113 set_page_refcounted(page);
114 __free_pages(page, HUGETLB_PAGE_ORDER);
115}
116
David Gibson27a85ef2006-03-22 00:08:56 -0800117static void free_huge_page(struct page *page)
118{
Adam Litke7893d1d2007-10-16 01:26:18 -0700119 int nid = page_to_nid(page);
Adam Litkec79fb752007-11-14 16:59:38 -0800120 struct address_space *mapping;
David Gibson27a85ef2006-03-22 00:08:56 -0800121
Adam Litkec79fb752007-11-14 16:59:38 -0800122 mapping = (struct address_space *) page_private(page);
Andy Whitcrofte5df70a2008-02-23 15:23:32 -0800123 set_page_private(page, 0);
Adam Litke7893d1d2007-10-16 01:26:18 -0700124 BUG_ON(page_count(page));
David Gibson27a85ef2006-03-22 00:08:56 -0800125 INIT_LIST_HEAD(&page->lru);
126
127 spin_lock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700128 if (surplus_huge_pages_node[nid]) {
129 update_and_free_page(page);
130 surplus_huge_pages--;
131 surplus_huge_pages_node[nid]--;
132 } else {
133 enqueue_huge_page(page);
134 }
David Gibson27a85ef2006-03-22 00:08:56 -0800135 spin_unlock(&hugetlb_lock);
Adam Litkec79fb752007-11-14 16:59:38 -0800136 if (mapping)
Adam Litke9a119c02007-11-14 16:59:41 -0800137 hugetlb_put_quota(mapping, 1);
David Gibson27a85ef2006-03-22 00:08:56 -0800138}
139
Adam Litke7893d1d2007-10-16 01:26:18 -0700140/*
141 * Increment or decrement surplus_huge_pages. Keep node-specific counters
142 * balanced by operating on them in a round-robin fashion.
143 * Returns 1 if an adjustment was made.
144 */
145static int adjust_pool_surplus(int delta)
146{
147 static int prev_nid;
148 int nid = prev_nid;
149 int ret = 0;
150
151 VM_BUG_ON(delta != -1 && delta != 1);
152 do {
153 nid = next_node(nid, node_online_map);
154 if (nid == MAX_NUMNODES)
155 nid = first_node(node_online_map);
156
157 /* To shrink on this node, there must be a surplus page */
158 if (delta < 0 && !surplus_huge_pages_node[nid])
159 continue;
160 /* Surplus cannot exceed the total number of pages */
161 if (delta > 0 && surplus_huge_pages_node[nid] >=
162 nr_huge_pages_node[nid])
163 continue;
164
165 surplus_huge_pages += delta;
166 surplus_huge_pages_node[nid] += delta;
167 ret = 1;
168 break;
169 } while (nid != prev_nid);
170
171 prev_nid = nid;
172 return ret;
173}
174
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700175static struct page *alloc_fresh_huge_page_node(int nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 struct page *page;
Joe Jinf96efd52007-07-15 23:38:12 -0700178
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700179 page = alloc_pages_node(nid,
180 htlb_alloc_mask|__GFP_COMP|__GFP_THISNODE|__GFP_NOWARN,
181 HUGETLB_PAGE_ORDER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (page) {
Andy Whitcroft33f2ef82006-12-06 20:33:32 -0800183 set_compound_page_dtor(page, free_huge_page);
Eric Paris0bd0f9f2005-11-21 21:32:28 -0800184 spin_lock(&hugetlb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 nr_huge_pages++;
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700186 nr_huge_pages_node[nid]++;
Eric Paris0bd0f9f2005-11-21 21:32:28 -0800187 spin_unlock(&hugetlb_lock);
Nick Piggina4822892006-03-22 00:08:08 -0800188 put_page(page); /* free it into the hugepage allocator */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700190
191 return page;
192}
193
194static int alloc_fresh_huge_page(void)
195{
196 struct page *page;
197 int start_nid;
198 int next_nid;
199 int ret = 0;
200
201 start_nid = hugetlb_next_nid;
202
203 do {
204 page = alloc_fresh_huge_page_node(hugetlb_next_nid);
205 if (page)
206 ret = 1;
207 /*
208 * Use a helper variable to find the next node and then
209 * copy it back to hugetlb_next_nid afterwards:
210 * otherwise there's a window in which a racer might
211 * pass invalid nid MAX_NUMNODES to alloc_pages_node.
212 * But we don't need to use a spin_lock here: it really
213 * doesn't matter if occasionally a racer chooses the
214 * same nid as we do. Move nid forward in the mask even
215 * if we just successfully allocated a hugepage so that
216 * the next caller gets hugepages on the next node.
217 */
218 next_nid = next_node(hugetlb_next_nid, node_online_map);
219 if (next_nid == MAX_NUMNODES)
220 next_nid = first_node(node_online_map);
221 hugetlb_next_nid = next_nid;
222 } while (!page && hugetlb_next_nid != start_nid);
223
224 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
Adam Litke7893d1d2007-10-16 01:26:18 -0700227static struct page *alloc_buddy_huge_page(struct vm_area_struct *vma,
228 unsigned long address)
229{
230 struct page *page;
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800231 unsigned int nid;
Adam Litke7893d1d2007-10-16 01:26:18 -0700232
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800233 /*
234 * Assume we will successfully allocate the surplus page to
235 * prevent racing processes from causing the surplus to exceed
236 * overcommit
237 *
238 * This however introduces a different race, where a process B
239 * tries to grow the static hugepage pool while alloc_pages() is
240 * called by process A. B will only examine the per-node
241 * counters in determining if surplus huge pages can be
242 * converted to normal huge pages in adjust_pool_surplus(). A
243 * won't be able to increment the per-node counter, until the
244 * lock is dropped by B, but B doesn't drop hugetlb_lock until
245 * no more huge pages can be converted from surplus to normal
246 * state (and doesn't try to convert again). Thus, we have a
247 * case where a surplus huge page exists, the pool is grown, and
248 * the surplus huge page still exists after, even though it
249 * should just have been converted to a normal huge page. This
250 * does not leak memory, though, as the hugepage will be freed
251 * once it is out of use. It also does not allow the counters to
252 * go out of whack in adjust_pool_surplus() as we don't modify
253 * the node values until we've gotten the hugepage and only the
254 * per-node value is checked there.
255 */
256 spin_lock(&hugetlb_lock);
257 if (surplus_huge_pages >= nr_overcommit_huge_pages) {
258 spin_unlock(&hugetlb_lock);
259 return NULL;
260 } else {
261 nr_huge_pages++;
262 surplus_huge_pages++;
263 }
264 spin_unlock(&hugetlb_lock);
265
Adam Litke7893d1d2007-10-16 01:26:18 -0700266 page = alloc_pages(htlb_alloc_mask|__GFP_COMP|__GFP_NOWARN,
267 HUGETLB_PAGE_ORDER);
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800268
269 spin_lock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700270 if (page) {
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800271 nid = page_to_nid(page);
Adam Litke7893d1d2007-10-16 01:26:18 -0700272 set_compound_page_dtor(page, free_huge_page);
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800273 /*
274 * We incremented the global counters already
275 */
276 nr_huge_pages_node[nid]++;
277 surplus_huge_pages_node[nid]++;
278 } else {
279 nr_huge_pages--;
280 surplus_huge_pages--;
Adam Litke7893d1d2007-10-16 01:26:18 -0700281 }
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800282 spin_unlock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700283
284 return page;
285}
286
Adam Litkee4e574b2007-10-16 01:26:19 -0700287/*
288 * Increase the hugetlb pool such that it can accomodate a reservation
289 * of size 'delta'.
290 */
291static int gather_surplus_pages(int delta)
292{
293 struct list_head surplus_list;
294 struct page *page, *tmp;
295 int ret, i;
296 int needed, allocated;
297
298 needed = (resv_huge_pages + delta) - free_huge_pages;
Adam Litkeac09b3a2008-03-04 14:29:38 -0800299 if (needed <= 0) {
300 resv_huge_pages += delta;
Adam Litkee4e574b2007-10-16 01:26:19 -0700301 return 0;
Adam Litkeac09b3a2008-03-04 14:29:38 -0800302 }
Adam Litkee4e574b2007-10-16 01:26:19 -0700303
304 allocated = 0;
305 INIT_LIST_HEAD(&surplus_list);
306
307 ret = -ENOMEM;
308retry:
309 spin_unlock(&hugetlb_lock);
310 for (i = 0; i < needed; i++) {
311 page = alloc_buddy_huge_page(NULL, 0);
312 if (!page) {
313 /*
314 * We were not able to allocate enough pages to
315 * satisfy the entire reservation so we free what
316 * we've allocated so far.
317 */
318 spin_lock(&hugetlb_lock);
319 needed = 0;
320 goto free;
321 }
322
323 list_add(&page->lru, &surplus_list);
324 }
325 allocated += needed;
326
327 /*
328 * After retaking hugetlb_lock, we need to recalculate 'needed'
329 * because either resv_huge_pages or free_huge_pages may have changed.
330 */
331 spin_lock(&hugetlb_lock);
332 needed = (resv_huge_pages + delta) - (free_huge_pages + allocated);
333 if (needed > 0)
334 goto retry;
335
336 /*
337 * The surplus_list now contains _at_least_ the number of extra pages
338 * needed to accomodate the reservation. Add the appropriate number
339 * of pages to the hugetlb pool and free the extras back to the buddy
Adam Litkeac09b3a2008-03-04 14:29:38 -0800340 * allocator. Commit the entire reservation here to prevent another
341 * process from stealing the pages as they are added to the pool but
342 * before they are reserved.
Adam Litkee4e574b2007-10-16 01:26:19 -0700343 */
344 needed += allocated;
Adam Litkeac09b3a2008-03-04 14:29:38 -0800345 resv_huge_pages += delta;
Adam Litkee4e574b2007-10-16 01:26:19 -0700346 ret = 0;
347free:
348 list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
349 list_del(&page->lru);
350 if ((--needed) >= 0)
351 enqueue_huge_page(page);
Adam Litkeaf767cb2007-10-16 01:26:25 -0700352 else {
353 /*
354 * Decrement the refcount and free the page using its
355 * destructor. This must be done with hugetlb_lock
356 * unlocked which is safe because free_huge_page takes
357 * hugetlb_lock before deciding how to free the page.
358 */
359 spin_unlock(&hugetlb_lock);
360 put_page(page);
361 spin_lock(&hugetlb_lock);
362 }
Adam Litkee4e574b2007-10-16 01:26:19 -0700363 }
364
365 return ret;
366}
367
368/*
369 * When releasing a hugetlb pool reservation, any surplus pages that were
370 * allocated to satisfy the reservation must be explicitly freed if they were
371 * never used.
372 */
Adrian Bunk8cde0452007-11-14 16:59:43 -0800373static void return_unused_surplus_pages(unsigned long unused_resv_pages)
Adam Litkee4e574b2007-10-16 01:26:19 -0700374{
375 static int nid = -1;
376 struct page *page;
377 unsigned long nr_pages;
378
Adam Litkeac09b3a2008-03-04 14:29:38 -0800379 /* Uncommit the reservation */
380 resv_huge_pages -= unused_resv_pages;
381
Adam Litkee4e574b2007-10-16 01:26:19 -0700382 nr_pages = min(unused_resv_pages, surplus_huge_pages);
383
384 while (nr_pages) {
385 nid = next_node(nid, node_online_map);
386 if (nid == MAX_NUMNODES)
387 nid = first_node(node_online_map);
388
389 if (!surplus_huge_pages_node[nid])
390 continue;
391
392 if (!list_empty(&hugepage_freelists[nid])) {
393 page = list_entry(hugepage_freelists[nid].next,
394 struct page, lru);
395 list_del(&page->lru);
396 update_and_free_page(page);
397 free_huge_pages--;
398 free_huge_pages_node[nid]--;
399 surplus_huge_pages--;
400 surplus_huge_pages_node[nid]--;
401 nr_pages--;
402 }
403 }
404}
405
Adam Litke348ea202007-11-14 16:59:37 -0800406
407static struct page *alloc_huge_page_shared(struct vm_area_struct *vma,
408 unsigned long addr)
409{
410 struct page *page;
411
412 spin_lock(&hugetlb_lock);
413 page = dequeue_huge_page(vma, addr);
414 spin_unlock(&hugetlb_lock);
Adam Litke90d8b7e2007-11-14 16:59:42 -0800415 return page ? page : ERR_PTR(-VM_FAULT_OOM);
Adam Litke348ea202007-11-14 16:59:37 -0800416}
417
418static struct page *alloc_huge_page_private(struct vm_area_struct *vma,
419 unsigned long addr)
420{
421 struct page *page = NULL;
422
Adam Litke90d8b7e2007-11-14 16:59:42 -0800423 if (hugetlb_get_quota(vma->vm_file->f_mapping, 1))
424 return ERR_PTR(-VM_FAULT_SIGBUS);
425
Adam Litke348ea202007-11-14 16:59:37 -0800426 spin_lock(&hugetlb_lock);
427 if (free_huge_pages > resv_huge_pages)
428 page = dequeue_huge_page(vma, addr);
429 spin_unlock(&hugetlb_lock);
Ken Chen68842c92008-01-14 00:55:19 -0800430 if (!page) {
Adam Litke348ea202007-11-14 16:59:37 -0800431 page = alloc_buddy_huge_page(vma, addr);
Ken Chen68842c92008-01-14 00:55:19 -0800432 if (!page) {
433 hugetlb_put_quota(vma->vm_file->f_mapping, 1);
434 return ERR_PTR(-VM_FAULT_OOM);
435 }
436 }
437 return page;
Adam Litke348ea202007-11-14 16:59:37 -0800438}
439
David Gibson27a85ef2006-03-22 00:08:56 -0800440static struct page *alloc_huge_page(struct vm_area_struct *vma,
441 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Adam Litke348ea202007-11-14 16:59:37 -0800443 struct page *page;
Adam Litke2fc39ce2007-11-14 16:59:39 -0800444 struct address_space *mapping = vma->vm_file->f_mapping;
445
Adam Litke348ea202007-11-14 16:59:37 -0800446 if (vma->vm_flags & VM_MAYSHARE)
447 page = alloc_huge_page_shared(vma, addr);
448 else
449 page = alloc_huge_page_private(vma, addr);
Adam Litke90d8b7e2007-11-14 16:59:42 -0800450
451 if (!IS_ERR(page)) {
Adam Litke348ea202007-11-14 16:59:37 -0800452 set_page_refcounted(page);
Adam Litke2fc39ce2007-11-14 16:59:39 -0800453 set_page_private(page, (unsigned long) mapping);
Adam Litke90d8b7e2007-11-14 16:59:42 -0800454 }
455 return page;
David Gibsonb45b5bd2006-03-22 00:08:55 -0800456}
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458static int __init hugetlb_init(void)
459{
460 unsigned long i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100462 if (HPAGE_SHIFT == 0)
463 return 0;
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 for (i = 0; i < MAX_NUMNODES; ++i)
466 INIT_LIST_HEAD(&hugepage_freelists[i]);
467
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700468 hugetlb_next_nid = first_node(node_online_map);
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 for (i = 0; i < max_huge_pages; ++i) {
Nick Piggina4822892006-03-22 00:08:08 -0800471 if (!alloc_fresh_huge_page())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474 max_huge_pages = free_huge_pages = nr_huge_pages = i;
475 printk("Total HugeTLB memory allocated, %ld\n", free_huge_pages);
476 return 0;
477}
478module_init(hugetlb_init);
479
480static int __init hugetlb_setup(char *s)
481{
482 if (sscanf(s, "%lu", &max_huge_pages) <= 0)
483 max_huge_pages = 0;
484 return 1;
485}
486__setup("hugepages=", hugetlb_setup);
487
Ken Chen8a630112007-05-09 02:33:34 -0700488static unsigned int cpuset_mems_nr(unsigned int *array)
489{
490 int node;
491 unsigned int nr = 0;
492
493 for_each_node_mask(node, cpuset_current_mems_allowed)
494 nr += array[node];
495
496 return nr;
497}
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499#ifdef CONFIG_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500#ifdef CONFIG_HIGHMEM
501static void try_to_free_low(unsigned long count)
502{
Christoph Lameter4415cc82006-09-25 23:31:55 -0700503 int i;
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 for (i = 0; i < MAX_NUMNODES; ++i) {
506 struct page *page, *next;
507 list_for_each_entry_safe(page, next, &hugepage_freelists[i], lru) {
Adam Litke6b0c8802007-10-16 01:26:23 -0700508 if (count >= nr_huge_pages)
509 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (PageHighMem(page))
511 continue;
512 list_del(&page->lru);
513 update_and_free_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 free_huge_pages--;
Christoph Lameter4415cc82006-09-25 23:31:55 -0700515 free_huge_pages_node[page_to_nid(page)]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
517 }
518}
519#else
520static inline void try_to_free_low(unsigned long count)
521{
522}
523#endif
524
Adam Litke7893d1d2007-10-16 01:26:18 -0700525#define persistent_huge_pages (nr_huge_pages - surplus_huge_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526static unsigned long set_max_huge_pages(unsigned long count)
527{
Adam Litke7893d1d2007-10-16 01:26:18 -0700528 unsigned long min_count, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Adam Litke7893d1d2007-10-16 01:26:18 -0700530 /*
531 * Increase the pool size
532 * First take pages out of surplus state. Then make up the
533 * remaining difference by allocating fresh huge pages.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800534 *
535 * We might race with alloc_buddy_huge_page() here and be unable
536 * to convert a surplus huge page to a normal huge page. That is
537 * not critical, though, it just means the overall size of the
538 * pool might be one hugepage larger than it needs to be, but
539 * within all the constraints specified by the sysctls.
Adam Litke7893d1d2007-10-16 01:26:18 -0700540 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 spin_lock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700542 while (surplus_huge_pages && count > persistent_huge_pages) {
543 if (!adjust_pool_surplus(-1))
544 break;
545 }
546
547 while (count > persistent_huge_pages) {
548 int ret;
549 /*
550 * If this allocation races such that we no longer need the
551 * page, free_huge_page will handle it by freeing the page
552 * and reducing the surplus.
553 */
554 spin_unlock(&hugetlb_lock);
555 ret = alloc_fresh_huge_page();
556 spin_lock(&hugetlb_lock);
557 if (!ret)
558 goto out;
559
560 }
Adam Litke7893d1d2007-10-16 01:26:18 -0700561
562 /*
563 * Decrease the pool size
564 * First return free pages to the buddy allocator (being careful
565 * to keep enough around to satisfy reservations). Then place
566 * pages into surplus state as needed so the pool will shrink
567 * to the desired size as pages become free.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800568 *
569 * By placing pages into the surplus state independent of the
570 * overcommit value, we are allowing the surplus pool size to
571 * exceed overcommit. There are few sane options here. Since
572 * alloc_buddy_huge_page() is checking the global counter,
573 * though, we'll note that we're not allowed to exceed surplus
574 * and won't grow the pool anywhere else. Not until one of the
575 * sysctls are changed, or the surplus pages go out of use.
Adam Litke7893d1d2007-10-16 01:26:18 -0700576 */
Adam Litke6b0c8802007-10-16 01:26:23 -0700577 min_count = resv_huge_pages + nr_huge_pages - free_huge_pages;
578 min_count = max(count, min_count);
Adam Litke7893d1d2007-10-16 01:26:18 -0700579 try_to_free_low(min_count);
580 while (min_count < persistent_huge_pages) {
Christoph Lameter5da7ca82006-01-06 00:10:46 -0800581 struct page *page = dequeue_huge_page(NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (!page)
583 break;
584 update_and_free_page(page);
585 }
Adam Litke7893d1d2007-10-16 01:26:18 -0700586 while (count < persistent_huge_pages) {
587 if (!adjust_pool_surplus(1))
588 break;
589 }
590out:
591 ret = persistent_huge_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 spin_unlock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700593 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
596int hugetlb_sysctl_handler(struct ctl_table *table, int write,
597 struct file *file, void __user *buffer,
598 size_t *length, loff_t *ppos)
599{
600 proc_doulongvec_minmax(table, write, file, buffer, length, ppos);
601 max_huge_pages = set_max_huge_pages(max_huge_pages);
602 return 0;
603}
Mel Gorman396faf02007-07-17 04:03:13 -0700604
605int hugetlb_treat_movable_handler(struct ctl_table *table, int write,
606 struct file *file, void __user *buffer,
607 size_t *length, loff_t *ppos)
608{
609 proc_dointvec(table, write, file, buffer, length, ppos);
610 if (hugepages_treat_as_movable)
611 htlb_alloc_mask = GFP_HIGHUSER_MOVABLE;
612 else
613 htlb_alloc_mask = GFP_HIGHUSER;
614 return 0;
615}
616
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -0800617int hugetlb_overcommit_handler(struct ctl_table *table, int write,
618 struct file *file, void __user *buffer,
619 size_t *length, loff_t *ppos)
620{
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -0800621 proc_doulongvec_minmax(table, write, file, buffer, length, ppos);
Nishanth Aravamudan064d9ef2008-02-13 15:03:19 -0800622 spin_lock(&hugetlb_lock);
623 nr_overcommit_huge_pages = sysctl_overcommit_huge_pages;
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -0800624 spin_unlock(&hugetlb_lock);
625 return 0;
626}
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628#endif /* CONFIG_SYSCTL */
629
630int hugetlb_report_meminfo(char *buf)
631{
632 return sprintf(buf,
633 "HugePages_Total: %5lu\n"
634 "HugePages_Free: %5lu\n"
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -0700635 "HugePages_Rsvd: %5lu\n"
Adam Litke7893d1d2007-10-16 01:26:18 -0700636 "HugePages_Surp: %5lu\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 "Hugepagesize: %5lu kB\n",
638 nr_huge_pages,
639 free_huge_pages,
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -0700640 resv_huge_pages,
Adam Litke7893d1d2007-10-16 01:26:18 -0700641 surplus_huge_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 HPAGE_SIZE/1024);
643}
644
645int hugetlb_report_node_meminfo(int nid, char *buf)
646{
647 return sprintf(buf,
648 "Node %d HugePages_Total: %5u\n"
649 "Node %d HugePages_Free: %5u\n",
650 nid, nr_huge_pages_node[nid],
651 nid, free_huge_pages_node[nid]);
652}
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654/* Return the number pages of memory we physically have, in PAGE_SIZE units. */
655unsigned long hugetlb_total_pages(void)
656{
657 return nr_huge_pages * (HPAGE_SIZE / PAGE_SIZE);
658}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660/*
661 * We cannot handle pagefaults against hugetlb pages at all. They cause
662 * handle_mm_fault() to try to instantiate regular-sized pages in the
663 * hugegpage VMA. do_page_fault() is supposed to trap this, so BUG is we get
664 * this far.
665 */
Nick Piggind0217ac2007-07-19 01:47:03 -0700666static int hugetlb_vm_op_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668 BUG();
Nick Piggind0217ac2007-07-19 01:47:03 -0700669 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
672struct vm_operations_struct hugetlb_vm_ops = {
Nick Piggind0217ac2007-07-19 01:47:03 -0700673 .fault = hugetlb_vm_op_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674};
675
David Gibson1e8f8892006-01-06 00:10:44 -0800676static pte_t make_huge_pte(struct vm_area_struct *vma, struct page *page,
677 int writable)
David Gibson63551ae2005-06-21 17:14:44 -0700678{
679 pte_t entry;
680
David Gibson1e8f8892006-01-06 00:10:44 -0800681 if (writable) {
David Gibson63551ae2005-06-21 17:14:44 -0700682 entry =
683 pte_mkwrite(pte_mkdirty(mk_pte(page, vma->vm_page_prot)));
684 } else {
685 entry = pte_wrprotect(mk_pte(page, vma->vm_page_prot));
686 }
687 entry = pte_mkyoung(entry);
688 entry = pte_mkhuge(entry);
689
690 return entry;
691}
692
David Gibson1e8f8892006-01-06 00:10:44 -0800693static void set_huge_ptep_writable(struct vm_area_struct *vma,
694 unsigned long address, pte_t *ptep)
695{
696 pte_t entry;
697
698 entry = pte_mkwrite(pte_mkdirty(*ptep));
Benjamin Herrenschmidt8dab5242007-06-16 10:16:12 -0700699 if (ptep_set_access_flags(vma, address, ptep, entry, 1)) {
700 update_mmu_cache(vma, address, entry);
Benjamin Herrenschmidt8dab5242007-06-16 10:16:12 -0700701 }
David Gibson1e8f8892006-01-06 00:10:44 -0800702}
703
704
David Gibson63551ae2005-06-21 17:14:44 -0700705int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
706 struct vm_area_struct *vma)
707{
708 pte_t *src_pte, *dst_pte, entry;
709 struct page *ptepage;
Hugh Dickins1c598272005-10-19 21:23:43 -0700710 unsigned long addr;
David Gibson1e8f8892006-01-06 00:10:44 -0800711 int cow;
712
713 cow = (vma->vm_flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE;
David Gibson63551ae2005-06-21 17:14:44 -0700714
Hugh Dickins1c598272005-10-19 21:23:43 -0700715 for (addr = vma->vm_start; addr < vma->vm_end; addr += HPAGE_SIZE) {
Hugh Dickinsc74df322005-10-29 18:16:23 -0700716 src_pte = huge_pte_offset(src, addr);
717 if (!src_pte)
718 continue;
David Gibson63551ae2005-06-21 17:14:44 -0700719 dst_pte = huge_pte_alloc(dst, addr);
720 if (!dst_pte)
721 goto nomem;
Larry Woodmanc5c99422008-01-24 05:49:25 -0800722
723 /* If the pagetables are shared don't copy or take references */
724 if (dst_pte == src_pte)
725 continue;
726
Hugh Dickinsc74df322005-10-29 18:16:23 -0700727 spin_lock(&dst->page_table_lock);
Hugh Dickins1c598272005-10-19 21:23:43 -0700728 spin_lock(&src->page_table_lock);
Hugh Dickinsc74df322005-10-29 18:16:23 -0700729 if (!pte_none(*src_pte)) {
David Gibson1e8f8892006-01-06 00:10:44 -0800730 if (cow)
731 ptep_set_wrprotect(src, addr, src_pte);
Hugh Dickins1c598272005-10-19 21:23:43 -0700732 entry = *src_pte;
733 ptepage = pte_page(entry);
734 get_page(ptepage);
Hugh Dickins1c598272005-10-19 21:23:43 -0700735 set_huge_pte_at(dst, addr, dst_pte, entry);
736 }
737 spin_unlock(&src->page_table_lock);
Hugh Dickinsc74df322005-10-29 18:16:23 -0700738 spin_unlock(&dst->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -0700739 }
740 return 0;
741
742nomem:
743 return -ENOMEM;
744}
745
Chen, Kenneth W502717f2006-10-11 01:20:46 -0700746void __unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
747 unsigned long end)
David Gibson63551ae2005-06-21 17:14:44 -0700748{
749 struct mm_struct *mm = vma->vm_mm;
750 unsigned long address;
David Gibsonc7546f82005-08-05 11:59:35 -0700751 pte_t *ptep;
David Gibson63551ae2005-06-21 17:14:44 -0700752 pte_t pte;
753 struct page *page;
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -0700754 struct page *tmp;
Chen, Kenneth Wc0a499c2006-12-06 20:31:39 -0800755 /*
756 * A page gathering list, protected by per file i_mmap_lock. The
757 * lock is used to avoid list corruption from multiple unmapping
758 * of the same page since we are using page->lru.
759 */
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -0700760 LIST_HEAD(page_list);
David Gibson63551ae2005-06-21 17:14:44 -0700761
762 WARN_ON(!is_vm_hugetlb_page(vma));
763 BUG_ON(start & ~HPAGE_MASK);
764 BUG_ON(end & ~HPAGE_MASK);
765
Hugh Dickins508034a2005-10-29 18:16:30 -0700766 spin_lock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -0700767 for (address = start; address < end; address += HPAGE_SIZE) {
David Gibsonc7546f82005-08-05 11:59:35 -0700768 ptep = huge_pte_offset(mm, address);
Adam Litke4c887262005-10-29 18:16:46 -0700769 if (!ptep)
David Gibsonc7546f82005-08-05 11:59:35 -0700770 continue;
771
Chen, Kenneth W39dde652006-12-06 20:32:03 -0800772 if (huge_pmd_unshare(mm, &address, ptep))
773 continue;
774
David Gibsonc7546f82005-08-05 11:59:35 -0700775 pte = huge_ptep_get_and_clear(mm, address, ptep);
David Gibson63551ae2005-06-21 17:14:44 -0700776 if (pte_none(pte))
777 continue;
David Gibsonc7546f82005-08-05 11:59:35 -0700778
David Gibson63551ae2005-06-21 17:14:44 -0700779 page = pte_page(pte);
Ken Chen6649a382007-02-08 14:20:27 -0800780 if (pte_dirty(pte))
781 set_page_dirty(page);
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -0700782 list_add(&page->lru, &page_list);
David Gibson63551ae2005-06-21 17:14:44 -0700783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 spin_unlock(&mm->page_table_lock);
Hugh Dickins508034a2005-10-29 18:16:30 -0700785 flush_tlb_range(vma, start, end);
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -0700786 list_for_each_entry_safe(page, tmp, &page_list, lru) {
787 list_del(&page->lru);
788 put_page(page);
789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
David Gibson63551ae2005-06-21 17:14:44 -0700791
Chen, Kenneth W502717f2006-10-11 01:20:46 -0700792void unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
793 unsigned long end)
794{
795 /*
796 * It is undesirable to test vma->vm_file as it should be non-null
797 * for valid hugetlb area. However, vm_file will be NULL in the error
798 * cleanup path of do_mmap_pgoff. When hugetlbfs ->mmap method fails,
799 * do_mmap_pgoff() nullifies vma->vm_file before calling this function
800 * to clean up. Since no pte has actually been setup, it is safe to
801 * do nothing in this case.
802 */
803 if (vma->vm_file) {
804 spin_lock(&vma->vm_file->f_mapping->i_mmap_lock);
805 __unmap_hugepage_range(vma, start, end);
806 spin_unlock(&vma->vm_file->f_mapping->i_mmap_lock);
807 }
808}
809
David Gibson1e8f8892006-01-06 00:10:44 -0800810static int hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma,
811 unsigned long address, pte_t *ptep, pte_t pte)
812{
813 struct page *old_page, *new_page;
David Gibson79ac6ba2006-03-22 00:08:51 -0800814 int avoidcopy;
David Gibson1e8f8892006-01-06 00:10:44 -0800815
816 old_page = pte_page(pte);
817
818 /* If no-one else is actually using this page, avoid the copy
819 * and just make the page writable */
820 avoidcopy = (page_count(old_page) == 1);
821 if (avoidcopy) {
822 set_huge_ptep_writable(vma, address, ptep);
Nick Piggin83c54072007-07-19 01:47:05 -0700823 return 0;
David Gibson1e8f8892006-01-06 00:10:44 -0800824 }
825
826 page_cache_get(old_page);
Christoph Lameter5da7ca82006-01-06 00:10:46 -0800827 new_page = alloc_huge_page(vma, address);
David Gibson1e8f8892006-01-06 00:10:44 -0800828
Adam Litke2fc39ce2007-11-14 16:59:39 -0800829 if (IS_ERR(new_page)) {
David Gibson1e8f8892006-01-06 00:10:44 -0800830 page_cache_release(old_page);
Adam Litke2fc39ce2007-11-14 16:59:39 -0800831 return -PTR_ERR(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -0800832 }
833
834 spin_unlock(&mm->page_table_lock);
Atsushi Nemoto9de455b2006-12-12 17:14:55 +0000835 copy_huge_page(new_page, old_page, address, vma);
Nick Piggin0ed361d2008-02-04 22:29:34 -0800836 __SetPageUptodate(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -0800837 spin_lock(&mm->page_table_lock);
838
839 ptep = huge_pte_offset(mm, address & HPAGE_MASK);
840 if (likely(pte_same(*ptep, pte))) {
841 /* Break COW */
842 set_huge_pte_at(mm, address, ptep,
843 make_huge_pte(vma, new_page, 1));
844 /* Make the old page be freed below */
845 new_page = old_page;
846 }
847 page_cache_release(new_page);
848 page_cache_release(old_page);
Nick Piggin83c54072007-07-19 01:47:05 -0700849 return 0;
David Gibson1e8f8892006-01-06 00:10:44 -0800850}
851
Robert P. J. Daya1ed3dd2007-07-17 04:03:33 -0700852static int hugetlb_no_page(struct mm_struct *mm, struct vm_area_struct *vma,
David Gibson1e8f8892006-01-06 00:10:44 -0800853 unsigned long address, pte_t *ptep, int write_access)
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100854{
855 int ret = VM_FAULT_SIGBUS;
Adam Litke4c887262005-10-29 18:16:46 -0700856 unsigned long idx;
857 unsigned long size;
Adam Litke4c887262005-10-29 18:16:46 -0700858 struct page *page;
859 struct address_space *mapping;
David Gibson1e8f8892006-01-06 00:10:44 -0800860 pte_t new_pte;
Adam Litke4c887262005-10-29 18:16:46 -0700861
Adam Litke4c887262005-10-29 18:16:46 -0700862 mapping = vma->vm_file->f_mapping;
863 idx = ((address - vma->vm_start) >> HPAGE_SHIFT)
864 + (vma->vm_pgoff >> (HPAGE_SHIFT - PAGE_SHIFT));
865
866 /*
867 * Use page lock to guard against racing truncation
868 * before we get page_table_lock.
869 */
Christoph Lameter6bda6662006-01-06 00:10:49 -0800870retry:
871 page = find_lock_page(mapping, idx);
872 if (!page) {
Hugh Dickinsebed4bf2006-10-28 10:38:43 -0700873 size = i_size_read(mapping->host) >> HPAGE_SHIFT;
874 if (idx >= size)
875 goto out;
Christoph Lameter6bda6662006-01-06 00:10:49 -0800876 page = alloc_huge_page(vma, address);
Adam Litke2fc39ce2007-11-14 16:59:39 -0800877 if (IS_ERR(page)) {
878 ret = -PTR_ERR(page);
Christoph Lameter6bda6662006-01-06 00:10:49 -0800879 goto out;
880 }
David Gibson79ac6ba2006-03-22 00:08:51 -0800881 clear_huge_page(page, address);
Nick Piggin0ed361d2008-02-04 22:29:34 -0800882 __SetPageUptodate(page);
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100883
Christoph Lameter6bda6662006-01-06 00:10:49 -0800884 if (vma->vm_flags & VM_SHARED) {
885 int err;
Ken Chen45c682a2007-11-14 16:59:44 -0800886 struct inode *inode = mapping->host;
Christoph Lameter6bda6662006-01-06 00:10:49 -0800887
888 err = add_to_page_cache(page, mapping, idx, GFP_KERNEL);
889 if (err) {
890 put_page(page);
Christoph Lameter6bda6662006-01-06 00:10:49 -0800891 if (err == -EEXIST)
892 goto retry;
893 goto out;
894 }
Ken Chen45c682a2007-11-14 16:59:44 -0800895
896 spin_lock(&inode->i_lock);
897 inode->i_blocks += BLOCKS_PER_HUGEPAGE;
898 spin_unlock(&inode->i_lock);
Christoph Lameter6bda6662006-01-06 00:10:49 -0800899 } else
900 lock_page(page);
901 }
David Gibson1e8f8892006-01-06 00:10:44 -0800902
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100903 spin_lock(&mm->page_table_lock);
Adam Litke4c887262005-10-29 18:16:46 -0700904 size = i_size_read(mapping->host) >> HPAGE_SHIFT;
905 if (idx >= size)
906 goto backout;
907
Nick Piggin83c54072007-07-19 01:47:05 -0700908 ret = 0;
Adam Litke86e52162006-01-06 00:10:43 -0800909 if (!pte_none(*ptep))
Adam Litke4c887262005-10-29 18:16:46 -0700910 goto backout;
911
David Gibson1e8f8892006-01-06 00:10:44 -0800912 new_pte = make_huge_pte(vma, page, ((vma->vm_flags & VM_WRITE)
913 && (vma->vm_flags & VM_SHARED)));
914 set_huge_pte_at(mm, address, ptep, new_pte);
915
916 if (write_access && !(vma->vm_flags & VM_SHARED)) {
917 /* Optimization, do the COW without a second fault */
918 ret = hugetlb_cow(mm, vma, address, ptep, new_pte);
919 }
920
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100921 spin_unlock(&mm->page_table_lock);
Adam Litke4c887262005-10-29 18:16:46 -0700922 unlock_page(page);
923out:
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100924 return ret;
Adam Litke4c887262005-10-29 18:16:46 -0700925
926backout:
927 spin_unlock(&mm->page_table_lock);
Adam Litke4c887262005-10-29 18:16:46 -0700928 unlock_page(page);
929 put_page(page);
930 goto out;
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100931}
932
Adam Litke86e52162006-01-06 00:10:43 -0800933int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
934 unsigned long address, int write_access)
935{
936 pte_t *ptep;
937 pte_t entry;
David Gibson1e8f8892006-01-06 00:10:44 -0800938 int ret;
David Gibson3935baa2006-03-22 00:08:53 -0800939 static DEFINE_MUTEX(hugetlb_instantiation_mutex);
Adam Litke86e52162006-01-06 00:10:43 -0800940
941 ptep = huge_pte_alloc(mm, address);
942 if (!ptep)
943 return VM_FAULT_OOM;
944
David Gibson3935baa2006-03-22 00:08:53 -0800945 /*
946 * Serialize hugepage allocation and instantiation, so that we don't
947 * get spurious allocation failures if two CPUs race to instantiate
948 * the same page in the page cache.
949 */
950 mutex_lock(&hugetlb_instantiation_mutex);
Adam Litke86e52162006-01-06 00:10:43 -0800951 entry = *ptep;
David Gibson3935baa2006-03-22 00:08:53 -0800952 if (pte_none(entry)) {
953 ret = hugetlb_no_page(mm, vma, address, ptep, write_access);
954 mutex_unlock(&hugetlb_instantiation_mutex);
955 return ret;
956 }
Adam Litke86e52162006-01-06 00:10:43 -0800957
Nick Piggin83c54072007-07-19 01:47:05 -0700958 ret = 0;
David Gibson1e8f8892006-01-06 00:10:44 -0800959
960 spin_lock(&mm->page_table_lock);
961 /* Check for a racing update before calling hugetlb_cow */
962 if (likely(pte_same(entry, *ptep)))
963 if (write_access && !pte_write(entry))
964 ret = hugetlb_cow(mm, vma, address, ptep, entry);
965 spin_unlock(&mm->page_table_lock);
David Gibson3935baa2006-03-22 00:08:53 -0800966 mutex_unlock(&hugetlb_instantiation_mutex);
David Gibson1e8f8892006-01-06 00:10:44 -0800967
968 return ret;
Adam Litke86e52162006-01-06 00:10:43 -0800969}
970
David Gibson63551ae2005-06-21 17:14:44 -0700971int follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma,
972 struct page **pages, struct vm_area_struct **vmas,
Adam Litke5b23dbe2007-11-14 16:59:33 -0800973 unsigned long *position, int *length, int i,
974 int write)
David Gibson63551ae2005-06-21 17:14:44 -0700975{
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -0800976 unsigned long pfn_offset;
977 unsigned long vaddr = *position;
David Gibson63551ae2005-06-21 17:14:44 -0700978 int remainder = *length;
979
Hugh Dickins1c598272005-10-19 21:23:43 -0700980 spin_lock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -0700981 while (vaddr < vma->vm_end && remainder) {
Adam Litke4c887262005-10-29 18:16:46 -0700982 pte_t *pte;
983 struct page *page;
984
985 /*
986 * Some archs (sparc64, sh*) have multiple pte_ts to
987 * each hugepage. We have to make * sure we get the
988 * first, for the page indexing below to work.
989 */
990 pte = huge_pte_offset(mm, vaddr & HPAGE_MASK);
991
Adam Litke72fad712007-12-10 15:49:28 -0800992 if (!pte || pte_none(*pte) || (write && !pte_write(*pte))) {
Adam Litke4c887262005-10-29 18:16:46 -0700993 int ret;
994
995 spin_unlock(&mm->page_table_lock);
Adam Litke5b23dbe2007-11-14 16:59:33 -0800996 ret = hugetlb_fault(mm, vma, vaddr, write);
Adam Litke4c887262005-10-29 18:16:46 -0700997 spin_lock(&mm->page_table_lock);
Adam Litkea89182c2007-08-22 14:01:51 -0700998 if (!(ret & VM_FAULT_ERROR))
Adam Litke4c887262005-10-29 18:16:46 -0700999 continue;
1000
1001 remainder = 0;
1002 if (!i)
1003 i = -EFAULT;
1004 break;
1005 }
David Gibson63551ae2005-06-21 17:14:44 -07001006
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08001007 pfn_offset = (vaddr & ~HPAGE_MASK) >> PAGE_SHIFT;
1008 page = pte_page(*pte);
1009same_page:
Chen, Kenneth Wd6692182006-03-31 02:29:57 -08001010 if (pages) {
1011 get_page(page);
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08001012 pages[i] = page + pfn_offset;
Chen, Kenneth Wd6692182006-03-31 02:29:57 -08001013 }
David Gibson63551ae2005-06-21 17:14:44 -07001014
1015 if (vmas)
1016 vmas[i] = vma;
1017
1018 vaddr += PAGE_SIZE;
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08001019 ++pfn_offset;
David Gibson63551ae2005-06-21 17:14:44 -07001020 --remainder;
1021 ++i;
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08001022 if (vaddr < vma->vm_end && remainder &&
1023 pfn_offset < HPAGE_SIZE/PAGE_SIZE) {
1024 /*
1025 * We use pfn_offset to avoid touching the pageframes
1026 * of this compound page.
1027 */
1028 goto same_page;
1029 }
David Gibson63551ae2005-06-21 17:14:44 -07001030 }
Hugh Dickins1c598272005-10-19 21:23:43 -07001031 spin_unlock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -07001032 *length = remainder;
1033 *position = vaddr;
1034
1035 return i;
1036}
Zhang, Yanmin8f860592006-03-22 00:08:50 -08001037
1038void hugetlb_change_protection(struct vm_area_struct *vma,
1039 unsigned long address, unsigned long end, pgprot_t newprot)
1040{
1041 struct mm_struct *mm = vma->vm_mm;
1042 unsigned long start = address;
1043 pte_t *ptep;
1044 pte_t pte;
1045
1046 BUG_ON(address >= end);
1047 flush_cache_range(vma, address, end);
1048
Chen, Kenneth W39dde652006-12-06 20:32:03 -08001049 spin_lock(&vma->vm_file->f_mapping->i_mmap_lock);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08001050 spin_lock(&mm->page_table_lock);
1051 for (; address < end; address += HPAGE_SIZE) {
1052 ptep = huge_pte_offset(mm, address);
1053 if (!ptep)
1054 continue;
Chen, Kenneth W39dde652006-12-06 20:32:03 -08001055 if (huge_pmd_unshare(mm, &address, ptep))
1056 continue;
Zhang, Yanmin8f860592006-03-22 00:08:50 -08001057 if (!pte_none(*ptep)) {
1058 pte = huge_ptep_get_and_clear(mm, address, ptep);
1059 pte = pte_mkhuge(pte_modify(pte, newprot));
1060 set_huge_pte_at(mm, address, ptep, pte);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08001061 }
1062 }
1063 spin_unlock(&mm->page_table_lock);
Chen, Kenneth W39dde652006-12-06 20:32:03 -08001064 spin_unlock(&vma->vm_file->f_mapping->i_mmap_lock);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08001065
1066 flush_tlb_range(vma, start, end);
1067}
1068
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001069struct file_region {
1070 struct list_head link;
1071 long from;
1072 long to;
1073};
1074
1075static long region_add(struct list_head *head, long f, long t)
1076{
1077 struct file_region *rg, *nrg, *trg;
1078
1079 /* Locate the region we are either in or before. */
1080 list_for_each_entry(rg, head, link)
1081 if (f <= rg->to)
1082 break;
1083
1084 /* Round our left edge to the current segment if it encloses us. */
1085 if (f > rg->from)
1086 f = rg->from;
1087
1088 /* Check for and consume any regions we now overlap with. */
1089 nrg = rg;
1090 list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
1091 if (&rg->link == head)
1092 break;
1093 if (rg->from > t)
1094 break;
1095
1096 /* If this area reaches higher then extend our area to
1097 * include it completely. If this is not the first area
1098 * which we intend to reuse, free it. */
1099 if (rg->to > t)
1100 t = rg->to;
1101 if (rg != nrg) {
1102 list_del(&rg->link);
1103 kfree(rg);
1104 }
1105 }
1106 nrg->from = f;
1107 nrg->to = t;
1108 return 0;
1109}
1110
1111static long region_chg(struct list_head *head, long f, long t)
1112{
1113 struct file_region *rg, *nrg;
1114 long chg = 0;
1115
1116 /* Locate the region we are before or in. */
1117 list_for_each_entry(rg, head, link)
1118 if (f <= rg->to)
1119 break;
1120
1121 /* If we are below the current region then a new region is required.
1122 * Subtle, allocate a new region at the position but make it zero
Simon Arlott183ff222007-10-20 01:27:18 +02001123 * size such that we can guarantee to record the reservation. */
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001124 if (&rg->link == head || t < rg->from) {
1125 nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
Stephen Hemmingerc80544d2007-10-18 03:07:05 -07001126 if (!nrg)
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001127 return -ENOMEM;
1128 nrg->from = f;
1129 nrg->to = f;
1130 INIT_LIST_HEAD(&nrg->link);
1131 list_add(&nrg->link, rg->link.prev);
1132
1133 return t - f;
1134 }
1135
1136 /* Round our left edge to the current segment if it encloses us. */
1137 if (f > rg->from)
1138 f = rg->from;
1139 chg = t - f;
1140
1141 /* Check for and consume any regions we now overlap with. */
1142 list_for_each_entry(rg, rg->link.prev, link) {
1143 if (&rg->link == head)
1144 break;
1145 if (rg->from > t)
1146 return chg;
1147
1148 /* We overlap with this area, if it extends futher than
1149 * us then we must extend ourselves. Account for its
1150 * existing reservation. */
1151 if (rg->to > t) {
1152 chg += rg->to - t;
1153 t = rg->to;
1154 }
1155 chg -= rg->to - rg->from;
1156 }
1157 return chg;
1158}
1159
1160static long region_truncate(struct list_head *head, long end)
1161{
1162 struct file_region *rg, *trg;
1163 long chg = 0;
1164
1165 /* Locate the region we are either in or before. */
1166 list_for_each_entry(rg, head, link)
1167 if (end <= rg->to)
1168 break;
1169 if (&rg->link == head)
1170 return 0;
1171
1172 /* If we are in the middle of a region then adjust it. */
1173 if (end > rg->from) {
1174 chg = rg->to - end;
1175 rg->to = end;
1176 rg = list_entry(rg->link.next, typeof(*rg), link);
1177 }
1178
1179 /* Drop any remaining regions. */
1180 list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
1181 if (&rg->link == head)
1182 break;
1183 chg += rg->to - rg->from;
1184 list_del(&rg->link);
1185 kfree(rg);
1186 }
1187 return chg;
1188}
1189
1190static int hugetlb_acct_memory(long delta)
1191{
1192 int ret = -ENOMEM;
1193
1194 spin_lock(&hugetlb_lock);
Ken Chen8a630112007-05-09 02:33:34 -07001195 /*
1196 * When cpuset is configured, it breaks the strict hugetlb page
1197 * reservation as the accounting is done on a global variable. Such
1198 * reservation is completely rubbish in the presence of cpuset because
1199 * the reservation is not checked against page availability for the
1200 * current cpuset. Application can still potentially OOM'ed by kernel
1201 * with lack of free htlb page in cpuset that the task is in.
1202 * Attempt to enforce strict accounting with cpuset is almost
1203 * impossible (or too ugly) because cpuset is too fluid that
1204 * task or memory node can be dynamically moved between cpusets.
1205 *
1206 * The change of semantics for shared hugetlb mapping with cpuset is
1207 * undesirable. However, in order to preserve some of the semantics,
1208 * we fall back to check against current free page availability as
1209 * a best attempt and hopefully to minimize the impact of changing
1210 * semantics that cpuset has.
1211 */
Adam Litkee4e574b2007-10-16 01:26:19 -07001212 if (delta > 0) {
1213 if (gather_surplus_pages(delta) < 0)
1214 goto out;
1215
Adam Litkeac09b3a2008-03-04 14:29:38 -08001216 if (delta > cpuset_mems_nr(free_huge_pages_node)) {
1217 return_unused_surplus_pages(delta);
Adam Litkee4e574b2007-10-16 01:26:19 -07001218 goto out;
Adam Litkeac09b3a2008-03-04 14:29:38 -08001219 }
Adam Litkee4e574b2007-10-16 01:26:19 -07001220 }
1221
1222 ret = 0;
Adam Litkee4e574b2007-10-16 01:26:19 -07001223 if (delta < 0)
1224 return_unused_surplus_pages((unsigned long) -delta);
1225
1226out:
1227 spin_unlock(&hugetlb_lock);
1228 return ret;
1229}
1230
1231int hugetlb_reserve_pages(struct inode *inode, long from, long to)
1232{
1233 long ret, chg;
1234
1235 chg = region_chg(&inode->i_mapping->private_list, from, to);
1236 if (chg < 0)
1237 return chg;
Ken Chen8a630112007-05-09 02:33:34 -07001238
Adam Litke90d8b7e2007-11-14 16:59:42 -08001239 if (hugetlb_get_quota(inode->i_mapping, chg))
1240 return -ENOSPC;
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001241 ret = hugetlb_acct_memory(chg);
Ken Chen68842c92008-01-14 00:55:19 -08001242 if (ret < 0) {
1243 hugetlb_put_quota(inode->i_mapping, chg);
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001244 return ret;
Ken Chen68842c92008-01-14 00:55:19 -08001245 }
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001246 region_add(&inode->i_mapping->private_list, from, to);
1247 return 0;
1248}
1249
1250void hugetlb_unreserve_pages(struct inode *inode, long offset, long freed)
1251{
1252 long chg = region_truncate(&inode->i_mapping->private_list, offset);
Ken Chen45c682a2007-11-14 16:59:44 -08001253
1254 spin_lock(&inode->i_lock);
1255 inode->i_blocks -= BLOCKS_PER_HUGEPAGE * freed;
1256 spin_unlock(&inode->i_lock);
1257
Adam Litke90d8b7e2007-11-14 16:59:42 -08001258 hugetlb_put_quota(inode->i_mapping, (chg - freed));
1259 hugetlb_acct_memory(-(chg - freed));
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001260}