blob: 80eb0d31d0d3b88d89f5eb489201356d45b8a166 [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>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070012#include <linux/mmu_notifier.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/nodemask.h>
David Gibson63551ae2005-06-21 17:14:44 -070014#include <linux/pagemap.h>
Christoph Lameter5da7ca82006-01-06 00:10:46 -080015#include <linux/mempolicy.h>
Christoph Lameteraea47ff2006-01-08 01:00:57 -080016#include <linux/cpuset.h>
David Gibson3935baa2006-03-22 00:08:53 -080017#include <linux/mutex.h>
Andi Kleenaa888a72008-07-23 21:27:47 -070018#include <linux/bootmem.h>
Nishanth Aravamudana3437872008-07-23 21:27:44 -070019#include <linux/sysfs.h>
Christoph Lameter5da7ca82006-01-06 00:10:46 -080020
David Gibson63551ae2005-06-21 17:14:44 -070021#include <asm/page.h>
22#include <asm/pgtable.h>
23
24#include <linux/hugetlb.h>
Nick Piggin7835e982006-03-22 00:08:40 -080025#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27const unsigned long hugetlb_zero = 0, hugetlb_infinity = ~0UL;
Mel Gorman396faf02007-07-17 04:03:13 -070028static gfp_t htlb_alloc_mask = GFP_HIGHUSER;
29unsigned long hugepages_treat_as_movable;
Andi Kleena5516432008-07-23 21:27:41 -070030
Andi Kleene5ff2152008-07-23 21:27:42 -070031static int max_hstate;
32unsigned int default_hstate_idx;
33struct hstate hstates[HUGE_MAX_HSTATE];
34
Jon Tollefson53ba51d2008-07-23 21:27:52 -070035__initdata LIST_HEAD(huge_boot_pages);
36
Andi Kleene5ff2152008-07-23 21:27:42 -070037/* for command line parsing */
38static struct hstate * __initdata parsed_hstate;
39static unsigned long __initdata default_hstate_max_huge_pages;
Nick Piggine11bfbf2008-07-23 21:27:52 -070040static unsigned long __initdata default_hstate_size;
Andi Kleene5ff2152008-07-23 21:27:42 -070041
42#define for_each_hstate(h) \
43 for ((h) = hstates; (h) < &hstates[max_hstate]; (h)++)
Mel Gorman396faf02007-07-17 04:03:13 -070044
David Gibson3935baa2006-03-22 00:08:53 -080045/*
46 * Protects updates to hugepage_freelists, nr_huge_pages, and free_huge_pages
47 */
48static DEFINE_SPINLOCK(hugetlb_lock);
Eric Paris0bd0f9f2005-11-21 21:32:28 -080049
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -070050/*
Andy Whitcroft96822902008-07-23 21:27:29 -070051 * Region tracking -- allows tracking of reservations and instantiated pages
52 * across the pages in a mapping.
Andy Whitcroft84afd992008-07-23 21:27:32 -070053 *
54 * The region data structures are protected by a combination of the mmap_sem
55 * and the hugetlb_instantion_mutex. To access or modify a region the caller
56 * must either hold the mmap_sem for write, or the mmap_sem for read and
57 * the hugetlb_instantiation mutex:
58 *
59 * down_write(&mm->mmap_sem);
60 * or
61 * down_read(&mm->mmap_sem);
62 * mutex_lock(&hugetlb_instantiation_mutex);
Andy Whitcroft96822902008-07-23 21:27:29 -070063 */
64struct file_region {
65 struct list_head link;
66 long from;
67 long to;
68};
69
70static long region_add(struct list_head *head, long f, long t)
71{
72 struct file_region *rg, *nrg, *trg;
73
74 /* Locate the region we are either in or before. */
75 list_for_each_entry(rg, head, link)
76 if (f <= rg->to)
77 break;
78
79 /* Round our left edge to the current segment if it encloses us. */
80 if (f > rg->from)
81 f = rg->from;
82
83 /* Check for and consume any regions we now overlap with. */
84 nrg = rg;
85 list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
86 if (&rg->link == head)
87 break;
88 if (rg->from > t)
89 break;
90
91 /* If this area reaches higher then extend our area to
92 * include it completely. If this is not the first area
93 * which we intend to reuse, free it. */
94 if (rg->to > t)
95 t = rg->to;
96 if (rg != nrg) {
97 list_del(&rg->link);
98 kfree(rg);
99 }
100 }
101 nrg->from = f;
102 nrg->to = t;
103 return 0;
104}
105
106static long region_chg(struct list_head *head, long f, long t)
107{
108 struct file_region *rg, *nrg;
109 long chg = 0;
110
111 /* Locate the region we are before or in. */
112 list_for_each_entry(rg, head, link)
113 if (f <= rg->to)
114 break;
115
116 /* If we are below the current region then a new region is required.
117 * Subtle, allocate a new region at the position but make it zero
118 * size such that we can guarantee to record the reservation. */
119 if (&rg->link == head || t < rg->from) {
120 nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
121 if (!nrg)
122 return -ENOMEM;
123 nrg->from = f;
124 nrg->to = f;
125 INIT_LIST_HEAD(&nrg->link);
126 list_add(&nrg->link, rg->link.prev);
127
128 return t - f;
129 }
130
131 /* Round our left edge to the current segment if it encloses us. */
132 if (f > rg->from)
133 f = rg->from;
134 chg = t - f;
135
136 /* Check for and consume any regions we now overlap with. */
137 list_for_each_entry(rg, rg->link.prev, link) {
138 if (&rg->link == head)
139 break;
140 if (rg->from > t)
141 return chg;
142
143 /* We overlap with this area, if it extends futher than
144 * us then we must extend ourselves. Account for its
145 * existing reservation. */
146 if (rg->to > t) {
147 chg += rg->to - t;
148 t = rg->to;
149 }
150 chg -= rg->to - rg->from;
151 }
152 return chg;
153}
154
155static long region_truncate(struct list_head *head, long end)
156{
157 struct file_region *rg, *trg;
158 long chg = 0;
159
160 /* Locate the region we are either in or before. */
161 list_for_each_entry(rg, head, link)
162 if (end <= rg->to)
163 break;
164 if (&rg->link == head)
165 return 0;
166
167 /* If we are in the middle of a region then adjust it. */
168 if (end > rg->from) {
169 chg = rg->to - end;
170 rg->to = end;
171 rg = list_entry(rg->link.next, typeof(*rg), link);
172 }
173
174 /* Drop any remaining regions. */
175 list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
176 if (&rg->link == head)
177 break;
178 chg += rg->to - rg->from;
179 list_del(&rg->link);
180 kfree(rg);
181 }
182 return chg;
183}
184
Andy Whitcroft84afd992008-07-23 21:27:32 -0700185static long region_count(struct list_head *head, long f, long t)
186{
187 struct file_region *rg;
188 long chg = 0;
189
190 /* Locate each segment we overlap with, and count that overlap. */
191 list_for_each_entry(rg, head, link) {
192 int seg_from;
193 int seg_to;
194
195 if (rg->to <= f)
196 continue;
197 if (rg->from >= t)
198 break;
199
200 seg_from = max(rg->from, f);
201 seg_to = min(rg->to, t);
202
203 chg += seg_to - seg_from;
204 }
205
206 return chg;
207}
208
Andy Whitcroft96822902008-07-23 21:27:29 -0700209/*
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700210 * Convert the address within this vma to the page offset within
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700211 * the mapping, in pagecache page units; huge pages here.
212 */
Andi Kleena5516432008-07-23 21:27:41 -0700213static pgoff_t vma_hugecache_offset(struct hstate *h,
214 struct vm_area_struct *vma, unsigned long address)
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700215{
Andi Kleena5516432008-07-23 21:27:41 -0700216 return ((address - vma->vm_start) >> huge_page_shift(h)) +
217 (vma->vm_pgoff >> huge_page_order(h));
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700218}
219
Andy Whitcroft84afd992008-07-23 21:27:32 -0700220/*
221 * Flags for MAP_PRIVATE reservations. These are stored in the bottom
222 * bits of the reservation map pointer, which are always clear due to
223 * alignment.
224 */
225#define HPAGE_RESV_OWNER (1UL << 0)
226#define HPAGE_RESV_UNMAPPED (1UL << 1)
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700227#define HPAGE_RESV_MASK (HPAGE_RESV_OWNER | HPAGE_RESV_UNMAPPED)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700228
Mel Gormana1e78772008-07-23 21:27:23 -0700229/*
230 * These helpers are used to track how many pages are reserved for
231 * faults in a MAP_PRIVATE mapping. Only the process that called mmap()
232 * is guaranteed to have their future faults succeed.
233 *
234 * With the exception of reset_vma_resv_huge_pages() which is called at fork(),
235 * the reserve counters are updated with the hugetlb_lock held. It is safe
236 * to reset the VMA at fork() time as it is not in use yet and there is no
237 * chance of the global counters getting corrupted as a result of the values.
Andy Whitcroft84afd992008-07-23 21:27:32 -0700238 *
239 * The private mapping reservation is represented in a subtly different
240 * manner to a shared mapping. A shared mapping has a region map associated
241 * with the underlying file, this region map represents the backing file
242 * pages which have ever had a reservation assigned which this persists even
243 * after the page is instantiated. A private mapping has a region map
244 * associated with the original mmap which is attached to all VMAs which
245 * reference it, this region map represents those offsets which have consumed
246 * reservation ie. where pages have been instantiated.
Mel Gormana1e78772008-07-23 21:27:23 -0700247 */
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700248static unsigned long get_vma_private_data(struct vm_area_struct *vma)
249{
250 return (unsigned long)vma->vm_private_data;
251}
252
253static void set_vma_private_data(struct vm_area_struct *vma,
254 unsigned long value)
255{
256 vma->vm_private_data = (void *)value;
257}
258
Andy Whitcroft84afd992008-07-23 21:27:32 -0700259struct resv_map {
260 struct kref refs;
261 struct list_head regions;
262};
263
264struct resv_map *resv_map_alloc(void)
265{
266 struct resv_map *resv_map = kmalloc(sizeof(*resv_map), GFP_KERNEL);
267 if (!resv_map)
268 return NULL;
269
270 kref_init(&resv_map->refs);
271 INIT_LIST_HEAD(&resv_map->regions);
272
273 return resv_map;
274}
275
276void resv_map_release(struct kref *ref)
277{
278 struct resv_map *resv_map = container_of(ref, struct resv_map, refs);
279
280 /* Clear out any active regions before we release the map. */
281 region_truncate(&resv_map->regions, 0);
282 kfree(resv_map);
283}
284
285static struct resv_map *vma_resv_map(struct vm_area_struct *vma)
Mel Gormana1e78772008-07-23 21:27:23 -0700286{
287 VM_BUG_ON(!is_vm_hugetlb_page(vma));
288 if (!(vma->vm_flags & VM_SHARED))
Andy Whitcroft84afd992008-07-23 21:27:32 -0700289 return (struct resv_map *)(get_vma_private_data(vma) &
290 ~HPAGE_RESV_MASK);
Mel Gormana1e78772008-07-23 21:27:23 -0700291 return 0;
292}
293
Andy Whitcroft84afd992008-07-23 21:27:32 -0700294static void set_vma_resv_map(struct vm_area_struct *vma, struct resv_map *map)
Mel Gormana1e78772008-07-23 21:27:23 -0700295{
296 VM_BUG_ON(!is_vm_hugetlb_page(vma));
297 VM_BUG_ON(vma->vm_flags & VM_SHARED);
298
Andy Whitcroft84afd992008-07-23 21:27:32 -0700299 set_vma_private_data(vma, (get_vma_private_data(vma) &
300 HPAGE_RESV_MASK) | (unsigned long)map);
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700301}
302
303static void set_vma_resv_flags(struct vm_area_struct *vma, unsigned long flags)
304{
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700305 VM_BUG_ON(!is_vm_hugetlb_page(vma));
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700306 VM_BUG_ON(vma->vm_flags & VM_SHARED);
307
308 set_vma_private_data(vma, get_vma_private_data(vma) | flags);
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700309}
310
311static int is_vma_resv_set(struct vm_area_struct *vma, unsigned long flag)
312{
313 VM_BUG_ON(!is_vm_hugetlb_page(vma));
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700314
315 return (get_vma_private_data(vma) & flag) != 0;
Mel Gormana1e78772008-07-23 21:27:23 -0700316}
317
318/* Decrement the reserved pages in the hugepage pool by one */
Andi Kleena5516432008-07-23 21:27:41 -0700319static void decrement_hugepage_resv_vma(struct hstate *h,
320 struct vm_area_struct *vma)
Mel Gormana1e78772008-07-23 21:27:23 -0700321{
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700322 if (vma->vm_flags & VM_NORESERVE)
323 return;
324
Mel Gormana1e78772008-07-23 21:27:23 -0700325 if (vma->vm_flags & VM_SHARED) {
326 /* Shared mappings always use reserves */
Andi Kleena5516432008-07-23 21:27:41 -0700327 h->resv_huge_pages--;
Andy Whitcroft84afd992008-07-23 21:27:32 -0700328 } else if (is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
Mel Gormana1e78772008-07-23 21:27:23 -0700329 /*
330 * Only the process that called mmap() has reserves for
331 * private mappings.
332 */
Andi Kleena5516432008-07-23 21:27:41 -0700333 h->resv_huge_pages--;
Mel Gormana1e78772008-07-23 21:27:23 -0700334 }
335}
336
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700337/* Reset counters to 0 and clear all HPAGE_RESV_* flags */
Mel Gormana1e78772008-07-23 21:27:23 -0700338void reset_vma_resv_huge_pages(struct vm_area_struct *vma)
339{
340 VM_BUG_ON(!is_vm_hugetlb_page(vma));
341 if (!(vma->vm_flags & VM_SHARED))
342 vma->vm_private_data = (void *)0;
343}
344
345/* Returns true if the VMA has associated reserve pages */
Mel Gorman7f09ca52008-07-23 21:27:58 -0700346static int vma_has_reserves(struct vm_area_struct *vma)
Mel Gormana1e78772008-07-23 21:27:23 -0700347{
348 if (vma->vm_flags & VM_SHARED)
Mel Gorman7f09ca52008-07-23 21:27:58 -0700349 return 1;
350 if (is_vma_resv_set(vma, HPAGE_RESV_OWNER))
351 return 1;
352 return 0;
Mel Gormana1e78772008-07-23 21:27:23 -0700353}
354
Andi Kleena5516432008-07-23 21:27:41 -0700355static void clear_huge_page(struct page *page,
356 unsigned long addr, unsigned long sz)
David Gibson79ac6ba2006-03-22 00:08:51 -0800357{
358 int i;
359
360 might_sleep();
Andi Kleena5516432008-07-23 21:27:41 -0700361 for (i = 0; i < sz/PAGE_SIZE; i++) {
David Gibson79ac6ba2006-03-22 00:08:51 -0800362 cond_resched();
Ralf Baechle281e0e32007-10-01 01:20:10 -0700363 clear_user_highpage(page + i, addr + i * PAGE_SIZE);
David Gibson79ac6ba2006-03-22 00:08:51 -0800364 }
365}
366
367static void copy_huge_page(struct page *dst, struct page *src,
Atsushi Nemoto9de455b2006-12-12 17:14:55 +0000368 unsigned long addr, struct vm_area_struct *vma)
David Gibson79ac6ba2006-03-22 00:08:51 -0800369{
370 int i;
Andi Kleena5516432008-07-23 21:27:41 -0700371 struct hstate *h = hstate_vma(vma);
David Gibson79ac6ba2006-03-22 00:08:51 -0800372
373 might_sleep();
Andi Kleena5516432008-07-23 21:27:41 -0700374 for (i = 0; i < pages_per_huge_page(h); i++) {
David Gibson79ac6ba2006-03-22 00:08:51 -0800375 cond_resched();
Atsushi Nemoto9de455b2006-12-12 17:14:55 +0000376 copy_user_highpage(dst + i, src + i, addr + i*PAGE_SIZE, vma);
David Gibson79ac6ba2006-03-22 00:08:51 -0800377 }
378}
379
Andi Kleena5516432008-07-23 21:27:41 -0700380static void enqueue_huge_page(struct hstate *h, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
382 int nid = page_to_nid(page);
Andi Kleena5516432008-07-23 21:27:41 -0700383 list_add(&page->lru, &h->hugepage_freelists[nid]);
384 h->free_huge_pages++;
385 h->free_huge_pages_node[nid]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Andi Kleena5516432008-07-23 21:27:41 -0700388static struct page *dequeue_huge_page(struct hstate *h)
Nishanth Aravamudan348e1e02008-03-04 14:29:42 -0800389{
390 int nid;
391 struct page *page = NULL;
392
393 for (nid = 0; nid < MAX_NUMNODES; ++nid) {
Andi Kleena5516432008-07-23 21:27:41 -0700394 if (!list_empty(&h->hugepage_freelists[nid])) {
395 page = list_entry(h->hugepage_freelists[nid].next,
Nishanth Aravamudan348e1e02008-03-04 14:29:42 -0800396 struct page, lru);
397 list_del(&page->lru);
Andi Kleena5516432008-07-23 21:27:41 -0700398 h->free_huge_pages--;
399 h->free_huge_pages_node[nid]--;
Nishanth Aravamudan348e1e02008-03-04 14:29:42 -0800400 break;
401 }
402 }
403 return page;
404}
405
Andi Kleena5516432008-07-23 21:27:41 -0700406static struct page *dequeue_huge_page_vma(struct hstate *h,
407 struct vm_area_struct *vma,
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700408 unsigned long address, int avoid_reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Nishanth Aravamudan31a5c6e2007-07-15 23:38:02 -0700410 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 struct page *page = NULL;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -0700412 struct mempolicy *mpol;
Mel Gorman19770b32008-04-28 02:12:18 -0700413 nodemask_t *nodemask;
Mel Gorman396faf02007-07-17 04:03:13 -0700414 struct zonelist *zonelist = huge_zonelist(vma, address,
Mel Gorman19770b32008-04-28 02:12:18 -0700415 htlb_alloc_mask, &mpol, &nodemask);
Mel Gormandd1a2392008-04-28 02:12:17 -0700416 struct zone *zone;
417 struct zoneref *z;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Mel Gormana1e78772008-07-23 21:27:23 -0700419 /*
420 * A child process with MAP_PRIVATE mappings created by their parent
421 * have no page reserves. This check ensures that reservations are
422 * not "stolen". The child may still get SIGKILLed
423 */
Mel Gorman7f09ca52008-07-23 21:27:58 -0700424 if (!vma_has_reserves(vma) &&
Andi Kleena5516432008-07-23 21:27:41 -0700425 h->free_huge_pages - h->resv_huge_pages == 0)
Mel Gormana1e78772008-07-23 21:27:23 -0700426 return NULL;
427
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700428 /* If reserves cannot be used, ensure enough pages are in the pool */
Andi Kleena5516432008-07-23 21:27:41 -0700429 if (avoid_reserve && h->free_huge_pages - h->resv_huge_pages == 0)
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700430 return NULL;
431
Mel Gorman19770b32008-04-28 02:12:18 -0700432 for_each_zone_zonelist_nodemask(zone, z, zonelist,
433 MAX_NR_ZONES - 1, nodemask) {
Mel Gorman54a6eb52008-04-28 02:12:16 -0700434 nid = zone_to_nid(zone);
435 if (cpuset_zone_allowed_softwall(zone, htlb_alloc_mask) &&
Andi Kleena5516432008-07-23 21:27:41 -0700436 !list_empty(&h->hugepage_freelists[nid])) {
437 page = list_entry(h->hugepage_freelists[nid].next,
Andrew Morton3abf7af2007-07-19 01:49:08 -0700438 struct page, lru);
439 list_del(&page->lru);
Andi Kleena5516432008-07-23 21:27:41 -0700440 h->free_huge_pages--;
441 h->free_huge_pages_node[nid]--;
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700442
443 if (!avoid_reserve)
Andi Kleena5516432008-07-23 21:27:41 -0700444 decrement_hugepage_resv_vma(h, vma);
Mel Gormana1e78772008-07-23 21:27:23 -0700445
Ken Chen5ab3ee72007-07-23 18:44:00 -0700446 break;
Andrew Morton3abf7af2007-07-19 01:49:08 -0700447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -0700449 mpol_cond_put(mpol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return page;
451}
452
Andi Kleena5516432008-07-23 21:27:41 -0700453static void update_and_free_page(struct hstate *h, struct page *page)
Adam Litke6af2acb2007-10-16 01:26:16 -0700454{
455 int i;
Andi Kleena5516432008-07-23 21:27:41 -0700456
457 h->nr_huge_pages--;
458 h->nr_huge_pages_node[page_to_nid(page)]--;
459 for (i = 0; i < pages_per_huge_page(h); i++) {
Adam Litke6af2acb2007-10-16 01:26:16 -0700460 page[i].flags &= ~(1 << PG_locked | 1 << PG_error | 1 << PG_referenced |
461 1 << PG_dirty | 1 << PG_active | 1 << PG_reserved |
462 1 << PG_private | 1<< PG_writeback);
463 }
464 set_compound_page_dtor(page, NULL);
465 set_page_refcounted(page);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -0700466 arch_release_hugepage(page);
Andi Kleena5516432008-07-23 21:27:41 -0700467 __free_pages(page, huge_page_order(h));
Adam Litke6af2acb2007-10-16 01:26:16 -0700468}
469
Andi Kleene5ff2152008-07-23 21:27:42 -0700470struct hstate *size_to_hstate(unsigned long size)
471{
472 struct hstate *h;
473
474 for_each_hstate(h) {
475 if (huge_page_size(h) == size)
476 return h;
477 }
478 return NULL;
479}
480
David Gibson27a85ef2006-03-22 00:08:56 -0800481static void free_huge_page(struct page *page)
482{
Andi Kleena5516432008-07-23 21:27:41 -0700483 /*
484 * Can't pass hstate in here because it is called from the
485 * compound page destructor.
486 */
Andi Kleene5ff2152008-07-23 21:27:42 -0700487 struct hstate *h = page_hstate(page);
Adam Litke7893d1d2007-10-16 01:26:18 -0700488 int nid = page_to_nid(page);
Adam Litkec79fb752007-11-14 16:59:38 -0800489 struct address_space *mapping;
David Gibson27a85ef2006-03-22 00:08:56 -0800490
Adam Litkec79fb752007-11-14 16:59:38 -0800491 mapping = (struct address_space *) page_private(page);
Andy Whitcrofte5df70a2008-02-23 15:23:32 -0800492 set_page_private(page, 0);
Adam Litke7893d1d2007-10-16 01:26:18 -0700493 BUG_ON(page_count(page));
David Gibson27a85ef2006-03-22 00:08:56 -0800494 INIT_LIST_HEAD(&page->lru);
495
496 spin_lock(&hugetlb_lock);
Andi Kleenaa888a72008-07-23 21:27:47 -0700497 if (h->surplus_huge_pages_node[nid] && huge_page_order(h) < MAX_ORDER) {
Andi Kleena5516432008-07-23 21:27:41 -0700498 update_and_free_page(h, page);
499 h->surplus_huge_pages--;
500 h->surplus_huge_pages_node[nid]--;
Adam Litke7893d1d2007-10-16 01:26:18 -0700501 } else {
Andi Kleena5516432008-07-23 21:27:41 -0700502 enqueue_huge_page(h, page);
Adam Litke7893d1d2007-10-16 01:26:18 -0700503 }
David Gibson27a85ef2006-03-22 00:08:56 -0800504 spin_unlock(&hugetlb_lock);
Adam Litkec79fb752007-11-14 16:59:38 -0800505 if (mapping)
Adam Litke9a119c02007-11-14 16:59:41 -0800506 hugetlb_put_quota(mapping, 1);
David Gibson27a85ef2006-03-22 00:08:56 -0800507}
508
Adam Litke7893d1d2007-10-16 01:26:18 -0700509/*
510 * Increment or decrement surplus_huge_pages. Keep node-specific counters
511 * balanced by operating on them in a round-robin fashion.
512 * Returns 1 if an adjustment was made.
513 */
Andi Kleena5516432008-07-23 21:27:41 -0700514static int adjust_pool_surplus(struct hstate *h, int delta)
Adam Litke7893d1d2007-10-16 01:26:18 -0700515{
516 static int prev_nid;
517 int nid = prev_nid;
518 int ret = 0;
519
520 VM_BUG_ON(delta != -1 && delta != 1);
521 do {
522 nid = next_node(nid, node_online_map);
523 if (nid == MAX_NUMNODES)
524 nid = first_node(node_online_map);
525
526 /* To shrink on this node, there must be a surplus page */
Andi Kleena5516432008-07-23 21:27:41 -0700527 if (delta < 0 && !h->surplus_huge_pages_node[nid])
Adam Litke7893d1d2007-10-16 01:26:18 -0700528 continue;
529 /* Surplus cannot exceed the total number of pages */
Andi Kleena5516432008-07-23 21:27:41 -0700530 if (delta > 0 && h->surplus_huge_pages_node[nid] >=
531 h->nr_huge_pages_node[nid])
Adam Litke7893d1d2007-10-16 01:26:18 -0700532 continue;
533
Andi Kleena5516432008-07-23 21:27:41 -0700534 h->surplus_huge_pages += delta;
535 h->surplus_huge_pages_node[nid] += delta;
Adam Litke7893d1d2007-10-16 01:26:18 -0700536 ret = 1;
537 break;
538 } while (nid != prev_nid);
539
540 prev_nid = nid;
541 return ret;
542}
543
Andi Kleena5516432008-07-23 21:27:41 -0700544static void prep_new_huge_page(struct hstate *h, struct page *page, int nid)
Andi Kleenb7ba30c2008-07-23 21:27:40 -0700545{
546 set_compound_page_dtor(page, free_huge_page);
547 spin_lock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -0700548 h->nr_huge_pages++;
549 h->nr_huge_pages_node[nid]++;
Andi Kleenb7ba30c2008-07-23 21:27:40 -0700550 spin_unlock(&hugetlb_lock);
551 put_page(page); /* free it into the hugepage allocator */
552}
553
Andi Kleena5516432008-07-23 21:27:41 -0700554static struct page *alloc_fresh_huge_page_node(struct hstate *h, int nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 struct page *page;
Joe Jinf96efd52007-07-15 23:38:12 -0700557
Andi Kleenaa888a72008-07-23 21:27:47 -0700558 if (h->order >= MAX_ORDER)
559 return NULL;
560
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700561 page = alloc_pages_node(nid,
Nishanth Aravamudan551883a2008-04-29 00:58:26 -0700562 htlb_alloc_mask|__GFP_COMP|__GFP_THISNODE|
563 __GFP_REPEAT|__GFP_NOWARN,
Andi Kleena5516432008-07-23 21:27:41 -0700564 huge_page_order(h));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (page) {
Gerald Schaefer7f2e9522008-04-28 02:13:29 -0700566 if (arch_prepare_hugepage(page)) {
567 __free_pages(page, HUGETLB_PAGE_ORDER);
Harvey Harrison7b8ee842008-04-28 14:13:19 -0700568 return NULL;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -0700569 }
Andi Kleena5516432008-07-23 21:27:41 -0700570 prep_new_huge_page(h, page, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700572
573 return page;
574}
575
Andi Kleen5ced66c2008-07-23 21:27:45 -0700576/*
577 * Use a helper variable to find the next node and then
578 * copy it back to hugetlb_next_nid afterwards:
579 * otherwise there's a window in which a racer might
580 * pass invalid nid MAX_NUMNODES to alloc_pages_node.
581 * But we don't need to use a spin_lock here: it really
582 * doesn't matter if occasionally a racer chooses the
583 * same nid as we do. Move nid forward in the mask even
584 * if we just successfully allocated a hugepage so that
585 * the next caller gets hugepages on the next node.
586 */
587static int hstate_next_node(struct hstate *h)
588{
589 int next_nid;
590 next_nid = next_node(h->hugetlb_next_nid, node_online_map);
591 if (next_nid == MAX_NUMNODES)
592 next_nid = first_node(node_online_map);
593 h->hugetlb_next_nid = next_nid;
594 return next_nid;
595}
596
Andi Kleena5516432008-07-23 21:27:41 -0700597static int alloc_fresh_huge_page(struct hstate *h)
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700598{
599 struct page *page;
600 int start_nid;
601 int next_nid;
602 int ret = 0;
603
Andi Kleena5516432008-07-23 21:27:41 -0700604 start_nid = h->hugetlb_next_nid;
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700605
606 do {
Andi Kleena5516432008-07-23 21:27:41 -0700607 page = alloc_fresh_huge_page_node(h, h->hugetlb_next_nid);
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700608 if (page)
609 ret = 1;
Andi Kleen5ced66c2008-07-23 21:27:45 -0700610 next_nid = hstate_next_node(h);
Andi Kleena5516432008-07-23 21:27:41 -0700611 } while (!page && h->hugetlb_next_nid != start_nid);
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700612
Adam Litke3b116302008-04-28 02:13:06 -0700613 if (ret)
614 count_vm_event(HTLB_BUDDY_PGALLOC);
615 else
616 count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
617
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700618 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
620
Andi Kleena5516432008-07-23 21:27:41 -0700621static struct page *alloc_buddy_huge_page(struct hstate *h,
622 struct vm_area_struct *vma, unsigned long address)
Adam Litke7893d1d2007-10-16 01:26:18 -0700623{
624 struct page *page;
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800625 unsigned int nid;
Adam Litke7893d1d2007-10-16 01:26:18 -0700626
Andi Kleenaa888a72008-07-23 21:27:47 -0700627 if (h->order >= MAX_ORDER)
628 return NULL;
629
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800630 /*
631 * Assume we will successfully allocate the surplus page to
632 * prevent racing processes from causing the surplus to exceed
633 * overcommit
634 *
635 * This however introduces a different race, where a process B
636 * tries to grow the static hugepage pool while alloc_pages() is
637 * called by process A. B will only examine the per-node
638 * counters in determining if surplus huge pages can be
639 * converted to normal huge pages in adjust_pool_surplus(). A
640 * won't be able to increment the per-node counter, until the
641 * lock is dropped by B, but B doesn't drop hugetlb_lock until
642 * no more huge pages can be converted from surplus to normal
643 * state (and doesn't try to convert again). Thus, we have a
644 * case where a surplus huge page exists, the pool is grown, and
645 * the surplus huge page still exists after, even though it
646 * should just have been converted to a normal huge page. This
647 * does not leak memory, though, as the hugepage will be freed
648 * once it is out of use. It also does not allow the counters to
649 * go out of whack in adjust_pool_surplus() as we don't modify
650 * the node values until we've gotten the hugepage and only the
651 * per-node value is checked there.
652 */
653 spin_lock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -0700654 if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages) {
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800655 spin_unlock(&hugetlb_lock);
656 return NULL;
657 } else {
Andi Kleena5516432008-07-23 21:27:41 -0700658 h->nr_huge_pages++;
659 h->surplus_huge_pages++;
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800660 }
661 spin_unlock(&hugetlb_lock);
662
Nishanth Aravamudan551883a2008-04-29 00:58:26 -0700663 page = alloc_pages(htlb_alloc_mask|__GFP_COMP|
664 __GFP_REPEAT|__GFP_NOWARN,
Andi Kleena5516432008-07-23 21:27:41 -0700665 huge_page_order(h));
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800666
667 spin_lock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700668 if (page) {
Adam Litke2668db92008-03-10 11:43:50 -0700669 /*
670 * This page is now managed by the hugetlb allocator and has
671 * no users -- drop the buddy allocator's reference.
672 */
673 put_page_testzero(page);
674 VM_BUG_ON(page_count(page));
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800675 nid = page_to_nid(page);
Adam Litke7893d1d2007-10-16 01:26:18 -0700676 set_compound_page_dtor(page, free_huge_page);
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800677 /*
678 * We incremented the global counters already
679 */
Andi Kleena5516432008-07-23 21:27:41 -0700680 h->nr_huge_pages_node[nid]++;
681 h->surplus_huge_pages_node[nid]++;
Adam Litke3b116302008-04-28 02:13:06 -0700682 __count_vm_event(HTLB_BUDDY_PGALLOC);
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800683 } else {
Andi Kleena5516432008-07-23 21:27:41 -0700684 h->nr_huge_pages--;
685 h->surplus_huge_pages--;
Adam Litke3b116302008-04-28 02:13:06 -0700686 __count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
Adam Litke7893d1d2007-10-16 01:26:18 -0700687 }
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800688 spin_unlock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700689
690 return page;
691}
692
Adam Litkee4e574b2007-10-16 01:26:19 -0700693/*
694 * Increase the hugetlb pool such that it can accomodate a reservation
695 * of size 'delta'.
696 */
Andi Kleena5516432008-07-23 21:27:41 -0700697static int gather_surplus_pages(struct hstate *h, int delta)
Adam Litkee4e574b2007-10-16 01:26:19 -0700698{
699 struct list_head surplus_list;
700 struct page *page, *tmp;
701 int ret, i;
702 int needed, allocated;
703
Andi Kleena5516432008-07-23 21:27:41 -0700704 needed = (h->resv_huge_pages + delta) - h->free_huge_pages;
Adam Litkeac09b3a2008-03-04 14:29:38 -0800705 if (needed <= 0) {
Andi Kleena5516432008-07-23 21:27:41 -0700706 h->resv_huge_pages += delta;
Adam Litkee4e574b2007-10-16 01:26:19 -0700707 return 0;
Adam Litkeac09b3a2008-03-04 14:29:38 -0800708 }
Adam Litkee4e574b2007-10-16 01:26:19 -0700709
710 allocated = 0;
711 INIT_LIST_HEAD(&surplus_list);
712
713 ret = -ENOMEM;
714retry:
715 spin_unlock(&hugetlb_lock);
716 for (i = 0; i < needed; i++) {
Andi Kleena5516432008-07-23 21:27:41 -0700717 page = alloc_buddy_huge_page(h, NULL, 0);
Adam Litkee4e574b2007-10-16 01:26:19 -0700718 if (!page) {
719 /*
720 * We were not able to allocate enough pages to
721 * satisfy the entire reservation so we free what
722 * we've allocated so far.
723 */
724 spin_lock(&hugetlb_lock);
725 needed = 0;
726 goto free;
727 }
728
729 list_add(&page->lru, &surplus_list);
730 }
731 allocated += needed;
732
733 /*
734 * After retaking hugetlb_lock, we need to recalculate 'needed'
735 * because either resv_huge_pages or free_huge_pages may have changed.
736 */
737 spin_lock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -0700738 needed = (h->resv_huge_pages + delta) -
739 (h->free_huge_pages + allocated);
Adam Litkee4e574b2007-10-16 01:26:19 -0700740 if (needed > 0)
741 goto retry;
742
743 /*
744 * The surplus_list now contains _at_least_ the number of extra pages
745 * needed to accomodate the reservation. Add the appropriate number
746 * of pages to the hugetlb pool and free the extras back to the buddy
Adam Litkeac09b3a2008-03-04 14:29:38 -0800747 * allocator. Commit the entire reservation here to prevent another
748 * process from stealing the pages as they are added to the pool but
749 * before they are reserved.
Adam Litkee4e574b2007-10-16 01:26:19 -0700750 */
751 needed += allocated;
Andi Kleena5516432008-07-23 21:27:41 -0700752 h->resv_huge_pages += delta;
Adam Litkee4e574b2007-10-16 01:26:19 -0700753 ret = 0;
754free:
Adam Litke19fc3f02008-04-28 02:12:20 -0700755 /* Free the needed pages to the hugetlb pool */
Adam Litkee4e574b2007-10-16 01:26:19 -0700756 list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
Adam Litke19fc3f02008-04-28 02:12:20 -0700757 if ((--needed) < 0)
758 break;
Adam Litkee4e574b2007-10-16 01:26:19 -0700759 list_del(&page->lru);
Andi Kleena5516432008-07-23 21:27:41 -0700760 enqueue_huge_page(h, page);
Adam Litke19fc3f02008-04-28 02:12:20 -0700761 }
762
763 /* Free unnecessary surplus pages to the buddy allocator */
764 if (!list_empty(&surplus_list)) {
765 spin_unlock(&hugetlb_lock);
766 list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
767 list_del(&page->lru);
Adam Litkeaf767cb2007-10-16 01:26:25 -0700768 /*
Adam Litke2668db92008-03-10 11:43:50 -0700769 * The page has a reference count of zero already, so
770 * call free_huge_page directly instead of using
771 * put_page. This must be done with hugetlb_lock
Adam Litkeaf767cb2007-10-16 01:26:25 -0700772 * unlocked which is safe because free_huge_page takes
773 * hugetlb_lock before deciding how to free the page.
774 */
Adam Litke2668db92008-03-10 11:43:50 -0700775 free_huge_page(page);
Adam Litkeaf767cb2007-10-16 01:26:25 -0700776 }
Adam Litke19fc3f02008-04-28 02:12:20 -0700777 spin_lock(&hugetlb_lock);
Adam Litkee4e574b2007-10-16 01:26:19 -0700778 }
779
780 return ret;
781}
782
783/*
784 * When releasing a hugetlb pool reservation, any surplus pages that were
785 * allocated to satisfy the reservation must be explicitly freed if they were
786 * never used.
787 */
Andi Kleena5516432008-07-23 21:27:41 -0700788static void return_unused_surplus_pages(struct hstate *h,
789 unsigned long unused_resv_pages)
Adam Litkee4e574b2007-10-16 01:26:19 -0700790{
791 static int nid = -1;
792 struct page *page;
793 unsigned long nr_pages;
794
Nishanth Aravamudan11320d12008-03-26 14:40:20 -0700795 /*
796 * We want to release as many surplus pages as possible, spread
797 * evenly across all nodes. Iterate across all nodes until we
798 * can no longer free unreserved surplus pages. This occurs when
799 * the nodes with surplus pages have no free pages.
800 */
801 unsigned long remaining_iterations = num_online_nodes();
802
Adam Litkeac09b3a2008-03-04 14:29:38 -0800803 /* Uncommit the reservation */
Andi Kleena5516432008-07-23 21:27:41 -0700804 h->resv_huge_pages -= unused_resv_pages;
Adam Litkeac09b3a2008-03-04 14:29:38 -0800805
Andi Kleenaa888a72008-07-23 21:27:47 -0700806 /* Cannot return gigantic pages currently */
807 if (h->order >= MAX_ORDER)
808 return;
809
Andi Kleena5516432008-07-23 21:27:41 -0700810 nr_pages = min(unused_resv_pages, h->surplus_huge_pages);
Adam Litkee4e574b2007-10-16 01:26:19 -0700811
Nishanth Aravamudan11320d12008-03-26 14:40:20 -0700812 while (remaining_iterations-- && nr_pages) {
Adam Litkee4e574b2007-10-16 01:26:19 -0700813 nid = next_node(nid, node_online_map);
814 if (nid == MAX_NUMNODES)
815 nid = first_node(node_online_map);
816
Andi Kleena5516432008-07-23 21:27:41 -0700817 if (!h->surplus_huge_pages_node[nid])
Adam Litkee4e574b2007-10-16 01:26:19 -0700818 continue;
819
Andi Kleena5516432008-07-23 21:27:41 -0700820 if (!list_empty(&h->hugepage_freelists[nid])) {
821 page = list_entry(h->hugepage_freelists[nid].next,
Adam Litkee4e574b2007-10-16 01:26:19 -0700822 struct page, lru);
823 list_del(&page->lru);
Andi Kleena5516432008-07-23 21:27:41 -0700824 update_and_free_page(h, page);
825 h->free_huge_pages--;
826 h->free_huge_pages_node[nid]--;
827 h->surplus_huge_pages--;
828 h->surplus_huge_pages_node[nid]--;
Adam Litkee4e574b2007-10-16 01:26:19 -0700829 nr_pages--;
Nishanth Aravamudan11320d12008-03-26 14:40:20 -0700830 remaining_iterations = num_online_nodes();
Adam Litkee4e574b2007-10-16 01:26:19 -0700831 }
832 }
833}
834
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700835/*
836 * Determine if the huge page at addr within the vma has an associated
837 * reservation. Where it does not we will need to logically increase
838 * reservation and actually increase quota before an allocation can occur.
839 * Where any new reservation would be required the reservation change is
840 * prepared, but not committed. Once the page has been quota'd allocated
841 * an instantiated the change should be committed via vma_commit_reservation.
842 * No action is required on failure.
843 */
Andi Kleena5516432008-07-23 21:27:41 -0700844static int vma_needs_reservation(struct hstate *h,
845 struct vm_area_struct *vma, unsigned long addr)
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700846{
847 struct address_space *mapping = vma->vm_file->f_mapping;
848 struct inode *inode = mapping->host;
849
850 if (vma->vm_flags & VM_SHARED) {
Andi Kleena5516432008-07-23 21:27:41 -0700851 pgoff_t idx = vma_hugecache_offset(h, vma, addr);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700852 return region_chg(&inode->i_mapping->private_list,
853 idx, idx + 1);
854
Andy Whitcroft84afd992008-07-23 21:27:32 -0700855 } else if (!is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
856 return 1;
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700857
Andy Whitcroft84afd992008-07-23 21:27:32 -0700858 } else {
859 int err;
Andi Kleena5516432008-07-23 21:27:41 -0700860 pgoff_t idx = vma_hugecache_offset(h, vma, addr);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700861 struct resv_map *reservations = vma_resv_map(vma);
862
863 err = region_chg(&reservations->regions, idx, idx + 1);
864 if (err < 0)
865 return err;
866 return 0;
867 }
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700868}
Andi Kleena5516432008-07-23 21:27:41 -0700869static void vma_commit_reservation(struct hstate *h,
870 struct vm_area_struct *vma, unsigned long addr)
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700871{
872 struct address_space *mapping = vma->vm_file->f_mapping;
873 struct inode *inode = mapping->host;
874
875 if (vma->vm_flags & VM_SHARED) {
Andi Kleena5516432008-07-23 21:27:41 -0700876 pgoff_t idx = vma_hugecache_offset(h, vma, addr);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700877 region_add(&inode->i_mapping->private_list, idx, idx + 1);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700878
879 } else if (is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
Andi Kleena5516432008-07-23 21:27:41 -0700880 pgoff_t idx = vma_hugecache_offset(h, vma, addr);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700881 struct resv_map *reservations = vma_resv_map(vma);
882
883 /* Mark this page used in the map. */
884 region_add(&reservations->regions, idx, idx + 1);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700885 }
886}
887
David Gibson27a85ef2006-03-22 00:08:56 -0800888static struct page *alloc_huge_page(struct vm_area_struct *vma,
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700889 unsigned long addr, int avoid_reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Andi Kleena5516432008-07-23 21:27:41 -0700891 struct hstate *h = hstate_vma(vma);
Adam Litke348ea202007-11-14 16:59:37 -0800892 struct page *page;
Adam Litke2fc39ce2007-11-14 16:59:39 -0800893 struct address_space *mapping = vma->vm_file->f_mapping;
Mel Gormana1e78772008-07-23 21:27:23 -0700894 struct inode *inode = mapping->host;
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700895 unsigned int chg;
Adam Litke2fc39ce2007-11-14 16:59:39 -0800896
Mel Gormana1e78772008-07-23 21:27:23 -0700897 /*
898 * Processes that did not create the mapping will have no reserves and
899 * will not have accounted against quota. Check that the quota can be
900 * made before satisfying the allocation
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700901 * MAP_NORESERVE mappings may also need pages and quota allocated
902 * if no reserve mapping overlaps.
Mel Gormana1e78772008-07-23 21:27:23 -0700903 */
Andi Kleena5516432008-07-23 21:27:41 -0700904 chg = vma_needs_reservation(h, vma, addr);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700905 if (chg < 0)
906 return ERR_PTR(chg);
907 if (chg)
Mel Gormana1e78772008-07-23 21:27:23 -0700908 if (hugetlb_get_quota(inode->i_mapping, chg))
909 return ERR_PTR(-ENOSPC);
Mel Gormana1e78772008-07-23 21:27:23 -0700910
911 spin_lock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -0700912 page = dequeue_huge_page_vma(h, vma, addr, avoid_reserve);
Mel Gormana1e78772008-07-23 21:27:23 -0700913 spin_unlock(&hugetlb_lock);
914
915 if (!page) {
Andi Kleena5516432008-07-23 21:27:41 -0700916 page = alloc_buddy_huge_page(h, vma, addr);
Mel Gormana1e78772008-07-23 21:27:23 -0700917 if (!page) {
918 hugetlb_put_quota(inode->i_mapping, chg);
919 return ERR_PTR(-VM_FAULT_OOM);
920 }
921 }
922
923 set_page_refcounted(page);
924 set_page_private(page, (unsigned long) mapping);
925
Andi Kleena5516432008-07-23 21:27:41 -0700926 vma_commit_reservation(h, vma, addr);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700927
Adam Litke90d8b7e2007-11-14 16:59:42 -0800928 return page;
David Gibsonb45b5bd2006-03-22 00:08:55 -0800929}
930
Jon Tollefson53ba51d2008-07-23 21:27:52 -0700931__attribute__((weak)) int alloc_bootmem_huge_page(struct hstate *h)
Andi Kleenaa888a72008-07-23 21:27:47 -0700932{
933 struct huge_bootmem_page *m;
934 int nr_nodes = nodes_weight(node_online_map);
935
936 while (nr_nodes) {
937 void *addr;
938
939 addr = __alloc_bootmem_node_nopanic(
940 NODE_DATA(h->hugetlb_next_nid),
941 huge_page_size(h), huge_page_size(h), 0);
942
943 if (addr) {
944 /*
945 * Use the beginning of the huge page to store the
946 * huge_bootmem_page struct (until gather_bootmem
947 * puts them into the mem_map).
948 */
949 m = addr;
950 if (m)
951 goto found;
952 }
953 hstate_next_node(h);
954 nr_nodes--;
955 }
956 return 0;
957
958found:
959 BUG_ON((unsigned long)virt_to_phys(m) & (huge_page_size(h) - 1));
960 /* Put them into a private list first because mem_map is not up yet */
961 list_add(&m->list, &huge_boot_pages);
962 m->hstate = h;
963 return 1;
964}
965
966/* Put bootmem huge pages into the standard lists after mem_map is up */
967static void __init gather_bootmem_prealloc(void)
968{
969 struct huge_bootmem_page *m;
970
971 list_for_each_entry(m, &huge_boot_pages, list) {
972 struct page *page = virt_to_page(m);
973 struct hstate *h = m->hstate;
974 __ClearPageReserved(page);
975 WARN_ON(page_count(page) != 1);
976 prep_compound_page(page, h->order);
977 prep_new_huge_page(h, page, page_to_nid(page));
978 }
979}
980
Andi Kleen8faa8b02008-07-23 21:27:48 -0700981static void __init hugetlb_hstate_alloc_pages(struct hstate *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
983 unsigned long i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Andi Kleene5ff2152008-07-23 21:27:42 -0700985 for (i = 0; i < h->max_huge_pages; ++i) {
Andi Kleenaa888a72008-07-23 21:27:47 -0700986 if (h->order >= MAX_ORDER) {
987 if (!alloc_bootmem_huge_page(h))
988 break;
989 } else if (!alloc_fresh_huge_page(h))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 }
Andi Kleen8faa8b02008-07-23 21:27:48 -0700992 h->max_huge_pages = i;
Andi Kleene5ff2152008-07-23 21:27:42 -0700993}
994
995static void __init hugetlb_init_hstates(void)
996{
997 struct hstate *h;
998
999 for_each_hstate(h) {
Andi Kleen8faa8b02008-07-23 21:27:48 -07001000 /* oversize hugepages were init'ed in early boot */
1001 if (h->order < MAX_ORDER)
1002 hugetlb_hstate_alloc_pages(h);
Andi Kleene5ff2152008-07-23 21:27:42 -07001003 }
1004}
1005
Andi Kleen4abd32d2008-07-23 21:27:49 -07001006static char * __init memfmt(char *buf, unsigned long n)
1007{
1008 if (n >= (1UL << 30))
1009 sprintf(buf, "%lu GB", n >> 30);
1010 else if (n >= (1UL << 20))
1011 sprintf(buf, "%lu MB", n >> 20);
1012 else
1013 sprintf(buf, "%lu KB", n >> 10);
1014 return buf;
1015}
1016
Andi Kleene5ff2152008-07-23 21:27:42 -07001017static void __init report_hugepages(void)
1018{
1019 struct hstate *h;
1020
1021 for_each_hstate(h) {
Andi Kleen4abd32d2008-07-23 21:27:49 -07001022 char buf[32];
1023 printk(KERN_INFO "HugeTLB registered %s page size, "
1024 "pre-allocated %ld pages\n",
1025 memfmt(buf, huge_page_size(h)),
1026 h->free_huge_pages);
Andi Kleene5ff2152008-07-23 21:27:42 -07001027 }
1028}
1029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030#ifdef CONFIG_HIGHMEM
Andi Kleena5516432008-07-23 21:27:41 -07001031static void try_to_free_low(struct hstate *h, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
Christoph Lameter4415cc82006-09-25 23:31:55 -07001033 int i;
1034
Andi Kleenaa888a72008-07-23 21:27:47 -07001035 if (h->order >= MAX_ORDER)
1036 return;
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 for (i = 0; i < MAX_NUMNODES; ++i) {
1039 struct page *page, *next;
Andi Kleena5516432008-07-23 21:27:41 -07001040 struct list_head *freel = &h->hugepage_freelists[i];
1041 list_for_each_entry_safe(page, next, freel, lru) {
1042 if (count >= h->nr_huge_pages)
Adam Litke6b0c8802007-10-16 01:26:23 -07001043 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (PageHighMem(page))
1045 continue;
1046 list_del(&page->lru);
Andi Kleene5ff2152008-07-23 21:27:42 -07001047 update_and_free_page(h, page);
Andi Kleena5516432008-07-23 21:27:41 -07001048 h->free_huge_pages--;
1049 h->free_huge_pages_node[page_to_nid(page)]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051 }
1052}
1053#else
Andi Kleena5516432008-07-23 21:27:41 -07001054static inline void try_to_free_low(struct hstate *h, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
1056}
1057#endif
1058
Andi Kleena5516432008-07-23 21:27:41 -07001059#define persistent_huge_pages(h) (h->nr_huge_pages - h->surplus_huge_pages)
Andi Kleene5ff2152008-07-23 21:27:42 -07001060static unsigned long set_max_huge_pages(struct hstate *h, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
Adam Litke7893d1d2007-10-16 01:26:18 -07001062 unsigned long min_count, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Andi Kleenaa888a72008-07-23 21:27:47 -07001064 if (h->order >= MAX_ORDER)
1065 return h->max_huge_pages;
1066
Adam Litke7893d1d2007-10-16 01:26:18 -07001067 /*
1068 * Increase the pool size
1069 * First take pages out of surplus state. Then make up the
1070 * remaining difference by allocating fresh huge pages.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001071 *
1072 * We might race with alloc_buddy_huge_page() here and be unable
1073 * to convert a surplus huge page to a normal huge page. That is
1074 * not critical, though, it just means the overall size of the
1075 * pool might be one hugepage larger than it needs to be, but
1076 * within all the constraints specified by the sysctls.
Adam Litke7893d1d2007-10-16 01:26:18 -07001077 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 spin_lock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -07001079 while (h->surplus_huge_pages && count > persistent_huge_pages(h)) {
1080 if (!adjust_pool_surplus(h, -1))
Adam Litke7893d1d2007-10-16 01:26:18 -07001081 break;
1082 }
1083
Andi Kleena5516432008-07-23 21:27:41 -07001084 while (count > persistent_huge_pages(h)) {
Adam Litke7893d1d2007-10-16 01:26:18 -07001085 /*
1086 * If this allocation races such that we no longer need the
1087 * page, free_huge_page will handle it by freeing the page
1088 * and reducing the surplus.
1089 */
1090 spin_unlock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -07001091 ret = alloc_fresh_huge_page(h);
Adam Litke7893d1d2007-10-16 01:26:18 -07001092 spin_lock(&hugetlb_lock);
1093 if (!ret)
1094 goto out;
1095
1096 }
Adam Litke7893d1d2007-10-16 01:26:18 -07001097
1098 /*
1099 * Decrease the pool size
1100 * First return free pages to the buddy allocator (being careful
1101 * to keep enough around to satisfy reservations). Then place
1102 * pages into surplus state as needed so the pool will shrink
1103 * to the desired size as pages become free.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001104 *
1105 * By placing pages into the surplus state independent of the
1106 * overcommit value, we are allowing the surplus pool size to
1107 * exceed overcommit. There are few sane options here. Since
1108 * alloc_buddy_huge_page() is checking the global counter,
1109 * though, we'll note that we're not allowed to exceed surplus
1110 * and won't grow the pool anywhere else. Not until one of the
1111 * sysctls are changed, or the surplus pages go out of use.
Adam Litke7893d1d2007-10-16 01:26:18 -07001112 */
Andi Kleena5516432008-07-23 21:27:41 -07001113 min_count = h->resv_huge_pages + h->nr_huge_pages - h->free_huge_pages;
Adam Litke6b0c8802007-10-16 01:26:23 -07001114 min_count = max(count, min_count);
Andi Kleena5516432008-07-23 21:27:41 -07001115 try_to_free_low(h, min_count);
1116 while (min_count < persistent_huge_pages(h)) {
1117 struct page *page = dequeue_huge_page(h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 if (!page)
1119 break;
Andi Kleena5516432008-07-23 21:27:41 -07001120 update_and_free_page(h, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
Andi Kleena5516432008-07-23 21:27:41 -07001122 while (count < persistent_huge_pages(h)) {
1123 if (!adjust_pool_surplus(h, 1))
Adam Litke7893d1d2007-10-16 01:26:18 -07001124 break;
1125 }
1126out:
Andi Kleena5516432008-07-23 21:27:41 -07001127 ret = persistent_huge_pages(h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 spin_unlock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -07001129 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001132#define HSTATE_ATTR_RO(_name) \
1133 static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
1134
1135#define HSTATE_ATTR(_name) \
1136 static struct kobj_attribute _name##_attr = \
1137 __ATTR(_name, 0644, _name##_show, _name##_store)
1138
1139static struct kobject *hugepages_kobj;
1140static struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
1141
1142static struct hstate *kobj_to_hstate(struct kobject *kobj)
1143{
1144 int i;
1145 for (i = 0; i < HUGE_MAX_HSTATE; i++)
1146 if (hstate_kobjs[i] == kobj)
1147 return &hstates[i];
1148 BUG();
1149 return NULL;
1150}
1151
1152static ssize_t nr_hugepages_show(struct kobject *kobj,
1153 struct kobj_attribute *attr, char *buf)
1154{
1155 struct hstate *h = kobj_to_hstate(kobj);
1156 return sprintf(buf, "%lu\n", h->nr_huge_pages);
1157}
1158static ssize_t nr_hugepages_store(struct kobject *kobj,
1159 struct kobj_attribute *attr, const char *buf, size_t count)
1160{
1161 int err;
1162 unsigned long input;
1163 struct hstate *h = kobj_to_hstate(kobj);
1164
1165 err = strict_strtoul(buf, 10, &input);
1166 if (err)
1167 return 0;
1168
1169 h->max_huge_pages = set_max_huge_pages(h, input);
1170
1171 return count;
1172}
1173HSTATE_ATTR(nr_hugepages);
1174
1175static ssize_t nr_overcommit_hugepages_show(struct kobject *kobj,
1176 struct kobj_attribute *attr, char *buf)
1177{
1178 struct hstate *h = kobj_to_hstate(kobj);
1179 return sprintf(buf, "%lu\n", h->nr_overcommit_huge_pages);
1180}
1181static ssize_t nr_overcommit_hugepages_store(struct kobject *kobj,
1182 struct kobj_attribute *attr, const char *buf, size_t count)
1183{
1184 int err;
1185 unsigned long input;
1186 struct hstate *h = kobj_to_hstate(kobj);
1187
1188 err = strict_strtoul(buf, 10, &input);
1189 if (err)
1190 return 0;
1191
1192 spin_lock(&hugetlb_lock);
1193 h->nr_overcommit_huge_pages = input;
1194 spin_unlock(&hugetlb_lock);
1195
1196 return count;
1197}
1198HSTATE_ATTR(nr_overcommit_hugepages);
1199
1200static ssize_t free_hugepages_show(struct kobject *kobj,
1201 struct kobj_attribute *attr, char *buf)
1202{
1203 struct hstate *h = kobj_to_hstate(kobj);
1204 return sprintf(buf, "%lu\n", h->free_huge_pages);
1205}
1206HSTATE_ATTR_RO(free_hugepages);
1207
1208static ssize_t resv_hugepages_show(struct kobject *kobj,
1209 struct kobj_attribute *attr, char *buf)
1210{
1211 struct hstate *h = kobj_to_hstate(kobj);
1212 return sprintf(buf, "%lu\n", h->resv_huge_pages);
1213}
1214HSTATE_ATTR_RO(resv_hugepages);
1215
1216static ssize_t surplus_hugepages_show(struct kobject *kobj,
1217 struct kobj_attribute *attr, char *buf)
1218{
1219 struct hstate *h = kobj_to_hstate(kobj);
1220 return sprintf(buf, "%lu\n", h->surplus_huge_pages);
1221}
1222HSTATE_ATTR_RO(surplus_hugepages);
1223
1224static struct attribute *hstate_attrs[] = {
1225 &nr_hugepages_attr.attr,
1226 &nr_overcommit_hugepages_attr.attr,
1227 &free_hugepages_attr.attr,
1228 &resv_hugepages_attr.attr,
1229 &surplus_hugepages_attr.attr,
1230 NULL,
1231};
1232
1233static struct attribute_group hstate_attr_group = {
1234 .attrs = hstate_attrs,
1235};
1236
1237static int __init hugetlb_sysfs_add_hstate(struct hstate *h)
1238{
1239 int retval;
1240
1241 hstate_kobjs[h - hstates] = kobject_create_and_add(h->name,
1242 hugepages_kobj);
1243 if (!hstate_kobjs[h - hstates])
1244 return -ENOMEM;
1245
1246 retval = sysfs_create_group(hstate_kobjs[h - hstates],
1247 &hstate_attr_group);
1248 if (retval)
1249 kobject_put(hstate_kobjs[h - hstates]);
1250
1251 return retval;
1252}
1253
1254static void __init hugetlb_sysfs_init(void)
1255{
1256 struct hstate *h;
1257 int err;
1258
1259 hugepages_kobj = kobject_create_and_add("hugepages", mm_kobj);
1260 if (!hugepages_kobj)
1261 return;
1262
1263 for_each_hstate(h) {
1264 err = hugetlb_sysfs_add_hstate(h);
1265 if (err)
1266 printk(KERN_ERR "Hugetlb: Unable to add hstate %s",
1267 h->name);
1268 }
1269}
1270
1271static void __exit hugetlb_exit(void)
1272{
1273 struct hstate *h;
1274
1275 for_each_hstate(h) {
1276 kobject_put(hstate_kobjs[h - hstates]);
1277 }
1278
1279 kobject_put(hugepages_kobj);
1280}
1281module_exit(hugetlb_exit);
1282
1283static int __init hugetlb_init(void)
1284{
1285 BUILD_BUG_ON(HPAGE_SHIFT == 0);
1286
Nick Piggine11bfbf2008-07-23 21:27:52 -07001287 if (!size_to_hstate(default_hstate_size)) {
1288 default_hstate_size = HPAGE_SIZE;
1289 if (!size_to_hstate(default_hstate_size))
1290 hugetlb_add_hstate(HUGETLB_PAGE_ORDER);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001291 }
Nick Piggine11bfbf2008-07-23 21:27:52 -07001292 default_hstate_idx = size_to_hstate(default_hstate_size) - hstates;
1293 if (default_hstate_max_huge_pages)
1294 default_hstate.max_huge_pages = default_hstate_max_huge_pages;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001295
1296 hugetlb_init_hstates();
1297
Andi Kleenaa888a72008-07-23 21:27:47 -07001298 gather_bootmem_prealloc();
1299
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001300 report_hugepages();
1301
1302 hugetlb_sysfs_init();
1303
1304 return 0;
1305}
1306module_init(hugetlb_init);
1307
1308/* Should be called on processing a hugepagesz=... option */
1309void __init hugetlb_add_hstate(unsigned order)
1310{
1311 struct hstate *h;
Andi Kleen8faa8b02008-07-23 21:27:48 -07001312 unsigned long i;
1313
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001314 if (size_to_hstate(PAGE_SIZE << order)) {
1315 printk(KERN_WARNING "hugepagesz= specified twice, ignoring\n");
1316 return;
1317 }
1318 BUG_ON(max_hstate >= HUGE_MAX_HSTATE);
1319 BUG_ON(order == 0);
1320 h = &hstates[max_hstate++];
1321 h->order = order;
1322 h->mask = ~((1ULL << (order + PAGE_SHIFT)) - 1);
Andi Kleen8faa8b02008-07-23 21:27:48 -07001323 h->nr_huge_pages = 0;
1324 h->free_huge_pages = 0;
1325 for (i = 0; i < MAX_NUMNODES; ++i)
1326 INIT_LIST_HEAD(&h->hugepage_freelists[i]);
1327 h->hugetlb_next_nid = first_node(node_online_map);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001328 snprintf(h->name, HSTATE_NAME_LEN, "hugepages-%lukB",
1329 huge_page_size(h)/1024);
Andi Kleen8faa8b02008-07-23 21:27:48 -07001330
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001331 parsed_hstate = h;
1332}
1333
Nick Piggine11bfbf2008-07-23 21:27:52 -07001334static int __init hugetlb_nrpages_setup(char *s)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001335{
1336 unsigned long *mhp;
Andi Kleen8faa8b02008-07-23 21:27:48 -07001337 static unsigned long *last_mhp;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001338
1339 /*
1340 * !max_hstate means we haven't parsed a hugepagesz= parameter yet,
1341 * so this hugepages= parameter goes to the "default hstate".
1342 */
1343 if (!max_hstate)
1344 mhp = &default_hstate_max_huge_pages;
1345 else
1346 mhp = &parsed_hstate->max_huge_pages;
1347
Andi Kleen8faa8b02008-07-23 21:27:48 -07001348 if (mhp == last_mhp) {
1349 printk(KERN_WARNING "hugepages= specified twice without "
1350 "interleaving hugepagesz=, ignoring\n");
1351 return 1;
1352 }
1353
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001354 if (sscanf(s, "%lu", mhp) <= 0)
1355 *mhp = 0;
1356
Andi Kleen8faa8b02008-07-23 21:27:48 -07001357 /*
1358 * Global state is always initialized later in hugetlb_init.
1359 * But we need to allocate >= MAX_ORDER hstates here early to still
1360 * use the bootmem allocator.
1361 */
1362 if (max_hstate && parsed_hstate->order >= MAX_ORDER)
1363 hugetlb_hstate_alloc_pages(parsed_hstate);
1364
1365 last_mhp = mhp;
1366
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001367 return 1;
1368}
Nick Piggine11bfbf2008-07-23 21:27:52 -07001369__setup("hugepages=", hugetlb_nrpages_setup);
1370
1371static int __init hugetlb_default_setup(char *s)
1372{
1373 default_hstate_size = memparse(s, &s);
1374 return 1;
1375}
1376__setup("default_hugepagesz=", hugetlb_default_setup);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001377
Nishanth Aravamudan8a213462008-07-25 19:44:37 -07001378static unsigned int cpuset_mems_nr(unsigned int *array)
1379{
1380 int node;
1381 unsigned int nr = 0;
1382
1383 for_each_node_mask(node, cpuset_current_mems_allowed)
1384 nr += array[node];
1385
1386 return nr;
1387}
1388
1389#ifdef CONFIG_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390int hugetlb_sysctl_handler(struct ctl_table *table, int write,
1391 struct file *file, void __user *buffer,
1392 size_t *length, loff_t *ppos)
1393{
Andi Kleene5ff2152008-07-23 21:27:42 -07001394 struct hstate *h = &default_hstate;
1395 unsigned long tmp;
1396
1397 if (!write)
1398 tmp = h->max_huge_pages;
1399
1400 table->data = &tmp;
1401 table->maxlen = sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 proc_doulongvec_minmax(table, write, file, buffer, length, ppos);
Andi Kleene5ff2152008-07-23 21:27:42 -07001403
1404 if (write)
1405 h->max_huge_pages = set_max_huge_pages(h, tmp);
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 return 0;
1408}
Mel Gorman396faf02007-07-17 04:03:13 -07001409
1410int hugetlb_treat_movable_handler(struct ctl_table *table, int write,
1411 struct file *file, void __user *buffer,
1412 size_t *length, loff_t *ppos)
1413{
1414 proc_dointvec(table, write, file, buffer, length, ppos);
1415 if (hugepages_treat_as_movable)
1416 htlb_alloc_mask = GFP_HIGHUSER_MOVABLE;
1417 else
1418 htlb_alloc_mask = GFP_HIGHUSER;
1419 return 0;
1420}
1421
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08001422int hugetlb_overcommit_handler(struct ctl_table *table, int write,
1423 struct file *file, void __user *buffer,
1424 size_t *length, loff_t *ppos)
1425{
Andi Kleena5516432008-07-23 21:27:41 -07001426 struct hstate *h = &default_hstate;
Andi Kleene5ff2152008-07-23 21:27:42 -07001427 unsigned long tmp;
1428
1429 if (!write)
1430 tmp = h->nr_overcommit_huge_pages;
1431
1432 table->data = &tmp;
1433 table->maxlen = sizeof(unsigned long);
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08001434 proc_doulongvec_minmax(table, write, file, buffer, length, ppos);
Andi Kleene5ff2152008-07-23 21:27:42 -07001435
1436 if (write) {
1437 spin_lock(&hugetlb_lock);
1438 h->nr_overcommit_huge_pages = tmp;
1439 spin_unlock(&hugetlb_lock);
1440 }
1441
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08001442 return 0;
1443}
1444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445#endif /* CONFIG_SYSCTL */
1446
1447int hugetlb_report_meminfo(char *buf)
1448{
Andi Kleena5516432008-07-23 21:27:41 -07001449 struct hstate *h = &default_hstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 return sprintf(buf,
1451 "HugePages_Total: %5lu\n"
1452 "HugePages_Free: %5lu\n"
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001453 "HugePages_Rsvd: %5lu\n"
Adam Litke7893d1d2007-10-16 01:26:18 -07001454 "HugePages_Surp: %5lu\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 "Hugepagesize: %5lu kB\n",
Andi Kleena5516432008-07-23 21:27:41 -07001456 h->nr_huge_pages,
1457 h->free_huge_pages,
1458 h->resv_huge_pages,
1459 h->surplus_huge_pages,
1460 1UL << (huge_page_order(h) + PAGE_SHIFT - 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461}
1462
1463int hugetlb_report_node_meminfo(int nid, char *buf)
1464{
Andi Kleena5516432008-07-23 21:27:41 -07001465 struct hstate *h = &default_hstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return sprintf(buf,
1467 "Node %d HugePages_Total: %5u\n"
Nishanth Aravamudana1de0912008-03-26 14:37:53 -07001468 "Node %d HugePages_Free: %5u\n"
1469 "Node %d HugePages_Surp: %5u\n",
Andi Kleena5516432008-07-23 21:27:41 -07001470 nid, h->nr_huge_pages_node[nid],
1471 nid, h->free_huge_pages_node[nid],
1472 nid, h->surplus_huge_pages_node[nid]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473}
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475/* Return the number pages of memory we physically have, in PAGE_SIZE units. */
1476unsigned long hugetlb_total_pages(void)
1477{
Andi Kleena5516432008-07-23 21:27:41 -07001478 struct hstate *h = &default_hstate;
1479 return h->nr_huge_pages * pages_per_huge_page(h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Andi Kleena5516432008-07-23 21:27:41 -07001482static int hugetlb_acct_memory(struct hstate *h, long delta)
Mel Gormanfc1b8a72008-07-23 21:27:22 -07001483{
1484 int ret = -ENOMEM;
1485
1486 spin_lock(&hugetlb_lock);
1487 /*
1488 * When cpuset is configured, it breaks the strict hugetlb page
1489 * reservation as the accounting is done on a global variable. Such
1490 * reservation is completely rubbish in the presence of cpuset because
1491 * the reservation is not checked against page availability for the
1492 * current cpuset. Application can still potentially OOM'ed by kernel
1493 * with lack of free htlb page in cpuset that the task is in.
1494 * Attempt to enforce strict accounting with cpuset is almost
1495 * impossible (or too ugly) because cpuset is too fluid that
1496 * task or memory node can be dynamically moved between cpusets.
1497 *
1498 * The change of semantics for shared hugetlb mapping with cpuset is
1499 * undesirable. However, in order to preserve some of the semantics,
1500 * we fall back to check against current free page availability as
1501 * a best attempt and hopefully to minimize the impact of changing
1502 * semantics that cpuset has.
1503 */
1504 if (delta > 0) {
Andi Kleena5516432008-07-23 21:27:41 -07001505 if (gather_surplus_pages(h, delta) < 0)
Mel Gormanfc1b8a72008-07-23 21:27:22 -07001506 goto out;
1507
Andi Kleena5516432008-07-23 21:27:41 -07001508 if (delta > cpuset_mems_nr(h->free_huge_pages_node)) {
1509 return_unused_surplus_pages(h, delta);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07001510 goto out;
1511 }
1512 }
1513
1514 ret = 0;
1515 if (delta < 0)
Andi Kleena5516432008-07-23 21:27:41 -07001516 return_unused_surplus_pages(h, (unsigned long) -delta);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07001517
1518out:
1519 spin_unlock(&hugetlb_lock);
1520 return ret;
1521}
1522
Andy Whitcroft84afd992008-07-23 21:27:32 -07001523static void hugetlb_vm_op_open(struct vm_area_struct *vma)
1524{
1525 struct resv_map *reservations = vma_resv_map(vma);
1526
1527 /*
1528 * This new VMA should share its siblings reservation map if present.
1529 * The VMA will only ever have a valid reservation map pointer where
1530 * it is being copied for another still existing VMA. As that VMA
1531 * has a reference to the reservation map it cannot dissappear until
1532 * after this open call completes. It is therefore safe to take a
1533 * new reference here without additional locking.
1534 */
1535 if (reservations)
1536 kref_get(&reservations->refs);
1537}
1538
Mel Gormana1e78772008-07-23 21:27:23 -07001539static void hugetlb_vm_op_close(struct vm_area_struct *vma)
1540{
Andi Kleena5516432008-07-23 21:27:41 -07001541 struct hstate *h = hstate_vma(vma);
Andy Whitcroft84afd992008-07-23 21:27:32 -07001542 struct resv_map *reservations = vma_resv_map(vma);
1543 unsigned long reserve;
1544 unsigned long start;
1545 unsigned long end;
1546
1547 if (reservations) {
Andi Kleena5516432008-07-23 21:27:41 -07001548 start = vma_hugecache_offset(h, vma, vma->vm_start);
1549 end = vma_hugecache_offset(h, vma, vma->vm_end);
Andy Whitcroft84afd992008-07-23 21:27:32 -07001550
1551 reserve = (end - start) -
1552 region_count(&reservations->regions, start, end);
1553
1554 kref_put(&reservations->refs, resv_map_release);
1555
Adam Litke7251ff782008-07-23 21:27:59 -07001556 if (reserve) {
Andi Kleena5516432008-07-23 21:27:41 -07001557 hugetlb_acct_memory(h, -reserve);
Adam Litke7251ff782008-07-23 21:27:59 -07001558 hugetlb_put_quota(vma->vm_file->f_mapping, reserve);
1559 }
Andy Whitcroft84afd992008-07-23 21:27:32 -07001560 }
Mel Gormana1e78772008-07-23 21:27:23 -07001561}
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563/*
1564 * We cannot handle pagefaults against hugetlb pages at all. They cause
1565 * handle_mm_fault() to try to instantiate regular-sized pages in the
1566 * hugegpage VMA. do_page_fault() is supposed to trap this, so BUG is we get
1567 * this far.
1568 */
Nick Piggind0217ac2007-07-19 01:47:03 -07001569static int hugetlb_vm_op_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
1571 BUG();
Nick Piggind0217ac2007-07-19 01:47:03 -07001572 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
1575struct vm_operations_struct hugetlb_vm_ops = {
Nick Piggind0217ac2007-07-19 01:47:03 -07001576 .fault = hugetlb_vm_op_fault,
Andy Whitcroft84afd992008-07-23 21:27:32 -07001577 .open = hugetlb_vm_op_open,
Mel Gormana1e78772008-07-23 21:27:23 -07001578 .close = hugetlb_vm_op_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579};
1580
David Gibson1e8f8892006-01-06 00:10:44 -08001581static pte_t make_huge_pte(struct vm_area_struct *vma, struct page *page,
1582 int writable)
David Gibson63551ae2005-06-21 17:14:44 -07001583{
1584 pte_t entry;
1585
David Gibson1e8f8892006-01-06 00:10:44 -08001586 if (writable) {
David Gibson63551ae2005-06-21 17:14:44 -07001587 entry =
1588 pte_mkwrite(pte_mkdirty(mk_pte(page, vma->vm_page_prot)));
1589 } else {
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001590 entry = huge_pte_wrprotect(mk_pte(page, vma->vm_page_prot));
David Gibson63551ae2005-06-21 17:14:44 -07001591 }
1592 entry = pte_mkyoung(entry);
1593 entry = pte_mkhuge(entry);
1594
1595 return entry;
1596}
1597
David Gibson1e8f8892006-01-06 00:10:44 -08001598static void set_huge_ptep_writable(struct vm_area_struct *vma,
1599 unsigned long address, pte_t *ptep)
1600{
1601 pte_t entry;
1602
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001603 entry = pte_mkwrite(pte_mkdirty(huge_ptep_get(ptep)));
1604 if (huge_ptep_set_access_flags(vma, address, ptep, entry, 1)) {
Benjamin Herrenschmidt8dab5242007-06-16 10:16:12 -07001605 update_mmu_cache(vma, address, entry);
Benjamin Herrenschmidt8dab5242007-06-16 10:16:12 -07001606 }
David Gibson1e8f8892006-01-06 00:10:44 -08001607}
1608
1609
David Gibson63551ae2005-06-21 17:14:44 -07001610int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
1611 struct vm_area_struct *vma)
1612{
1613 pte_t *src_pte, *dst_pte, entry;
1614 struct page *ptepage;
Hugh Dickins1c598272005-10-19 21:23:43 -07001615 unsigned long addr;
David Gibson1e8f8892006-01-06 00:10:44 -08001616 int cow;
Andi Kleena5516432008-07-23 21:27:41 -07001617 struct hstate *h = hstate_vma(vma);
1618 unsigned long sz = huge_page_size(h);
David Gibson1e8f8892006-01-06 00:10:44 -08001619
1620 cow = (vma->vm_flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE;
David Gibson63551ae2005-06-21 17:14:44 -07001621
Andi Kleena5516432008-07-23 21:27:41 -07001622 for (addr = vma->vm_start; addr < vma->vm_end; addr += sz) {
Hugh Dickinsc74df322005-10-29 18:16:23 -07001623 src_pte = huge_pte_offset(src, addr);
1624 if (!src_pte)
1625 continue;
Andi Kleena5516432008-07-23 21:27:41 -07001626 dst_pte = huge_pte_alloc(dst, addr, sz);
David Gibson63551ae2005-06-21 17:14:44 -07001627 if (!dst_pte)
1628 goto nomem;
Larry Woodmanc5c99422008-01-24 05:49:25 -08001629
1630 /* If the pagetables are shared don't copy or take references */
1631 if (dst_pte == src_pte)
1632 continue;
1633
Hugh Dickinsc74df322005-10-29 18:16:23 -07001634 spin_lock(&dst->page_table_lock);
Nick Piggin46478752008-06-05 22:45:57 -07001635 spin_lock_nested(&src->page_table_lock, SINGLE_DEPTH_NESTING);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001636 if (!huge_pte_none(huge_ptep_get(src_pte))) {
David Gibson1e8f8892006-01-06 00:10:44 -08001637 if (cow)
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001638 huge_ptep_set_wrprotect(src, addr, src_pte);
1639 entry = huge_ptep_get(src_pte);
Hugh Dickins1c598272005-10-19 21:23:43 -07001640 ptepage = pte_page(entry);
1641 get_page(ptepage);
Hugh Dickins1c598272005-10-19 21:23:43 -07001642 set_huge_pte_at(dst, addr, dst_pte, entry);
1643 }
1644 spin_unlock(&src->page_table_lock);
Hugh Dickinsc74df322005-10-29 18:16:23 -07001645 spin_unlock(&dst->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -07001646 }
1647 return 0;
1648
1649nomem:
1650 return -ENOMEM;
1651}
1652
Chen, Kenneth W502717f2006-10-11 01:20:46 -07001653void __unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001654 unsigned long end, struct page *ref_page)
David Gibson63551ae2005-06-21 17:14:44 -07001655{
1656 struct mm_struct *mm = vma->vm_mm;
1657 unsigned long address;
David Gibsonc7546f82005-08-05 11:59:35 -07001658 pte_t *ptep;
David Gibson63551ae2005-06-21 17:14:44 -07001659 pte_t pte;
1660 struct page *page;
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07001661 struct page *tmp;
Andi Kleena5516432008-07-23 21:27:41 -07001662 struct hstate *h = hstate_vma(vma);
1663 unsigned long sz = huge_page_size(h);
1664
Chen, Kenneth Wc0a499c2006-12-06 20:31:39 -08001665 /*
1666 * A page gathering list, protected by per file i_mmap_lock. The
1667 * lock is used to avoid list corruption from multiple unmapping
1668 * of the same page since we are using page->lru.
1669 */
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07001670 LIST_HEAD(page_list);
David Gibson63551ae2005-06-21 17:14:44 -07001671
1672 WARN_ON(!is_vm_hugetlb_page(vma));
Andi Kleena5516432008-07-23 21:27:41 -07001673 BUG_ON(start & ~huge_page_mask(h));
1674 BUG_ON(end & ~huge_page_mask(h));
David Gibson63551ae2005-06-21 17:14:44 -07001675
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001676 mmu_notifier_invalidate_range_start(mm, start, end);
Hugh Dickins508034a2005-10-29 18:16:30 -07001677 spin_lock(&mm->page_table_lock);
Andi Kleena5516432008-07-23 21:27:41 -07001678 for (address = start; address < end; address += sz) {
David Gibsonc7546f82005-08-05 11:59:35 -07001679 ptep = huge_pte_offset(mm, address);
Adam Litke4c887262005-10-29 18:16:46 -07001680 if (!ptep)
David Gibsonc7546f82005-08-05 11:59:35 -07001681 continue;
1682
Chen, Kenneth W39dde652006-12-06 20:32:03 -08001683 if (huge_pmd_unshare(mm, &address, ptep))
1684 continue;
1685
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001686 /*
1687 * If a reference page is supplied, it is because a specific
1688 * page is being unmapped, not a range. Ensure the page we
1689 * are about to unmap is the actual page of interest.
1690 */
1691 if (ref_page) {
1692 pte = huge_ptep_get(ptep);
1693 if (huge_pte_none(pte))
1694 continue;
1695 page = pte_page(pte);
1696 if (page != ref_page)
1697 continue;
1698
1699 /*
1700 * Mark the VMA as having unmapped its page so that
1701 * future faults in this VMA will fail rather than
1702 * looking like data was lost
1703 */
1704 set_vma_resv_flags(vma, HPAGE_RESV_UNMAPPED);
1705 }
1706
David Gibsonc7546f82005-08-05 11:59:35 -07001707 pte = huge_ptep_get_and_clear(mm, address, ptep);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001708 if (huge_pte_none(pte))
David Gibson63551ae2005-06-21 17:14:44 -07001709 continue;
David Gibsonc7546f82005-08-05 11:59:35 -07001710
David Gibson63551ae2005-06-21 17:14:44 -07001711 page = pte_page(pte);
Ken Chen6649a382007-02-08 14:20:27 -08001712 if (pte_dirty(pte))
1713 set_page_dirty(page);
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07001714 list_add(&page->lru, &page_list);
David Gibson63551ae2005-06-21 17:14:44 -07001715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 spin_unlock(&mm->page_table_lock);
Hugh Dickins508034a2005-10-29 18:16:30 -07001717 flush_tlb_range(vma, start, end);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001718 mmu_notifier_invalidate_range_end(mm, start, end);
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07001719 list_for_each_entry_safe(page, tmp, &page_list, lru) {
1720 list_del(&page->lru);
1721 put_page(page);
1722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723}
David Gibson63551ae2005-06-21 17:14:44 -07001724
Chen, Kenneth W502717f2006-10-11 01:20:46 -07001725void unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001726 unsigned long end, struct page *ref_page)
Chen, Kenneth W502717f2006-10-11 01:20:46 -07001727{
Andi Kleena137e1c2008-07-23 21:27:43 -07001728 spin_lock(&vma->vm_file->f_mapping->i_mmap_lock);
1729 __unmap_hugepage_range(vma, start, end, ref_page);
1730 spin_unlock(&vma->vm_file->f_mapping->i_mmap_lock);
Chen, Kenneth W502717f2006-10-11 01:20:46 -07001731}
1732
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001733/*
1734 * This is called when the original mapper is failing to COW a MAP_PRIVATE
1735 * mappping it owns the reserve page for. The intention is to unmap the page
1736 * from other VMAs and let the children be SIGKILLed if they are faulting the
1737 * same region.
1738 */
1739int unmap_ref_private(struct mm_struct *mm,
1740 struct vm_area_struct *vma,
1741 struct page *page,
1742 unsigned long address)
1743{
1744 struct vm_area_struct *iter_vma;
1745 struct address_space *mapping;
1746 struct prio_tree_iter iter;
1747 pgoff_t pgoff;
1748
1749 /*
1750 * vm_pgoff is in PAGE_SIZE units, hence the different calculation
1751 * from page cache lookup which is in HPAGE_SIZE units.
1752 */
1753 address = address & huge_page_mask(hstate_vma(vma));
1754 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT)
1755 + (vma->vm_pgoff >> PAGE_SHIFT);
1756 mapping = (struct address_space *)page_private(page);
1757
1758 vma_prio_tree_foreach(iter_vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
1759 /* Do not unmap the current VMA */
1760 if (iter_vma == vma)
1761 continue;
1762
1763 /*
1764 * Unmap the page from other VMAs without their own reserves.
1765 * They get marked to be SIGKILLed if they fault in these
1766 * areas. This is because a future no-page fault on this VMA
1767 * could insert a zeroed page instead of the data existing
1768 * from the time of fork. This would look like data corruption
1769 */
1770 if (!is_vma_resv_set(iter_vma, HPAGE_RESV_OWNER))
1771 unmap_hugepage_range(iter_vma,
1772 address, address + HPAGE_SIZE,
1773 page);
1774 }
1775
1776 return 1;
1777}
1778
David Gibson1e8f8892006-01-06 00:10:44 -08001779static int hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001780 unsigned long address, pte_t *ptep, pte_t pte,
1781 struct page *pagecache_page)
David Gibson1e8f8892006-01-06 00:10:44 -08001782{
Andi Kleena5516432008-07-23 21:27:41 -07001783 struct hstate *h = hstate_vma(vma);
David Gibson1e8f8892006-01-06 00:10:44 -08001784 struct page *old_page, *new_page;
David Gibson79ac6ba2006-03-22 00:08:51 -08001785 int avoidcopy;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001786 int outside_reserve = 0;
David Gibson1e8f8892006-01-06 00:10:44 -08001787
1788 old_page = pte_page(pte);
1789
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001790retry_avoidcopy:
David Gibson1e8f8892006-01-06 00:10:44 -08001791 /* If no-one else is actually using this page, avoid the copy
1792 * and just make the page writable */
1793 avoidcopy = (page_count(old_page) == 1);
1794 if (avoidcopy) {
1795 set_huge_ptep_writable(vma, address, ptep);
Nick Piggin83c54072007-07-19 01:47:05 -07001796 return 0;
David Gibson1e8f8892006-01-06 00:10:44 -08001797 }
1798
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001799 /*
1800 * If the process that created a MAP_PRIVATE mapping is about to
1801 * perform a COW due to a shared page count, attempt to satisfy
1802 * the allocation without using the existing reserves. The pagecache
1803 * page is used to determine if the reserve at this address was
1804 * consumed or not. If reserves were used, a partial faulted mapping
1805 * at the time of fork() could consume its reserves on COW instead
1806 * of the full address range.
1807 */
1808 if (!(vma->vm_flags & VM_SHARED) &&
1809 is_vma_resv_set(vma, HPAGE_RESV_OWNER) &&
1810 old_page != pagecache_page)
1811 outside_reserve = 1;
1812
David Gibson1e8f8892006-01-06 00:10:44 -08001813 page_cache_get(old_page);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001814 new_page = alloc_huge_page(vma, address, outside_reserve);
David Gibson1e8f8892006-01-06 00:10:44 -08001815
Adam Litke2fc39ce2007-11-14 16:59:39 -08001816 if (IS_ERR(new_page)) {
David Gibson1e8f8892006-01-06 00:10:44 -08001817 page_cache_release(old_page);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001818
1819 /*
1820 * If a process owning a MAP_PRIVATE mapping fails to COW,
1821 * it is due to references held by a child and an insufficient
1822 * huge page pool. To guarantee the original mappers
1823 * reliability, unmap the page from child processes. The child
1824 * may get SIGKILLed if it later faults.
1825 */
1826 if (outside_reserve) {
1827 BUG_ON(huge_pte_none(pte));
1828 if (unmap_ref_private(mm, vma, old_page, address)) {
1829 BUG_ON(page_count(old_page) != 1);
1830 BUG_ON(huge_pte_none(pte));
1831 goto retry_avoidcopy;
1832 }
1833 WARN_ON_ONCE(1);
1834 }
1835
Adam Litke2fc39ce2007-11-14 16:59:39 -08001836 return -PTR_ERR(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -08001837 }
1838
1839 spin_unlock(&mm->page_table_lock);
Atsushi Nemoto9de455b2006-12-12 17:14:55 +00001840 copy_huge_page(new_page, old_page, address, vma);
Nick Piggin0ed361d2008-02-04 22:29:34 -08001841 __SetPageUptodate(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -08001842 spin_lock(&mm->page_table_lock);
1843
Andi Kleena5516432008-07-23 21:27:41 -07001844 ptep = huge_pte_offset(mm, address & huge_page_mask(h));
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001845 if (likely(pte_same(huge_ptep_get(ptep), pte))) {
David Gibson1e8f8892006-01-06 00:10:44 -08001846 /* Break COW */
Gerald Schaefer8fe627e2008-04-28 02:13:28 -07001847 huge_ptep_clear_flush(vma, address, ptep);
David Gibson1e8f8892006-01-06 00:10:44 -08001848 set_huge_pte_at(mm, address, ptep,
1849 make_huge_pte(vma, new_page, 1));
1850 /* Make the old page be freed below */
1851 new_page = old_page;
1852 }
1853 page_cache_release(new_page);
1854 page_cache_release(old_page);
Nick Piggin83c54072007-07-19 01:47:05 -07001855 return 0;
David Gibson1e8f8892006-01-06 00:10:44 -08001856}
1857
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001858/* Return the pagecache page at a given address within a VMA */
Andi Kleena5516432008-07-23 21:27:41 -07001859static struct page *hugetlbfs_pagecache_page(struct hstate *h,
1860 struct vm_area_struct *vma, unsigned long address)
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001861{
1862 struct address_space *mapping;
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -07001863 pgoff_t idx;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001864
1865 mapping = vma->vm_file->f_mapping;
Andi Kleena5516432008-07-23 21:27:41 -07001866 idx = vma_hugecache_offset(h, vma, address);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001867
1868 return find_lock_page(mapping, idx);
1869}
1870
Robert P. J. Daya1ed3dd2007-07-17 04:03:33 -07001871static int hugetlb_no_page(struct mm_struct *mm, struct vm_area_struct *vma,
David Gibson1e8f8892006-01-06 00:10:44 -08001872 unsigned long address, pte_t *ptep, int write_access)
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001873{
Andi Kleena5516432008-07-23 21:27:41 -07001874 struct hstate *h = hstate_vma(vma);
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001875 int ret = VM_FAULT_SIGBUS;
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -07001876 pgoff_t idx;
Adam Litke4c887262005-10-29 18:16:46 -07001877 unsigned long size;
Adam Litke4c887262005-10-29 18:16:46 -07001878 struct page *page;
1879 struct address_space *mapping;
David Gibson1e8f8892006-01-06 00:10:44 -08001880 pte_t new_pte;
Adam Litke4c887262005-10-29 18:16:46 -07001881
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001882 /*
1883 * Currently, we are forced to kill the process in the event the
1884 * original mapper has unmapped pages from the child due to a failed
1885 * COW. Warn that such a situation has occured as it may not be obvious
1886 */
1887 if (is_vma_resv_set(vma, HPAGE_RESV_UNMAPPED)) {
1888 printk(KERN_WARNING
1889 "PID %d killed due to inadequate hugepage pool\n",
1890 current->pid);
1891 return ret;
1892 }
1893
Adam Litke4c887262005-10-29 18:16:46 -07001894 mapping = vma->vm_file->f_mapping;
Andi Kleena5516432008-07-23 21:27:41 -07001895 idx = vma_hugecache_offset(h, vma, address);
Adam Litke4c887262005-10-29 18:16:46 -07001896
1897 /*
1898 * Use page lock to guard against racing truncation
1899 * before we get page_table_lock.
1900 */
Christoph Lameter6bda6662006-01-06 00:10:49 -08001901retry:
1902 page = find_lock_page(mapping, idx);
1903 if (!page) {
Andi Kleena5516432008-07-23 21:27:41 -07001904 size = i_size_read(mapping->host) >> huge_page_shift(h);
Hugh Dickinsebed4bf2006-10-28 10:38:43 -07001905 if (idx >= size)
1906 goto out;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001907 page = alloc_huge_page(vma, address, 0);
Adam Litke2fc39ce2007-11-14 16:59:39 -08001908 if (IS_ERR(page)) {
1909 ret = -PTR_ERR(page);
Christoph Lameter6bda6662006-01-06 00:10:49 -08001910 goto out;
1911 }
Andi Kleena5516432008-07-23 21:27:41 -07001912 clear_huge_page(page, address, huge_page_size(h));
Nick Piggin0ed361d2008-02-04 22:29:34 -08001913 __SetPageUptodate(page);
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001914
Christoph Lameter6bda6662006-01-06 00:10:49 -08001915 if (vma->vm_flags & VM_SHARED) {
1916 int err;
Ken Chen45c682a2007-11-14 16:59:44 -08001917 struct inode *inode = mapping->host;
Christoph Lameter6bda6662006-01-06 00:10:49 -08001918
1919 err = add_to_page_cache(page, mapping, idx, GFP_KERNEL);
1920 if (err) {
1921 put_page(page);
Christoph Lameter6bda6662006-01-06 00:10:49 -08001922 if (err == -EEXIST)
1923 goto retry;
1924 goto out;
1925 }
Ken Chen45c682a2007-11-14 16:59:44 -08001926
1927 spin_lock(&inode->i_lock);
Andi Kleena5516432008-07-23 21:27:41 -07001928 inode->i_blocks += blocks_per_huge_page(h);
Ken Chen45c682a2007-11-14 16:59:44 -08001929 spin_unlock(&inode->i_lock);
Christoph Lameter6bda6662006-01-06 00:10:49 -08001930 } else
1931 lock_page(page);
1932 }
David Gibson1e8f8892006-01-06 00:10:44 -08001933
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001934 spin_lock(&mm->page_table_lock);
Andi Kleena5516432008-07-23 21:27:41 -07001935 size = i_size_read(mapping->host) >> huge_page_shift(h);
Adam Litke4c887262005-10-29 18:16:46 -07001936 if (idx >= size)
1937 goto backout;
1938
Nick Piggin83c54072007-07-19 01:47:05 -07001939 ret = 0;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001940 if (!huge_pte_none(huge_ptep_get(ptep)))
Adam Litke4c887262005-10-29 18:16:46 -07001941 goto backout;
1942
David Gibson1e8f8892006-01-06 00:10:44 -08001943 new_pte = make_huge_pte(vma, page, ((vma->vm_flags & VM_WRITE)
1944 && (vma->vm_flags & VM_SHARED)));
1945 set_huge_pte_at(mm, address, ptep, new_pte);
1946
1947 if (write_access && !(vma->vm_flags & VM_SHARED)) {
1948 /* Optimization, do the COW without a second fault */
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001949 ret = hugetlb_cow(mm, vma, address, ptep, new_pte, page);
David Gibson1e8f8892006-01-06 00:10:44 -08001950 }
1951
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001952 spin_unlock(&mm->page_table_lock);
Adam Litke4c887262005-10-29 18:16:46 -07001953 unlock_page(page);
1954out:
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001955 return ret;
Adam Litke4c887262005-10-29 18:16:46 -07001956
1957backout:
1958 spin_unlock(&mm->page_table_lock);
Adam Litke4c887262005-10-29 18:16:46 -07001959 unlock_page(page);
1960 put_page(page);
1961 goto out;
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001962}
1963
Adam Litke86e52162006-01-06 00:10:43 -08001964int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
1965 unsigned long address, int write_access)
1966{
1967 pte_t *ptep;
1968 pte_t entry;
David Gibson1e8f8892006-01-06 00:10:44 -08001969 int ret;
David Gibson3935baa2006-03-22 00:08:53 -08001970 static DEFINE_MUTEX(hugetlb_instantiation_mutex);
Andi Kleena5516432008-07-23 21:27:41 -07001971 struct hstate *h = hstate_vma(vma);
Adam Litke86e52162006-01-06 00:10:43 -08001972
Andi Kleena5516432008-07-23 21:27:41 -07001973 ptep = huge_pte_alloc(mm, address, huge_page_size(h));
Adam Litke86e52162006-01-06 00:10:43 -08001974 if (!ptep)
1975 return VM_FAULT_OOM;
1976
David Gibson3935baa2006-03-22 00:08:53 -08001977 /*
1978 * Serialize hugepage allocation and instantiation, so that we don't
1979 * get spurious allocation failures if two CPUs race to instantiate
1980 * the same page in the page cache.
1981 */
1982 mutex_lock(&hugetlb_instantiation_mutex);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001983 entry = huge_ptep_get(ptep);
1984 if (huge_pte_none(entry)) {
David Gibson3935baa2006-03-22 00:08:53 -08001985 ret = hugetlb_no_page(mm, vma, address, ptep, write_access);
1986 mutex_unlock(&hugetlb_instantiation_mutex);
1987 return ret;
1988 }
Adam Litke86e52162006-01-06 00:10:43 -08001989
Nick Piggin83c54072007-07-19 01:47:05 -07001990 ret = 0;
David Gibson1e8f8892006-01-06 00:10:44 -08001991
1992 spin_lock(&mm->page_table_lock);
1993 /* Check for a racing update before calling hugetlb_cow */
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001994 if (likely(pte_same(entry, huge_ptep_get(ptep))))
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001995 if (write_access && !pte_write(entry)) {
1996 struct page *page;
Andi Kleena5516432008-07-23 21:27:41 -07001997 page = hugetlbfs_pagecache_page(h, vma, address);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001998 ret = hugetlb_cow(mm, vma, address, ptep, entry, page);
1999 if (page) {
2000 unlock_page(page);
2001 put_page(page);
2002 }
2003 }
David Gibson1e8f8892006-01-06 00:10:44 -08002004 spin_unlock(&mm->page_table_lock);
David Gibson3935baa2006-03-22 00:08:53 -08002005 mutex_unlock(&hugetlb_instantiation_mutex);
David Gibson1e8f8892006-01-06 00:10:44 -08002006
2007 return ret;
Adam Litke86e52162006-01-06 00:10:43 -08002008}
2009
Andi Kleenceb86872008-07-23 21:27:50 -07002010/* Can be overriden by architectures */
2011__attribute__((weak)) struct page *
2012follow_huge_pud(struct mm_struct *mm, unsigned long address,
2013 pud_t *pud, int write)
2014{
2015 BUG();
2016 return NULL;
2017}
2018
David Gibson63551ae2005-06-21 17:14:44 -07002019int follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma,
2020 struct page **pages, struct vm_area_struct **vmas,
Adam Litke5b23dbe2007-11-14 16:59:33 -08002021 unsigned long *position, int *length, int i,
2022 int write)
David Gibson63551ae2005-06-21 17:14:44 -07002023{
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002024 unsigned long pfn_offset;
2025 unsigned long vaddr = *position;
David Gibson63551ae2005-06-21 17:14:44 -07002026 int remainder = *length;
Andi Kleena5516432008-07-23 21:27:41 -07002027 struct hstate *h = hstate_vma(vma);
David Gibson63551ae2005-06-21 17:14:44 -07002028
Hugh Dickins1c598272005-10-19 21:23:43 -07002029 spin_lock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -07002030 while (vaddr < vma->vm_end && remainder) {
Adam Litke4c887262005-10-29 18:16:46 -07002031 pte_t *pte;
2032 struct page *page;
2033
2034 /*
2035 * Some archs (sparc64, sh*) have multiple pte_ts to
2036 * each hugepage. We have to make * sure we get the
2037 * first, for the page indexing below to work.
2038 */
Andi Kleena5516432008-07-23 21:27:41 -07002039 pte = huge_pte_offset(mm, vaddr & huge_page_mask(h));
Adam Litke4c887262005-10-29 18:16:46 -07002040
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07002041 if (!pte || huge_pte_none(huge_ptep_get(pte)) ||
2042 (write && !pte_write(huge_ptep_get(pte)))) {
Adam Litke4c887262005-10-29 18:16:46 -07002043 int ret;
2044
2045 spin_unlock(&mm->page_table_lock);
Adam Litke5b23dbe2007-11-14 16:59:33 -08002046 ret = hugetlb_fault(mm, vma, vaddr, write);
Adam Litke4c887262005-10-29 18:16:46 -07002047 spin_lock(&mm->page_table_lock);
Adam Litkea89182c2007-08-22 14:01:51 -07002048 if (!(ret & VM_FAULT_ERROR))
Adam Litke4c887262005-10-29 18:16:46 -07002049 continue;
2050
2051 remainder = 0;
2052 if (!i)
2053 i = -EFAULT;
2054 break;
2055 }
David Gibson63551ae2005-06-21 17:14:44 -07002056
Andi Kleena5516432008-07-23 21:27:41 -07002057 pfn_offset = (vaddr & ~huge_page_mask(h)) >> PAGE_SHIFT;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07002058 page = pte_page(huge_ptep_get(pte));
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002059same_page:
Chen, Kenneth Wd6692182006-03-31 02:29:57 -08002060 if (pages) {
2061 get_page(page);
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002062 pages[i] = page + pfn_offset;
Chen, Kenneth Wd6692182006-03-31 02:29:57 -08002063 }
David Gibson63551ae2005-06-21 17:14:44 -07002064
2065 if (vmas)
2066 vmas[i] = vma;
2067
2068 vaddr += PAGE_SIZE;
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002069 ++pfn_offset;
David Gibson63551ae2005-06-21 17:14:44 -07002070 --remainder;
2071 ++i;
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002072 if (vaddr < vma->vm_end && remainder &&
Andi Kleena5516432008-07-23 21:27:41 -07002073 pfn_offset < pages_per_huge_page(h)) {
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002074 /*
2075 * We use pfn_offset to avoid touching the pageframes
2076 * of this compound page.
2077 */
2078 goto same_page;
2079 }
David Gibson63551ae2005-06-21 17:14:44 -07002080 }
Hugh Dickins1c598272005-10-19 21:23:43 -07002081 spin_unlock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -07002082 *length = remainder;
2083 *position = vaddr;
2084
2085 return i;
2086}
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002087
2088void hugetlb_change_protection(struct vm_area_struct *vma,
2089 unsigned long address, unsigned long end, pgprot_t newprot)
2090{
2091 struct mm_struct *mm = vma->vm_mm;
2092 unsigned long start = address;
2093 pte_t *ptep;
2094 pte_t pte;
Andi Kleena5516432008-07-23 21:27:41 -07002095 struct hstate *h = hstate_vma(vma);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002096
2097 BUG_ON(address >= end);
2098 flush_cache_range(vma, address, end);
2099
Chen, Kenneth W39dde652006-12-06 20:32:03 -08002100 spin_lock(&vma->vm_file->f_mapping->i_mmap_lock);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002101 spin_lock(&mm->page_table_lock);
Andi Kleena5516432008-07-23 21:27:41 -07002102 for (; address < end; address += huge_page_size(h)) {
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002103 ptep = huge_pte_offset(mm, address);
2104 if (!ptep)
2105 continue;
Chen, Kenneth W39dde652006-12-06 20:32:03 -08002106 if (huge_pmd_unshare(mm, &address, ptep))
2107 continue;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07002108 if (!huge_pte_none(huge_ptep_get(ptep))) {
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002109 pte = huge_ptep_get_and_clear(mm, address, ptep);
2110 pte = pte_mkhuge(pte_modify(pte, newprot));
2111 set_huge_pte_at(mm, address, ptep, pte);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002112 }
2113 }
2114 spin_unlock(&mm->page_table_lock);
Chen, Kenneth W39dde652006-12-06 20:32:03 -08002115 spin_unlock(&vma->vm_file->f_mapping->i_mmap_lock);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002116
2117 flush_tlb_range(vma, start, end);
2118}
2119
Mel Gormana1e78772008-07-23 21:27:23 -07002120int hugetlb_reserve_pages(struct inode *inode,
2121 long from, long to,
2122 struct vm_area_struct *vma)
Adam Litkee4e574b2007-10-16 01:26:19 -07002123{
2124 long ret, chg;
Andi Kleena5516432008-07-23 21:27:41 -07002125 struct hstate *h = hstate_inode(inode);
Adam Litkee4e574b2007-10-16 01:26:19 -07002126
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002127 if (vma && vma->vm_flags & VM_NORESERVE)
2128 return 0;
2129
Mel Gormana1e78772008-07-23 21:27:23 -07002130 /*
2131 * Shared mappings base their reservation on the number of pages that
2132 * are already allocated on behalf of the file. Private mappings need
2133 * to reserve the full area even if read-only as mprotect() may be
2134 * called to make the mapping read-write. Assume !vma is a shm mapping
2135 */
2136 if (!vma || vma->vm_flags & VM_SHARED)
2137 chg = region_chg(&inode->i_mapping->private_list, from, to);
2138 else {
Andy Whitcroft84afd992008-07-23 21:27:32 -07002139 struct resv_map *resv_map = resv_map_alloc();
2140 if (!resv_map)
2141 return -ENOMEM;
2142
Mel Gormana1e78772008-07-23 21:27:23 -07002143 chg = to - from;
Andy Whitcroft84afd992008-07-23 21:27:32 -07002144
2145 set_vma_resv_map(vma, resv_map);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002146 set_vma_resv_flags(vma, HPAGE_RESV_OWNER);
Mel Gormana1e78772008-07-23 21:27:23 -07002147 }
2148
Adam Litkee4e574b2007-10-16 01:26:19 -07002149 if (chg < 0)
2150 return chg;
Ken Chen8a630112007-05-09 02:33:34 -07002151
Adam Litke90d8b7e2007-11-14 16:59:42 -08002152 if (hugetlb_get_quota(inode->i_mapping, chg))
2153 return -ENOSPC;
Andi Kleena5516432008-07-23 21:27:41 -07002154 ret = hugetlb_acct_memory(h, chg);
Ken Chen68842c92008-01-14 00:55:19 -08002155 if (ret < 0) {
2156 hugetlb_put_quota(inode->i_mapping, chg);
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07002157 return ret;
Ken Chen68842c92008-01-14 00:55:19 -08002158 }
Mel Gormana1e78772008-07-23 21:27:23 -07002159 if (!vma || vma->vm_flags & VM_SHARED)
2160 region_add(&inode->i_mapping->private_list, from, to);
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07002161 return 0;
2162}
2163
2164void hugetlb_unreserve_pages(struct inode *inode, long offset, long freed)
2165{
Andi Kleena5516432008-07-23 21:27:41 -07002166 struct hstate *h = hstate_inode(inode);
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07002167 long chg = region_truncate(&inode->i_mapping->private_list, offset);
Ken Chen45c682a2007-11-14 16:59:44 -08002168
2169 spin_lock(&inode->i_lock);
Andi Kleena5516432008-07-23 21:27:41 -07002170 inode->i_blocks -= blocks_per_huge_page(h);
Ken Chen45c682a2007-11-14 16:59:44 -08002171 spin_unlock(&inode->i_lock);
2172
Adam Litke90d8b7e2007-11-14 16:59:42 -08002173 hugetlb_put_quota(inode->i_mapping, (chg - freed));
Andi Kleena5516432008-07-23 21:27:41 -07002174 hugetlb_acct_memory(h, -(chg - freed));
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07002175}