blob: 3a790651475a067c7cb8798f669fecd8796835c6 [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027unsigned long max_huge_pages;
28static struct list_head hugepage_freelists[MAX_NUMNODES];
29static unsigned int nr_huge_pages_node[MAX_NUMNODES];
30static unsigned int free_huge_pages_node[MAX_NUMNODES];
Adam Litke7893d1d2007-10-16 01:26:18 -070031static unsigned int surplus_huge_pages_node[MAX_NUMNODES];
Mel Gorman396faf02007-07-17 04:03:13 -070032static gfp_t htlb_alloc_mask = GFP_HIGHUSER;
33unsigned long hugepages_treat_as_movable;
Adam Litke54f9f802007-10-16 01:26:20 -070034int hugetlb_dynamic_pool;
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -080035unsigned long nr_overcommit_huge_pages;
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);
Adam Litke7893d1d2007-10-16 01:26:18 -0700123 BUG_ON(page_count(page));
David Gibson27a85ef2006-03-22 00:08:56 -0800124 INIT_LIST_HEAD(&page->lru);
125
126 spin_lock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700127 if (surplus_huge_pages_node[nid]) {
128 update_and_free_page(page);
129 surplus_huge_pages--;
130 surplus_huge_pages_node[nid]--;
131 } else {
132 enqueue_huge_page(page);
133 }
David Gibson27a85ef2006-03-22 00:08:56 -0800134 spin_unlock(&hugetlb_lock);
Adam Litkec79fb752007-11-14 16:59:38 -0800135 if (mapping)
Adam Litke9a119c02007-11-14 16:59:41 -0800136 hugetlb_put_quota(mapping, 1);
Adam Litkec79fb752007-11-14 16:59:38 -0800137 set_page_private(page, 0);
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
Adam Litke54f9f802007-10-16 01:26:20 -0700233 /* Check if the dynamic pool is enabled */
234 if (!hugetlb_dynamic_pool)
235 return NULL;
236
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800237 /*
238 * Assume we will successfully allocate the surplus page to
239 * prevent racing processes from causing the surplus to exceed
240 * overcommit
241 *
242 * This however introduces a different race, where a process B
243 * tries to grow the static hugepage pool while alloc_pages() is
244 * called by process A. B will only examine the per-node
245 * counters in determining if surplus huge pages can be
246 * converted to normal huge pages in adjust_pool_surplus(). A
247 * won't be able to increment the per-node counter, until the
248 * lock is dropped by B, but B doesn't drop hugetlb_lock until
249 * no more huge pages can be converted from surplus to normal
250 * state (and doesn't try to convert again). Thus, we have a
251 * case where a surplus huge page exists, the pool is grown, and
252 * the surplus huge page still exists after, even though it
253 * should just have been converted to a normal huge page. This
254 * does not leak memory, though, as the hugepage will be freed
255 * once it is out of use. It also does not allow the counters to
256 * go out of whack in adjust_pool_surplus() as we don't modify
257 * the node values until we've gotten the hugepage and only the
258 * per-node value is checked there.
259 */
260 spin_lock(&hugetlb_lock);
261 if (surplus_huge_pages >= nr_overcommit_huge_pages) {
262 spin_unlock(&hugetlb_lock);
263 return NULL;
264 } else {
265 nr_huge_pages++;
266 surplus_huge_pages++;
267 }
268 spin_unlock(&hugetlb_lock);
269
Adam Litke7893d1d2007-10-16 01:26:18 -0700270 page = alloc_pages(htlb_alloc_mask|__GFP_COMP|__GFP_NOWARN,
271 HUGETLB_PAGE_ORDER);
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800272
273 spin_lock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700274 if (page) {
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800275 nid = page_to_nid(page);
Adam Litke7893d1d2007-10-16 01:26:18 -0700276 set_compound_page_dtor(page, free_huge_page);
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800277 /*
278 * We incremented the global counters already
279 */
280 nr_huge_pages_node[nid]++;
281 surplus_huge_pages_node[nid]++;
282 } else {
283 nr_huge_pages--;
284 surplus_huge_pages--;
Adam Litke7893d1d2007-10-16 01:26:18 -0700285 }
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800286 spin_unlock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700287
288 return page;
289}
290
Adam Litkee4e574b2007-10-16 01:26:19 -0700291/*
292 * Increase the hugetlb pool such that it can accomodate a reservation
293 * of size 'delta'.
294 */
295static int gather_surplus_pages(int delta)
296{
297 struct list_head surplus_list;
298 struct page *page, *tmp;
299 int ret, i;
300 int needed, allocated;
301
302 needed = (resv_huge_pages + delta) - free_huge_pages;
303 if (needed <= 0)
304 return 0;
305
306 allocated = 0;
307 INIT_LIST_HEAD(&surplus_list);
308
309 ret = -ENOMEM;
310retry:
311 spin_unlock(&hugetlb_lock);
312 for (i = 0; i < needed; i++) {
313 page = alloc_buddy_huge_page(NULL, 0);
314 if (!page) {
315 /*
316 * We were not able to allocate enough pages to
317 * satisfy the entire reservation so we free what
318 * we've allocated so far.
319 */
320 spin_lock(&hugetlb_lock);
321 needed = 0;
322 goto free;
323 }
324
325 list_add(&page->lru, &surplus_list);
326 }
327 allocated += needed;
328
329 /*
330 * After retaking hugetlb_lock, we need to recalculate 'needed'
331 * because either resv_huge_pages or free_huge_pages may have changed.
332 */
333 spin_lock(&hugetlb_lock);
334 needed = (resv_huge_pages + delta) - (free_huge_pages + allocated);
335 if (needed > 0)
336 goto retry;
337
338 /*
339 * The surplus_list now contains _at_least_ the number of extra pages
340 * needed to accomodate the reservation. Add the appropriate number
341 * of pages to the hugetlb pool and free the extras back to the buddy
342 * allocator.
343 */
344 needed += allocated;
345 ret = 0;
346free:
347 list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
348 list_del(&page->lru);
349 if ((--needed) >= 0)
350 enqueue_huge_page(page);
Adam Litkeaf767cb2007-10-16 01:26:25 -0700351 else {
352 /*
353 * Decrement the refcount and free the page using its
354 * destructor. This must be done with hugetlb_lock
355 * unlocked which is safe because free_huge_page takes
356 * hugetlb_lock before deciding how to free the page.
357 */
358 spin_unlock(&hugetlb_lock);
359 put_page(page);
360 spin_lock(&hugetlb_lock);
361 }
Adam Litkee4e574b2007-10-16 01:26:19 -0700362 }
363
364 return ret;
365}
366
367/*
368 * When releasing a hugetlb pool reservation, any surplus pages that were
369 * allocated to satisfy the reservation must be explicitly freed if they were
370 * never used.
371 */
Adrian Bunk8cde0452007-11-14 16:59:43 -0800372static void return_unused_surplus_pages(unsigned long unused_resv_pages)
Adam Litkee4e574b2007-10-16 01:26:19 -0700373{
374 static int nid = -1;
375 struct page *page;
376 unsigned long nr_pages;
377
378 nr_pages = min(unused_resv_pages, surplus_huge_pages);
379
380 while (nr_pages) {
381 nid = next_node(nid, node_online_map);
382 if (nid == MAX_NUMNODES)
383 nid = first_node(node_online_map);
384
385 if (!surplus_huge_pages_node[nid])
386 continue;
387
388 if (!list_empty(&hugepage_freelists[nid])) {
389 page = list_entry(hugepage_freelists[nid].next,
390 struct page, lru);
391 list_del(&page->lru);
392 update_and_free_page(page);
393 free_huge_pages--;
394 free_huge_pages_node[nid]--;
395 surplus_huge_pages--;
396 surplus_huge_pages_node[nid]--;
397 nr_pages--;
398 }
399 }
400}
401
Adam Litke348ea202007-11-14 16:59:37 -0800402
403static struct page *alloc_huge_page_shared(struct vm_area_struct *vma,
404 unsigned long addr)
405{
406 struct page *page;
407
408 spin_lock(&hugetlb_lock);
409 page = dequeue_huge_page(vma, addr);
410 spin_unlock(&hugetlb_lock);
Adam Litke90d8b7e2007-11-14 16:59:42 -0800411 return page ? page : ERR_PTR(-VM_FAULT_OOM);
Adam Litke348ea202007-11-14 16:59:37 -0800412}
413
414static struct page *alloc_huge_page_private(struct vm_area_struct *vma,
415 unsigned long addr)
416{
417 struct page *page = NULL;
418
Adam Litke90d8b7e2007-11-14 16:59:42 -0800419 if (hugetlb_get_quota(vma->vm_file->f_mapping, 1))
420 return ERR_PTR(-VM_FAULT_SIGBUS);
421
Adam Litke348ea202007-11-14 16:59:37 -0800422 spin_lock(&hugetlb_lock);
423 if (free_huge_pages > resv_huge_pages)
424 page = dequeue_huge_page(vma, addr);
425 spin_unlock(&hugetlb_lock);
426 if (!page)
427 page = alloc_buddy_huge_page(vma, addr);
Adam Litke90d8b7e2007-11-14 16:59:42 -0800428 return page ? page : ERR_PTR(-VM_FAULT_OOM);
Adam Litke348ea202007-11-14 16:59:37 -0800429}
430
David Gibson27a85ef2006-03-22 00:08:56 -0800431static struct page *alloc_huge_page(struct vm_area_struct *vma,
432 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Adam Litke348ea202007-11-14 16:59:37 -0800434 struct page *page;
Adam Litke2fc39ce2007-11-14 16:59:39 -0800435 struct address_space *mapping = vma->vm_file->f_mapping;
436
Adam Litke348ea202007-11-14 16:59:37 -0800437 if (vma->vm_flags & VM_MAYSHARE)
438 page = alloc_huge_page_shared(vma, addr);
439 else
440 page = alloc_huge_page_private(vma, addr);
Adam Litke90d8b7e2007-11-14 16:59:42 -0800441
442 if (!IS_ERR(page)) {
Adam Litke348ea202007-11-14 16:59:37 -0800443 set_page_refcounted(page);
Adam Litke2fc39ce2007-11-14 16:59:39 -0800444 set_page_private(page, (unsigned long) mapping);
Adam Litke90d8b7e2007-11-14 16:59:42 -0800445 }
446 return page;
David Gibsonb45b5bd2006-03-22 00:08:55 -0800447}
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449static int __init hugetlb_init(void)
450{
451 unsigned long i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100453 if (HPAGE_SHIFT == 0)
454 return 0;
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 for (i = 0; i < MAX_NUMNODES; ++i)
457 INIT_LIST_HEAD(&hugepage_freelists[i]);
458
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700459 hugetlb_next_nid = first_node(node_online_map);
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 for (i = 0; i < max_huge_pages; ++i) {
Nick Piggina4822892006-03-22 00:08:08 -0800462 if (!alloc_fresh_huge_page())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465 max_huge_pages = free_huge_pages = nr_huge_pages = i;
466 printk("Total HugeTLB memory allocated, %ld\n", free_huge_pages);
467 return 0;
468}
469module_init(hugetlb_init);
470
471static int __init hugetlb_setup(char *s)
472{
473 if (sscanf(s, "%lu", &max_huge_pages) <= 0)
474 max_huge_pages = 0;
475 return 1;
476}
477__setup("hugepages=", hugetlb_setup);
478
Ken Chen8a630112007-05-09 02:33:34 -0700479static unsigned int cpuset_mems_nr(unsigned int *array)
480{
481 int node;
482 unsigned int nr = 0;
483
484 for_each_node_mask(node, cpuset_current_mems_allowed)
485 nr += array[node];
486
487 return nr;
488}
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490#ifdef CONFIG_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491#ifdef CONFIG_HIGHMEM
492static void try_to_free_low(unsigned long count)
493{
Christoph Lameter4415cc82006-09-25 23:31:55 -0700494 int i;
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 for (i = 0; i < MAX_NUMNODES; ++i) {
497 struct page *page, *next;
498 list_for_each_entry_safe(page, next, &hugepage_freelists[i], lru) {
Adam Litke6b0c8802007-10-16 01:26:23 -0700499 if (count >= nr_huge_pages)
500 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (PageHighMem(page))
502 continue;
503 list_del(&page->lru);
504 update_and_free_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 free_huge_pages--;
Christoph Lameter4415cc82006-09-25 23:31:55 -0700506 free_huge_pages_node[page_to_nid(page)]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508 }
509}
510#else
511static inline void try_to_free_low(unsigned long count)
512{
513}
514#endif
515
Adam Litke7893d1d2007-10-16 01:26:18 -0700516#define persistent_huge_pages (nr_huge_pages - surplus_huge_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517static unsigned long set_max_huge_pages(unsigned long count)
518{
Adam Litke7893d1d2007-10-16 01:26:18 -0700519 unsigned long min_count, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Adam Litke7893d1d2007-10-16 01:26:18 -0700521 /*
522 * Increase the pool size
523 * First take pages out of surplus state. Then make up the
524 * remaining difference by allocating fresh huge pages.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800525 *
526 * We might race with alloc_buddy_huge_page() here and be unable
527 * to convert a surplus huge page to a normal huge page. That is
528 * not critical, though, it just means the overall size of the
529 * pool might be one hugepage larger than it needs to be, but
530 * within all the constraints specified by the sysctls.
Adam Litke7893d1d2007-10-16 01:26:18 -0700531 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 spin_lock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700533 while (surplus_huge_pages && count > persistent_huge_pages) {
534 if (!adjust_pool_surplus(-1))
535 break;
536 }
537
538 while (count > persistent_huge_pages) {
539 int ret;
540 /*
541 * If this allocation races such that we no longer need the
542 * page, free_huge_page will handle it by freeing the page
543 * and reducing the surplus.
544 */
545 spin_unlock(&hugetlb_lock);
546 ret = alloc_fresh_huge_page();
547 spin_lock(&hugetlb_lock);
548 if (!ret)
549 goto out;
550
551 }
Adam Litke7893d1d2007-10-16 01:26:18 -0700552
553 /*
554 * Decrease the pool size
555 * First return free pages to the buddy allocator (being careful
556 * to keep enough around to satisfy reservations). Then place
557 * pages into surplus state as needed so the pool will shrink
558 * to the desired size as pages become free.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800559 *
560 * By placing pages into the surplus state independent of the
561 * overcommit value, we are allowing the surplus pool size to
562 * exceed overcommit. There are few sane options here. Since
563 * alloc_buddy_huge_page() is checking the global counter,
564 * though, we'll note that we're not allowed to exceed surplus
565 * and won't grow the pool anywhere else. Not until one of the
566 * sysctls are changed, or the surplus pages go out of use.
Adam Litke7893d1d2007-10-16 01:26:18 -0700567 */
Adam Litke6b0c8802007-10-16 01:26:23 -0700568 min_count = resv_huge_pages + nr_huge_pages - free_huge_pages;
569 min_count = max(count, min_count);
Adam Litke7893d1d2007-10-16 01:26:18 -0700570 try_to_free_low(min_count);
571 while (min_count < persistent_huge_pages) {
Christoph Lameter5da7ca82006-01-06 00:10:46 -0800572 struct page *page = dequeue_huge_page(NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (!page)
574 break;
575 update_and_free_page(page);
576 }
Adam Litke7893d1d2007-10-16 01:26:18 -0700577 while (count < persistent_huge_pages) {
578 if (!adjust_pool_surplus(1))
579 break;
580 }
581out:
582 ret = persistent_huge_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 spin_unlock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700584 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
587int hugetlb_sysctl_handler(struct ctl_table *table, int write,
588 struct file *file, void __user *buffer,
589 size_t *length, loff_t *ppos)
590{
591 proc_doulongvec_minmax(table, write, file, buffer, length, ppos);
592 max_huge_pages = set_max_huge_pages(max_huge_pages);
593 return 0;
594}
Mel Gorman396faf02007-07-17 04:03:13 -0700595
596int hugetlb_treat_movable_handler(struct ctl_table *table, int write,
597 struct file *file, void __user *buffer,
598 size_t *length, loff_t *ppos)
599{
600 proc_dointvec(table, write, file, buffer, length, ppos);
601 if (hugepages_treat_as_movable)
602 htlb_alloc_mask = GFP_HIGHUSER_MOVABLE;
603 else
604 htlb_alloc_mask = GFP_HIGHUSER;
605 return 0;
606}
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608#endif /* CONFIG_SYSCTL */
609
610int hugetlb_report_meminfo(char *buf)
611{
612 return sprintf(buf,
613 "HugePages_Total: %5lu\n"
614 "HugePages_Free: %5lu\n"
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -0700615 "HugePages_Rsvd: %5lu\n"
Adam Litke7893d1d2007-10-16 01:26:18 -0700616 "HugePages_Surp: %5lu\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 "Hugepagesize: %5lu kB\n",
618 nr_huge_pages,
619 free_huge_pages,
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -0700620 resv_huge_pages,
Adam Litke7893d1d2007-10-16 01:26:18 -0700621 surplus_huge_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 HPAGE_SIZE/1024);
623}
624
625int hugetlb_report_node_meminfo(int nid, char *buf)
626{
627 return sprintf(buf,
628 "Node %d HugePages_Total: %5u\n"
629 "Node %d HugePages_Free: %5u\n",
630 nid, nr_huge_pages_node[nid],
631 nid, free_huge_pages_node[nid]);
632}
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634/* Return the number pages of memory we physically have, in PAGE_SIZE units. */
635unsigned long hugetlb_total_pages(void)
636{
637 return nr_huge_pages * (HPAGE_SIZE / PAGE_SIZE);
638}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640/*
641 * We cannot handle pagefaults against hugetlb pages at all. They cause
642 * handle_mm_fault() to try to instantiate regular-sized pages in the
643 * hugegpage VMA. do_page_fault() is supposed to trap this, so BUG is we get
644 * this far.
645 */
Nick Piggind0217ac2007-07-19 01:47:03 -0700646static int hugetlb_vm_op_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
648 BUG();
Nick Piggind0217ac2007-07-19 01:47:03 -0700649 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
652struct vm_operations_struct hugetlb_vm_ops = {
Nick Piggind0217ac2007-07-19 01:47:03 -0700653 .fault = hugetlb_vm_op_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654};
655
David Gibson1e8f8892006-01-06 00:10:44 -0800656static pte_t make_huge_pte(struct vm_area_struct *vma, struct page *page,
657 int writable)
David Gibson63551ae2005-06-21 17:14:44 -0700658{
659 pte_t entry;
660
David Gibson1e8f8892006-01-06 00:10:44 -0800661 if (writable) {
David Gibson63551ae2005-06-21 17:14:44 -0700662 entry =
663 pte_mkwrite(pte_mkdirty(mk_pte(page, vma->vm_page_prot)));
664 } else {
665 entry = pte_wrprotect(mk_pte(page, vma->vm_page_prot));
666 }
667 entry = pte_mkyoung(entry);
668 entry = pte_mkhuge(entry);
669
670 return entry;
671}
672
David Gibson1e8f8892006-01-06 00:10:44 -0800673static void set_huge_ptep_writable(struct vm_area_struct *vma,
674 unsigned long address, pte_t *ptep)
675{
676 pte_t entry;
677
678 entry = pte_mkwrite(pte_mkdirty(*ptep));
Benjamin Herrenschmidt8dab5242007-06-16 10:16:12 -0700679 if (ptep_set_access_flags(vma, address, ptep, entry, 1)) {
680 update_mmu_cache(vma, address, entry);
Benjamin Herrenschmidt8dab5242007-06-16 10:16:12 -0700681 }
David Gibson1e8f8892006-01-06 00:10:44 -0800682}
683
684
David Gibson63551ae2005-06-21 17:14:44 -0700685int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
686 struct vm_area_struct *vma)
687{
688 pte_t *src_pte, *dst_pte, entry;
689 struct page *ptepage;
Hugh Dickins1c598272005-10-19 21:23:43 -0700690 unsigned long addr;
David Gibson1e8f8892006-01-06 00:10:44 -0800691 int cow;
692
693 cow = (vma->vm_flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE;
David Gibson63551ae2005-06-21 17:14:44 -0700694
Hugh Dickins1c598272005-10-19 21:23:43 -0700695 for (addr = vma->vm_start; addr < vma->vm_end; addr += HPAGE_SIZE) {
Hugh Dickinsc74df322005-10-29 18:16:23 -0700696 src_pte = huge_pte_offset(src, addr);
697 if (!src_pte)
698 continue;
David Gibson63551ae2005-06-21 17:14:44 -0700699 dst_pte = huge_pte_alloc(dst, addr);
700 if (!dst_pte)
701 goto nomem;
Hugh Dickinsc74df322005-10-29 18:16:23 -0700702 spin_lock(&dst->page_table_lock);
Hugh Dickins1c598272005-10-19 21:23:43 -0700703 spin_lock(&src->page_table_lock);
Hugh Dickinsc74df322005-10-29 18:16:23 -0700704 if (!pte_none(*src_pte)) {
David Gibson1e8f8892006-01-06 00:10:44 -0800705 if (cow)
706 ptep_set_wrprotect(src, addr, src_pte);
Hugh Dickins1c598272005-10-19 21:23:43 -0700707 entry = *src_pte;
708 ptepage = pte_page(entry);
709 get_page(ptepage);
Hugh Dickins1c598272005-10-19 21:23:43 -0700710 set_huge_pte_at(dst, addr, dst_pte, entry);
711 }
712 spin_unlock(&src->page_table_lock);
Hugh Dickinsc74df322005-10-29 18:16:23 -0700713 spin_unlock(&dst->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -0700714 }
715 return 0;
716
717nomem:
718 return -ENOMEM;
719}
720
Chen, Kenneth W502717f2006-10-11 01:20:46 -0700721void __unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
722 unsigned long end)
David Gibson63551ae2005-06-21 17:14:44 -0700723{
724 struct mm_struct *mm = vma->vm_mm;
725 unsigned long address;
David Gibsonc7546f82005-08-05 11:59:35 -0700726 pte_t *ptep;
David Gibson63551ae2005-06-21 17:14:44 -0700727 pte_t pte;
728 struct page *page;
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -0700729 struct page *tmp;
Chen, Kenneth Wc0a499c2006-12-06 20:31:39 -0800730 /*
731 * A page gathering list, protected by per file i_mmap_lock. The
732 * lock is used to avoid list corruption from multiple unmapping
733 * of the same page since we are using page->lru.
734 */
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -0700735 LIST_HEAD(page_list);
David Gibson63551ae2005-06-21 17:14:44 -0700736
737 WARN_ON(!is_vm_hugetlb_page(vma));
738 BUG_ON(start & ~HPAGE_MASK);
739 BUG_ON(end & ~HPAGE_MASK);
740
Hugh Dickins508034a2005-10-29 18:16:30 -0700741 spin_lock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -0700742 for (address = start; address < end; address += HPAGE_SIZE) {
David Gibsonc7546f82005-08-05 11:59:35 -0700743 ptep = huge_pte_offset(mm, address);
Adam Litke4c887262005-10-29 18:16:46 -0700744 if (!ptep)
David Gibsonc7546f82005-08-05 11:59:35 -0700745 continue;
746
Chen, Kenneth W39dde652006-12-06 20:32:03 -0800747 if (huge_pmd_unshare(mm, &address, ptep))
748 continue;
749
David Gibsonc7546f82005-08-05 11:59:35 -0700750 pte = huge_ptep_get_and_clear(mm, address, ptep);
David Gibson63551ae2005-06-21 17:14:44 -0700751 if (pte_none(pte))
752 continue;
David Gibsonc7546f82005-08-05 11:59:35 -0700753
David Gibson63551ae2005-06-21 17:14:44 -0700754 page = pte_page(pte);
Ken Chen6649a382007-02-08 14:20:27 -0800755 if (pte_dirty(pte))
756 set_page_dirty(page);
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -0700757 list_add(&page->lru, &page_list);
David Gibson63551ae2005-06-21 17:14:44 -0700758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 spin_unlock(&mm->page_table_lock);
Hugh Dickins508034a2005-10-29 18:16:30 -0700760 flush_tlb_range(vma, start, end);
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -0700761 list_for_each_entry_safe(page, tmp, &page_list, lru) {
762 list_del(&page->lru);
763 put_page(page);
764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
David Gibson63551ae2005-06-21 17:14:44 -0700766
Chen, Kenneth W502717f2006-10-11 01:20:46 -0700767void unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
768 unsigned long end)
769{
770 /*
771 * It is undesirable to test vma->vm_file as it should be non-null
772 * for valid hugetlb area. However, vm_file will be NULL in the error
773 * cleanup path of do_mmap_pgoff. When hugetlbfs ->mmap method fails,
774 * do_mmap_pgoff() nullifies vma->vm_file before calling this function
775 * to clean up. Since no pte has actually been setup, it is safe to
776 * do nothing in this case.
777 */
778 if (vma->vm_file) {
779 spin_lock(&vma->vm_file->f_mapping->i_mmap_lock);
780 __unmap_hugepage_range(vma, start, end);
781 spin_unlock(&vma->vm_file->f_mapping->i_mmap_lock);
782 }
783}
784
David Gibson1e8f8892006-01-06 00:10:44 -0800785static int hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma,
786 unsigned long address, pte_t *ptep, pte_t pte)
787{
788 struct page *old_page, *new_page;
David Gibson79ac6ba2006-03-22 00:08:51 -0800789 int avoidcopy;
David Gibson1e8f8892006-01-06 00:10:44 -0800790
791 old_page = pte_page(pte);
792
793 /* If no-one else is actually using this page, avoid the copy
794 * and just make the page writable */
795 avoidcopy = (page_count(old_page) == 1);
796 if (avoidcopy) {
797 set_huge_ptep_writable(vma, address, ptep);
Nick Piggin83c54072007-07-19 01:47:05 -0700798 return 0;
David Gibson1e8f8892006-01-06 00:10:44 -0800799 }
800
801 page_cache_get(old_page);
Christoph Lameter5da7ca82006-01-06 00:10:46 -0800802 new_page = alloc_huge_page(vma, address);
David Gibson1e8f8892006-01-06 00:10:44 -0800803
Adam Litke2fc39ce2007-11-14 16:59:39 -0800804 if (IS_ERR(new_page)) {
David Gibson1e8f8892006-01-06 00:10:44 -0800805 page_cache_release(old_page);
Adam Litke2fc39ce2007-11-14 16:59:39 -0800806 return -PTR_ERR(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -0800807 }
808
809 spin_unlock(&mm->page_table_lock);
Atsushi Nemoto9de455b2006-12-12 17:14:55 +0000810 copy_huge_page(new_page, old_page, address, vma);
David Gibson1e8f8892006-01-06 00:10:44 -0800811 spin_lock(&mm->page_table_lock);
812
813 ptep = huge_pte_offset(mm, address & HPAGE_MASK);
814 if (likely(pte_same(*ptep, pte))) {
815 /* Break COW */
816 set_huge_pte_at(mm, address, ptep,
817 make_huge_pte(vma, new_page, 1));
818 /* Make the old page be freed below */
819 new_page = old_page;
820 }
821 page_cache_release(new_page);
822 page_cache_release(old_page);
Nick Piggin83c54072007-07-19 01:47:05 -0700823 return 0;
David Gibson1e8f8892006-01-06 00:10:44 -0800824}
825
Robert P. J. Daya1ed3dd2007-07-17 04:03:33 -0700826static int hugetlb_no_page(struct mm_struct *mm, struct vm_area_struct *vma,
David Gibson1e8f8892006-01-06 00:10:44 -0800827 unsigned long address, pte_t *ptep, int write_access)
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100828{
829 int ret = VM_FAULT_SIGBUS;
Adam Litke4c887262005-10-29 18:16:46 -0700830 unsigned long idx;
831 unsigned long size;
Adam Litke4c887262005-10-29 18:16:46 -0700832 struct page *page;
833 struct address_space *mapping;
David Gibson1e8f8892006-01-06 00:10:44 -0800834 pte_t new_pte;
Adam Litke4c887262005-10-29 18:16:46 -0700835
Adam Litke4c887262005-10-29 18:16:46 -0700836 mapping = vma->vm_file->f_mapping;
837 idx = ((address - vma->vm_start) >> HPAGE_SHIFT)
838 + (vma->vm_pgoff >> (HPAGE_SHIFT - PAGE_SHIFT));
839
840 /*
841 * Use page lock to guard against racing truncation
842 * before we get page_table_lock.
843 */
Christoph Lameter6bda6662006-01-06 00:10:49 -0800844retry:
845 page = find_lock_page(mapping, idx);
846 if (!page) {
Hugh Dickinsebed4bf2006-10-28 10:38:43 -0700847 size = i_size_read(mapping->host) >> HPAGE_SHIFT;
848 if (idx >= size)
849 goto out;
Christoph Lameter6bda6662006-01-06 00:10:49 -0800850 page = alloc_huge_page(vma, address);
Adam Litke2fc39ce2007-11-14 16:59:39 -0800851 if (IS_ERR(page)) {
852 ret = -PTR_ERR(page);
Christoph Lameter6bda6662006-01-06 00:10:49 -0800853 goto out;
854 }
David Gibson79ac6ba2006-03-22 00:08:51 -0800855 clear_huge_page(page, address);
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100856
Christoph Lameter6bda6662006-01-06 00:10:49 -0800857 if (vma->vm_flags & VM_SHARED) {
858 int err;
Ken Chen45c682a2007-11-14 16:59:44 -0800859 struct inode *inode = mapping->host;
Christoph Lameter6bda6662006-01-06 00:10:49 -0800860
861 err = add_to_page_cache(page, mapping, idx, GFP_KERNEL);
862 if (err) {
863 put_page(page);
Christoph Lameter6bda6662006-01-06 00:10:49 -0800864 if (err == -EEXIST)
865 goto retry;
866 goto out;
867 }
Ken Chen45c682a2007-11-14 16:59:44 -0800868
869 spin_lock(&inode->i_lock);
870 inode->i_blocks += BLOCKS_PER_HUGEPAGE;
871 spin_unlock(&inode->i_lock);
Christoph Lameter6bda6662006-01-06 00:10:49 -0800872 } else
873 lock_page(page);
874 }
David Gibson1e8f8892006-01-06 00:10:44 -0800875
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100876 spin_lock(&mm->page_table_lock);
Adam Litke4c887262005-10-29 18:16:46 -0700877 size = i_size_read(mapping->host) >> HPAGE_SHIFT;
878 if (idx >= size)
879 goto backout;
880
Nick Piggin83c54072007-07-19 01:47:05 -0700881 ret = 0;
Adam Litke86e52162006-01-06 00:10:43 -0800882 if (!pte_none(*ptep))
Adam Litke4c887262005-10-29 18:16:46 -0700883 goto backout;
884
David Gibson1e8f8892006-01-06 00:10:44 -0800885 new_pte = make_huge_pte(vma, page, ((vma->vm_flags & VM_WRITE)
886 && (vma->vm_flags & VM_SHARED)));
887 set_huge_pte_at(mm, address, ptep, new_pte);
888
889 if (write_access && !(vma->vm_flags & VM_SHARED)) {
890 /* Optimization, do the COW without a second fault */
891 ret = hugetlb_cow(mm, vma, address, ptep, new_pte);
892 }
893
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100894 spin_unlock(&mm->page_table_lock);
Adam Litke4c887262005-10-29 18:16:46 -0700895 unlock_page(page);
896out:
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100897 return ret;
Adam Litke4c887262005-10-29 18:16:46 -0700898
899backout:
900 spin_unlock(&mm->page_table_lock);
Adam Litke4c887262005-10-29 18:16:46 -0700901 unlock_page(page);
902 put_page(page);
903 goto out;
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100904}
905
Adam Litke86e52162006-01-06 00:10:43 -0800906int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
907 unsigned long address, int write_access)
908{
909 pte_t *ptep;
910 pte_t entry;
David Gibson1e8f8892006-01-06 00:10:44 -0800911 int ret;
David Gibson3935baa2006-03-22 00:08:53 -0800912 static DEFINE_MUTEX(hugetlb_instantiation_mutex);
Adam Litke86e52162006-01-06 00:10:43 -0800913
914 ptep = huge_pte_alloc(mm, address);
915 if (!ptep)
916 return VM_FAULT_OOM;
917
David Gibson3935baa2006-03-22 00:08:53 -0800918 /*
919 * Serialize hugepage allocation and instantiation, so that we don't
920 * get spurious allocation failures if two CPUs race to instantiate
921 * the same page in the page cache.
922 */
923 mutex_lock(&hugetlb_instantiation_mutex);
Adam Litke86e52162006-01-06 00:10:43 -0800924 entry = *ptep;
David Gibson3935baa2006-03-22 00:08:53 -0800925 if (pte_none(entry)) {
926 ret = hugetlb_no_page(mm, vma, address, ptep, write_access);
927 mutex_unlock(&hugetlb_instantiation_mutex);
928 return ret;
929 }
Adam Litke86e52162006-01-06 00:10:43 -0800930
Nick Piggin83c54072007-07-19 01:47:05 -0700931 ret = 0;
David Gibson1e8f8892006-01-06 00:10:44 -0800932
933 spin_lock(&mm->page_table_lock);
934 /* Check for a racing update before calling hugetlb_cow */
935 if (likely(pte_same(entry, *ptep)))
936 if (write_access && !pte_write(entry))
937 ret = hugetlb_cow(mm, vma, address, ptep, entry);
938 spin_unlock(&mm->page_table_lock);
David Gibson3935baa2006-03-22 00:08:53 -0800939 mutex_unlock(&hugetlb_instantiation_mutex);
David Gibson1e8f8892006-01-06 00:10:44 -0800940
941 return ret;
Adam Litke86e52162006-01-06 00:10:43 -0800942}
943
David Gibson63551ae2005-06-21 17:14:44 -0700944int follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma,
945 struct page **pages, struct vm_area_struct **vmas,
Adam Litke5b23dbe2007-11-14 16:59:33 -0800946 unsigned long *position, int *length, int i,
947 int write)
David Gibson63551ae2005-06-21 17:14:44 -0700948{
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -0800949 unsigned long pfn_offset;
950 unsigned long vaddr = *position;
David Gibson63551ae2005-06-21 17:14:44 -0700951 int remainder = *length;
952
Hugh Dickins1c598272005-10-19 21:23:43 -0700953 spin_lock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -0700954 while (vaddr < vma->vm_end && remainder) {
Adam Litke4c887262005-10-29 18:16:46 -0700955 pte_t *pte;
956 struct page *page;
957
958 /*
959 * Some archs (sparc64, sh*) have multiple pte_ts to
960 * each hugepage. We have to make * sure we get the
961 * first, for the page indexing below to work.
962 */
963 pte = huge_pte_offset(mm, vaddr & HPAGE_MASK);
964
Adam Litke72fad712007-12-10 15:49:28 -0800965 if (!pte || pte_none(*pte) || (write && !pte_write(*pte))) {
Adam Litke4c887262005-10-29 18:16:46 -0700966 int ret;
967
968 spin_unlock(&mm->page_table_lock);
Adam Litke5b23dbe2007-11-14 16:59:33 -0800969 ret = hugetlb_fault(mm, vma, vaddr, write);
Adam Litke4c887262005-10-29 18:16:46 -0700970 spin_lock(&mm->page_table_lock);
Adam Litkea89182c2007-08-22 14:01:51 -0700971 if (!(ret & VM_FAULT_ERROR))
Adam Litke4c887262005-10-29 18:16:46 -0700972 continue;
973
974 remainder = 0;
975 if (!i)
976 i = -EFAULT;
977 break;
978 }
David Gibson63551ae2005-06-21 17:14:44 -0700979
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -0800980 pfn_offset = (vaddr & ~HPAGE_MASK) >> PAGE_SHIFT;
981 page = pte_page(*pte);
982same_page:
Chen, Kenneth Wd6692182006-03-31 02:29:57 -0800983 if (pages) {
984 get_page(page);
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -0800985 pages[i] = page + pfn_offset;
Chen, Kenneth Wd6692182006-03-31 02:29:57 -0800986 }
David Gibson63551ae2005-06-21 17:14:44 -0700987
988 if (vmas)
989 vmas[i] = vma;
990
991 vaddr += PAGE_SIZE;
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -0800992 ++pfn_offset;
David Gibson63551ae2005-06-21 17:14:44 -0700993 --remainder;
994 ++i;
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -0800995 if (vaddr < vma->vm_end && remainder &&
996 pfn_offset < HPAGE_SIZE/PAGE_SIZE) {
997 /*
998 * We use pfn_offset to avoid touching the pageframes
999 * of this compound page.
1000 */
1001 goto same_page;
1002 }
David Gibson63551ae2005-06-21 17:14:44 -07001003 }
Hugh Dickins1c598272005-10-19 21:23:43 -07001004 spin_unlock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -07001005 *length = remainder;
1006 *position = vaddr;
1007
1008 return i;
1009}
Zhang, Yanmin8f860592006-03-22 00:08:50 -08001010
1011void hugetlb_change_protection(struct vm_area_struct *vma,
1012 unsigned long address, unsigned long end, pgprot_t newprot)
1013{
1014 struct mm_struct *mm = vma->vm_mm;
1015 unsigned long start = address;
1016 pte_t *ptep;
1017 pte_t pte;
1018
1019 BUG_ON(address >= end);
1020 flush_cache_range(vma, address, end);
1021
Chen, Kenneth W39dde652006-12-06 20:32:03 -08001022 spin_lock(&vma->vm_file->f_mapping->i_mmap_lock);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08001023 spin_lock(&mm->page_table_lock);
1024 for (; address < end; address += HPAGE_SIZE) {
1025 ptep = huge_pte_offset(mm, address);
1026 if (!ptep)
1027 continue;
Chen, Kenneth W39dde652006-12-06 20:32:03 -08001028 if (huge_pmd_unshare(mm, &address, ptep))
1029 continue;
Zhang, Yanmin8f860592006-03-22 00:08:50 -08001030 if (!pte_none(*ptep)) {
1031 pte = huge_ptep_get_and_clear(mm, address, ptep);
1032 pte = pte_mkhuge(pte_modify(pte, newprot));
1033 set_huge_pte_at(mm, address, ptep, pte);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08001034 }
1035 }
1036 spin_unlock(&mm->page_table_lock);
Chen, Kenneth W39dde652006-12-06 20:32:03 -08001037 spin_unlock(&vma->vm_file->f_mapping->i_mmap_lock);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08001038
1039 flush_tlb_range(vma, start, end);
1040}
1041
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001042struct file_region {
1043 struct list_head link;
1044 long from;
1045 long to;
1046};
1047
1048static long region_add(struct list_head *head, long f, long t)
1049{
1050 struct file_region *rg, *nrg, *trg;
1051
1052 /* Locate the region we are either in or before. */
1053 list_for_each_entry(rg, head, link)
1054 if (f <= rg->to)
1055 break;
1056
1057 /* Round our left edge to the current segment if it encloses us. */
1058 if (f > rg->from)
1059 f = rg->from;
1060
1061 /* Check for and consume any regions we now overlap with. */
1062 nrg = rg;
1063 list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
1064 if (&rg->link == head)
1065 break;
1066 if (rg->from > t)
1067 break;
1068
1069 /* If this area reaches higher then extend our area to
1070 * include it completely. If this is not the first area
1071 * which we intend to reuse, free it. */
1072 if (rg->to > t)
1073 t = rg->to;
1074 if (rg != nrg) {
1075 list_del(&rg->link);
1076 kfree(rg);
1077 }
1078 }
1079 nrg->from = f;
1080 nrg->to = t;
1081 return 0;
1082}
1083
1084static long region_chg(struct list_head *head, long f, long t)
1085{
1086 struct file_region *rg, *nrg;
1087 long chg = 0;
1088
1089 /* Locate the region we are before or in. */
1090 list_for_each_entry(rg, head, link)
1091 if (f <= rg->to)
1092 break;
1093
1094 /* If we are below the current region then a new region is required.
1095 * Subtle, allocate a new region at the position but make it zero
Simon Arlott183ff222007-10-20 01:27:18 +02001096 * size such that we can guarantee to record the reservation. */
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001097 if (&rg->link == head || t < rg->from) {
1098 nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
Stephen Hemmingerc80544d2007-10-18 03:07:05 -07001099 if (!nrg)
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001100 return -ENOMEM;
1101 nrg->from = f;
1102 nrg->to = f;
1103 INIT_LIST_HEAD(&nrg->link);
1104 list_add(&nrg->link, rg->link.prev);
1105
1106 return t - f;
1107 }
1108
1109 /* Round our left edge to the current segment if it encloses us. */
1110 if (f > rg->from)
1111 f = rg->from;
1112 chg = t - f;
1113
1114 /* Check for and consume any regions we now overlap with. */
1115 list_for_each_entry(rg, rg->link.prev, link) {
1116 if (&rg->link == head)
1117 break;
1118 if (rg->from > t)
1119 return chg;
1120
1121 /* We overlap with this area, if it extends futher than
1122 * us then we must extend ourselves. Account for its
1123 * existing reservation. */
1124 if (rg->to > t) {
1125 chg += rg->to - t;
1126 t = rg->to;
1127 }
1128 chg -= rg->to - rg->from;
1129 }
1130 return chg;
1131}
1132
1133static long region_truncate(struct list_head *head, long end)
1134{
1135 struct file_region *rg, *trg;
1136 long chg = 0;
1137
1138 /* Locate the region we are either in or before. */
1139 list_for_each_entry(rg, head, link)
1140 if (end <= rg->to)
1141 break;
1142 if (&rg->link == head)
1143 return 0;
1144
1145 /* If we are in the middle of a region then adjust it. */
1146 if (end > rg->from) {
1147 chg = rg->to - end;
1148 rg->to = end;
1149 rg = list_entry(rg->link.next, typeof(*rg), link);
1150 }
1151
1152 /* Drop any remaining regions. */
1153 list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
1154 if (&rg->link == head)
1155 break;
1156 chg += rg->to - rg->from;
1157 list_del(&rg->link);
1158 kfree(rg);
1159 }
1160 return chg;
1161}
1162
1163static int hugetlb_acct_memory(long delta)
1164{
1165 int ret = -ENOMEM;
1166
1167 spin_lock(&hugetlb_lock);
Ken Chen8a630112007-05-09 02:33:34 -07001168 /*
1169 * When cpuset is configured, it breaks the strict hugetlb page
1170 * reservation as the accounting is done on a global variable. Such
1171 * reservation is completely rubbish in the presence of cpuset because
1172 * the reservation is not checked against page availability for the
1173 * current cpuset. Application can still potentially OOM'ed by kernel
1174 * with lack of free htlb page in cpuset that the task is in.
1175 * Attempt to enforce strict accounting with cpuset is almost
1176 * impossible (or too ugly) because cpuset is too fluid that
1177 * task or memory node can be dynamically moved between cpusets.
1178 *
1179 * The change of semantics for shared hugetlb mapping with cpuset is
1180 * undesirable. However, in order to preserve some of the semantics,
1181 * we fall back to check against current free page availability as
1182 * a best attempt and hopefully to minimize the impact of changing
1183 * semantics that cpuset has.
1184 */
Adam Litkee4e574b2007-10-16 01:26:19 -07001185 if (delta > 0) {
1186 if (gather_surplus_pages(delta) < 0)
1187 goto out;
1188
1189 if (delta > cpuset_mems_nr(free_huge_pages_node))
1190 goto out;
1191 }
1192
1193 ret = 0;
1194 resv_huge_pages += delta;
1195 if (delta < 0)
1196 return_unused_surplus_pages((unsigned long) -delta);
1197
1198out:
1199 spin_unlock(&hugetlb_lock);
1200 return ret;
1201}
1202
1203int hugetlb_reserve_pages(struct inode *inode, long from, long to)
1204{
1205 long ret, chg;
1206
1207 chg = region_chg(&inode->i_mapping->private_list, from, to);
1208 if (chg < 0)
1209 return chg;
Ken Chen8a630112007-05-09 02:33:34 -07001210
Adam Litke90d8b7e2007-11-14 16:59:42 -08001211 if (hugetlb_get_quota(inode->i_mapping, chg))
1212 return -ENOSPC;
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001213 ret = hugetlb_acct_memory(chg);
1214 if (ret < 0)
1215 return ret;
1216 region_add(&inode->i_mapping->private_list, from, to);
1217 return 0;
1218}
1219
1220void hugetlb_unreserve_pages(struct inode *inode, long offset, long freed)
1221{
1222 long chg = region_truncate(&inode->i_mapping->private_list, offset);
Ken Chen45c682a2007-11-14 16:59:44 -08001223
1224 spin_lock(&inode->i_lock);
1225 inode->i_blocks -= BLOCKS_PER_HUGEPAGE * freed;
1226 spin_unlock(&inode->i_lock);
1227
Adam Litke90d8b7e2007-11-14 16:59:42 -08001228 hugetlb_put_quota(inode->i_mapping, (chg - freed));
1229 hugetlb_acct_memory(-(chg - freed));
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001230}