blob: d237a02eb2289774ded6ea2c0767f779d5b76e9b [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>
Adrian Bunk7cb93182008-07-30 02:18:26 +090020#include <asm/io.h>
David Gibson63551ae2005-06-21 17:14:44 -070021#include <asm/page.h>
22#include <asm/pgtable.h>
Adrian Bunk78a34ae2008-07-28 15:46:30 -070023#include <asm/io.h>
David Gibson63551ae2005-06-21 17:14:44 -070024
25#include <linux/hugetlb.h>
Nick Piggin7835e982006-03-22 00:08:40 -080026#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28const unsigned long hugetlb_zero = 0, hugetlb_infinity = ~0UL;
Mel Gorman396faf02007-07-17 04:03:13 -070029static gfp_t htlb_alloc_mask = GFP_HIGHUSER;
30unsigned long hugepages_treat_as_movable;
Andi Kleena5516432008-07-23 21:27:41 -070031
Andi Kleene5ff2152008-07-23 21:27:42 -070032static int max_hstate;
33unsigned int default_hstate_idx;
34struct hstate hstates[HUGE_MAX_HSTATE];
35
Jon Tollefson53ba51d2008-07-23 21:27:52 -070036__initdata LIST_HEAD(huge_boot_pages);
37
Andi Kleene5ff2152008-07-23 21:27:42 -070038/* for command line parsing */
39static struct hstate * __initdata parsed_hstate;
40static unsigned long __initdata default_hstate_max_huge_pages;
Nick Piggine11bfbf2008-07-23 21:27:52 -070041static unsigned long __initdata default_hstate_size;
Andi Kleene5ff2152008-07-23 21:27:42 -070042
43#define for_each_hstate(h) \
44 for ((h) = hstates; (h) < &hstates[max_hstate]; (h)++)
Mel Gorman396faf02007-07-17 04:03:13 -070045
David Gibson3935baa2006-03-22 00:08:53 -080046/*
47 * Protects updates to hugepage_freelists, nr_huge_pages, and free_huge_pages
48 */
49static DEFINE_SPINLOCK(hugetlb_lock);
Eric Paris0bd0f9f2005-11-21 21:32:28 -080050
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -070051/*
Andy Whitcroft96822902008-07-23 21:27:29 -070052 * Region tracking -- allows tracking of reservations and instantiated pages
53 * across the pages in a mapping.
Andy Whitcroft84afd992008-07-23 21:27:32 -070054 *
55 * The region data structures are protected by a combination of the mmap_sem
56 * and the hugetlb_instantion_mutex. To access or modify a region the caller
57 * must either hold the mmap_sem for write, or the mmap_sem for read and
58 * the hugetlb_instantiation mutex:
59 *
60 * down_write(&mm->mmap_sem);
61 * or
62 * down_read(&mm->mmap_sem);
63 * mutex_lock(&hugetlb_instantiation_mutex);
Andy Whitcroft96822902008-07-23 21:27:29 -070064 */
65struct file_region {
66 struct list_head link;
67 long from;
68 long to;
69};
70
71static long region_add(struct list_head *head, long f, long t)
72{
73 struct file_region *rg, *nrg, *trg;
74
75 /* Locate the region we are either in or before. */
76 list_for_each_entry(rg, head, link)
77 if (f <= rg->to)
78 break;
79
80 /* Round our left edge to the current segment if it encloses us. */
81 if (f > rg->from)
82 f = rg->from;
83
84 /* Check for and consume any regions we now overlap with. */
85 nrg = rg;
86 list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
87 if (&rg->link == head)
88 break;
89 if (rg->from > t)
90 break;
91
92 /* If this area reaches higher then extend our area to
93 * include it completely. If this is not the first area
94 * which we intend to reuse, free it. */
95 if (rg->to > t)
96 t = rg->to;
97 if (rg != nrg) {
98 list_del(&rg->link);
99 kfree(rg);
100 }
101 }
102 nrg->from = f;
103 nrg->to = t;
104 return 0;
105}
106
107static long region_chg(struct list_head *head, long f, long t)
108{
109 struct file_region *rg, *nrg;
110 long chg = 0;
111
112 /* Locate the region we are before or in. */
113 list_for_each_entry(rg, head, link)
114 if (f <= rg->to)
115 break;
116
117 /* If we are below the current region then a new region is required.
118 * Subtle, allocate a new region at the position but make it zero
119 * size such that we can guarantee to record the reservation. */
120 if (&rg->link == head || t < rg->from) {
121 nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
122 if (!nrg)
123 return -ENOMEM;
124 nrg->from = f;
125 nrg->to = f;
126 INIT_LIST_HEAD(&nrg->link);
127 list_add(&nrg->link, rg->link.prev);
128
129 return t - f;
130 }
131
132 /* Round our left edge to the current segment if it encloses us. */
133 if (f > rg->from)
134 f = rg->from;
135 chg = t - f;
136
137 /* Check for and consume any regions we now overlap with. */
138 list_for_each_entry(rg, rg->link.prev, link) {
139 if (&rg->link == head)
140 break;
141 if (rg->from > t)
142 return chg;
143
144 /* We overlap with this area, if it extends futher than
145 * us then we must extend ourselves. Account for its
146 * existing reservation. */
147 if (rg->to > t) {
148 chg += rg->to - t;
149 t = rg->to;
150 }
151 chg -= rg->to - rg->from;
152 }
153 return chg;
154}
155
156static long region_truncate(struct list_head *head, long end)
157{
158 struct file_region *rg, *trg;
159 long chg = 0;
160
161 /* Locate the region we are either in or before. */
162 list_for_each_entry(rg, head, link)
163 if (end <= rg->to)
164 break;
165 if (&rg->link == head)
166 return 0;
167
168 /* If we are in the middle of a region then adjust it. */
169 if (end > rg->from) {
170 chg = rg->to - end;
171 rg->to = end;
172 rg = list_entry(rg->link.next, typeof(*rg), link);
173 }
174
175 /* Drop any remaining regions. */
176 list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
177 if (&rg->link == head)
178 break;
179 chg += rg->to - rg->from;
180 list_del(&rg->link);
181 kfree(rg);
182 }
183 return chg;
184}
185
Andy Whitcroft84afd992008-07-23 21:27:32 -0700186static long region_count(struct list_head *head, long f, long t)
187{
188 struct file_region *rg;
189 long chg = 0;
190
191 /* Locate each segment we overlap with, and count that overlap. */
192 list_for_each_entry(rg, head, link) {
193 int seg_from;
194 int seg_to;
195
196 if (rg->to <= f)
197 continue;
198 if (rg->from >= t)
199 break;
200
201 seg_from = max(rg->from, f);
202 seg_to = min(rg->to, t);
203
204 chg += seg_to - seg_from;
205 }
206
207 return chg;
208}
209
Andy Whitcroft96822902008-07-23 21:27:29 -0700210/*
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700211 * Convert the address within this vma to the page offset within
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700212 * the mapping, in pagecache page units; huge pages here.
213 */
Andi Kleena5516432008-07-23 21:27:41 -0700214static pgoff_t vma_hugecache_offset(struct hstate *h,
215 struct vm_area_struct *vma, unsigned long address)
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700216{
Andi Kleena5516432008-07-23 21:27:41 -0700217 return ((address - vma->vm_start) >> huge_page_shift(h)) +
218 (vma->vm_pgoff >> huge_page_order(h));
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700219}
220
Andy Whitcroft84afd992008-07-23 21:27:32 -0700221/*
222 * Flags for MAP_PRIVATE reservations. These are stored in the bottom
223 * bits of the reservation map pointer, which are always clear due to
224 * alignment.
225 */
226#define HPAGE_RESV_OWNER (1UL << 0)
227#define HPAGE_RESV_UNMAPPED (1UL << 1)
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700228#define HPAGE_RESV_MASK (HPAGE_RESV_OWNER | HPAGE_RESV_UNMAPPED)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700229
Mel Gormana1e78772008-07-23 21:27:23 -0700230/*
231 * These helpers are used to track how many pages are reserved for
232 * faults in a MAP_PRIVATE mapping. Only the process that called mmap()
233 * is guaranteed to have their future faults succeed.
234 *
235 * With the exception of reset_vma_resv_huge_pages() which is called at fork(),
236 * the reserve counters are updated with the hugetlb_lock held. It is safe
237 * to reset the VMA at fork() time as it is not in use yet and there is no
238 * chance of the global counters getting corrupted as a result of the values.
Andy Whitcroft84afd992008-07-23 21:27:32 -0700239 *
240 * The private mapping reservation is represented in a subtly different
241 * manner to a shared mapping. A shared mapping has a region map associated
242 * with the underlying file, this region map represents the backing file
243 * pages which have ever had a reservation assigned which this persists even
244 * after the page is instantiated. A private mapping has a region map
245 * associated with the original mmap which is attached to all VMAs which
246 * reference it, this region map represents those offsets which have consumed
247 * reservation ie. where pages have been instantiated.
Mel Gormana1e78772008-07-23 21:27:23 -0700248 */
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700249static unsigned long get_vma_private_data(struct vm_area_struct *vma)
250{
251 return (unsigned long)vma->vm_private_data;
252}
253
254static void set_vma_private_data(struct vm_area_struct *vma,
255 unsigned long value)
256{
257 vma->vm_private_data = (void *)value;
258}
259
Andy Whitcroft84afd992008-07-23 21:27:32 -0700260struct resv_map {
261 struct kref refs;
262 struct list_head regions;
263};
264
265struct resv_map *resv_map_alloc(void)
266{
267 struct resv_map *resv_map = kmalloc(sizeof(*resv_map), GFP_KERNEL);
268 if (!resv_map)
269 return NULL;
270
271 kref_init(&resv_map->refs);
272 INIT_LIST_HEAD(&resv_map->regions);
273
274 return resv_map;
275}
276
277void resv_map_release(struct kref *ref)
278{
279 struct resv_map *resv_map = container_of(ref, struct resv_map, refs);
280
281 /* Clear out any active regions before we release the map. */
282 region_truncate(&resv_map->regions, 0);
283 kfree(resv_map);
284}
285
286static struct resv_map *vma_resv_map(struct vm_area_struct *vma)
Mel Gormana1e78772008-07-23 21:27:23 -0700287{
288 VM_BUG_ON(!is_vm_hugetlb_page(vma));
289 if (!(vma->vm_flags & VM_SHARED))
Andy Whitcroft84afd992008-07-23 21:27:32 -0700290 return (struct resv_map *)(get_vma_private_data(vma) &
291 ~HPAGE_RESV_MASK);
Mel Gormana1e78772008-07-23 21:27:23 -0700292 return 0;
293}
294
Andy Whitcroft84afd992008-07-23 21:27:32 -0700295static void set_vma_resv_map(struct vm_area_struct *vma, struct resv_map *map)
Mel Gormana1e78772008-07-23 21:27:23 -0700296{
297 VM_BUG_ON(!is_vm_hugetlb_page(vma));
298 VM_BUG_ON(vma->vm_flags & VM_SHARED);
299
Andy Whitcroft84afd992008-07-23 21:27:32 -0700300 set_vma_private_data(vma, (get_vma_private_data(vma) &
301 HPAGE_RESV_MASK) | (unsigned long)map);
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700302}
303
304static void set_vma_resv_flags(struct vm_area_struct *vma, unsigned long flags)
305{
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700306 VM_BUG_ON(!is_vm_hugetlb_page(vma));
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700307 VM_BUG_ON(vma->vm_flags & VM_SHARED);
308
309 set_vma_private_data(vma, get_vma_private_data(vma) | flags);
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700310}
311
312static int is_vma_resv_set(struct vm_area_struct *vma, unsigned long flag)
313{
314 VM_BUG_ON(!is_vm_hugetlb_page(vma));
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700315
316 return (get_vma_private_data(vma) & flag) != 0;
Mel Gormana1e78772008-07-23 21:27:23 -0700317}
318
319/* Decrement the reserved pages in the hugepage pool by one */
Andi Kleena5516432008-07-23 21:27:41 -0700320static void decrement_hugepage_resv_vma(struct hstate *h,
321 struct vm_area_struct *vma)
Mel Gormana1e78772008-07-23 21:27:23 -0700322{
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700323 if (vma->vm_flags & VM_NORESERVE)
324 return;
325
Mel Gormana1e78772008-07-23 21:27:23 -0700326 if (vma->vm_flags & VM_SHARED) {
327 /* Shared mappings always use reserves */
Andi Kleena5516432008-07-23 21:27:41 -0700328 h->resv_huge_pages--;
Andy Whitcroft84afd992008-07-23 21:27:32 -0700329 } else if (is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
Mel Gormana1e78772008-07-23 21:27:23 -0700330 /*
331 * Only the process that called mmap() has reserves for
332 * private mappings.
333 */
Andi Kleena5516432008-07-23 21:27:41 -0700334 h->resv_huge_pages--;
Mel Gormana1e78772008-07-23 21:27:23 -0700335 }
336}
337
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700338/* Reset counters to 0 and clear all HPAGE_RESV_* flags */
Mel Gormana1e78772008-07-23 21:27:23 -0700339void reset_vma_resv_huge_pages(struct vm_area_struct *vma)
340{
341 VM_BUG_ON(!is_vm_hugetlb_page(vma));
342 if (!(vma->vm_flags & VM_SHARED))
343 vma->vm_private_data = (void *)0;
344}
345
346/* Returns true if the VMA has associated reserve pages */
Mel Gorman7f09ca52008-07-23 21:27:58 -0700347static int vma_has_reserves(struct vm_area_struct *vma)
Mel Gormana1e78772008-07-23 21:27:23 -0700348{
349 if (vma->vm_flags & VM_SHARED)
Mel Gorman7f09ca52008-07-23 21:27:58 -0700350 return 1;
351 if (is_vma_resv_set(vma, HPAGE_RESV_OWNER))
352 return 1;
353 return 0;
Mel Gormana1e78772008-07-23 21:27:23 -0700354}
355
Andi Kleena5516432008-07-23 21:27:41 -0700356static void clear_huge_page(struct page *page,
357 unsigned long addr, unsigned long sz)
David Gibson79ac6ba2006-03-22 00:08:51 -0800358{
359 int i;
360
361 might_sleep();
Andi Kleena5516432008-07-23 21:27:41 -0700362 for (i = 0; i < sz/PAGE_SIZE; i++) {
David Gibson79ac6ba2006-03-22 00:08:51 -0800363 cond_resched();
Ralf Baechle281e0e32007-10-01 01:20:10 -0700364 clear_user_highpage(page + i, addr + i * PAGE_SIZE);
David Gibson79ac6ba2006-03-22 00:08:51 -0800365 }
366}
367
368static void copy_huge_page(struct page *dst, struct page *src,
Atsushi Nemoto9de455b2006-12-12 17:14:55 +0000369 unsigned long addr, struct vm_area_struct *vma)
David Gibson79ac6ba2006-03-22 00:08:51 -0800370{
371 int i;
Andi Kleena5516432008-07-23 21:27:41 -0700372 struct hstate *h = hstate_vma(vma);
David Gibson79ac6ba2006-03-22 00:08:51 -0800373
374 might_sleep();
Andi Kleena5516432008-07-23 21:27:41 -0700375 for (i = 0; i < pages_per_huge_page(h); i++) {
David Gibson79ac6ba2006-03-22 00:08:51 -0800376 cond_resched();
Atsushi Nemoto9de455b2006-12-12 17:14:55 +0000377 copy_user_highpage(dst + i, src + i, addr + i*PAGE_SIZE, vma);
David Gibson79ac6ba2006-03-22 00:08:51 -0800378 }
379}
380
Andi Kleena5516432008-07-23 21:27:41 -0700381static void enqueue_huge_page(struct hstate *h, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 int nid = page_to_nid(page);
Andi Kleena5516432008-07-23 21:27:41 -0700384 list_add(&page->lru, &h->hugepage_freelists[nid]);
385 h->free_huge_pages++;
386 h->free_huge_pages_node[nid]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
Andi Kleena5516432008-07-23 21:27:41 -0700389static struct page *dequeue_huge_page(struct hstate *h)
Nishanth Aravamudan348e1e02008-03-04 14:29:42 -0800390{
391 int nid;
392 struct page *page = NULL;
393
394 for (nid = 0; nid < MAX_NUMNODES; ++nid) {
Andi Kleena5516432008-07-23 21:27:41 -0700395 if (!list_empty(&h->hugepage_freelists[nid])) {
396 page = list_entry(h->hugepage_freelists[nid].next,
Nishanth Aravamudan348e1e02008-03-04 14:29:42 -0800397 struct page, lru);
398 list_del(&page->lru);
Andi Kleena5516432008-07-23 21:27:41 -0700399 h->free_huge_pages--;
400 h->free_huge_pages_node[nid]--;
Nishanth Aravamudan348e1e02008-03-04 14:29:42 -0800401 break;
402 }
403 }
404 return page;
405}
406
Andi Kleena5516432008-07-23 21:27:41 -0700407static struct page *dequeue_huge_page_vma(struct hstate *h,
408 struct vm_area_struct *vma,
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700409 unsigned long address, int avoid_reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Nishanth Aravamudan31a5c6e2007-07-15 23:38:02 -0700411 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 struct page *page = NULL;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -0700413 struct mempolicy *mpol;
Mel Gorman19770b32008-04-28 02:12:18 -0700414 nodemask_t *nodemask;
Mel Gorman396faf02007-07-17 04:03:13 -0700415 struct zonelist *zonelist = huge_zonelist(vma, address,
Mel Gorman19770b32008-04-28 02:12:18 -0700416 htlb_alloc_mask, &mpol, &nodemask);
Mel Gormandd1a2392008-04-28 02:12:17 -0700417 struct zone *zone;
418 struct zoneref *z;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Mel Gormana1e78772008-07-23 21:27:23 -0700420 /*
421 * A child process with MAP_PRIVATE mappings created by their parent
422 * have no page reserves. This check ensures that reservations are
423 * not "stolen". The child may still get SIGKILLed
424 */
Mel Gorman7f09ca52008-07-23 21:27:58 -0700425 if (!vma_has_reserves(vma) &&
Andi Kleena5516432008-07-23 21:27:41 -0700426 h->free_huge_pages - h->resv_huge_pages == 0)
Mel Gormana1e78772008-07-23 21:27:23 -0700427 return NULL;
428
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700429 /* If reserves cannot be used, ensure enough pages are in the pool */
Andi Kleena5516432008-07-23 21:27:41 -0700430 if (avoid_reserve && h->free_huge_pages - h->resv_huge_pages == 0)
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700431 return NULL;
432
Mel Gorman19770b32008-04-28 02:12:18 -0700433 for_each_zone_zonelist_nodemask(zone, z, zonelist,
434 MAX_NR_ZONES - 1, nodemask) {
Mel Gorman54a6eb52008-04-28 02:12:16 -0700435 nid = zone_to_nid(zone);
436 if (cpuset_zone_allowed_softwall(zone, htlb_alloc_mask) &&
Andi Kleena5516432008-07-23 21:27:41 -0700437 !list_empty(&h->hugepage_freelists[nid])) {
438 page = list_entry(h->hugepage_freelists[nid].next,
Andrew Morton3abf7af2007-07-19 01:49:08 -0700439 struct page, lru);
440 list_del(&page->lru);
Andi Kleena5516432008-07-23 21:27:41 -0700441 h->free_huge_pages--;
442 h->free_huge_pages_node[nid]--;
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700443
444 if (!avoid_reserve)
Andi Kleena5516432008-07-23 21:27:41 -0700445 decrement_hugepage_resv_vma(h, vma);
Mel Gormana1e78772008-07-23 21:27:23 -0700446
Ken Chen5ab3ee72007-07-23 18:44:00 -0700447 break;
Andrew Morton3abf7af2007-07-19 01:49:08 -0700448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -0700450 mpol_cond_put(mpol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return page;
452}
453
Andi Kleena5516432008-07-23 21:27:41 -0700454static void update_and_free_page(struct hstate *h, struct page *page)
Adam Litke6af2acb2007-10-16 01:26:16 -0700455{
456 int i;
Andi Kleena5516432008-07-23 21:27:41 -0700457
458 h->nr_huge_pages--;
459 h->nr_huge_pages_node[page_to_nid(page)]--;
460 for (i = 0; i < pages_per_huge_page(h); i++) {
Adam Litke6af2acb2007-10-16 01:26:16 -0700461 page[i].flags &= ~(1 << PG_locked | 1 << PG_error | 1 << PG_referenced |
462 1 << PG_dirty | 1 << PG_active | 1 << PG_reserved |
463 1 << PG_private | 1<< PG_writeback);
464 }
465 set_compound_page_dtor(page, NULL);
466 set_page_refcounted(page);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -0700467 arch_release_hugepage(page);
Andi Kleena5516432008-07-23 21:27:41 -0700468 __free_pages(page, huge_page_order(h));
Adam Litke6af2acb2007-10-16 01:26:16 -0700469}
470
Andi Kleene5ff2152008-07-23 21:27:42 -0700471struct hstate *size_to_hstate(unsigned long size)
472{
473 struct hstate *h;
474
475 for_each_hstate(h) {
476 if (huge_page_size(h) == size)
477 return h;
478 }
479 return NULL;
480}
481
David Gibson27a85ef2006-03-22 00:08:56 -0800482static void free_huge_page(struct page *page)
483{
Andi Kleena5516432008-07-23 21:27:41 -0700484 /*
485 * Can't pass hstate in here because it is called from the
486 * compound page destructor.
487 */
Andi Kleene5ff2152008-07-23 21:27:42 -0700488 struct hstate *h = page_hstate(page);
Adam Litke7893d1d2007-10-16 01:26:18 -0700489 int nid = page_to_nid(page);
Adam Litkec79fb752007-11-14 16:59:38 -0800490 struct address_space *mapping;
David Gibson27a85ef2006-03-22 00:08:56 -0800491
Adam Litkec79fb752007-11-14 16:59:38 -0800492 mapping = (struct address_space *) page_private(page);
Andy Whitcrofte5df70a2008-02-23 15:23:32 -0800493 set_page_private(page, 0);
Adam Litke7893d1d2007-10-16 01:26:18 -0700494 BUG_ON(page_count(page));
David Gibson27a85ef2006-03-22 00:08:56 -0800495 INIT_LIST_HEAD(&page->lru);
496
497 spin_lock(&hugetlb_lock);
Andi Kleenaa888a72008-07-23 21:27:47 -0700498 if (h->surplus_huge_pages_node[nid] && huge_page_order(h) < MAX_ORDER) {
Andi Kleena5516432008-07-23 21:27:41 -0700499 update_and_free_page(h, page);
500 h->surplus_huge_pages--;
501 h->surplus_huge_pages_node[nid]--;
Adam Litke7893d1d2007-10-16 01:26:18 -0700502 } else {
Andi Kleena5516432008-07-23 21:27:41 -0700503 enqueue_huge_page(h, page);
Adam Litke7893d1d2007-10-16 01:26:18 -0700504 }
David Gibson27a85ef2006-03-22 00:08:56 -0800505 spin_unlock(&hugetlb_lock);
Adam Litkec79fb752007-11-14 16:59:38 -0800506 if (mapping)
Adam Litke9a119c02007-11-14 16:59:41 -0800507 hugetlb_put_quota(mapping, 1);
David Gibson27a85ef2006-03-22 00:08:56 -0800508}
509
Adam Litke7893d1d2007-10-16 01:26:18 -0700510/*
511 * Increment or decrement surplus_huge_pages. Keep node-specific counters
512 * balanced by operating on them in a round-robin fashion.
513 * Returns 1 if an adjustment was made.
514 */
Andi Kleena5516432008-07-23 21:27:41 -0700515static int adjust_pool_surplus(struct hstate *h, int delta)
Adam Litke7893d1d2007-10-16 01:26:18 -0700516{
517 static int prev_nid;
518 int nid = prev_nid;
519 int ret = 0;
520
521 VM_BUG_ON(delta != -1 && delta != 1);
522 do {
523 nid = next_node(nid, node_online_map);
524 if (nid == MAX_NUMNODES)
525 nid = first_node(node_online_map);
526
527 /* To shrink on this node, there must be a surplus page */
Andi Kleena5516432008-07-23 21:27:41 -0700528 if (delta < 0 && !h->surplus_huge_pages_node[nid])
Adam Litke7893d1d2007-10-16 01:26:18 -0700529 continue;
530 /* Surplus cannot exceed the total number of pages */
Andi Kleena5516432008-07-23 21:27:41 -0700531 if (delta > 0 && h->surplus_huge_pages_node[nid] >=
532 h->nr_huge_pages_node[nid])
Adam Litke7893d1d2007-10-16 01:26:18 -0700533 continue;
534
Andi Kleena5516432008-07-23 21:27:41 -0700535 h->surplus_huge_pages += delta;
536 h->surplus_huge_pages_node[nid] += delta;
Adam Litke7893d1d2007-10-16 01:26:18 -0700537 ret = 1;
538 break;
539 } while (nid != prev_nid);
540
541 prev_nid = nid;
542 return ret;
543}
544
Andi Kleena5516432008-07-23 21:27:41 -0700545static void prep_new_huge_page(struct hstate *h, struct page *page, int nid)
Andi Kleenb7ba30c2008-07-23 21:27:40 -0700546{
547 set_compound_page_dtor(page, free_huge_page);
548 spin_lock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -0700549 h->nr_huge_pages++;
550 h->nr_huge_pages_node[nid]++;
Andi Kleenb7ba30c2008-07-23 21:27:40 -0700551 spin_unlock(&hugetlb_lock);
552 put_page(page); /* free it into the hugepage allocator */
553}
554
Andi Kleena5516432008-07-23 21:27:41 -0700555static struct page *alloc_fresh_huge_page_node(struct hstate *h, int nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct page *page;
Joe Jinf96efd52007-07-15 23:38:12 -0700558
Andi Kleenaa888a72008-07-23 21:27:47 -0700559 if (h->order >= MAX_ORDER)
560 return NULL;
561
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700562 page = alloc_pages_node(nid,
Nishanth Aravamudan551883a2008-04-29 00:58:26 -0700563 htlb_alloc_mask|__GFP_COMP|__GFP_THISNODE|
564 __GFP_REPEAT|__GFP_NOWARN,
Andi Kleena5516432008-07-23 21:27:41 -0700565 huge_page_order(h));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (page) {
Gerald Schaefer7f2e9522008-04-28 02:13:29 -0700567 if (arch_prepare_hugepage(page)) {
568 __free_pages(page, HUGETLB_PAGE_ORDER);
Harvey Harrison7b8ee842008-04-28 14:13:19 -0700569 return NULL;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -0700570 }
Andi Kleena5516432008-07-23 21:27:41 -0700571 prep_new_huge_page(h, page, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700573
574 return page;
575}
576
Andi Kleen5ced66c2008-07-23 21:27:45 -0700577/*
578 * Use a helper variable to find the next node and then
579 * copy it back to hugetlb_next_nid afterwards:
580 * otherwise there's a window in which a racer might
581 * pass invalid nid MAX_NUMNODES to alloc_pages_node.
582 * But we don't need to use a spin_lock here: it really
583 * doesn't matter if occasionally a racer chooses the
584 * same nid as we do. Move nid forward in the mask even
585 * if we just successfully allocated a hugepage so that
586 * the next caller gets hugepages on the next node.
587 */
588static int hstate_next_node(struct hstate *h)
589{
590 int next_nid;
591 next_nid = next_node(h->hugetlb_next_nid, node_online_map);
592 if (next_nid == MAX_NUMNODES)
593 next_nid = first_node(node_online_map);
594 h->hugetlb_next_nid = next_nid;
595 return next_nid;
596}
597
Andi Kleena5516432008-07-23 21:27:41 -0700598static int alloc_fresh_huge_page(struct hstate *h)
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700599{
600 struct page *page;
601 int start_nid;
602 int next_nid;
603 int ret = 0;
604
Andi Kleena5516432008-07-23 21:27:41 -0700605 start_nid = h->hugetlb_next_nid;
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700606
607 do {
Andi Kleena5516432008-07-23 21:27:41 -0700608 page = alloc_fresh_huge_page_node(h, h->hugetlb_next_nid);
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700609 if (page)
610 ret = 1;
Andi Kleen5ced66c2008-07-23 21:27:45 -0700611 next_nid = hstate_next_node(h);
Andi Kleena5516432008-07-23 21:27:41 -0700612 } while (!page && h->hugetlb_next_nid != start_nid);
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700613
Adam Litke3b116302008-04-28 02:13:06 -0700614 if (ret)
615 count_vm_event(HTLB_BUDDY_PGALLOC);
616 else
617 count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
618
Nishanth Aravamudan63b46132007-10-16 01:26:24 -0700619 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620}
621
Andi Kleena5516432008-07-23 21:27:41 -0700622static struct page *alloc_buddy_huge_page(struct hstate *h,
623 struct vm_area_struct *vma, unsigned long address)
Adam Litke7893d1d2007-10-16 01:26:18 -0700624{
625 struct page *page;
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800626 unsigned int nid;
Adam Litke7893d1d2007-10-16 01:26:18 -0700627
Andi Kleenaa888a72008-07-23 21:27:47 -0700628 if (h->order >= MAX_ORDER)
629 return NULL;
630
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800631 /*
632 * Assume we will successfully allocate the surplus page to
633 * prevent racing processes from causing the surplus to exceed
634 * overcommit
635 *
636 * This however introduces a different race, where a process B
637 * tries to grow the static hugepage pool while alloc_pages() is
638 * called by process A. B will only examine the per-node
639 * counters in determining if surplus huge pages can be
640 * converted to normal huge pages in adjust_pool_surplus(). A
641 * won't be able to increment the per-node counter, until the
642 * lock is dropped by B, but B doesn't drop hugetlb_lock until
643 * no more huge pages can be converted from surplus to normal
644 * state (and doesn't try to convert again). Thus, we have a
645 * case where a surplus huge page exists, the pool is grown, and
646 * the surplus huge page still exists after, even though it
647 * should just have been converted to a normal huge page. This
648 * does not leak memory, though, as the hugepage will be freed
649 * once it is out of use. It also does not allow the counters to
650 * go out of whack in adjust_pool_surplus() as we don't modify
651 * the node values until we've gotten the hugepage and only the
652 * per-node value is checked there.
653 */
654 spin_lock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -0700655 if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages) {
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800656 spin_unlock(&hugetlb_lock);
657 return NULL;
658 } else {
Andi Kleena5516432008-07-23 21:27:41 -0700659 h->nr_huge_pages++;
660 h->surplus_huge_pages++;
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800661 }
662 spin_unlock(&hugetlb_lock);
663
Nishanth Aravamudan551883a2008-04-29 00:58:26 -0700664 page = alloc_pages(htlb_alloc_mask|__GFP_COMP|
665 __GFP_REPEAT|__GFP_NOWARN,
Andi Kleena5516432008-07-23 21:27:41 -0700666 huge_page_order(h));
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800667
668 spin_lock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700669 if (page) {
Adam Litke2668db92008-03-10 11:43:50 -0700670 /*
671 * This page is now managed by the hugetlb allocator and has
672 * no users -- drop the buddy allocator's reference.
673 */
674 put_page_testzero(page);
675 VM_BUG_ON(page_count(page));
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800676 nid = page_to_nid(page);
Adam Litke7893d1d2007-10-16 01:26:18 -0700677 set_compound_page_dtor(page, free_huge_page);
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800678 /*
679 * We incremented the global counters already
680 */
Andi Kleena5516432008-07-23 21:27:41 -0700681 h->nr_huge_pages_node[nid]++;
682 h->surplus_huge_pages_node[nid]++;
Adam Litke3b116302008-04-28 02:13:06 -0700683 __count_vm_event(HTLB_BUDDY_PGALLOC);
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800684 } else {
Andi Kleena5516432008-07-23 21:27:41 -0700685 h->nr_huge_pages--;
686 h->surplus_huge_pages--;
Adam Litke3b116302008-04-28 02:13:06 -0700687 __count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
Adam Litke7893d1d2007-10-16 01:26:18 -0700688 }
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800689 spin_unlock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -0700690
691 return page;
692}
693
Adam Litkee4e574b2007-10-16 01:26:19 -0700694/*
695 * Increase the hugetlb pool such that it can accomodate a reservation
696 * of size 'delta'.
697 */
Andi Kleena5516432008-07-23 21:27:41 -0700698static int gather_surplus_pages(struct hstate *h, int delta)
Adam Litkee4e574b2007-10-16 01:26:19 -0700699{
700 struct list_head surplus_list;
701 struct page *page, *tmp;
702 int ret, i;
703 int needed, allocated;
704
Andi Kleena5516432008-07-23 21:27:41 -0700705 needed = (h->resv_huge_pages + delta) - h->free_huge_pages;
Adam Litkeac09b3a2008-03-04 14:29:38 -0800706 if (needed <= 0) {
Andi Kleena5516432008-07-23 21:27:41 -0700707 h->resv_huge_pages += delta;
Adam Litkee4e574b2007-10-16 01:26:19 -0700708 return 0;
Adam Litkeac09b3a2008-03-04 14:29:38 -0800709 }
Adam Litkee4e574b2007-10-16 01:26:19 -0700710
711 allocated = 0;
712 INIT_LIST_HEAD(&surplus_list);
713
714 ret = -ENOMEM;
715retry:
716 spin_unlock(&hugetlb_lock);
717 for (i = 0; i < needed; i++) {
Andi Kleena5516432008-07-23 21:27:41 -0700718 page = alloc_buddy_huge_page(h, NULL, 0);
Adam Litkee4e574b2007-10-16 01:26:19 -0700719 if (!page) {
720 /*
721 * We were not able to allocate enough pages to
722 * satisfy the entire reservation so we free what
723 * we've allocated so far.
724 */
725 spin_lock(&hugetlb_lock);
726 needed = 0;
727 goto free;
728 }
729
730 list_add(&page->lru, &surplus_list);
731 }
732 allocated += needed;
733
734 /*
735 * After retaking hugetlb_lock, we need to recalculate 'needed'
736 * because either resv_huge_pages or free_huge_pages may have changed.
737 */
738 spin_lock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -0700739 needed = (h->resv_huge_pages + delta) -
740 (h->free_huge_pages + allocated);
Adam Litkee4e574b2007-10-16 01:26:19 -0700741 if (needed > 0)
742 goto retry;
743
744 /*
745 * The surplus_list now contains _at_least_ the number of extra pages
746 * needed to accomodate the reservation. Add the appropriate number
747 * of pages to the hugetlb pool and free the extras back to the buddy
Adam Litkeac09b3a2008-03-04 14:29:38 -0800748 * allocator. Commit the entire reservation here to prevent another
749 * process from stealing the pages as they are added to the pool but
750 * before they are reserved.
Adam Litkee4e574b2007-10-16 01:26:19 -0700751 */
752 needed += allocated;
Andi Kleena5516432008-07-23 21:27:41 -0700753 h->resv_huge_pages += delta;
Adam Litkee4e574b2007-10-16 01:26:19 -0700754 ret = 0;
755free:
Adam Litke19fc3f02008-04-28 02:12:20 -0700756 /* Free the needed pages to the hugetlb pool */
Adam Litkee4e574b2007-10-16 01:26:19 -0700757 list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
Adam Litke19fc3f02008-04-28 02:12:20 -0700758 if ((--needed) < 0)
759 break;
Adam Litkee4e574b2007-10-16 01:26:19 -0700760 list_del(&page->lru);
Andi Kleena5516432008-07-23 21:27:41 -0700761 enqueue_huge_page(h, page);
Adam Litke19fc3f02008-04-28 02:12:20 -0700762 }
763
764 /* Free unnecessary surplus pages to the buddy allocator */
765 if (!list_empty(&surplus_list)) {
766 spin_unlock(&hugetlb_lock);
767 list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
768 list_del(&page->lru);
Adam Litkeaf767cb2007-10-16 01:26:25 -0700769 /*
Adam Litke2668db92008-03-10 11:43:50 -0700770 * The page has a reference count of zero already, so
771 * call free_huge_page directly instead of using
772 * put_page. This must be done with hugetlb_lock
Adam Litkeaf767cb2007-10-16 01:26:25 -0700773 * unlocked which is safe because free_huge_page takes
774 * hugetlb_lock before deciding how to free the page.
775 */
Adam Litke2668db92008-03-10 11:43:50 -0700776 free_huge_page(page);
Adam Litkeaf767cb2007-10-16 01:26:25 -0700777 }
Adam Litke19fc3f02008-04-28 02:12:20 -0700778 spin_lock(&hugetlb_lock);
Adam Litkee4e574b2007-10-16 01:26:19 -0700779 }
780
781 return ret;
782}
783
784/*
785 * When releasing a hugetlb pool reservation, any surplus pages that were
786 * allocated to satisfy the reservation must be explicitly freed if they were
787 * never used.
788 */
Andi Kleena5516432008-07-23 21:27:41 -0700789static void return_unused_surplus_pages(struct hstate *h,
790 unsigned long unused_resv_pages)
Adam Litkee4e574b2007-10-16 01:26:19 -0700791{
792 static int nid = -1;
793 struct page *page;
794 unsigned long nr_pages;
795
Nishanth Aravamudan11320d12008-03-26 14:40:20 -0700796 /*
797 * We want to release as many surplus pages as possible, spread
798 * evenly across all nodes. Iterate across all nodes until we
799 * can no longer free unreserved surplus pages. This occurs when
800 * the nodes with surplus pages have no free pages.
801 */
802 unsigned long remaining_iterations = num_online_nodes();
803
Adam Litkeac09b3a2008-03-04 14:29:38 -0800804 /* Uncommit the reservation */
Andi Kleena5516432008-07-23 21:27:41 -0700805 h->resv_huge_pages -= unused_resv_pages;
Adam Litkeac09b3a2008-03-04 14:29:38 -0800806
Andi Kleenaa888a72008-07-23 21:27:47 -0700807 /* Cannot return gigantic pages currently */
808 if (h->order >= MAX_ORDER)
809 return;
810
Andi Kleena5516432008-07-23 21:27:41 -0700811 nr_pages = min(unused_resv_pages, h->surplus_huge_pages);
Adam Litkee4e574b2007-10-16 01:26:19 -0700812
Nishanth Aravamudan11320d12008-03-26 14:40:20 -0700813 while (remaining_iterations-- && nr_pages) {
Adam Litkee4e574b2007-10-16 01:26:19 -0700814 nid = next_node(nid, node_online_map);
815 if (nid == MAX_NUMNODES)
816 nid = first_node(node_online_map);
817
Andi Kleena5516432008-07-23 21:27:41 -0700818 if (!h->surplus_huge_pages_node[nid])
Adam Litkee4e574b2007-10-16 01:26:19 -0700819 continue;
820
Andi Kleena5516432008-07-23 21:27:41 -0700821 if (!list_empty(&h->hugepage_freelists[nid])) {
822 page = list_entry(h->hugepage_freelists[nid].next,
Adam Litkee4e574b2007-10-16 01:26:19 -0700823 struct page, lru);
824 list_del(&page->lru);
Andi Kleena5516432008-07-23 21:27:41 -0700825 update_and_free_page(h, page);
826 h->free_huge_pages--;
827 h->free_huge_pages_node[nid]--;
828 h->surplus_huge_pages--;
829 h->surplus_huge_pages_node[nid]--;
Adam Litkee4e574b2007-10-16 01:26:19 -0700830 nr_pages--;
Nishanth Aravamudan11320d12008-03-26 14:40:20 -0700831 remaining_iterations = num_online_nodes();
Adam Litkee4e574b2007-10-16 01:26:19 -0700832 }
833 }
834}
835
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700836/*
837 * Determine if the huge page at addr within the vma has an associated
838 * reservation. Where it does not we will need to logically increase
839 * reservation and actually increase quota before an allocation can occur.
840 * Where any new reservation would be required the reservation change is
841 * prepared, but not committed. Once the page has been quota'd allocated
842 * an instantiated the change should be committed via vma_commit_reservation.
843 * No action is required on failure.
844 */
Andi Kleena5516432008-07-23 21:27:41 -0700845static int vma_needs_reservation(struct hstate *h,
846 struct vm_area_struct *vma, unsigned long addr)
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700847{
848 struct address_space *mapping = vma->vm_file->f_mapping;
849 struct inode *inode = mapping->host;
850
851 if (vma->vm_flags & VM_SHARED) {
Andi Kleena5516432008-07-23 21:27:41 -0700852 pgoff_t idx = vma_hugecache_offset(h, vma, addr);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700853 return region_chg(&inode->i_mapping->private_list,
854 idx, idx + 1);
855
Andy Whitcroft84afd992008-07-23 21:27:32 -0700856 } else if (!is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
857 return 1;
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700858
Andy Whitcroft84afd992008-07-23 21:27:32 -0700859 } else {
860 int err;
Andi Kleena5516432008-07-23 21:27:41 -0700861 pgoff_t idx = vma_hugecache_offset(h, vma, addr);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700862 struct resv_map *reservations = vma_resv_map(vma);
863
864 err = region_chg(&reservations->regions, idx, idx + 1);
865 if (err < 0)
866 return err;
867 return 0;
868 }
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700869}
Andi Kleena5516432008-07-23 21:27:41 -0700870static void vma_commit_reservation(struct hstate *h,
871 struct vm_area_struct *vma, unsigned long addr)
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700872{
873 struct address_space *mapping = vma->vm_file->f_mapping;
874 struct inode *inode = mapping->host;
875
876 if (vma->vm_flags & VM_SHARED) {
Andi Kleena5516432008-07-23 21:27:41 -0700877 pgoff_t idx = vma_hugecache_offset(h, vma, addr);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700878 region_add(&inode->i_mapping->private_list, idx, idx + 1);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700879
880 } else if (is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
Andi Kleena5516432008-07-23 21:27:41 -0700881 pgoff_t idx = vma_hugecache_offset(h, vma, addr);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700882 struct resv_map *reservations = vma_resv_map(vma);
883
884 /* Mark this page used in the map. */
885 region_add(&reservations->regions, idx, idx + 1);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700886 }
887}
888
David Gibson27a85ef2006-03-22 00:08:56 -0800889static struct page *alloc_huge_page(struct vm_area_struct *vma,
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700890 unsigned long addr, int avoid_reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Andi Kleena5516432008-07-23 21:27:41 -0700892 struct hstate *h = hstate_vma(vma);
Adam Litke348ea202007-11-14 16:59:37 -0800893 struct page *page;
Adam Litke2fc39ce2007-11-14 16:59:39 -0800894 struct address_space *mapping = vma->vm_file->f_mapping;
Mel Gormana1e78772008-07-23 21:27:23 -0700895 struct inode *inode = mapping->host;
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700896 unsigned int chg;
Adam Litke2fc39ce2007-11-14 16:59:39 -0800897
Mel Gormana1e78772008-07-23 21:27:23 -0700898 /*
899 * Processes that did not create the mapping will have no reserves and
900 * will not have accounted against quota. Check that the quota can be
901 * made before satisfying the allocation
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700902 * MAP_NORESERVE mappings may also need pages and quota allocated
903 * if no reserve mapping overlaps.
Mel Gormana1e78772008-07-23 21:27:23 -0700904 */
Andi Kleena5516432008-07-23 21:27:41 -0700905 chg = vma_needs_reservation(h, vma, addr);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700906 if (chg < 0)
907 return ERR_PTR(chg);
908 if (chg)
Mel Gormana1e78772008-07-23 21:27:23 -0700909 if (hugetlb_get_quota(inode->i_mapping, chg))
910 return ERR_PTR(-ENOSPC);
Mel Gormana1e78772008-07-23 21:27:23 -0700911
912 spin_lock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -0700913 page = dequeue_huge_page_vma(h, vma, addr, avoid_reserve);
Mel Gormana1e78772008-07-23 21:27:23 -0700914 spin_unlock(&hugetlb_lock);
915
916 if (!page) {
Andi Kleena5516432008-07-23 21:27:41 -0700917 page = alloc_buddy_huge_page(h, vma, addr);
Mel Gormana1e78772008-07-23 21:27:23 -0700918 if (!page) {
919 hugetlb_put_quota(inode->i_mapping, chg);
920 return ERR_PTR(-VM_FAULT_OOM);
921 }
922 }
923
924 set_page_refcounted(page);
925 set_page_private(page, (unsigned long) mapping);
926
Andi Kleena5516432008-07-23 21:27:41 -0700927 vma_commit_reservation(h, vma, addr);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -0700928
Adam Litke90d8b7e2007-11-14 16:59:42 -0800929 return page;
David Gibsonb45b5bd2006-03-22 00:08:55 -0800930}
931
Jon Tollefson53ba51d2008-07-23 21:27:52 -0700932__attribute__((weak)) int alloc_bootmem_huge_page(struct hstate *h)
Andi Kleenaa888a72008-07-23 21:27:47 -0700933{
934 struct huge_bootmem_page *m;
935 int nr_nodes = nodes_weight(node_online_map);
936
937 while (nr_nodes) {
938 void *addr;
939
940 addr = __alloc_bootmem_node_nopanic(
941 NODE_DATA(h->hugetlb_next_nid),
942 huge_page_size(h), huge_page_size(h), 0);
943
944 if (addr) {
945 /*
946 * Use the beginning of the huge page to store the
947 * huge_bootmem_page struct (until gather_bootmem
948 * puts them into the mem_map).
949 */
950 m = addr;
951 if (m)
952 goto found;
953 }
954 hstate_next_node(h);
955 nr_nodes--;
956 }
957 return 0;
958
959found:
960 BUG_ON((unsigned long)virt_to_phys(m) & (huge_page_size(h) - 1));
961 /* Put them into a private list first because mem_map is not up yet */
962 list_add(&m->list, &huge_boot_pages);
963 m->hstate = h;
964 return 1;
965}
966
967/* Put bootmem huge pages into the standard lists after mem_map is up */
968static void __init gather_bootmem_prealloc(void)
969{
970 struct huge_bootmem_page *m;
971
972 list_for_each_entry(m, &huge_boot_pages, list) {
973 struct page *page = virt_to_page(m);
974 struct hstate *h = m->hstate;
975 __ClearPageReserved(page);
976 WARN_ON(page_count(page) != 1);
977 prep_compound_page(page, h->order);
978 prep_new_huge_page(h, page, page_to_nid(page));
979 }
980}
981
Andi Kleen8faa8b02008-07-23 21:27:48 -0700982static void __init hugetlb_hstate_alloc_pages(struct hstate *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
984 unsigned long i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Andi Kleene5ff2152008-07-23 21:27:42 -0700986 for (i = 0; i < h->max_huge_pages; ++i) {
Andi Kleenaa888a72008-07-23 21:27:47 -0700987 if (h->order >= MAX_ORDER) {
988 if (!alloc_bootmem_huge_page(h))
989 break;
990 } else if (!alloc_fresh_huge_page(h))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
Andi Kleen8faa8b02008-07-23 21:27:48 -0700993 h->max_huge_pages = i;
Andi Kleene5ff2152008-07-23 21:27:42 -0700994}
995
996static void __init hugetlb_init_hstates(void)
997{
998 struct hstate *h;
999
1000 for_each_hstate(h) {
Andi Kleen8faa8b02008-07-23 21:27:48 -07001001 /* oversize hugepages were init'ed in early boot */
1002 if (h->order < MAX_ORDER)
1003 hugetlb_hstate_alloc_pages(h);
Andi Kleene5ff2152008-07-23 21:27:42 -07001004 }
1005}
1006
Andi Kleen4abd32d2008-07-23 21:27:49 -07001007static char * __init memfmt(char *buf, unsigned long n)
1008{
1009 if (n >= (1UL << 30))
1010 sprintf(buf, "%lu GB", n >> 30);
1011 else if (n >= (1UL << 20))
1012 sprintf(buf, "%lu MB", n >> 20);
1013 else
1014 sprintf(buf, "%lu KB", n >> 10);
1015 return buf;
1016}
1017
Andi Kleene5ff2152008-07-23 21:27:42 -07001018static void __init report_hugepages(void)
1019{
1020 struct hstate *h;
1021
1022 for_each_hstate(h) {
Andi Kleen4abd32d2008-07-23 21:27:49 -07001023 char buf[32];
1024 printk(KERN_INFO "HugeTLB registered %s page size, "
1025 "pre-allocated %ld pages\n",
1026 memfmt(buf, huge_page_size(h)),
1027 h->free_huge_pages);
Andi Kleene5ff2152008-07-23 21:27:42 -07001028 }
1029}
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031#ifdef CONFIG_HIGHMEM
Andi Kleena5516432008-07-23 21:27:41 -07001032static void try_to_free_low(struct hstate *h, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
Christoph Lameter4415cc82006-09-25 23:31:55 -07001034 int i;
1035
Andi Kleenaa888a72008-07-23 21:27:47 -07001036 if (h->order >= MAX_ORDER)
1037 return;
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 for (i = 0; i < MAX_NUMNODES; ++i) {
1040 struct page *page, *next;
Andi Kleena5516432008-07-23 21:27:41 -07001041 struct list_head *freel = &h->hugepage_freelists[i];
1042 list_for_each_entry_safe(page, next, freel, lru) {
1043 if (count >= h->nr_huge_pages)
Adam Litke6b0c8802007-10-16 01:26:23 -07001044 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (PageHighMem(page))
1046 continue;
1047 list_del(&page->lru);
Andi Kleene5ff2152008-07-23 21:27:42 -07001048 update_and_free_page(h, page);
Andi Kleena5516432008-07-23 21:27:41 -07001049 h->free_huge_pages--;
1050 h->free_huge_pages_node[page_to_nid(page)]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 }
1052 }
1053}
1054#else
Andi Kleena5516432008-07-23 21:27:41 -07001055static inline void try_to_free_low(struct hstate *h, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
1057}
1058#endif
1059
Andi Kleena5516432008-07-23 21:27:41 -07001060#define persistent_huge_pages(h) (h->nr_huge_pages - h->surplus_huge_pages)
Andi Kleene5ff2152008-07-23 21:27:42 -07001061static unsigned long set_max_huge_pages(struct hstate *h, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Adam Litke7893d1d2007-10-16 01:26:18 -07001063 unsigned long min_count, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Andi Kleenaa888a72008-07-23 21:27:47 -07001065 if (h->order >= MAX_ORDER)
1066 return h->max_huge_pages;
1067
Adam Litke7893d1d2007-10-16 01:26:18 -07001068 /*
1069 * Increase the pool size
1070 * First take pages out of surplus state. Then make up the
1071 * remaining difference by allocating fresh huge pages.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001072 *
1073 * We might race with alloc_buddy_huge_page() here and be unable
1074 * to convert a surplus huge page to a normal huge page. That is
1075 * not critical, though, it just means the overall size of the
1076 * pool might be one hugepage larger than it needs to be, but
1077 * within all the constraints specified by the sysctls.
Adam Litke7893d1d2007-10-16 01:26:18 -07001078 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 spin_lock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -07001080 while (h->surplus_huge_pages && count > persistent_huge_pages(h)) {
1081 if (!adjust_pool_surplus(h, -1))
Adam Litke7893d1d2007-10-16 01:26:18 -07001082 break;
1083 }
1084
Andi Kleena5516432008-07-23 21:27:41 -07001085 while (count > persistent_huge_pages(h)) {
Adam Litke7893d1d2007-10-16 01:26:18 -07001086 /*
1087 * If this allocation races such that we no longer need the
1088 * page, free_huge_page will handle it by freeing the page
1089 * and reducing the surplus.
1090 */
1091 spin_unlock(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -07001092 ret = alloc_fresh_huge_page(h);
Adam Litke7893d1d2007-10-16 01:26:18 -07001093 spin_lock(&hugetlb_lock);
1094 if (!ret)
1095 goto out;
1096
1097 }
Adam Litke7893d1d2007-10-16 01:26:18 -07001098
1099 /*
1100 * Decrease the pool size
1101 * First return free pages to the buddy allocator (being careful
1102 * to keep enough around to satisfy reservations). Then place
1103 * pages into surplus state as needed so the pool will shrink
1104 * to the desired size as pages become free.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001105 *
1106 * By placing pages into the surplus state independent of the
1107 * overcommit value, we are allowing the surplus pool size to
1108 * exceed overcommit. There are few sane options here. Since
1109 * alloc_buddy_huge_page() is checking the global counter,
1110 * though, we'll note that we're not allowed to exceed surplus
1111 * and won't grow the pool anywhere else. Not until one of the
1112 * sysctls are changed, or the surplus pages go out of use.
Adam Litke7893d1d2007-10-16 01:26:18 -07001113 */
Andi Kleena5516432008-07-23 21:27:41 -07001114 min_count = h->resv_huge_pages + h->nr_huge_pages - h->free_huge_pages;
Adam Litke6b0c8802007-10-16 01:26:23 -07001115 min_count = max(count, min_count);
Andi Kleena5516432008-07-23 21:27:41 -07001116 try_to_free_low(h, min_count);
1117 while (min_count < persistent_huge_pages(h)) {
1118 struct page *page = dequeue_huge_page(h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 if (!page)
1120 break;
Andi Kleena5516432008-07-23 21:27:41 -07001121 update_and_free_page(h, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
Andi Kleena5516432008-07-23 21:27:41 -07001123 while (count < persistent_huge_pages(h)) {
1124 if (!adjust_pool_surplus(h, 1))
Adam Litke7893d1d2007-10-16 01:26:18 -07001125 break;
1126 }
1127out:
Andi Kleena5516432008-07-23 21:27:41 -07001128 ret = persistent_huge_pages(h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 spin_unlock(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -07001130 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131}
1132
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001133#define HSTATE_ATTR_RO(_name) \
1134 static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
1135
1136#define HSTATE_ATTR(_name) \
1137 static struct kobj_attribute _name##_attr = \
1138 __ATTR(_name, 0644, _name##_show, _name##_store)
1139
1140static struct kobject *hugepages_kobj;
1141static struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
1142
1143static struct hstate *kobj_to_hstate(struct kobject *kobj)
1144{
1145 int i;
1146 for (i = 0; i < HUGE_MAX_HSTATE; i++)
1147 if (hstate_kobjs[i] == kobj)
1148 return &hstates[i];
1149 BUG();
1150 return NULL;
1151}
1152
1153static ssize_t nr_hugepages_show(struct kobject *kobj,
1154 struct kobj_attribute *attr, char *buf)
1155{
1156 struct hstate *h = kobj_to_hstate(kobj);
1157 return sprintf(buf, "%lu\n", h->nr_huge_pages);
1158}
1159static ssize_t nr_hugepages_store(struct kobject *kobj,
1160 struct kobj_attribute *attr, const char *buf, size_t count)
1161{
1162 int err;
1163 unsigned long input;
1164 struct hstate *h = kobj_to_hstate(kobj);
1165
1166 err = strict_strtoul(buf, 10, &input);
1167 if (err)
1168 return 0;
1169
1170 h->max_huge_pages = set_max_huge_pages(h, input);
1171
1172 return count;
1173}
1174HSTATE_ATTR(nr_hugepages);
1175
1176static ssize_t nr_overcommit_hugepages_show(struct kobject *kobj,
1177 struct kobj_attribute *attr, char *buf)
1178{
1179 struct hstate *h = kobj_to_hstate(kobj);
1180 return sprintf(buf, "%lu\n", h->nr_overcommit_huge_pages);
1181}
1182static ssize_t nr_overcommit_hugepages_store(struct kobject *kobj,
1183 struct kobj_attribute *attr, const char *buf, size_t count)
1184{
1185 int err;
1186 unsigned long input;
1187 struct hstate *h = kobj_to_hstate(kobj);
1188
1189 err = strict_strtoul(buf, 10, &input);
1190 if (err)
1191 return 0;
1192
1193 spin_lock(&hugetlb_lock);
1194 h->nr_overcommit_huge_pages = input;
1195 spin_unlock(&hugetlb_lock);
1196
1197 return count;
1198}
1199HSTATE_ATTR(nr_overcommit_hugepages);
1200
1201static ssize_t free_hugepages_show(struct kobject *kobj,
1202 struct kobj_attribute *attr, char *buf)
1203{
1204 struct hstate *h = kobj_to_hstate(kobj);
1205 return sprintf(buf, "%lu\n", h->free_huge_pages);
1206}
1207HSTATE_ATTR_RO(free_hugepages);
1208
1209static ssize_t resv_hugepages_show(struct kobject *kobj,
1210 struct kobj_attribute *attr, char *buf)
1211{
1212 struct hstate *h = kobj_to_hstate(kobj);
1213 return sprintf(buf, "%lu\n", h->resv_huge_pages);
1214}
1215HSTATE_ATTR_RO(resv_hugepages);
1216
1217static ssize_t surplus_hugepages_show(struct kobject *kobj,
1218 struct kobj_attribute *attr, char *buf)
1219{
1220 struct hstate *h = kobj_to_hstate(kobj);
1221 return sprintf(buf, "%lu\n", h->surplus_huge_pages);
1222}
1223HSTATE_ATTR_RO(surplus_hugepages);
1224
1225static struct attribute *hstate_attrs[] = {
1226 &nr_hugepages_attr.attr,
1227 &nr_overcommit_hugepages_attr.attr,
1228 &free_hugepages_attr.attr,
1229 &resv_hugepages_attr.attr,
1230 &surplus_hugepages_attr.attr,
1231 NULL,
1232};
1233
1234static struct attribute_group hstate_attr_group = {
1235 .attrs = hstate_attrs,
1236};
1237
1238static int __init hugetlb_sysfs_add_hstate(struct hstate *h)
1239{
1240 int retval;
1241
1242 hstate_kobjs[h - hstates] = kobject_create_and_add(h->name,
1243 hugepages_kobj);
1244 if (!hstate_kobjs[h - hstates])
1245 return -ENOMEM;
1246
1247 retval = sysfs_create_group(hstate_kobjs[h - hstates],
1248 &hstate_attr_group);
1249 if (retval)
1250 kobject_put(hstate_kobjs[h - hstates]);
1251
1252 return retval;
1253}
1254
1255static void __init hugetlb_sysfs_init(void)
1256{
1257 struct hstate *h;
1258 int err;
1259
1260 hugepages_kobj = kobject_create_and_add("hugepages", mm_kobj);
1261 if (!hugepages_kobj)
1262 return;
1263
1264 for_each_hstate(h) {
1265 err = hugetlb_sysfs_add_hstate(h);
1266 if (err)
1267 printk(KERN_ERR "Hugetlb: Unable to add hstate %s",
1268 h->name);
1269 }
1270}
1271
1272static void __exit hugetlb_exit(void)
1273{
1274 struct hstate *h;
1275
1276 for_each_hstate(h) {
1277 kobject_put(hstate_kobjs[h - hstates]);
1278 }
1279
1280 kobject_put(hugepages_kobj);
1281}
1282module_exit(hugetlb_exit);
1283
1284static int __init hugetlb_init(void)
1285{
1286 BUILD_BUG_ON(HPAGE_SHIFT == 0);
1287
Nick Piggine11bfbf2008-07-23 21:27:52 -07001288 if (!size_to_hstate(default_hstate_size)) {
1289 default_hstate_size = HPAGE_SIZE;
1290 if (!size_to_hstate(default_hstate_size))
1291 hugetlb_add_hstate(HUGETLB_PAGE_ORDER);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001292 }
Nick Piggine11bfbf2008-07-23 21:27:52 -07001293 default_hstate_idx = size_to_hstate(default_hstate_size) - hstates;
1294 if (default_hstate_max_huge_pages)
1295 default_hstate.max_huge_pages = default_hstate_max_huge_pages;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001296
1297 hugetlb_init_hstates();
1298
Andi Kleenaa888a72008-07-23 21:27:47 -07001299 gather_bootmem_prealloc();
1300
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001301 report_hugepages();
1302
1303 hugetlb_sysfs_init();
1304
1305 return 0;
1306}
1307module_init(hugetlb_init);
1308
1309/* Should be called on processing a hugepagesz=... option */
1310void __init hugetlb_add_hstate(unsigned order)
1311{
1312 struct hstate *h;
Andi Kleen8faa8b02008-07-23 21:27:48 -07001313 unsigned long i;
1314
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001315 if (size_to_hstate(PAGE_SIZE << order)) {
1316 printk(KERN_WARNING "hugepagesz= specified twice, ignoring\n");
1317 return;
1318 }
1319 BUG_ON(max_hstate >= HUGE_MAX_HSTATE);
1320 BUG_ON(order == 0);
1321 h = &hstates[max_hstate++];
1322 h->order = order;
1323 h->mask = ~((1ULL << (order + PAGE_SHIFT)) - 1);
Andi Kleen8faa8b02008-07-23 21:27:48 -07001324 h->nr_huge_pages = 0;
1325 h->free_huge_pages = 0;
1326 for (i = 0; i < MAX_NUMNODES; ++i)
1327 INIT_LIST_HEAD(&h->hugepage_freelists[i]);
1328 h->hugetlb_next_nid = first_node(node_online_map);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001329 snprintf(h->name, HSTATE_NAME_LEN, "hugepages-%lukB",
1330 huge_page_size(h)/1024);
Andi Kleen8faa8b02008-07-23 21:27:48 -07001331
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001332 parsed_hstate = h;
1333}
1334
Nick Piggine11bfbf2008-07-23 21:27:52 -07001335static int __init hugetlb_nrpages_setup(char *s)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001336{
1337 unsigned long *mhp;
Andi Kleen8faa8b02008-07-23 21:27:48 -07001338 static unsigned long *last_mhp;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001339
1340 /*
1341 * !max_hstate means we haven't parsed a hugepagesz= parameter yet,
1342 * so this hugepages= parameter goes to the "default hstate".
1343 */
1344 if (!max_hstate)
1345 mhp = &default_hstate_max_huge_pages;
1346 else
1347 mhp = &parsed_hstate->max_huge_pages;
1348
Andi Kleen8faa8b02008-07-23 21:27:48 -07001349 if (mhp == last_mhp) {
1350 printk(KERN_WARNING "hugepages= specified twice without "
1351 "interleaving hugepagesz=, ignoring\n");
1352 return 1;
1353 }
1354
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001355 if (sscanf(s, "%lu", mhp) <= 0)
1356 *mhp = 0;
1357
Andi Kleen8faa8b02008-07-23 21:27:48 -07001358 /*
1359 * Global state is always initialized later in hugetlb_init.
1360 * But we need to allocate >= MAX_ORDER hstates here early to still
1361 * use the bootmem allocator.
1362 */
1363 if (max_hstate && parsed_hstate->order >= MAX_ORDER)
1364 hugetlb_hstate_alloc_pages(parsed_hstate);
1365
1366 last_mhp = mhp;
1367
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001368 return 1;
1369}
Nick Piggine11bfbf2008-07-23 21:27:52 -07001370__setup("hugepages=", hugetlb_nrpages_setup);
1371
1372static int __init hugetlb_default_setup(char *s)
1373{
1374 default_hstate_size = memparse(s, &s);
1375 return 1;
1376}
1377__setup("default_hugepagesz=", hugetlb_default_setup);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07001378
Nishanth Aravamudan8a213462008-07-25 19:44:37 -07001379static unsigned int cpuset_mems_nr(unsigned int *array)
1380{
1381 int node;
1382 unsigned int nr = 0;
1383
1384 for_each_node_mask(node, cpuset_current_mems_allowed)
1385 nr += array[node];
1386
1387 return nr;
1388}
1389
1390#ifdef CONFIG_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391int hugetlb_sysctl_handler(struct ctl_table *table, int write,
1392 struct file *file, void __user *buffer,
1393 size_t *length, loff_t *ppos)
1394{
Andi Kleene5ff2152008-07-23 21:27:42 -07001395 struct hstate *h = &default_hstate;
1396 unsigned long tmp;
1397
1398 if (!write)
1399 tmp = h->max_huge_pages;
1400
1401 table->data = &tmp;
1402 table->maxlen = sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 proc_doulongvec_minmax(table, write, file, buffer, length, ppos);
Andi Kleene5ff2152008-07-23 21:27:42 -07001404
1405 if (write)
1406 h->max_huge_pages = set_max_huge_pages(h, tmp);
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 return 0;
1409}
Mel Gorman396faf02007-07-17 04:03:13 -07001410
1411int hugetlb_treat_movable_handler(struct ctl_table *table, int write,
1412 struct file *file, void __user *buffer,
1413 size_t *length, loff_t *ppos)
1414{
1415 proc_dointvec(table, write, file, buffer, length, ppos);
1416 if (hugepages_treat_as_movable)
1417 htlb_alloc_mask = GFP_HIGHUSER_MOVABLE;
1418 else
1419 htlb_alloc_mask = GFP_HIGHUSER;
1420 return 0;
1421}
1422
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08001423int hugetlb_overcommit_handler(struct ctl_table *table, int write,
1424 struct file *file, void __user *buffer,
1425 size_t *length, loff_t *ppos)
1426{
Andi Kleena5516432008-07-23 21:27:41 -07001427 struct hstate *h = &default_hstate;
Andi Kleene5ff2152008-07-23 21:27:42 -07001428 unsigned long tmp;
1429
1430 if (!write)
1431 tmp = h->nr_overcommit_huge_pages;
1432
1433 table->data = &tmp;
1434 table->maxlen = sizeof(unsigned long);
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08001435 proc_doulongvec_minmax(table, write, file, buffer, length, ppos);
Andi Kleene5ff2152008-07-23 21:27:42 -07001436
1437 if (write) {
1438 spin_lock(&hugetlb_lock);
1439 h->nr_overcommit_huge_pages = tmp;
1440 spin_unlock(&hugetlb_lock);
1441 }
1442
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08001443 return 0;
1444}
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446#endif /* CONFIG_SYSCTL */
1447
1448int hugetlb_report_meminfo(char *buf)
1449{
Andi Kleena5516432008-07-23 21:27:41 -07001450 struct hstate *h = &default_hstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 return sprintf(buf,
1452 "HugePages_Total: %5lu\n"
1453 "HugePages_Free: %5lu\n"
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07001454 "HugePages_Rsvd: %5lu\n"
Adam Litke7893d1d2007-10-16 01:26:18 -07001455 "HugePages_Surp: %5lu\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 "Hugepagesize: %5lu kB\n",
Andi Kleena5516432008-07-23 21:27:41 -07001457 h->nr_huge_pages,
1458 h->free_huge_pages,
1459 h->resv_huge_pages,
1460 h->surplus_huge_pages,
1461 1UL << (huge_page_order(h) + PAGE_SHIFT - 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462}
1463
1464int hugetlb_report_node_meminfo(int nid, char *buf)
1465{
Andi Kleena5516432008-07-23 21:27:41 -07001466 struct hstate *h = &default_hstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 return sprintf(buf,
1468 "Node %d HugePages_Total: %5u\n"
Nishanth Aravamudana1de0912008-03-26 14:37:53 -07001469 "Node %d HugePages_Free: %5u\n"
1470 "Node %d HugePages_Surp: %5u\n",
Andi Kleena5516432008-07-23 21:27:41 -07001471 nid, h->nr_huge_pages_node[nid],
1472 nid, h->free_huge_pages_node[nid],
1473 nid, h->surplus_huge_pages_node[nid]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474}
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476/* Return the number pages of memory we physically have, in PAGE_SIZE units. */
1477unsigned long hugetlb_total_pages(void)
1478{
Andi Kleena5516432008-07-23 21:27:41 -07001479 struct hstate *h = &default_hstate;
1480 return h->nr_huge_pages * pages_per_huge_page(h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Andi Kleena5516432008-07-23 21:27:41 -07001483static int hugetlb_acct_memory(struct hstate *h, long delta)
Mel Gormanfc1b8a72008-07-23 21:27:22 -07001484{
1485 int ret = -ENOMEM;
1486
1487 spin_lock(&hugetlb_lock);
1488 /*
1489 * When cpuset is configured, it breaks the strict hugetlb page
1490 * reservation as the accounting is done on a global variable. Such
1491 * reservation is completely rubbish in the presence of cpuset because
1492 * the reservation is not checked against page availability for the
1493 * current cpuset. Application can still potentially OOM'ed by kernel
1494 * with lack of free htlb page in cpuset that the task is in.
1495 * Attempt to enforce strict accounting with cpuset is almost
1496 * impossible (or too ugly) because cpuset is too fluid that
1497 * task or memory node can be dynamically moved between cpusets.
1498 *
1499 * The change of semantics for shared hugetlb mapping with cpuset is
1500 * undesirable. However, in order to preserve some of the semantics,
1501 * we fall back to check against current free page availability as
1502 * a best attempt and hopefully to minimize the impact of changing
1503 * semantics that cpuset has.
1504 */
1505 if (delta > 0) {
Andi Kleena5516432008-07-23 21:27:41 -07001506 if (gather_surplus_pages(h, delta) < 0)
Mel Gormanfc1b8a72008-07-23 21:27:22 -07001507 goto out;
1508
Andi Kleena5516432008-07-23 21:27:41 -07001509 if (delta > cpuset_mems_nr(h->free_huge_pages_node)) {
1510 return_unused_surplus_pages(h, delta);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07001511 goto out;
1512 }
1513 }
1514
1515 ret = 0;
1516 if (delta < 0)
Andi Kleena5516432008-07-23 21:27:41 -07001517 return_unused_surplus_pages(h, (unsigned long) -delta);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07001518
1519out:
1520 spin_unlock(&hugetlb_lock);
1521 return ret;
1522}
1523
Andy Whitcroft84afd992008-07-23 21:27:32 -07001524static void hugetlb_vm_op_open(struct vm_area_struct *vma)
1525{
1526 struct resv_map *reservations = vma_resv_map(vma);
1527
1528 /*
1529 * This new VMA should share its siblings reservation map if present.
1530 * The VMA will only ever have a valid reservation map pointer where
1531 * it is being copied for another still existing VMA. As that VMA
1532 * has a reference to the reservation map it cannot dissappear until
1533 * after this open call completes. It is therefore safe to take a
1534 * new reference here without additional locking.
1535 */
1536 if (reservations)
1537 kref_get(&reservations->refs);
1538}
1539
Mel Gormana1e78772008-07-23 21:27:23 -07001540static void hugetlb_vm_op_close(struct vm_area_struct *vma)
1541{
Andi Kleena5516432008-07-23 21:27:41 -07001542 struct hstate *h = hstate_vma(vma);
Andy Whitcroft84afd992008-07-23 21:27:32 -07001543 struct resv_map *reservations = vma_resv_map(vma);
1544 unsigned long reserve;
1545 unsigned long start;
1546 unsigned long end;
1547
1548 if (reservations) {
Andi Kleena5516432008-07-23 21:27:41 -07001549 start = vma_hugecache_offset(h, vma, vma->vm_start);
1550 end = vma_hugecache_offset(h, vma, vma->vm_end);
Andy Whitcroft84afd992008-07-23 21:27:32 -07001551
1552 reserve = (end - start) -
1553 region_count(&reservations->regions, start, end);
1554
1555 kref_put(&reservations->refs, resv_map_release);
1556
Adam Litke7251ff72008-07-23 21:27:59 -07001557 if (reserve) {
Andi Kleena5516432008-07-23 21:27:41 -07001558 hugetlb_acct_memory(h, -reserve);
Adam Litke7251ff72008-07-23 21:27:59 -07001559 hugetlb_put_quota(vma->vm_file->f_mapping, reserve);
1560 }
Andy Whitcroft84afd992008-07-23 21:27:32 -07001561 }
Mel Gormana1e78772008-07-23 21:27:23 -07001562}
1563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564/*
1565 * We cannot handle pagefaults against hugetlb pages at all. They cause
1566 * handle_mm_fault() to try to instantiate regular-sized pages in the
1567 * hugegpage VMA. do_page_fault() is supposed to trap this, so BUG is we get
1568 * this far.
1569 */
Nick Piggind0217ac2007-07-19 01:47:03 -07001570static int hugetlb_vm_op_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
1572 BUG();
Nick Piggind0217ac2007-07-19 01:47:03 -07001573 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}
1575
1576struct vm_operations_struct hugetlb_vm_ops = {
Nick Piggind0217ac2007-07-19 01:47:03 -07001577 .fault = hugetlb_vm_op_fault,
Andy Whitcroft84afd992008-07-23 21:27:32 -07001578 .open = hugetlb_vm_op_open,
Mel Gormana1e78772008-07-23 21:27:23 -07001579 .close = hugetlb_vm_op_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580};
1581
David Gibson1e8f8892006-01-06 00:10:44 -08001582static pte_t make_huge_pte(struct vm_area_struct *vma, struct page *page,
1583 int writable)
David Gibson63551ae2005-06-21 17:14:44 -07001584{
1585 pte_t entry;
1586
David Gibson1e8f8892006-01-06 00:10:44 -08001587 if (writable) {
David Gibson63551ae2005-06-21 17:14:44 -07001588 entry =
1589 pte_mkwrite(pte_mkdirty(mk_pte(page, vma->vm_page_prot)));
1590 } else {
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001591 entry = huge_pte_wrprotect(mk_pte(page, vma->vm_page_prot));
David Gibson63551ae2005-06-21 17:14:44 -07001592 }
1593 entry = pte_mkyoung(entry);
1594 entry = pte_mkhuge(entry);
1595
1596 return entry;
1597}
1598
David Gibson1e8f8892006-01-06 00:10:44 -08001599static void set_huge_ptep_writable(struct vm_area_struct *vma,
1600 unsigned long address, pte_t *ptep)
1601{
1602 pte_t entry;
1603
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001604 entry = pte_mkwrite(pte_mkdirty(huge_ptep_get(ptep)));
1605 if (huge_ptep_set_access_flags(vma, address, ptep, entry, 1)) {
Benjamin Herrenschmidt8dab5242007-06-16 10:16:12 -07001606 update_mmu_cache(vma, address, entry);
Benjamin Herrenschmidt8dab5242007-06-16 10:16:12 -07001607 }
David Gibson1e8f8892006-01-06 00:10:44 -08001608}
1609
1610
David Gibson63551ae2005-06-21 17:14:44 -07001611int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
1612 struct vm_area_struct *vma)
1613{
1614 pte_t *src_pte, *dst_pte, entry;
1615 struct page *ptepage;
Hugh Dickins1c598272005-10-19 21:23:43 -07001616 unsigned long addr;
David Gibson1e8f8892006-01-06 00:10:44 -08001617 int cow;
Andi Kleena5516432008-07-23 21:27:41 -07001618 struct hstate *h = hstate_vma(vma);
1619 unsigned long sz = huge_page_size(h);
David Gibson1e8f8892006-01-06 00:10:44 -08001620
1621 cow = (vma->vm_flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE;
David Gibson63551ae2005-06-21 17:14:44 -07001622
Andi Kleena5516432008-07-23 21:27:41 -07001623 for (addr = vma->vm_start; addr < vma->vm_end; addr += sz) {
Hugh Dickinsc74df322005-10-29 18:16:23 -07001624 src_pte = huge_pte_offset(src, addr);
1625 if (!src_pte)
1626 continue;
Andi Kleena5516432008-07-23 21:27:41 -07001627 dst_pte = huge_pte_alloc(dst, addr, sz);
David Gibson63551ae2005-06-21 17:14:44 -07001628 if (!dst_pte)
1629 goto nomem;
Larry Woodmanc5c99422008-01-24 05:49:25 -08001630
1631 /* If the pagetables are shared don't copy or take references */
1632 if (dst_pte == src_pte)
1633 continue;
1634
Hugh Dickinsc74df322005-10-29 18:16:23 -07001635 spin_lock(&dst->page_table_lock);
Nick Piggin46478752008-06-05 22:45:57 -07001636 spin_lock_nested(&src->page_table_lock, SINGLE_DEPTH_NESTING);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001637 if (!huge_pte_none(huge_ptep_get(src_pte))) {
David Gibson1e8f8892006-01-06 00:10:44 -08001638 if (cow)
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001639 huge_ptep_set_wrprotect(src, addr, src_pte);
1640 entry = huge_ptep_get(src_pte);
Hugh Dickins1c598272005-10-19 21:23:43 -07001641 ptepage = pte_page(entry);
1642 get_page(ptepage);
Hugh Dickins1c598272005-10-19 21:23:43 -07001643 set_huge_pte_at(dst, addr, dst_pte, entry);
1644 }
1645 spin_unlock(&src->page_table_lock);
Hugh Dickinsc74df322005-10-29 18:16:23 -07001646 spin_unlock(&dst->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -07001647 }
1648 return 0;
1649
1650nomem:
1651 return -ENOMEM;
1652}
1653
Chen, Kenneth W502717f2006-10-11 01:20:46 -07001654void __unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001655 unsigned long end, struct page *ref_page)
David Gibson63551ae2005-06-21 17:14:44 -07001656{
1657 struct mm_struct *mm = vma->vm_mm;
1658 unsigned long address;
David Gibsonc7546f82005-08-05 11:59:35 -07001659 pte_t *ptep;
David Gibson63551ae2005-06-21 17:14:44 -07001660 pte_t pte;
1661 struct page *page;
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07001662 struct page *tmp;
Andi Kleena5516432008-07-23 21:27:41 -07001663 struct hstate *h = hstate_vma(vma);
1664 unsigned long sz = huge_page_size(h);
1665
Chen, Kenneth Wc0a499c2006-12-06 20:31:39 -08001666 /*
1667 * A page gathering list, protected by per file i_mmap_lock. The
1668 * lock is used to avoid list corruption from multiple unmapping
1669 * of the same page since we are using page->lru.
1670 */
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07001671 LIST_HEAD(page_list);
David Gibson63551ae2005-06-21 17:14:44 -07001672
1673 WARN_ON(!is_vm_hugetlb_page(vma));
Andi Kleena5516432008-07-23 21:27:41 -07001674 BUG_ON(start & ~huge_page_mask(h));
1675 BUG_ON(end & ~huge_page_mask(h));
David Gibson63551ae2005-06-21 17:14:44 -07001676
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001677 mmu_notifier_invalidate_range_start(mm, start, end);
Hugh Dickins508034a2005-10-29 18:16:30 -07001678 spin_lock(&mm->page_table_lock);
Andi Kleena5516432008-07-23 21:27:41 -07001679 for (address = start; address < end; address += sz) {
David Gibsonc7546f82005-08-05 11:59:35 -07001680 ptep = huge_pte_offset(mm, address);
Adam Litke4c887262005-10-29 18:16:46 -07001681 if (!ptep)
David Gibsonc7546f82005-08-05 11:59:35 -07001682 continue;
1683
Chen, Kenneth W39dde652006-12-06 20:32:03 -08001684 if (huge_pmd_unshare(mm, &address, ptep))
1685 continue;
1686
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001687 /*
1688 * If a reference page is supplied, it is because a specific
1689 * page is being unmapped, not a range. Ensure the page we
1690 * are about to unmap is the actual page of interest.
1691 */
1692 if (ref_page) {
1693 pte = huge_ptep_get(ptep);
1694 if (huge_pte_none(pte))
1695 continue;
1696 page = pte_page(pte);
1697 if (page != ref_page)
1698 continue;
1699
1700 /*
1701 * Mark the VMA as having unmapped its page so that
1702 * future faults in this VMA will fail rather than
1703 * looking like data was lost
1704 */
1705 set_vma_resv_flags(vma, HPAGE_RESV_UNMAPPED);
1706 }
1707
David Gibsonc7546f82005-08-05 11:59:35 -07001708 pte = huge_ptep_get_and_clear(mm, address, ptep);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001709 if (huge_pte_none(pte))
David Gibson63551ae2005-06-21 17:14:44 -07001710 continue;
David Gibsonc7546f82005-08-05 11:59:35 -07001711
David Gibson63551ae2005-06-21 17:14:44 -07001712 page = pte_page(pte);
Ken Chen6649a382007-02-08 14:20:27 -08001713 if (pte_dirty(pte))
1714 set_page_dirty(page);
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07001715 list_add(&page->lru, &page_list);
David Gibson63551ae2005-06-21 17:14:44 -07001716 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 spin_unlock(&mm->page_table_lock);
Hugh Dickins508034a2005-10-29 18:16:30 -07001718 flush_tlb_range(vma, start, end);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001719 mmu_notifier_invalidate_range_end(mm, start, end);
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07001720 list_for_each_entry_safe(page, tmp, &page_list, lru) {
1721 list_del(&page->lru);
1722 put_page(page);
1723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724}
David Gibson63551ae2005-06-21 17:14:44 -07001725
Chen, Kenneth W502717f2006-10-11 01:20:46 -07001726void unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001727 unsigned long end, struct page *ref_page)
Chen, Kenneth W502717f2006-10-11 01:20:46 -07001728{
Andi Kleena137e1c2008-07-23 21:27:43 -07001729 spin_lock(&vma->vm_file->f_mapping->i_mmap_lock);
1730 __unmap_hugepage_range(vma, start, end, ref_page);
1731 spin_unlock(&vma->vm_file->f_mapping->i_mmap_lock);
Chen, Kenneth W502717f2006-10-11 01:20:46 -07001732}
1733
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001734/*
1735 * This is called when the original mapper is failing to COW a MAP_PRIVATE
1736 * mappping it owns the reserve page for. The intention is to unmap the page
1737 * from other VMAs and let the children be SIGKILLed if they are faulting the
1738 * same region.
1739 */
1740int unmap_ref_private(struct mm_struct *mm,
1741 struct vm_area_struct *vma,
1742 struct page *page,
1743 unsigned long address)
1744{
1745 struct vm_area_struct *iter_vma;
1746 struct address_space *mapping;
1747 struct prio_tree_iter iter;
1748 pgoff_t pgoff;
1749
1750 /*
1751 * vm_pgoff is in PAGE_SIZE units, hence the different calculation
1752 * from page cache lookup which is in HPAGE_SIZE units.
1753 */
1754 address = address & huge_page_mask(hstate_vma(vma));
1755 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT)
1756 + (vma->vm_pgoff >> PAGE_SHIFT);
1757 mapping = (struct address_space *)page_private(page);
1758
1759 vma_prio_tree_foreach(iter_vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
1760 /* Do not unmap the current VMA */
1761 if (iter_vma == vma)
1762 continue;
1763
1764 /*
1765 * Unmap the page from other VMAs without their own reserves.
1766 * They get marked to be SIGKILLed if they fault in these
1767 * areas. This is because a future no-page fault on this VMA
1768 * could insert a zeroed page instead of the data existing
1769 * from the time of fork. This would look like data corruption
1770 */
1771 if (!is_vma_resv_set(iter_vma, HPAGE_RESV_OWNER))
1772 unmap_hugepage_range(iter_vma,
1773 address, address + HPAGE_SIZE,
1774 page);
1775 }
1776
1777 return 1;
1778}
1779
David Gibson1e8f8892006-01-06 00:10:44 -08001780static int hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001781 unsigned long address, pte_t *ptep, pte_t pte,
1782 struct page *pagecache_page)
David Gibson1e8f8892006-01-06 00:10:44 -08001783{
Andi Kleena5516432008-07-23 21:27:41 -07001784 struct hstate *h = hstate_vma(vma);
David Gibson1e8f8892006-01-06 00:10:44 -08001785 struct page *old_page, *new_page;
David Gibson79ac6ba2006-03-22 00:08:51 -08001786 int avoidcopy;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001787 int outside_reserve = 0;
David Gibson1e8f8892006-01-06 00:10:44 -08001788
1789 old_page = pte_page(pte);
1790
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001791retry_avoidcopy:
David Gibson1e8f8892006-01-06 00:10:44 -08001792 /* If no-one else is actually using this page, avoid the copy
1793 * and just make the page writable */
1794 avoidcopy = (page_count(old_page) == 1);
1795 if (avoidcopy) {
1796 set_huge_ptep_writable(vma, address, ptep);
Nick Piggin83c54072007-07-19 01:47:05 -07001797 return 0;
David Gibson1e8f8892006-01-06 00:10:44 -08001798 }
1799
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001800 /*
1801 * If the process that created a MAP_PRIVATE mapping is about to
1802 * perform a COW due to a shared page count, attempt to satisfy
1803 * the allocation without using the existing reserves. The pagecache
1804 * page is used to determine if the reserve at this address was
1805 * consumed or not. If reserves were used, a partial faulted mapping
1806 * at the time of fork() could consume its reserves on COW instead
1807 * of the full address range.
1808 */
1809 if (!(vma->vm_flags & VM_SHARED) &&
1810 is_vma_resv_set(vma, HPAGE_RESV_OWNER) &&
1811 old_page != pagecache_page)
1812 outside_reserve = 1;
1813
David Gibson1e8f8892006-01-06 00:10:44 -08001814 page_cache_get(old_page);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001815 new_page = alloc_huge_page(vma, address, outside_reserve);
David Gibson1e8f8892006-01-06 00:10:44 -08001816
Adam Litke2fc39ce2007-11-14 16:59:39 -08001817 if (IS_ERR(new_page)) {
David Gibson1e8f8892006-01-06 00:10:44 -08001818 page_cache_release(old_page);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001819
1820 /*
1821 * If a process owning a MAP_PRIVATE mapping fails to COW,
1822 * it is due to references held by a child and an insufficient
1823 * huge page pool. To guarantee the original mappers
1824 * reliability, unmap the page from child processes. The child
1825 * may get SIGKILLed if it later faults.
1826 */
1827 if (outside_reserve) {
1828 BUG_ON(huge_pte_none(pte));
1829 if (unmap_ref_private(mm, vma, old_page, address)) {
1830 BUG_ON(page_count(old_page) != 1);
1831 BUG_ON(huge_pte_none(pte));
1832 goto retry_avoidcopy;
1833 }
1834 WARN_ON_ONCE(1);
1835 }
1836
Adam Litke2fc39ce2007-11-14 16:59:39 -08001837 return -PTR_ERR(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -08001838 }
1839
1840 spin_unlock(&mm->page_table_lock);
Atsushi Nemoto9de455b2006-12-12 17:14:55 +00001841 copy_huge_page(new_page, old_page, address, vma);
Nick Piggin0ed361d2008-02-04 22:29:34 -08001842 __SetPageUptodate(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -08001843 spin_lock(&mm->page_table_lock);
1844
Andi Kleena5516432008-07-23 21:27:41 -07001845 ptep = huge_pte_offset(mm, address & huge_page_mask(h));
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001846 if (likely(pte_same(huge_ptep_get(ptep), pte))) {
David Gibson1e8f8892006-01-06 00:10:44 -08001847 /* Break COW */
Gerald Schaefer8fe627e2008-04-28 02:13:28 -07001848 huge_ptep_clear_flush(vma, address, ptep);
David Gibson1e8f8892006-01-06 00:10:44 -08001849 set_huge_pte_at(mm, address, ptep,
1850 make_huge_pte(vma, new_page, 1));
1851 /* Make the old page be freed below */
1852 new_page = old_page;
1853 }
1854 page_cache_release(new_page);
1855 page_cache_release(old_page);
Nick Piggin83c54072007-07-19 01:47:05 -07001856 return 0;
David Gibson1e8f8892006-01-06 00:10:44 -08001857}
1858
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001859/* Return the pagecache page at a given address within a VMA */
Andi Kleena5516432008-07-23 21:27:41 -07001860static struct page *hugetlbfs_pagecache_page(struct hstate *h,
1861 struct vm_area_struct *vma, unsigned long address)
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001862{
1863 struct address_space *mapping;
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -07001864 pgoff_t idx;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001865
1866 mapping = vma->vm_file->f_mapping;
Andi Kleena5516432008-07-23 21:27:41 -07001867 idx = vma_hugecache_offset(h, vma, address);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001868
1869 return find_lock_page(mapping, idx);
1870}
1871
Robert P. J. Daya1ed3dd2007-07-17 04:03:33 -07001872static int hugetlb_no_page(struct mm_struct *mm, struct vm_area_struct *vma,
David Gibson1e8f8892006-01-06 00:10:44 -08001873 unsigned long address, pte_t *ptep, int write_access)
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001874{
Andi Kleena5516432008-07-23 21:27:41 -07001875 struct hstate *h = hstate_vma(vma);
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001876 int ret = VM_FAULT_SIGBUS;
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -07001877 pgoff_t idx;
Adam Litke4c887262005-10-29 18:16:46 -07001878 unsigned long size;
Adam Litke4c887262005-10-29 18:16:46 -07001879 struct page *page;
1880 struct address_space *mapping;
David Gibson1e8f8892006-01-06 00:10:44 -08001881 pte_t new_pte;
Adam Litke4c887262005-10-29 18:16:46 -07001882
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001883 /*
1884 * Currently, we are forced to kill the process in the event the
1885 * original mapper has unmapped pages from the child due to a failed
1886 * COW. Warn that such a situation has occured as it may not be obvious
1887 */
1888 if (is_vma_resv_set(vma, HPAGE_RESV_UNMAPPED)) {
1889 printk(KERN_WARNING
1890 "PID %d killed due to inadequate hugepage pool\n",
1891 current->pid);
1892 return ret;
1893 }
1894
Adam Litke4c887262005-10-29 18:16:46 -07001895 mapping = vma->vm_file->f_mapping;
Andi Kleena5516432008-07-23 21:27:41 -07001896 idx = vma_hugecache_offset(h, vma, address);
Adam Litke4c887262005-10-29 18:16:46 -07001897
1898 /*
1899 * Use page lock to guard against racing truncation
1900 * before we get page_table_lock.
1901 */
Christoph Lameter6bda6662006-01-06 00:10:49 -08001902retry:
1903 page = find_lock_page(mapping, idx);
1904 if (!page) {
Andi Kleena5516432008-07-23 21:27:41 -07001905 size = i_size_read(mapping->host) >> huge_page_shift(h);
Hugh Dickinsebed4bf2006-10-28 10:38:43 -07001906 if (idx >= size)
1907 goto out;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001908 page = alloc_huge_page(vma, address, 0);
Adam Litke2fc39ce2007-11-14 16:59:39 -08001909 if (IS_ERR(page)) {
1910 ret = -PTR_ERR(page);
Christoph Lameter6bda6662006-01-06 00:10:49 -08001911 goto out;
1912 }
Andi Kleena5516432008-07-23 21:27:41 -07001913 clear_huge_page(page, address, huge_page_size(h));
Nick Piggin0ed361d2008-02-04 22:29:34 -08001914 __SetPageUptodate(page);
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001915
Christoph Lameter6bda6662006-01-06 00:10:49 -08001916 if (vma->vm_flags & VM_SHARED) {
1917 int err;
Ken Chen45c682a2007-11-14 16:59:44 -08001918 struct inode *inode = mapping->host;
Christoph Lameter6bda6662006-01-06 00:10:49 -08001919
1920 err = add_to_page_cache(page, mapping, idx, GFP_KERNEL);
1921 if (err) {
1922 put_page(page);
Christoph Lameter6bda6662006-01-06 00:10:49 -08001923 if (err == -EEXIST)
1924 goto retry;
1925 goto out;
1926 }
Ken Chen45c682a2007-11-14 16:59:44 -08001927
1928 spin_lock(&inode->i_lock);
Andi Kleena5516432008-07-23 21:27:41 -07001929 inode->i_blocks += blocks_per_huge_page(h);
Ken Chen45c682a2007-11-14 16:59:44 -08001930 spin_unlock(&inode->i_lock);
Christoph Lameter6bda6662006-01-06 00:10:49 -08001931 } else
1932 lock_page(page);
1933 }
David Gibson1e8f8892006-01-06 00:10:44 -08001934
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001935 spin_lock(&mm->page_table_lock);
Andi Kleena5516432008-07-23 21:27:41 -07001936 size = i_size_read(mapping->host) >> huge_page_shift(h);
Adam Litke4c887262005-10-29 18:16:46 -07001937 if (idx >= size)
1938 goto backout;
1939
Nick Piggin83c54072007-07-19 01:47:05 -07001940 ret = 0;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001941 if (!huge_pte_none(huge_ptep_get(ptep)))
Adam Litke4c887262005-10-29 18:16:46 -07001942 goto backout;
1943
David Gibson1e8f8892006-01-06 00:10:44 -08001944 new_pte = make_huge_pte(vma, page, ((vma->vm_flags & VM_WRITE)
1945 && (vma->vm_flags & VM_SHARED)));
1946 set_huge_pte_at(mm, address, ptep, new_pte);
1947
1948 if (write_access && !(vma->vm_flags & VM_SHARED)) {
1949 /* Optimization, do the COW without a second fault */
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001950 ret = hugetlb_cow(mm, vma, address, ptep, new_pte, page);
David Gibson1e8f8892006-01-06 00:10:44 -08001951 }
1952
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001953 spin_unlock(&mm->page_table_lock);
Adam Litke4c887262005-10-29 18:16:46 -07001954 unlock_page(page);
1955out:
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001956 return ret;
Adam Litke4c887262005-10-29 18:16:46 -07001957
1958backout:
1959 spin_unlock(&mm->page_table_lock);
Adam Litke4c887262005-10-29 18:16:46 -07001960 unlock_page(page);
1961 put_page(page);
1962 goto out;
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01001963}
1964
Adam Litke86e52162006-01-06 00:10:43 -08001965int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
1966 unsigned long address, int write_access)
1967{
1968 pte_t *ptep;
1969 pte_t entry;
David Gibson1e8f8892006-01-06 00:10:44 -08001970 int ret;
David Gibson3935baa2006-03-22 00:08:53 -08001971 static DEFINE_MUTEX(hugetlb_instantiation_mutex);
Andi Kleena5516432008-07-23 21:27:41 -07001972 struct hstate *h = hstate_vma(vma);
Adam Litke86e52162006-01-06 00:10:43 -08001973
Andi Kleena5516432008-07-23 21:27:41 -07001974 ptep = huge_pte_alloc(mm, address, huge_page_size(h));
Adam Litke86e52162006-01-06 00:10:43 -08001975 if (!ptep)
1976 return VM_FAULT_OOM;
1977
David Gibson3935baa2006-03-22 00:08:53 -08001978 /*
1979 * Serialize hugepage allocation and instantiation, so that we don't
1980 * get spurious allocation failures if two CPUs race to instantiate
1981 * the same page in the page cache.
1982 */
1983 mutex_lock(&hugetlb_instantiation_mutex);
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001984 entry = huge_ptep_get(ptep);
1985 if (huge_pte_none(entry)) {
David Gibson3935baa2006-03-22 00:08:53 -08001986 ret = hugetlb_no_page(mm, vma, address, ptep, write_access);
1987 mutex_unlock(&hugetlb_instantiation_mutex);
1988 return ret;
1989 }
Adam Litke86e52162006-01-06 00:10:43 -08001990
Nick Piggin83c54072007-07-19 01:47:05 -07001991 ret = 0;
David Gibson1e8f8892006-01-06 00:10:44 -08001992
1993 spin_lock(&mm->page_table_lock);
1994 /* Check for a racing update before calling hugetlb_cow */
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07001995 if (likely(pte_same(entry, huge_ptep_get(ptep))))
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001996 if (write_access && !pte_write(entry)) {
1997 struct page *page;
Andi Kleena5516432008-07-23 21:27:41 -07001998 page = hugetlbfs_pagecache_page(h, vma, address);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001999 ret = hugetlb_cow(mm, vma, address, ptep, entry, page);
2000 if (page) {
2001 unlock_page(page);
2002 put_page(page);
2003 }
2004 }
David Gibson1e8f8892006-01-06 00:10:44 -08002005 spin_unlock(&mm->page_table_lock);
David Gibson3935baa2006-03-22 00:08:53 -08002006 mutex_unlock(&hugetlb_instantiation_mutex);
David Gibson1e8f8892006-01-06 00:10:44 -08002007
2008 return ret;
Adam Litke86e52162006-01-06 00:10:43 -08002009}
2010
Andi Kleenceb86872008-07-23 21:27:50 -07002011/* Can be overriden by architectures */
2012__attribute__((weak)) struct page *
2013follow_huge_pud(struct mm_struct *mm, unsigned long address,
2014 pud_t *pud, int write)
2015{
2016 BUG();
2017 return NULL;
2018}
2019
David Gibson63551ae2005-06-21 17:14:44 -07002020int follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma,
2021 struct page **pages, struct vm_area_struct **vmas,
Adam Litke5b23dbe2007-11-14 16:59:33 -08002022 unsigned long *position, int *length, int i,
2023 int write)
David Gibson63551ae2005-06-21 17:14:44 -07002024{
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002025 unsigned long pfn_offset;
2026 unsigned long vaddr = *position;
David Gibson63551ae2005-06-21 17:14:44 -07002027 int remainder = *length;
Andi Kleena5516432008-07-23 21:27:41 -07002028 struct hstate *h = hstate_vma(vma);
David Gibson63551ae2005-06-21 17:14:44 -07002029
Hugh Dickins1c598272005-10-19 21:23:43 -07002030 spin_lock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -07002031 while (vaddr < vma->vm_end && remainder) {
Adam Litke4c887262005-10-29 18:16:46 -07002032 pte_t *pte;
2033 struct page *page;
2034
2035 /*
2036 * Some archs (sparc64, sh*) have multiple pte_ts to
2037 * each hugepage. We have to make * sure we get the
2038 * first, for the page indexing below to work.
2039 */
Andi Kleena5516432008-07-23 21:27:41 -07002040 pte = huge_pte_offset(mm, vaddr & huge_page_mask(h));
Adam Litke4c887262005-10-29 18:16:46 -07002041
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07002042 if (!pte || huge_pte_none(huge_ptep_get(pte)) ||
2043 (write && !pte_write(huge_ptep_get(pte)))) {
Adam Litke4c887262005-10-29 18:16:46 -07002044 int ret;
2045
2046 spin_unlock(&mm->page_table_lock);
Adam Litke5b23dbe2007-11-14 16:59:33 -08002047 ret = hugetlb_fault(mm, vma, vaddr, write);
Adam Litke4c887262005-10-29 18:16:46 -07002048 spin_lock(&mm->page_table_lock);
Adam Litkea89182c2007-08-22 14:01:51 -07002049 if (!(ret & VM_FAULT_ERROR))
Adam Litke4c887262005-10-29 18:16:46 -07002050 continue;
2051
2052 remainder = 0;
2053 if (!i)
2054 i = -EFAULT;
2055 break;
2056 }
David Gibson63551ae2005-06-21 17:14:44 -07002057
Andi Kleena5516432008-07-23 21:27:41 -07002058 pfn_offset = (vaddr & ~huge_page_mask(h)) >> PAGE_SHIFT;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07002059 page = pte_page(huge_ptep_get(pte));
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002060same_page:
Chen, Kenneth Wd6692182006-03-31 02:29:57 -08002061 if (pages) {
2062 get_page(page);
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002063 pages[i] = page + pfn_offset;
Chen, Kenneth Wd6692182006-03-31 02:29:57 -08002064 }
David Gibson63551ae2005-06-21 17:14:44 -07002065
2066 if (vmas)
2067 vmas[i] = vma;
2068
2069 vaddr += PAGE_SIZE;
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002070 ++pfn_offset;
David Gibson63551ae2005-06-21 17:14:44 -07002071 --remainder;
2072 ++i;
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002073 if (vaddr < vma->vm_end && remainder &&
Andi Kleena5516432008-07-23 21:27:41 -07002074 pfn_offset < pages_per_huge_page(h)) {
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08002075 /*
2076 * We use pfn_offset to avoid touching the pageframes
2077 * of this compound page.
2078 */
2079 goto same_page;
2080 }
David Gibson63551ae2005-06-21 17:14:44 -07002081 }
Hugh Dickins1c598272005-10-19 21:23:43 -07002082 spin_unlock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -07002083 *length = remainder;
2084 *position = vaddr;
2085
2086 return i;
2087}
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002088
2089void hugetlb_change_protection(struct vm_area_struct *vma,
2090 unsigned long address, unsigned long end, pgprot_t newprot)
2091{
2092 struct mm_struct *mm = vma->vm_mm;
2093 unsigned long start = address;
2094 pte_t *ptep;
2095 pte_t pte;
Andi Kleena5516432008-07-23 21:27:41 -07002096 struct hstate *h = hstate_vma(vma);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002097
2098 BUG_ON(address >= end);
2099 flush_cache_range(vma, address, end);
2100
Chen, Kenneth W39dde652006-12-06 20:32:03 -08002101 spin_lock(&vma->vm_file->f_mapping->i_mmap_lock);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002102 spin_lock(&mm->page_table_lock);
Andi Kleena5516432008-07-23 21:27:41 -07002103 for (; address < end; address += huge_page_size(h)) {
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002104 ptep = huge_pte_offset(mm, address);
2105 if (!ptep)
2106 continue;
Chen, Kenneth W39dde652006-12-06 20:32:03 -08002107 if (huge_pmd_unshare(mm, &address, ptep))
2108 continue;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07002109 if (!huge_pte_none(huge_ptep_get(ptep))) {
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002110 pte = huge_ptep_get_and_clear(mm, address, ptep);
2111 pte = pte_mkhuge(pte_modify(pte, newprot));
2112 set_huge_pte_at(mm, address, ptep, pte);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002113 }
2114 }
2115 spin_unlock(&mm->page_table_lock);
Chen, Kenneth W39dde652006-12-06 20:32:03 -08002116 spin_unlock(&vma->vm_file->f_mapping->i_mmap_lock);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08002117
2118 flush_tlb_range(vma, start, end);
2119}
2120
Mel Gormana1e78772008-07-23 21:27:23 -07002121int hugetlb_reserve_pages(struct inode *inode,
2122 long from, long to,
2123 struct vm_area_struct *vma)
Adam Litkee4e574b2007-10-16 01:26:19 -07002124{
2125 long ret, chg;
Andi Kleena5516432008-07-23 21:27:41 -07002126 struct hstate *h = hstate_inode(inode);
Adam Litkee4e574b2007-10-16 01:26:19 -07002127
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002128 if (vma && vma->vm_flags & VM_NORESERVE)
2129 return 0;
2130
Mel Gormana1e78772008-07-23 21:27:23 -07002131 /*
2132 * Shared mappings base their reservation on the number of pages that
2133 * are already allocated on behalf of the file. Private mappings need
2134 * to reserve the full area even if read-only as mprotect() may be
2135 * called to make the mapping read-write. Assume !vma is a shm mapping
2136 */
2137 if (!vma || vma->vm_flags & VM_SHARED)
2138 chg = region_chg(&inode->i_mapping->private_list, from, to);
2139 else {
Andy Whitcroft84afd992008-07-23 21:27:32 -07002140 struct resv_map *resv_map = resv_map_alloc();
2141 if (!resv_map)
2142 return -ENOMEM;
2143
Mel Gormana1e78772008-07-23 21:27:23 -07002144 chg = to - from;
Andy Whitcroft84afd992008-07-23 21:27:32 -07002145
2146 set_vma_resv_map(vma, resv_map);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002147 set_vma_resv_flags(vma, HPAGE_RESV_OWNER);
Mel Gormana1e78772008-07-23 21:27:23 -07002148 }
2149
Adam Litkee4e574b2007-10-16 01:26:19 -07002150 if (chg < 0)
2151 return chg;
Ken Chen8a630112007-05-09 02:33:34 -07002152
Adam Litke90d8b7e2007-11-14 16:59:42 -08002153 if (hugetlb_get_quota(inode->i_mapping, chg))
2154 return -ENOSPC;
Andi Kleena5516432008-07-23 21:27:41 -07002155 ret = hugetlb_acct_memory(h, chg);
Ken Chen68842c92008-01-14 00:55:19 -08002156 if (ret < 0) {
2157 hugetlb_put_quota(inode->i_mapping, chg);
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07002158 return ret;
Ken Chen68842c92008-01-14 00:55:19 -08002159 }
Mel Gormana1e78772008-07-23 21:27:23 -07002160 if (!vma || vma->vm_flags & VM_SHARED)
2161 region_add(&inode->i_mapping->private_list, from, to);
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07002162 return 0;
2163}
2164
2165void hugetlb_unreserve_pages(struct inode *inode, long offset, long freed)
2166{
Andi Kleena5516432008-07-23 21:27:41 -07002167 struct hstate *h = hstate_inode(inode);
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07002168 long chg = region_truncate(&inode->i_mapping->private_list, offset);
Ken Chen45c682a2007-11-14 16:59:44 -08002169
2170 spin_lock(&inode->i_lock);
Andi Kleena5516432008-07-23 21:27:41 -07002171 inode->i_blocks -= blocks_per_huge_page(h);
Ken Chen45c682a2007-11-14 16:59:44 -08002172 spin_unlock(&inode->i_lock);
2173
Adam Litke90d8b7e2007-11-14 16:59:42 -08002174 hugetlb_put_quota(inode->i_mapping, (chg - freed));
Andi Kleena5516432008-07-23 21:27:41 -07002175 hugetlb_acct_memory(h, -(chg - freed));
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07002176}