hugetlbfs: add minimum size tracking fields to subpool structure
[linux-2.6-block.git] / mm / hugetlb.c
CommitLineData
1da177e4
LT
1/*
2 * Generic hugetlb support.
6d49e352 3 * (C) Nadia Yvette Chambers, April 2004
1da177e4 4 */
1da177e4
LT
5#include <linux/list.h>
6#include <linux/init.h>
7#include <linux/module.h>
8#include <linux/mm.h>
e1759c21 9#include <linux/seq_file.h>
1da177e4
LT
10#include <linux/sysctl.h>
11#include <linux/highmem.h>
cddb8a5c 12#include <linux/mmu_notifier.h>
1da177e4 13#include <linux/nodemask.h>
63551ae0 14#include <linux/pagemap.h>
5da7ca86 15#include <linux/mempolicy.h>
3b32123d 16#include <linux/compiler.h>
aea47ff3 17#include <linux/cpuset.h>
3935baa9 18#include <linux/mutex.h>
aa888a74 19#include <linux/bootmem.h>
a3437870 20#include <linux/sysfs.h>
5a0e3ad6 21#include <linux/slab.h>
0fe6e20b 22#include <linux/rmap.h>
fd6a03ed
NH
23#include <linux/swap.h>
24#include <linux/swapops.h>
c8721bbb 25#include <linux/page-isolation.h>
8382d914 26#include <linux/jhash.h>
d6606683 27
63551ae0
DG
28#include <asm/page.h>
29#include <asm/pgtable.h>
24669e58 30#include <asm/tlb.h>
63551ae0 31
24669e58 32#include <linux/io.h>
63551ae0 33#include <linux/hugetlb.h>
9dd540e2 34#include <linux/hugetlb_cgroup.h>
9a305230 35#include <linux/node.h>
7835e98b 36#include "internal.h"
1da177e4 37
753162cd 38int hugepages_treat_as_movable;
a5516438 39
c3f38a38 40int hugetlb_max_hstate __read_mostly;
e5ff2159
AK
41unsigned int default_hstate_idx;
42struct hstate hstates[HUGE_MAX_HSTATE];
43
53ba51d2
JT
44__initdata LIST_HEAD(huge_boot_pages);
45
e5ff2159
AK
46/* for command line parsing */
47static struct hstate * __initdata parsed_hstate;
48static unsigned long __initdata default_hstate_max_huge_pages;
e11bfbfc 49static unsigned long __initdata default_hstate_size;
e5ff2159 50
3935baa9 51/*
31caf665
NH
52 * Protects updates to hugepage_freelists, hugepage_activelist, nr_huge_pages,
53 * free_huge_pages, and surplus_huge_pages.
3935baa9 54 */
c3f38a38 55DEFINE_SPINLOCK(hugetlb_lock);
0bd0f9fb 56
8382d914
DB
57/*
58 * Serializes faults on the same logical page. This is used to
59 * prevent spurious OOMs when the hugepage pool is fully utilized.
60 */
61static int num_fault_mutexes;
62static struct mutex *htlb_fault_mutex_table ____cacheline_aligned_in_smp;
63
90481622
DG
64static inline void unlock_or_release_subpool(struct hugepage_subpool *spool)
65{
66 bool free = (spool->count == 0) && (spool->used_hpages == 0);
67
68 spin_unlock(&spool->lock);
69
70 /* If no pages are used, and no other handles to the subpool
71 * remain, free the subpool the subpool remain */
72 if (free)
73 kfree(spool);
74}
75
76struct hugepage_subpool *hugepage_new_subpool(long nr_blocks)
77{
78 struct hugepage_subpool *spool;
79
c6a91820 80 spool = kzalloc(sizeof(*spool), GFP_KERNEL);
90481622
DG
81 if (!spool)
82 return NULL;
83
84 spin_lock_init(&spool->lock);
85 spool->count = 1;
86 spool->max_hpages = nr_blocks;
90481622
DG
87
88 return spool;
89}
90
91void hugepage_put_subpool(struct hugepage_subpool *spool)
92{
93 spin_lock(&spool->lock);
94 BUG_ON(!spool->count);
95 spool->count--;
96 unlock_or_release_subpool(spool);
97}
98
99static int hugepage_subpool_get_pages(struct hugepage_subpool *spool,
100 long delta)
101{
102 int ret = 0;
103
104 if (!spool)
105 return 0;
106
107 spin_lock(&spool->lock);
108 if ((spool->used_hpages + delta) <= spool->max_hpages) {
109 spool->used_hpages += delta;
110 } else {
111 ret = -ENOMEM;
112 }
113 spin_unlock(&spool->lock);
114
115 return ret;
116}
117
118static void hugepage_subpool_put_pages(struct hugepage_subpool *spool,
119 long delta)
120{
121 if (!spool)
122 return;
123
124 spin_lock(&spool->lock);
125 spool->used_hpages -= delta;
126 /* If hugetlbfs_put_super couldn't free spool due to
127 * an outstanding quota reference, free it now. */
128 unlock_or_release_subpool(spool);
129}
130
131static inline struct hugepage_subpool *subpool_inode(struct inode *inode)
132{
133 return HUGETLBFS_SB(inode->i_sb)->spool;
134}
135
136static inline struct hugepage_subpool *subpool_vma(struct vm_area_struct *vma)
137{
496ad9aa 138 return subpool_inode(file_inode(vma->vm_file));
90481622
DG
139}
140
96822904
AW
141/*
142 * Region tracking -- allows tracking of reservations and instantiated pages
143 * across the pages in a mapping.
84afd99b 144 *
7b24d861
DB
145 * The region data structures are embedded into a resv_map and
146 * protected by a resv_map's lock
96822904
AW
147 */
148struct file_region {
149 struct list_head link;
150 long from;
151 long to;
152};
153
1406ec9b 154static long region_add(struct resv_map *resv, long f, long t)
96822904 155{
1406ec9b 156 struct list_head *head = &resv->regions;
96822904
AW
157 struct file_region *rg, *nrg, *trg;
158
7b24d861 159 spin_lock(&resv->lock);
96822904
AW
160 /* Locate the region we are either in or before. */
161 list_for_each_entry(rg, head, link)
162 if (f <= rg->to)
163 break;
164
165 /* Round our left edge to the current segment if it encloses us. */
166 if (f > rg->from)
167 f = rg->from;
168
169 /* Check for and consume any regions we now overlap with. */
170 nrg = rg;
171 list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
172 if (&rg->link == head)
173 break;
174 if (rg->from > t)
175 break;
176
177 /* If this area reaches higher then extend our area to
178 * include it completely. If this is not the first area
179 * which we intend to reuse, free it. */
180 if (rg->to > t)
181 t = rg->to;
182 if (rg != nrg) {
183 list_del(&rg->link);
184 kfree(rg);
185 }
186 }
187 nrg->from = f;
188 nrg->to = t;
7b24d861 189 spin_unlock(&resv->lock);
96822904
AW
190 return 0;
191}
192
1406ec9b 193static long region_chg(struct resv_map *resv, long f, long t)
96822904 194{
1406ec9b 195 struct list_head *head = &resv->regions;
7b24d861 196 struct file_region *rg, *nrg = NULL;
96822904
AW
197 long chg = 0;
198
7b24d861
DB
199retry:
200 spin_lock(&resv->lock);
96822904
AW
201 /* Locate the region we are before or in. */
202 list_for_each_entry(rg, head, link)
203 if (f <= rg->to)
204 break;
205
206 /* If we are below the current region then a new region is required.
207 * Subtle, allocate a new region at the position but make it zero
208 * size such that we can guarantee to record the reservation. */
209 if (&rg->link == head || t < rg->from) {
7b24d861
DB
210 if (!nrg) {
211 spin_unlock(&resv->lock);
212 nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
213 if (!nrg)
214 return -ENOMEM;
215
216 nrg->from = f;
217 nrg->to = f;
218 INIT_LIST_HEAD(&nrg->link);
219 goto retry;
220 }
96822904 221
7b24d861
DB
222 list_add(&nrg->link, rg->link.prev);
223 chg = t - f;
224 goto out_nrg;
96822904
AW
225 }
226
227 /* Round our left edge to the current segment if it encloses us. */
228 if (f > rg->from)
229 f = rg->from;
230 chg = t - f;
231
232 /* Check for and consume any regions we now overlap with. */
233 list_for_each_entry(rg, rg->link.prev, link) {
234 if (&rg->link == head)
235 break;
236 if (rg->from > t)
7b24d861 237 goto out;
96822904 238
25985edc 239 /* We overlap with this area, if it extends further than
96822904
AW
240 * us then we must extend ourselves. Account for its
241 * existing reservation. */
242 if (rg->to > t) {
243 chg += rg->to - t;
244 t = rg->to;
245 }
246 chg -= rg->to - rg->from;
247 }
7b24d861
DB
248
249out:
250 spin_unlock(&resv->lock);
251 /* We already know we raced and no longer need the new region */
252 kfree(nrg);
253 return chg;
254out_nrg:
255 spin_unlock(&resv->lock);
96822904
AW
256 return chg;
257}
258
1406ec9b 259static long region_truncate(struct resv_map *resv, long end)
96822904 260{
1406ec9b 261 struct list_head *head = &resv->regions;
96822904
AW
262 struct file_region *rg, *trg;
263 long chg = 0;
264
7b24d861 265 spin_lock(&resv->lock);
96822904
AW
266 /* Locate the region we are either in or before. */
267 list_for_each_entry(rg, head, link)
268 if (end <= rg->to)
269 break;
270 if (&rg->link == head)
7b24d861 271 goto out;
96822904
AW
272
273 /* If we are in the middle of a region then adjust it. */
274 if (end > rg->from) {
275 chg = rg->to - end;
276 rg->to = end;
277 rg = list_entry(rg->link.next, typeof(*rg), link);
278 }
279
280 /* Drop any remaining regions. */
281 list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
282 if (&rg->link == head)
283 break;
284 chg += rg->to - rg->from;
285 list_del(&rg->link);
286 kfree(rg);
287 }
7b24d861
DB
288
289out:
290 spin_unlock(&resv->lock);
96822904
AW
291 return chg;
292}
293
1406ec9b 294static long region_count(struct resv_map *resv, long f, long t)
84afd99b 295{
1406ec9b 296 struct list_head *head = &resv->regions;
84afd99b
AW
297 struct file_region *rg;
298 long chg = 0;
299
7b24d861 300 spin_lock(&resv->lock);
84afd99b
AW
301 /* Locate each segment we overlap with, and count that overlap. */
302 list_for_each_entry(rg, head, link) {
f2135a4a
WSH
303 long seg_from;
304 long seg_to;
84afd99b
AW
305
306 if (rg->to <= f)
307 continue;
308 if (rg->from >= t)
309 break;
310
311 seg_from = max(rg->from, f);
312 seg_to = min(rg->to, t);
313
314 chg += seg_to - seg_from;
315 }
7b24d861 316 spin_unlock(&resv->lock);
84afd99b
AW
317
318 return chg;
319}
320
e7c4b0bf
AW
321/*
322 * Convert the address within this vma to the page offset within
323 * the mapping, in pagecache page units; huge pages here.
324 */
a5516438
AK
325static pgoff_t vma_hugecache_offset(struct hstate *h,
326 struct vm_area_struct *vma, unsigned long address)
e7c4b0bf 327{
a5516438
AK
328 return ((address - vma->vm_start) >> huge_page_shift(h)) +
329 (vma->vm_pgoff >> huge_page_order(h));
e7c4b0bf
AW
330}
331
0fe6e20b
NH
332pgoff_t linear_hugepage_index(struct vm_area_struct *vma,
333 unsigned long address)
334{
335 return vma_hugecache_offset(hstate_vma(vma), vma, address);
336}
337
08fba699
MG
338/*
339 * Return the size of the pages allocated when backing a VMA. In the majority
340 * cases this will be same size as used by the page table entries.
341 */
342unsigned long vma_kernel_pagesize(struct vm_area_struct *vma)
343{
344 struct hstate *hstate;
345
346 if (!is_vm_hugetlb_page(vma))
347 return PAGE_SIZE;
348
349 hstate = hstate_vma(vma);
350
2415cf12 351 return 1UL << huge_page_shift(hstate);
08fba699 352}
f340ca0f 353EXPORT_SYMBOL_GPL(vma_kernel_pagesize);
08fba699 354
3340289d
MG
355/*
356 * Return the page size being used by the MMU to back a VMA. In the majority
357 * of cases, the page size used by the kernel matches the MMU size. On
358 * architectures where it differs, an architecture-specific version of this
359 * function is required.
360 */
361#ifndef vma_mmu_pagesize
362unsigned long vma_mmu_pagesize(struct vm_area_struct *vma)
363{
364 return vma_kernel_pagesize(vma);
365}
366#endif
367
84afd99b
AW
368/*
369 * Flags for MAP_PRIVATE reservations. These are stored in the bottom
370 * bits of the reservation map pointer, which are always clear due to
371 * alignment.
372 */
373#define HPAGE_RESV_OWNER (1UL << 0)
374#define HPAGE_RESV_UNMAPPED (1UL << 1)
04f2cbe3 375#define HPAGE_RESV_MASK (HPAGE_RESV_OWNER | HPAGE_RESV_UNMAPPED)
84afd99b 376
a1e78772
MG
377/*
378 * These helpers are used to track how many pages are reserved for
379 * faults in a MAP_PRIVATE mapping. Only the process that called mmap()
380 * is guaranteed to have their future faults succeed.
381 *
382 * With the exception of reset_vma_resv_huge_pages() which is called at fork(),
383 * the reserve counters are updated with the hugetlb_lock held. It is safe
384 * to reset the VMA at fork() time as it is not in use yet and there is no
385 * chance of the global counters getting corrupted as a result of the values.
84afd99b
AW
386 *
387 * The private mapping reservation is represented in a subtly different
388 * manner to a shared mapping. A shared mapping has a region map associated
389 * with the underlying file, this region map represents the backing file
390 * pages which have ever had a reservation assigned which this persists even
391 * after the page is instantiated. A private mapping has a region map
392 * associated with the original mmap which is attached to all VMAs which
393 * reference it, this region map represents those offsets which have consumed
394 * reservation ie. where pages have been instantiated.
a1e78772 395 */
e7c4b0bf
AW
396static unsigned long get_vma_private_data(struct vm_area_struct *vma)
397{
398 return (unsigned long)vma->vm_private_data;
399}
400
401static void set_vma_private_data(struct vm_area_struct *vma,
402 unsigned long value)
403{
404 vma->vm_private_data = (void *)value;
405}
406
9119a41e 407struct resv_map *resv_map_alloc(void)
84afd99b
AW
408{
409 struct resv_map *resv_map = kmalloc(sizeof(*resv_map), GFP_KERNEL);
410 if (!resv_map)
411 return NULL;
412
413 kref_init(&resv_map->refs);
7b24d861 414 spin_lock_init(&resv_map->lock);
84afd99b
AW
415 INIT_LIST_HEAD(&resv_map->regions);
416
417 return resv_map;
418}
419
9119a41e 420void resv_map_release(struct kref *ref)
84afd99b
AW
421{
422 struct resv_map *resv_map = container_of(ref, struct resv_map, refs);
423
424 /* Clear out any active regions before we release the map. */
1406ec9b 425 region_truncate(resv_map, 0);
84afd99b
AW
426 kfree(resv_map);
427}
428
4e35f483
JK
429static inline struct resv_map *inode_resv_map(struct inode *inode)
430{
431 return inode->i_mapping->private_data;
432}
433
84afd99b 434static struct resv_map *vma_resv_map(struct vm_area_struct *vma)
a1e78772 435{
81d1b09c 436 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
4e35f483
JK
437 if (vma->vm_flags & VM_MAYSHARE) {
438 struct address_space *mapping = vma->vm_file->f_mapping;
439 struct inode *inode = mapping->host;
440
441 return inode_resv_map(inode);
442
443 } else {
84afd99b
AW
444 return (struct resv_map *)(get_vma_private_data(vma) &
445 ~HPAGE_RESV_MASK);
4e35f483 446 }
a1e78772
MG
447}
448
84afd99b 449static void set_vma_resv_map(struct vm_area_struct *vma, struct resv_map *map)
a1e78772 450{
81d1b09c
SL
451 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
452 VM_BUG_ON_VMA(vma->vm_flags & VM_MAYSHARE, vma);
a1e78772 453
84afd99b
AW
454 set_vma_private_data(vma, (get_vma_private_data(vma) &
455 HPAGE_RESV_MASK) | (unsigned long)map);
04f2cbe3
MG
456}
457
458static void set_vma_resv_flags(struct vm_area_struct *vma, unsigned long flags)
459{
81d1b09c
SL
460 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
461 VM_BUG_ON_VMA(vma->vm_flags & VM_MAYSHARE, vma);
e7c4b0bf
AW
462
463 set_vma_private_data(vma, get_vma_private_data(vma) | flags);
04f2cbe3
MG
464}
465
466static int is_vma_resv_set(struct vm_area_struct *vma, unsigned long flag)
467{
81d1b09c 468 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
e7c4b0bf
AW
469
470 return (get_vma_private_data(vma) & flag) != 0;
a1e78772
MG
471}
472
04f2cbe3 473/* Reset counters to 0 and clear all HPAGE_RESV_* flags */
a1e78772
MG
474void reset_vma_resv_huge_pages(struct vm_area_struct *vma)
475{
81d1b09c 476 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
f83a275d 477 if (!(vma->vm_flags & VM_MAYSHARE))
a1e78772
MG
478 vma->vm_private_data = (void *)0;
479}
480
481/* Returns true if the VMA has associated reserve pages */
af0ed73e 482static int vma_has_reserves(struct vm_area_struct *vma, long chg)
a1e78772 483{
af0ed73e
JK
484 if (vma->vm_flags & VM_NORESERVE) {
485 /*
486 * This address is already reserved by other process(chg == 0),
487 * so, we should decrement reserved count. Without decrementing,
488 * reserve count remains after releasing inode, because this
489 * allocated page will go into page cache and is regarded as
490 * coming from reserved pool in releasing step. Currently, we
491 * don't have any other solution to deal with this situation
492 * properly, so add work-around here.
493 */
494 if (vma->vm_flags & VM_MAYSHARE && chg == 0)
495 return 1;
496 else
497 return 0;
498 }
a63884e9
JK
499
500 /* Shared mappings always use reserves */
f83a275d 501 if (vma->vm_flags & VM_MAYSHARE)
7f09ca51 502 return 1;
a63884e9
JK
503
504 /*
505 * Only the process that called mmap() has reserves for
506 * private mappings.
507 */
7f09ca51
MG
508 if (is_vma_resv_set(vma, HPAGE_RESV_OWNER))
509 return 1;
a63884e9 510
7f09ca51 511 return 0;
a1e78772
MG
512}
513
a5516438 514static void enqueue_huge_page(struct hstate *h, struct page *page)
1da177e4
LT
515{
516 int nid = page_to_nid(page);
0edaecfa 517 list_move(&page->lru, &h->hugepage_freelists[nid]);
a5516438
AK
518 h->free_huge_pages++;
519 h->free_huge_pages_node[nid]++;
1da177e4
LT
520}
521
bf50bab2
NH
522static struct page *dequeue_huge_page_node(struct hstate *h, int nid)
523{
524 struct page *page;
525
c8721bbb
NH
526 list_for_each_entry(page, &h->hugepage_freelists[nid], lru)
527 if (!is_migrate_isolate_page(page))
528 break;
529 /*
530 * if 'non-isolated free hugepage' not found on the list,
531 * the allocation fails.
532 */
533 if (&h->hugepage_freelists[nid] == &page->lru)
bf50bab2 534 return NULL;
0edaecfa 535 list_move(&page->lru, &h->hugepage_activelist);
a9869b83 536 set_page_refcounted(page);
bf50bab2
NH
537 h->free_huge_pages--;
538 h->free_huge_pages_node[nid]--;
539 return page;
540}
541
86cdb465
NH
542/* Movability of hugepages depends on migration support. */
543static inline gfp_t htlb_alloc_mask(struct hstate *h)
544{
100873d7 545 if (hugepages_treat_as_movable || hugepage_migration_supported(h))
86cdb465
NH
546 return GFP_HIGHUSER_MOVABLE;
547 else
548 return GFP_HIGHUSER;
549}
550
a5516438
AK
551static struct page *dequeue_huge_page_vma(struct hstate *h,
552 struct vm_area_struct *vma,
af0ed73e
JK
553 unsigned long address, int avoid_reserve,
554 long chg)
1da177e4 555{
b1c12cbc 556 struct page *page = NULL;
480eccf9 557 struct mempolicy *mpol;
19770b32 558 nodemask_t *nodemask;
c0ff7453 559 struct zonelist *zonelist;
dd1a239f
MG
560 struct zone *zone;
561 struct zoneref *z;
cc9a6c87 562 unsigned int cpuset_mems_cookie;
1da177e4 563
a1e78772
MG
564 /*
565 * A child process with MAP_PRIVATE mappings created by their parent
566 * have no page reserves. This check ensures that reservations are
567 * not "stolen". The child may still get SIGKILLed
568 */
af0ed73e 569 if (!vma_has_reserves(vma, chg) &&
a5516438 570 h->free_huge_pages - h->resv_huge_pages == 0)
c0ff7453 571 goto err;
a1e78772 572
04f2cbe3 573 /* If reserves cannot be used, ensure enough pages are in the pool */
a5516438 574 if (avoid_reserve && h->free_huge_pages - h->resv_huge_pages == 0)
6eab04a8 575 goto err;
04f2cbe3 576
9966c4bb 577retry_cpuset:
d26914d1 578 cpuset_mems_cookie = read_mems_allowed_begin();
9966c4bb 579 zonelist = huge_zonelist(vma, address,
86cdb465 580 htlb_alloc_mask(h), &mpol, &nodemask);
9966c4bb 581
19770b32
MG
582 for_each_zone_zonelist_nodemask(zone, z, zonelist,
583 MAX_NR_ZONES - 1, nodemask) {
344736f2 584 if (cpuset_zone_allowed(zone, htlb_alloc_mask(h))) {
bf50bab2
NH
585 page = dequeue_huge_page_node(h, zone_to_nid(zone));
586 if (page) {
af0ed73e
JK
587 if (avoid_reserve)
588 break;
589 if (!vma_has_reserves(vma, chg))
590 break;
591
07443a85 592 SetPagePrivate(page);
af0ed73e 593 h->resv_huge_pages--;
bf50bab2
NH
594 break;
595 }
3abf7afd 596 }
1da177e4 597 }
cc9a6c87 598
52cd3b07 599 mpol_cond_put(mpol);
d26914d1 600 if (unlikely(!page && read_mems_allowed_retry(cpuset_mems_cookie)))
cc9a6c87 601 goto retry_cpuset;
1da177e4 602 return page;
cc9a6c87
MG
603
604err:
cc9a6c87 605 return NULL;
1da177e4
LT
606}
607
1cac6f2c
LC
608/*
609 * common helper functions for hstate_next_node_to_{alloc|free}.
610 * We may have allocated or freed a huge page based on a different
611 * nodes_allowed previously, so h->next_node_to_{alloc|free} might
612 * be outside of *nodes_allowed. Ensure that we use an allowed
613 * node for alloc or free.
614 */
615static int next_node_allowed(int nid, nodemask_t *nodes_allowed)
616{
617 nid = next_node(nid, *nodes_allowed);
618 if (nid == MAX_NUMNODES)
619 nid = first_node(*nodes_allowed);
620 VM_BUG_ON(nid >= MAX_NUMNODES);
621
622 return nid;
623}
624
625static int get_valid_node_allowed(int nid, nodemask_t *nodes_allowed)
626{
627 if (!node_isset(nid, *nodes_allowed))
628 nid = next_node_allowed(nid, nodes_allowed);
629 return nid;
630}
631
632/*
633 * returns the previously saved node ["this node"] from which to
634 * allocate a persistent huge page for the pool and advance the
635 * next node from which to allocate, handling wrap at end of node
636 * mask.
637 */
638static int hstate_next_node_to_alloc(struct hstate *h,
639 nodemask_t *nodes_allowed)
640{
641 int nid;
642
643 VM_BUG_ON(!nodes_allowed);
644
645 nid = get_valid_node_allowed(h->next_nid_to_alloc, nodes_allowed);
646 h->next_nid_to_alloc = next_node_allowed(nid, nodes_allowed);
647
648 return nid;
649}
650
651/*
652 * helper for free_pool_huge_page() - return the previously saved
653 * node ["this node"] from which to free a huge page. Advance the
654 * next node id whether or not we find a free huge page to free so
655 * that the next attempt to free addresses the next node.
656 */
657static int hstate_next_node_to_free(struct hstate *h, nodemask_t *nodes_allowed)
658{
659 int nid;
660
661 VM_BUG_ON(!nodes_allowed);
662
663 nid = get_valid_node_allowed(h->next_nid_to_free, nodes_allowed);
664 h->next_nid_to_free = next_node_allowed(nid, nodes_allowed);
665
666 return nid;
667}
668
669#define for_each_node_mask_to_alloc(hs, nr_nodes, node, mask) \
670 for (nr_nodes = nodes_weight(*mask); \
671 nr_nodes > 0 && \
672 ((node = hstate_next_node_to_alloc(hs, mask)) || 1); \
673 nr_nodes--)
674
675#define for_each_node_mask_to_free(hs, nr_nodes, node, mask) \
676 for (nr_nodes = nodes_weight(*mask); \
677 nr_nodes > 0 && \
678 ((node = hstate_next_node_to_free(hs, mask)) || 1); \
679 nr_nodes--)
680
944d9fec
LC
681#if defined(CONFIG_CMA) && defined(CONFIG_X86_64)
682static void destroy_compound_gigantic_page(struct page *page,
683 unsigned long order)
684{
685 int i;
686 int nr_pages = 1 << order;
687 struct page *p = page + 1;
688
689 for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
690 __ClearPageTail(p);
691 set_page_refcounted(p);
692 p->first_page = NULL;
693 }
694
695 set_compound_order(page, 0);
696 __ClearPageHead(page);
697}
698
699static void free_gigantic_page(struct page *page, unsigned order)
700{
701 free_contig_range(page_to_pfn(page), 1 << order);
702}
703
704static int __alloc_gigantic_page(unsigned long start_pfn,
705 unsigned long nr_pages)
706{
707 unsigned long end_pfn = start_pfn + nr_pages;
708 return alloc_contig_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
709}
710
711static bool pfn_range_valid_gigantic(unsigned long start_pfn,
712 unsigned long nr_pages)
713{
714 unsigned long i, end_pfn = start_pfn + nr_pages;
715 struct page *page;
716
717 for (i = start_pfn; i < end_pfn; i++) {
718 if (!pfn_valid(i))
719 return false;
720
721 page = pfn_to_page(i);
722
723 if (PageReserved(page))
724 return false;
725
726 if (page_count(page) > 0)
727 return false;
728
729 if (PageHuge(page))
730 return false;
731 }
732
733 return true;
734}
735
736static bool zone_spans_last_pfn(const struct zone *zone,
737 unsigned long start_pfn, unsigned long nr_pages)
738{
739 unsigned long last_pfn = start_pfn + nr_pages - 1;
740 return zone_spans_pfn(zone, last_pfn);
741}
742
743static struct page *alloc_gigantic_page(int nid, unsigned order)
744{
745 unsigned long nr_pages = 1 << order;
746 unsigned long ret, pfn, flags;
747 struct zone *z;
748
749 z = NODE_DATA(nid)->node_zones;
750 for (; z - NODE_DATA(nid)->node_zones < MAX_NR_ZONES; z++) {
751 spin_lock_irqsave(&z->lock, flags);
752
753 pfn = ALIGN(z->zone_start_pfn, nr_pages);
754 while (zone_spans_last_pfn(z, pfn, nr_pages)) {
755 if (pfn_range_valid_gigantic(pfn, nr_pages)) {
756 /*
757 * We release the zone lock here because
758 * alloc_contig_range() will also lock the zone
759 * at some point. If there's an allocation
760 * spinning on this lock, it may win the race
761 * and cause alloc_contig_range() to fail...
762 */
763 spin_unlock_irqrestore(&z->lock, flags);
764 ret = __alloc_gigantic_page(pfn, nr_pages);
765 if (!ret)
766 return pfn_to_page(pfn);
767 spin_lock_irqsave(&z->lock, flags);
768 }
769 pfn += nr_pages;
770 }
771
772 spin_unlock_irqrestore(&z->lock, flags);
773 }
774
775 return NULL;
776}
777
778static void prep_new_huge_page(struct hstate *h, struct page *page, int nid);
779static void prep_compound_gigantic_page(struct page *page, unsigned long order);
780
781static struct page *alloc_fresh_gigantic_page_node(struct hstate *h, int nid)
782{
783 struct page *page;
784
785 page = alloc_gigantic_page(nid, huge_page_order(h));
786 if (page) {
787 prep_compound_gigantic_page(page, huge_page_order(h));
788 prep_new_huge_page(h, page, nid);
789 }
790
791 return page;
792}
793
794static int alloc_fresh_gigantic_page(struct hstate *h,
795 nodemask_t *nodes_allowed)
796{
797 struct page *page = NULL;
798 int nr_nodes, node;
799
800 for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
801 page = alloc_fresh_gigantic_page_node(h, node);
802 if (page)
803 return 1;
804 }
805
806 return 0;
807}
808
809static inline bool gigantic_page_supported(void) { return true; }
810#else
811static inline bool gigantic_page_supported(void) { return false; }
812static inline void free_gigantic_page(struct page *page, unsigned order) { }
813static inline void destroy_compound_gigantic_page(struct page *page,
814 unsigned long order) { }
815static inline int alloc_fresh_gigantic_page(struct hstate *h,
816 nodemask_t *nodes_allowed) { return 0; }
817#endif
818
a5516438 819static void update_and_free_page(struct hstate *h, struct page *page)
6af2acb6
AL
820{
821 int i;
a5516438 822
944d9fec
LC
823 if (hstate_is_gigantic(h) && !gigantic_page_supported())
824 return;
18229df5 825
a5516438
AK
826 h->nr_huge_pages--;
827 h->nr_huge_pages_node[page_to_nid(page)]--;
828 for (i = 0; i < pages_per_huge_page(h); i++) {
32f84528
CF
829 page[i].flags &= ~(1 << PG_locked | 1 << PG_error |
830 1 << PG_referenced | 1 << PG_dirty |
a7407a27
LC
831 1 << PG_active | 1 << PG_private |
832 1 << PG_writeback);
6af2acb6 833 }
309381fe 834 VM_BUG_ON_PAGE(hugetlb_cgroup_from_page(page), page);
6af2acb6
AL
835 set_compound_page_dtor(page, NULL);
836 set_page_refcounted(page);
944d9fec
LC
837 if (hstate_is_gigantic(h)) {
838 destroy_compound_gigantic_page(page, huge_page_order(h));
839 free_gigantic_page(page, huge_page_order(h));
840 } else {
841 arch_release_hugepage(page);
842 __free_pages(page, huge_page_order(h));
843 }
6af2acb6
AL
844}
845
e5ff2159
AK
846struct hstate *size_to_hstate(unsigned long size)
847{
848 struct hstate *h;
849
850 for_each_hstate(h) {
851 if (huge_page_size(h) == size)
852 return h;
853 }
854 return NULL;
855}
856
8f1d26d0 857void free_huge_page(struct page *page)
27a85ef1 858{
a5516438
AK
859 /*
860 * Can't pass hstate in here because it is called from the
861 * compound page destructor.
862 */
e5ff2159 863 struct hstate *h = page_hstate(page);
7893d1d5 864 int nid = page_to_nid(page);
90481622
DG
865 struct hugepage_subpool *spool =
866 (struct hugepage_subpool *)page_private(page);
07443a85 867 bool restore_reserve;
27a85ef1 868
e5df70ab 869 set_page_private(page, 0);
23be7468 870 page->mapping = NULL;
7893d1d5 871 BUG_ON(page_count(page));
0fe6e20b 872 BUG_ON(page_mapcount(page));
07443a85 873 restore_reserve = PagePrivate(page);
16c794b4 874 ClearPagePrivate(page);
27a85ef1
DG
875
876 spin_lock(&hugetlb_lock);
6d76dcf4
AK
877 hugetlb_cgroup_uncharge_page(hstate_index(h),
878 pages_per_huge_page(h), page);
07443a85
JK
879 if (restore_reserve)
880 h->resv_huge_pages++;
881
944d9fec 882 if (h->surplus_huge_pages_node[nid]) {
0edaecfa
AK
883 /* remove the page from active list */
884 list_del(&page->lru);
a5516438
AK
885 update_and_free_page(h, page);
886 h->surplus_huge_pages--;
887 h->surplus_huge_pages_node[nid]--;
7893d1d5 888 } else {
5d3a551c 889 arch_clear_hugepage_flags(page);
a5516438 890 enqueue_huge_page(h, page);
7893d1d5 891 }
27a85ef1 892 spin_unlock(&hugetlb_lock);
90481622 893 hugepage_subpool_put_pages(spool, 1);
27a85ef1
DG
894}
895
a5516438 896static void prep_new_huge_page(struct hstate *h, struct page *page, int nid)
b7ba30c6 897{
0edaecfa 898 INIT_LIST_HEAD(&page->lru);
b7ba30c6
AK
899 set_compound_page_dtor(page, free_huge_page);
900 spin_lock(&hugetlb_lock);
9dd540e2 901 set_hugetlb_cgroup(page, NULL);
a5516438
AK
902 h->nr_huge_pages++;
903 h->nr_huge_pages_node[nid]++;
b7ba30c6
AK
904 spin_unlock(&hugetlb_lock);
905 put_page(page); /* free it into the hugepage allocator */
906}
907
2906dd52 908static void prep_compound_gigantic_page(struct page *page, unsigned long order)
20a0307c
WF
909{
910 int i;
911 int nr_pages = 1 << order;
912 struct page *p = page + 1;
913
914 /* we rely on prep_new_huge_page to set the destructor */
915 set_compound_order(page, order);
916 __SetPageHead(page);
ef5a22be 917 __ClearPageReserved(page);
20a0307c 918 for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
ef5a22be
AA
919 /*
920 * For gigantic hugepages allocated through bootmem at
921 * boot, it's safer to be consistent with the not-gigantic
922 * hugepages and clear the PG_reserved bit from all tail pages
923 * too. Otherwse drivers using get_user_pages() to access tail
924 * pages may get the reference counting wrong if they see
925 * PG_reserved set on a tail page (despite the head page not
926 * having PG_reserved set). Enforcing this consistency between
927 * head and tail pages allows drivers to optimize away a check
928 * on the head page when they need know if put_page() is needed
929 * after get_user_pages().
930 */
931 __ClearPageReserved(p);
58a84aa9 932 set_page_count(p, 0);
20a0307c 933 p->first_page = page;
44fc8057
DR
934 /* Make sure p->first_page is always valid for PageTail() */
935 smp_wmb();
936 __SetPageTail(p);
20a0307c
WF
937 }
938}
939
7795912c
AM
940/*
941 * PageHuge() only returns true for hugetlbfs pages, but not for normal or
942 * transparent huge pages. See the PageTransHuge() documentation for more
943 * details.
944 */
20a0307c
WF
945int PageHuge(struct page *page)
946{
20a0307c
WF
947 if (!PageCompound(page))
948 return 0;
949
950 page = compound_head(page);
758f66a2 951 return get_compound_page_dtor(page) == free_huge_page;
20a0307c 952}
43131e14
NH
953EXPORT_SYMBOL_GPL(PageHuge);
954
27c73ae7
AA
955/*
956 * PageHeadHuge() only returns true for hugetlbfs head page, but not for
957 * normal or transparent huge pages.
958 */
959int PageHeadHuge(struct page *page_head)
960{
27c73ae7
AA
961 if (!PageHead(page_head))
962 return 0;
963
758f66a2 964 return get_compound_page_dtor(page_head) == free_huge_page;
27c73ae7 965}
27c73ae7 966
13d60f4b
ZY
967pgoff_t __basepage_index(struct page *page)
968{
969 struct page *page_head = compound_head(page);
970 pgoff_t index = page_index(page_head);
971 unsigned long compound_idx;
972
973 if (!PageHuge(page_head))
974 return page_index(page);
975
976 if (compound_order(page_head) >= MAX_ORDER)
977 compound_idx = page_to_pfn(page) - page_to_pfn(page_head);
978 else
979 compound_idx = page - page_head;
980
981 return (index << compound_order(page_head)) + compound_idx;
982}
983
a5516438 984static struct page *alloc_fresh_huge_page_node(struct hstate *h, int nid)
1da177e4 985{
1da177e4 986 struct page *page;
f96efd58 987
6484eb3e 988 page = alloc_pages_exact_node(nid,
86cdb465 989 htlb_alloc_mask(h)|__GFP_COMP|__GFP_THISNODE|
551883ae 990 __GFP_REPEAT|__GFP_NOWARN,
a5516438 991 huge_page_order(h));
1da177e4 992 if (page) {
7f2e9525 993 if (arch_prepare_hugepage(page)) {
caff3a2c 994 __free_pages(page, huge_page_order(h));
7b8ee84d 995 return NULL;
7f2e9525 996 }
a5516438 997 prep_new_huge_page(h, page, nid);
1da177e4 998 }
63b4613c
NA
999
1000 return page;
1001}
1002
b2261026
JK
1003static int alloc_fresh_huge_page(struct hstate *h, nodemask_t *nodes_allowed)
1004{
1005 struct page *page;
1006 int nr_nodes, node;
1007 int ret = 0;
1008
1009 for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
1010 page = alloc_fresh_huge_page_node(h, node);
1011 if (page) {
1012 ret = 1;
1013 break;
1014 }
1015 }
1016
1017 if (ret)
1018 count_vm_event(HTLB_BUDDY_PGALLOC);
1019 else
1020 count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
1021
1022 return ret;
1023}
1024
e8c5c824
LS
1025/*
1026 * Free huge page from pool from next node to free.
1027 * Attempt to keep persistent huge pages more or less
1028 * balanced over allowed nodes.
1029 * Called with hugetlb_lock locked.
1030 */
6ae11b27
LS
1031static int free_pool_huge_page(struct hstate *h, nodemask_t *nodes_allowed,
1032 bool acct_surplus)
e8c5c824 1033{
b2261026 1034 int nr_nodes, node;
e8c5c824
LS
1035 int ret = 0;
1036
b2261026 1037 for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
685f3457
LS
1038 /*
1039 * If we're returning unused surplus pages, only examine
1040 * nodes with surplus pages.
1041 */
b2261026
JK
1042 if ((!acct_surplus || h->surplus_huge_pages_node[node]) &&
1043 !list_empty(&h->hugepage_freelists[node])) {
e8c5c824 1044 struct page *page =
b2261026 1045 list_entry(h->hugepage_freelists[node].next,
e8c5c824
LS
1046 struct page, lru);
1047 list_del(&page->lru);
1048 h->free_huge_pages--;
b2261026 1049 h->free_huge_pages_node[node]--;
685f3457
LS
1050 if (acct_surplus) {
1051 h->surplus_huge_pages--;
b2261026 1052 h->surplus_huge_pages_node[node]--;
685f3457 1053 }
e8c5c824
LS
1054 update_and_free_page(h, page);
1055 ret = 1;
9a76db09 1056 break;
e8c5c824 1057 }
b2261026 1058 }
e8c5c824
LS
1059
1060 return ret;
1061}
1062
c8721bbb
NH
1063/*
1064 * Dissolve a given free hugepage into free buddy pages. This function does
1065 * nothing for in-use (including surplus) hugepages.
1066 */
1067static void dissolve_free_huge_page(struct page *page)
1068{
1069 spin_lock(&hugetlb_lock);
1070 if (PageHuge(page) && !page_count(page)) {
1071 struct hstate *h = page_hstate(page);
1072 int nid = page_to_nid(page);
1073 list_del(&page->lru);
1074 h->free_huge_pages--;
1075 h->free_huge_pages_node[nid]--;
1076 update_and_free_page(h, page);
1077 }
1078 spin_unlock(&hugetlb_lock);
1079}
1080
1081/*
1082 * Dissolve free hugepages in a given pfn range. Used by memory hotplug to
1083 * make specified memory blocks removable from the system.
1084 * Note that start_pfn should aligned with (minimum) hugepage size.
1085 */
1086void dissolve_free_huge_pages(unsigned long start_pfn, unsigned long end_pfn)
1087{
1088 unsigned int order = 8 * sizeof(void *);
1089 unsigned long pfn;
1090 struct hstate *h;
1091
d0177639
LZ
1092 if (!hugepages_supported())
1093 return;
1094
c8721bbb
NH
1095 /* Set scan step to minimum hugepage size */
1096 for_each_hstate(h)
1097 if (order > huge_page_order(h))
1098 order = huge_page_order(h);
1099 VM_BUG_ON(!IS_ALIGNED(start_pfn, 1 << order));
1100 for (pfn = start_pfn; pfn < end_pfn; pfn += 1 << order)
1101 dissolve_free_huge_page(pfn_to_page(pfn));
1102}
1103
bf50bab2 1104static struct page *alloc_buddy_huge_page(struct hstate *h, int nid)
7893d1d5
AL
1105{
1106 struct page *page;
bf50bab2 1107 unsigned int r_nid;
7893d1d5 1108
bae7f4ae 1109 if (hstate_is_gigantic(h))
aa888a74
AK
1110 return NULL;
1111
d1c3fb1f
NA
1112 /*
1113 * Assume we will successfully allocate the surplus page to
1114 * prevent racing processes from causing the surplus to exceed
1115 * overcommit
1116 *
1117 * This however introduces a different race, where a process B
1118 * tries to grow the static hugepage pool while alloc_pages() is
1119 * called by process A. B will only examine the per-node
1120 * counters in determining if surplus huge pages can be
1121 * converted to normal huge pages in adjust_pool_surplus(). A
1122 * won't be able to increment the per-node counter, until the
1123 * lock is dropped by B, but B doesn't drop hugetlb_lock until
1124 * no more huge pages can be converted from surplus to normal
1125 * state (and doesn't try to convert again). Thus, we have a
1126 * case where a surplus huge page exists, the pool is grown, and
1127 * the surplus huge page still exists after, even though it
1128 * should just have been converted to a normal huge page. This
1129 * does not leak memory, though, as the hugepage will be freed
1130 * once it is out of use. It also does not allow the counters to
1131 * go out of whack in adjust_pool_surplus() as we don't modify
1132 * the node values until we've gotten the hugepage and only the
1133 * per-node value is checked there.
1134 */
1135 spin_lock(&hugetlb_lock);
a5516438 1136 if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages) {
d1c3fb1f
NA
1137 spin_unlock(&hugetlb_lock);
1138 return NULL;
1139 } else {
a5516438
AK
1140 h->nr_huge_pages++;
1141 h->surplus_huge_pages++;
d1c3fb1f
NA
1142 }
1143 spin_unlock(&hugetlb_lock);
1144
bf50bab2 1145 if (nid == NUMA_NO_NODE)
86cdb465 1146 page = alloc_pages(htlb_alloc_mask(h)|__GFP_COMP|
bf50bab2
NH
1147 __GFP_REPEAT|__GFP_NOWARN,
1148 huge_page_order(h));
1149 else
1150 page = alloc_pages_exact_node(nid,
86cdb465 1151 htlb_alloc_mask(h)|__GFP_COMP|__GFP_THISNODE|
bf50bab2 1152 __GFP_REPEAT|__GFP_NOWARN, huge_page_order(h));
d1c3fb1f 1153
caff3a2c
GS
1154 if (page && arch_prepare_hugepage(page)) {
1155 __free_pages(page, huge_page_order(h));
ea5768c7 1156 page = NULL;
caff3a2c
GS
1157 }
1158
d1c3fb1f 1159 spin_lock(&hugetlb_lock);
7893d1d5 1160 if (page) {
0edaecfa 1161 INIT_LIST_HEAD(&page->lru);
bf50bab2 1162 r_nid = page_to_nid(page);
7893d1d5 1163 set_compound_page_dtor(page, free_huge_page);
9dd540e2 1164 set_hugetlb_cgroup(page, NULL);
d1c3fb1f
NA
1165 /*
1166 * We incremented the global counters already
1167 */
bf50bab2
NH
1168 h->nr_huge_pages_node[r_nid]++;
1169 h->surplus_huge_pages_node[r_nid]++;
3b116300 1170 __count_vm_event(HTLB_BUDDY_PGALLOC);
d1c3fb1f 1171 } else {
a5516438
AK
1172 h->nr_huge_pages--;
1173 h->surplus_huge_pages--;
3b116300 1174 __count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
7893d1d5 1175 }
d1c3fb1f 1176 spin_unlock(&hugetlb_lock);
7893d1d5
AL
1177
1178 return page;
1179}
1180
bf50bab2
NH
1181/*
1182 * This allocation function is useful in the context where vma is irrelevant.
1183 * E.g. soft-offlining uses this function because it only cares physical
1184 * address of error page.
1185 */
1186struct page *alloc_huge_page_node(struct hstate *h, int nid)
1187{
4ef91848 1188 struct page *page = NULL;
bf50bab2
NH
1189
1190 spin_lock(&hugetlb_lock);
4ef91848
JK
1191 if (h->free_huge_pages - h->resv_huge_pages > 0)
1192 page = dequeue_huge_page_node(h, nid);
bf50bab2
NH
1193 spin_unlock(&hugetlb_lock);
1194
94ae8ba7 1195 if (!page)
bf50bab2
NH
1196 page = alloc_buddy_huge_page(h, nid);
1197
1198 return page;
1199}
1200
e4e574b7 1201/*
25985edc 1202 * Increase the hugetlb pool such that it can accommodate a reservation
e4e574b7
AL
1203 * of size 'delta'.
1204 */
a5516438 1205static int gather_surplus_pages(struct hstate *h, int delta)
e4e574b7
AL
1206{
1207 struct list_head surplus_list;
1208 struct page *page, *tmp;
1209 int ret, i;
1210 int needed, allocated;
28073b02 1211 bool alloc_ok = true;
e4e574b7 1212
a5516438 1213 needed = (h->resv_huge_pages + delta) - h->free_huge_pages;
ac09b3a1 1214 if (needed <= 0) {
a5516438 1215 h->resv_huge_pages += delta;
e4e574b7 1216 return 0;
ac09b3a1 1217 }
e4e574b7
AL
1218
1219 allocated = 0;
1220 INIT_LIST_HEAD(&surplus_list);
1221
1222 ret = -ENOMEM;
1223retry:
1224 spin_unlock(&hugetlb_lock);
1225 for (i = 0; i < needed; i++) {
bf50bab2 1226 page = alloc_buddy_huge_page(h, NUMA_NO_NODE);
28073b02
HD
1227 if (!page) {
1228 alloc_ok = false;
1229 break;
1230 }
e4e574b7
AL
1231 list_add(&page->lru, &surplus_list);
1232 }
28073b02 1233 allocated += i;
e4e574b7
AL
1234
1235 /*
1236 * After retaking hugetlb_lock, we need to recalculate 'needed'
1237 * because either resv_huge_pages or free_huge_pages may have changed.
1238 */
1239 spin_lock(&hugetlb_lock);
a5516438
AK
1240 needed = (h->resv_huge_pages + delta) -
1241 (h->free_huge_pages + allocated);
28073b02
HD
1242 if (needed > 0) {
1243 if (alloc_ok)
1244 goto retry;
1245 /*
1246 * We were not able to allocate enough pages to
1247 * satisfy the entire reservation so we free what
1248 * we've allocated so far.
1249 */
1250 goto free;
1251 }
e4e574b7
AL
1252 /*
1253 * The surplus_list now contains _at_least_ the number of extra pages
25985edc 1254 * needed to accommodate the reservation. Add the appropriate number
e4e574b7 1255 * of pages to the hugetlb pool and free the extras back to the buddy
ac09b3a1
AL
1256 * allocator. Commit the entire reservation here to prevent another
1257 * process from stealing the pages as they are added to the pool but
1258 * before they are reserved.
e4e574b7
AL
1259 */
1260 needed += allocated;
a5516438 1261 h->resv_huge_pages += delta;
e4e574b7 1262 ret = 0;
a9869b83 1263
19fc3f0a 1264 /* Free the needed pages to the hugetlb pool */
e4e574b7 1265 list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
19fc3f0a
AL
1266 if ((--needed) < 0)
1267 break;
a9869b83
NH
1268 /*
1269 * This page is now managed by the hugetlb allocator and has
1270 * no users -- drop the buddy allocator's reference.
1271 */
1272 put_page_testzero(page);
309381fe 1273 VM_BUG_ON_PAGE(page_count(page), page);
a5516438 1274 enqueue_huge_page(h, page);
19fc3f0a 1275 }
28073b02 1276free:
b0365c8d 1277 spin_unlock(&hugetlb_lock);
19fc3f0a
AL
1278
1279 /* Free unnecessary surplus pages to the buddy allocator */
c0d934ba
JK
1280 list_for_each_entry_safe(page, tmp, &surplus_list, lru)
1281 put_page(page);
a9869b83 1282 spin_lock(&hugetlb_lock);
e4e574b7
AL
1283
1284 return ret;
1285}
1286
1287/*
1288 * When releasing a hugetlb pool reservation, any surplus pages that were
1289 * allocated to satisfy the reservation must be explicitly freed if they were
1290 * never used.
685f3457 1291 * Called with hugetlb_lock held.
e4e574b7 1292 */
a5516438
AK
1293static void return_unused_surplus_pages(struct hstate *h,
1294 unsigned long unused_resv_pages)
e4e574b7 1295{
e4e574b7
AL
1296 unsigned long nr_pages;
1297
ac09b3a1 1298 /* Uncommit the reservation */
a5516438 1299 h->resv_huge_pages -= unused_resv_pages;
ac09b3a1 1300
aa888a74 1301 /* Cannot return gigantic pages currently */
bae7f4ae 1302 if (hstate_is_gigantic(h))
aa888a74
AK
1303 return;
1304
a5516438 1305 nr_pages = min(unused_resv_pages, h->surplus_huge_pages);
e4e574b7 1306
685f3457
LS
1307 /*
1308 * We want to release as many surplus pages as possible, spread
9b5e5d0f
LS
1309 * evenly across all nodes with memory. Iterate across these nodes
1310 * until we can no longer free unreserved surplus pages. This occurs
1311 * when the nodes with surplus pages have no free pages.
1312 * free_pool_huge_page() will balance the the freed pages across the
1313 * on-line nodes with memory and will handle the hstate accounting.
685f3457
LS
1314 */
1315 while (nr_pages--) {
8cebfcd0 1316 if (!free_pool_huge_page(h, &node_states[N_MEMORY], 1))
685f3457 1317 break;
7848a4bf 1318 cond_resched_lock(&hugetlb_lock);
e4e574b7
AL
1319 }
1320}
1321
c37f9fb1
AW
1322/*
1323 * Determine if the huge page at addr within the vma has an associated
1324 * reservation. Where it does not we will need to logically increase
90481622
DG
1325 * reservation and actually increase subpool usage before an allocation
1326 * can occur. Where any new reservation would be required the
1327 * reservation change is prepared, but not committed. Once the page
1328 * has been allocated from the subpool and instantiated the change should
1329 * be committed via vma_commit_reservation. No action is required on
1330 * failure.
c37f9fb1 1331 */
e2f17d94 1332static long vma_needs_reservation(struct hstate *h,
a5516438 1333 struct vm_area_struct *vma, unsigned long addr)
c37f9fb1 1334{
4e35f483
JK
1335 struct resv_map *resv;
1336 pgoff_t idx;
1337 long chg;
c37f9fb1 1338
4e35f483
JK
1339 resv = vma_resv_map(vma);
1340 if (!resv)
84afd99b 1341 return 1;
c37f9fb1 1342
4e35f483
JK
1343 idx = vma_hugecache_offset(h, vma, addr);
1344 chg = region_chg(resv, idx, idx + 1);
84afd99b 1345
4e35f483
JK
1346 if (vma->vm_flags & VM_MAYSHARE)
1347 return chg;
1348 else
1349 return chg < 0 ? chg : 0;
c37f9fb1 1350}
a5516438
AK
1351static void vma_commit_reservation(struct hstate *h,
1352 struct vm_area_struct *vma, unsigned long addr)
c37f9fb1 1353{
4e35f483
JK
1354 struct resv_map *resv;
1355 pgoff_t idx;
84afd99b 1356
4e35f483
JK
1357 resv = vma_resv_map(vma);
1358 if (!resv)
1359 return;
84afd99b 1360
4e35f483
JK
1361 idx = vma_hugecache_offset(h, vma, addr);
1362 region_add(resv, idx, idx + 1);
c37f9fb1
AW
1363}
1364
a1e78772 1365static struct page *alloc_huge_page(struct vm_area_struct *vma,
04f2cbe3 1366 unsigned long addr, int avoid_reserve)
1da177e4 1367{
90481622 1368 struct hugepage_subpool *spool = subpool_vma(vma);
a5516438 1369 struct hstate *h = hstate_vma(vma);
348ea204 1370 struct page *page;
e2f17d94 1371 long chg;
6d76dcf4
AK
1372 int ret, idx;
1373 struct hugetlb_cgroup *h_cg;
a1e78772 1374
6d76dcf4 1375 idx = hstate_index(h);
a1e78772 1376 /*
90481622
DG
1377 * Processes that did not create the mapping will have no
1378 * reserves and will not have accounted against subpool
1379 * limit. Check that the subpool limit can be made before
1380 * satisfying the allocation MAP_NORESERVE mappings may also
1381 * need pages and subpool limit allocated allocated if no reserve
1382 * mapping overlaps.
a1e78772 1383 */
a5516438 1384 chg = vma_needs_reservation(h, vma, addr);
c37f9fb1 1385 if (chg < 0)
76dcee75 1386 return ERR_PTR(-ENOMEM);
8bb3f12e
JK
1387 if (chg || avoid_reserve)
1388 if (hugepage_subpool_get_pages(spool, 1))
76dcee75 1389 return ERR_PTR(-ENOSPC);
1da177e4 1390
6d76dcf4 1391 ret = hugetlb_cgroup_charge_cgroup(idx, pages_per_huge_page(h), &h_cg);
8f34af6f
JZ
1392 if (ret)
1393 goto out_subpool_put;
1394
1da177e4 1395 spin_lock(&hugetlb_lock);
af0ed73e 1396 page = dequeue_huge_page_vma(h, vma, addr, avoid_reserve, chg);
81a6fcae 1397 if (!page) {
94ae8ba7 1398 spin_unlock(&hugetlb_lock);
bf50bab2 1399 page = alloc_buddy_huge_page(h, NUMA_NO_NODE);
8f34af6f
JZ
1400 if (!page)
1401 goto out_uncharge_cgroup;
1402
79dbb236
AK
1403 spin_lock(&hugetlb_lock);
1404 list_move(&page->lru, &h->hugepage_activelist);
81a6fcae 1405 /* Fall through */
68842c9b 1406 }
81a6fcae
JK
1407 hugetlb_cgroup_commit_charge(idx, pages_per_huge_page(h), h_cg, page);
1408 spin_unlock(&hugetlb_lock);
348ea204 1409
90481622 1410 set_page_private(page, (unsigned long)spool);
90d8b7e6 1411
a5516438 1412 vma_commit_reservation(h, vma, addr);
90d8b7e6 1413 return page;
8f34af6f
JZ
1414
1415out_uncharge_cgroup:
1416 hugetlb_cgroup_uncharge_cgroup(idx, pages_per_huge_page(h), h_cg);
1417out_subpool_put:
1418 if (chg || avoid_reserve)
1419 hugepage_subpool_put_pages(spool, 1);
1420 return ERR_PTR(-ENOSPC);
b45b5bd6
DG
1421}
1422
74060e4d
NH
1423/*
1424 * alloc_huge_page()'s wrapper which simply returns the page if allocation
1425 * succeeds, otherwise NULL. This function is called from new_vma_page(),
1426 * where no ERR_VALUE is expected to be returned.
1427 */
1428struct page *alloc_huge_page_noerr(struct vm_area_struct *vma,
1429 unsigned long addr, int avoid_reserve)
1430{
1431 struct page *page = alloc_huge_page(vma, addr, avoid_reserve);
1432 if (IS_ERR(page))
1433 page = NULL;
1434 return page;
1435}
1436
91f47662 1437int __weak alloc_bootmem_huge_page(struct hstate *h)
aa888a74
AK
1438{
1439 struct huge_bootmem_page *m;
b2261026 1440 int nr_nodes, node;
aa888a74 1441
b2261026 1442 for_each_node_mask_to_alloc(h, nr_nodes, node, &node_states[N_MEMORY]) {
aa888a74
AK
1443 void *addr;
1444
8b89a116
GS
1445 addr = memblock_virt_alloc_try_nid_nopanic(
1446 huge_page_size(h), huge_page_size(h),
1447 0, BOOTMEM_ALLOC_ACCESSIBLE, node);
aa888a74
AK
1448 if (addr) {
1449 /*
1450 * Use the beginning of the huge page to store the
1451 * huge_bootmem_page struct (until gather_bootmem
1452 * puts them into the mem_map).
1453 */
1454 m = addr;
91f47662 1455 goto found;
aa888a74 1456 }
aa888a74
AK
1457 }
1458 return 0;
1459
1460found:
df994ead 1461 BUG_ON(!IS_ALIGNED(virt_to_phys(m), huge_page_size(h)));
aa888a74
AK
1462 /* Put them into a private list first because mem_map is not up yet */
1463 list_add(&m->list, &huge_boot_pages);
1464 m->hstate = h;
1465 return 1;
1466}
1467
f412c97a 1468static void __init prep_compound_huge_page(struct page *page, int order)
18229df5
AW
1469{
1470 if (unlikely(order > (MAX_ORDER - 1)))
1471 prep_compound_gigantic_page(page, order);
1472 else
1473 prep_compound_page(page, order);
1474}
1475
aa888a74
AK
1476/* Put bootmem huge pages into the standard lists after mem_map is up */
1477static void __init gather_bootmem_prealloc(void)
1478{
1479 struct huge_bootmem_page *m;
1480
1481 list_for_each_entry(m, &huge_boot_pages, list) {
aa888a74 1482 struct hstate *h = m->hstate;
ee8f248d
BB
1483 struct page *page;
1484
1485#ifdef CONFIG_HIGHMEM
1486 page = pfn_to_page(m->phys >> PAGE_SHIFT);
8b89a116
GS
1487 memblock_free_late(__pa(m),
1488 sizeof(struct huge_bootmem_page));
ee8f248d
BB
1489#else
1490 page = virt_to_page(m);
1491#endif
aa888a74 1492 WARN_ON(page_count(page) != 1);
18229df5 1493 prep_compound_huge_page(page, h->order);
ef5a22be 1494 WARN_ON(PageReserved(page));
aa888a74 1495 prep_new_huge_page(h, page, page_to_nid(page));
b0320c7b
RA
1496 /*
1497 * If we had gigantic hugepages allocated at boot time, we need
1498 * to restore the 'stolen' pages to totalram_pages in order to
1499 * fix confusing memory reports from free(1) and another
1500 * side-effects, like CommitLimit going negative.
1501 */
bae7f4ae 1502 if (hstate_is_gigantic(h))
3dcc0571 1503 adjust_managed_page_count(page, 1 << h->order);
aa888a74
AK
1504 }
1505}
1506
8faa8b07 1507static void __init hugetlb_hstate_alloc_pages(struct hstate *h)
1da177e4
LT
1508{
1509 unsigned long i;
a5516438 1510
e5ff2159 1511 for (i = 0; i < h->max_huge_pages; ++i) {
bae7f4ae 1512 if (hstate_is_gigantic(h)) {
aa888a74
AK
1513 if (!alloc_bootmem_huge_page(h))
1514 break;
9b5e5d0f 1515 } else if (!alloc_fresh_huge_page(h,
8cebfcd0 1516 &node_states[N_MEMORY]))
1da177e4 1517 break;
1da177e4 1518 }
8faa8b07 1519 h->max_huge_pages = i;
e5ff2159
AK
1520}
1521
1522static void __init hugetlb_init_hstates(void)
1523{
1524 struct hstate *h;
1525
1526 for_each_hstate(h) {
8faa8b07 1527 /* oversize hugepages were init'ed in early boot */
bae7f4ae 1528 if (!hstate_is_gigantic(h))
8faa8b07 1529 hugetlb_hstate_alloc_pages(h);
e5ff2159
AK
1530 }
1531}
1532
4abd32db
AK
1533static char * __init memfmt(char *buf, unsigned long n)
1534{
1535 if (n >= (1UL << 30))
1536 sprintf(buf, "%lu GB", n >> 30);
1537 else if (n >= (1UL << 20))
1538 sprintf(buf, "%lu MB", n >> 20);
1539 else
1540 sprintf(buf, "%lu KB", n >> 10);
1541 return buf;
1542}
1543
e5ff2159
AK
1544static void __init report_hugepages(void)
1545{
1546 struct hstate *h;
1547
1548 for_each_hstate(h) {
4abd32db 1549 char buf[32];
ffb22af5 1550 pr_info("HugeTLB registered %s page size, pre-allocated %ld pages\n",
4abd32db
AK
1551 memfmt(buf, huge_page_size(h)),
1552 h->free_huge_pages);
e5ff2159
AK
1553 }
1554}
1555
1da177e4 1556#ifdef CONFIG_HIGHMEM
6ae11b27
LS
1557static void try_to_free_low(struct hstate *h, unsigned long count,
1558 nodemask_t *nodes_allowed)
1da177e4 1559{
4415cc8d
CL
1560 int i;
1561
bae7f4ae 1562 if (hstate_is_gigantic(h))
aa888a74
AK
1563 return;
1564
6ae11b27 1565 for_each_node_mask(i, *nodes_allowed) {
1da177e4 1566 struct page *page, *next;
a5516438
AK
1567 struct list_head *freel = &h->hugepage_freelists[i];
1568 list_for_each_entry_safe(page, next, freel, lru) {
1569 if (count >= h->nr_huge_pages)
6b0c880d 1570 return;
1da177e4
LT
1571 if (PageHighMem(page))
1572 continue;
1573 list_del(&page->lru);
e5ff2159 1574 update_and_free_page(h, page);
a5516438
AK
1575 h->free_huge_pages--;
1576 h->free_huge_pages_node[page_to_nid(page)]--;
1da177e4
LT
1577 }
1578 }
1579}
1580#else
6ae11b27
LS
1581static inline void try_to_free_low(struct hstate *h, unsigned long count,
1582 nodemask_t *nodes_allowed)
1da177e4
LT
1583{
1584}
1585#endif
1586
20a0307c
WF
1587/*
1588 * Increment or decrement surplus_huge_pages. Keep node-specific counters
1589 * balanced by operating on them in a round-robin fashion.
1590 * Returns 1 if an adjustment was made.
1591 */
6ae11b27
LS
1592static int adjust_pool_surplus(struct hstate *h, nodemask_t *nodes_allowed,
1593 int delta)
20a0307c 1594{
b2261026 1595 int nr_nodes, node;
20a0307c
WF
1596
1597 VM_BUG_ON(delta != -1 && delta != 1);
20a0307c 1598
b2261026
JK
1599 if (delta < 0) {
1600 for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
1601 if (h->surplus_huge_pages_node[node])
1602 goto found;
e8c5c824 1603 }
b2261026
JK
1604 } else {
1605 for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
1606 if (h->surplus_huge_pages_node[node] <
1607 h->nr_huge_pages_node[node])
1608 goto found;
e8c5c824 1609 }
b2261026
JK
1610 }
1611 return 0;
20a0307c 1612
b2261026
JK
1613found:
1614 h->surplus_huge_pages += delta;
1615 h->surplus_huge_pages_node[node] += delta;
1616 return 1;
20a0307c
WF
1617}
1618
a5516438 1619#define persistent_huge_pages(h) (h->nr_huge_pages - h->surplus_huge_pages)
6ae11b27
LS
1620static unsigned long set_max_huge_pages(struct hstate *h, unsigned long count,
1621 nodemask_t *nodes_allowed)
1da177e4 1622{
7893d1d5 1623 unsigned long min_count, ret;
1da177e4 1624
944d9fec 1625 if (hstate_is_gigantic(h) && !gigantic_page_supported())
aa888a74
AK
1626 return h->max_huge_pages;
1627
7893d1d5
AL
1628 /*
1629 * Increase the pool size
1630 * First take pages out of surplus state. Then make up the
1631 * remaining difference by allocating fresh huge pages.
d1c3fb1f
NA
1632 *
1633 * We might race with alloc_buddy_huge_page() here and be unable
1634 * to convert a surplus huge page to a normal huge page. That is
1635 * not critical, though, it just means the overall size of the
1636 * pool might be one hugepage larger than it needs to be, but
1637 * within all the constraints specified by the sysctls.
7893d1d5 1638 */
1da177e4 1639 spin_lock(&hugetlb_lock);
a5516438 1640 while (h->surplus_huge_pages && count > persistent_huge_pages(h)) {
6ae11b27 1641 if (!adjust_pool_surplus(h, nodes_allowed, -1))
7893d1d5
AL
1642 break;
1643 }
1644
a5516438 1645 while (count > persistent_huge_pages(h)) {
7893d1d5
AL
1646 /*
1647 * If this allocation races such that we no longer need the
1648 * page, free_huge_page will handle it by freeing the page
1649 * and reducing the surplus.
1650 */
1651 spin_unlock(&hugetlb_lock);
944d9fec
LC
1652 if (hstate_is_gigantic(h))
1653 ret = alloc_fresh_gigantic_page(h, nodes_allowed);
1654 else
1655 ret = alloc_fresh_huge_page(h, nodes_allowed);
7893d1d5
AL
1656 spin_lock(&hugetlb_lock);
1657 if (!ret)
1658 goto out;
1659
536240f2
MG
1660 /* Bail for signals. Probably ctrl-c from user */
1661 if (signal_pending(current))
1662 goto out;
7893d1d5 1663 }
7893d1d5
AL
1664
1665 /*
1666 * Decrease the pool size
1667 * First return free pages to the buddy allocator (being careful
1668 * to keep enough around to satisfy reservations). Then place
1669 * pages into surplus state as needed so the pool will shrink
1670 * to the desired size as pages become free.
d1c3fb1f
NA
1671 *
1672 * By placing pages into the surplus state independent of the
1673 * overcommit value, we are allowing the surplus pool size to
1674 * exceed overcommit. There are few sane options here. Since
1675 * alloc_buddy_huge_page() is checking the global counter,
1676 * though, we'll note that we're not allowed to exceed surplus
1677 * and won't grow the pool anywhere else. Not until one of the
1678 * sysctls are changed, or the surplus pages go out of use.
7893d1d5 1679 */
a5516438 1680 min_count = h->resv_huge_pages + h->nr_huge_pages - h->free_huge_pages;
6b0c880d 1681 min_count = max(count, min_count);
6ae11b27 1682 try_to_free_low(h, min_count, nodes_allowed);
a5516438 1683 while (min_count < persistent_huge_pages(h)) {
6ae11b27 1684 if (!free_pool_huge_page(h, nodes_allowed, 0))
1da177e4 1685 break;
55f67141 1686 cond_resched_lock(&hugetlb_lock);
1da177e4 1687 }
a5516438 1688 while (count < persistent_huge_pages(h)) {
6ae11b27 1689 if (!adjust_pool_surplus(h, nodes_allowed, 1))
7893d1d5
AL
1690 break;
1691 }
1692out:
a5516438 1693 ret = persistent_huge_pages(h);
1da177e4 1694 spin_unlock(&hugetlb_lock);
7893d1d5 1695 return ret;
1da177e4
LT
1696}
1697
a3437870
NA
1698#define HSTATE_ATTR_RO(_name) \
1699 static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
1700
1701#define HSTATE_ATTR(_name) \
1702 static struct kobj_attribute _name##_attr = \
1703 __ATTR(_name, 0644, _name##_show, _name##_store)
1704
1705static struct kobject *hugepages_kobj;
1706static struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
1707
9a305230
LS
1708static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp);
1709
1710static struct hstate *kobj_to_hstate(struct kobject *kobj, int *nidp)
a3437870
NA
1711{
1712 int i;
9a305230 1713
a3437870 1714 for (i = 0; i < HUGE_MAX_HSTATE; i++)
9a305230
LS
1715 if (hstate_kobjs[i] == kobj) {
1716 if (nidp)
1717 *nidp = NUMA_NO_NODE;
a3437870 1718 return &hstates[i];
9a305230
LS
1719 }
1720
1721 return kobj_to_node_hstate(kobj, nidp);
a3437870
NA
1722}
1723
06808b08 1724static ssize_t nr_hugepages_show_common(struct kobject *kobj,
a3437870
NA
1725 struct kobj_attribute *attr, char *buf)
1726{
9a305230
LS
1727 struct hstate *h;
1728 unsigned long nr_huge_pages;
1729 int nid;
1730
1731 h = kobj_to_hstate(kobj, &nid);
1732 if (nid == NUMA_NO_NODE)
1733 nr_huge_pages = h->nr_huge_pages;
1734 else
1735 nr_huge_pages = h->nr_huge_pages_node[nid];
1736
1737 return sprintf(buf, "%lu\n", nr_huge_pages);
a3437870 1738}
adbe8726 1739
238d3c13
DR
1740static ssize_t __nr_hugepages_store_common(bool obey_mempolicy,
1741 struct hstate *h, int nid,
1742 unsigned long count, size_t len)
a3437870
NA
1743{
1744 int err;
bad44b5b 1745 NODEMASK_ALLOC(nodemask_t, nodes_allowed, GFP_KERNEL | __GFP_NORETRY);
a3437870 1746
944d9fec 1747 if (hstate_is_gigantic(h) && !gigantic_page_supported()) {
adbe8726
EM
1748 err = -EINVAL;
1749 goto out;
1750 }
1751
9a305230
LS
1752 if (nid == NUMA_NO_NODE) {
1753 /*
1754 * global hstate attribute
1755 */
1756 if (!(obey_mempolicy &&
1757 init_nodemask_of_mempolicy(nodes_allowed))) {
1758 NODEMASK_FREE(nodes_allowed);
8cebfcd0 1759 nodes_allowed = &node_states[N_MEMORY];
9a305230
LS
1760 }
1761 } else if (nodes_allowed) {
1762 /*
1763 * per node hstate attribute: adjust count to global,
1764 * but restrict alloc/free to the specified node.
1765 */
1766 count += h->nr_huge_pages - h->nr_huge_pages_node[nid];
1767 init_nodemask_of_node(nodes_allowed, nid);
1768 } else
8cebfcd0 1769 nodes_allowed = &node_states[N_MEMORY];
9a305230 1770
06808b08 1771 h->max_huge_pages = set_max_huge_pages(h, count, nodes_allowed);
a3437870 1772
8cebfcd0 1773 if (nodes_allowed != &node_states[N_MEMORY])
06808b08
LS
1774 NODEMASK_FREE(nodes_allowed);
1775
1776 return len;
adbe8726
EM
1777out:
1778 NODEMASK_FREE(nodes_allowed);
1779 return err;
06808b08
LS
1780}
1781
238d3c13
DR
1782static ssize_t nr_hugepages_store_common(bool obey_mempolicy,
1783 struct kobject *kobj, const char *buf,
1784 size_t len)
1785{
1786 struct hstate *h;
1787 unsigned long count;
1788 int nid;
1789 int err;
1790
1791 err = kstrtoul(buf, 10, &count);
1792 if (err)
1793 return err;
1794
1795 h = kobj_to_hstate(kobj, &nid);
1796 return __nr_hugepages_store_common(obey_mempolicy, h, nid, count, len);
1797}
1798
06808b08
LS
1799static ssize_t nr_hugepages_show(struct kobject *kobj,
1800 struct kobj_attribute *attr, char *buf)
1801{
1802 return nr_hugepages_show_common(kobj, attr, buf);
1803}
1804
1805static ssize_t nr_hugepages_store(struct kobject *kobj,
1806 struct kobj_attribute *attr, const char *buf, size_t len)
1807{
238d3c13 1808 return nr_hugepages_store_common(false, kobj, buf, len);
a3437870
NA
1809}
1810HSTATE_ATTR(nr_hugepages);
1811
06808b08
LS
1812#ifdef CONFIG_NUMA
1813
1814/*
1815 * hstate attribute for optionally mempolicy-based constraint on persistent
1816 * huge page alloc/free.
1817 */
1818static ssize_t nr_hugepages_mempolicy_show(struct kobject *kobj,
1819 struct kobj_attribute *attr, char *buf)
1820{
1821 return nr_hugepages_show_common(kobj, attr, buf);
1822}
1823
1824static ssize_t nr_hugepages_mempolicy_store(struct kobject *kobj,
1825 struct kobj_attribute *attr, const char *buf, size_t len)
1826{
238d3c13 1827 return nr_hugepages_store_common(true, kobj, buf, len);
06808b08
LS
1828}
1829HSTATE_ATTR(nr_hugepages_mempolicy);
1830#endif
1831
1832
a3437870
NA
1833static ssize_t nr_overcommit_hugepages_show(struct kobject *kobj,
1834 struct kobj_attribute *attr, char *buf)
1835{
9a305230 1836 struct hstate *h = kobj_to_hstate(kobj, NULL);
a3437870
NA
1837 return sprintf(buf, "%lu\n", h->nr_overcommit_huge_pages);
1838}
adbe8726 1839
a3437870
NA
1840static ssize_t nr_overcommit_hugepages_store(struct kobject *kobj,
1841 struct kobj_attribute *attr, const char *buf, size_t count)
1842{
1843 int err;
1844 unsigned long input;
9a305230 1845 struct hstate *h = kobj_to_hstate(kobj, NULL);
a3437870 1846
bae7f4ae 1847 if (hstate_is_gigantic(h))
adbe8726
EM
1848 return -EINVAL;
1849
3dbb95f7 1850 err = kstrtoul(buf, 10, &input);
a3437870 1851 if (err)
73ae31e5 1852 return err;
a3437870
NA
1853
1854 spin_lock(&hugetlb_lock);
1855 h->nr_overcommit_huge_pages = input;
1856 spin_unlock(&hugetlb_lock);
1857
1858 return count;
1859}
1860HSTATE_ATTR(nr_overcommit_hugepages);
1861
1862static ssize_t free_hugepages_show(struct kobject *kobj,
1863 struct kobj_attribute *attr, char *buf)
1864{
9a305230
LS
1865 struct hstate *h;
1866 unsigned long free_huge_pages;
1867 int nid;
1868
1869 h = kobj_to_hstate(kobj, &nid);
1870 if (nid == NUMA_NO_NODE)
1871 free_huge_pages = h->free_huge_pages;
1872 else
1873 free_huge_pages = h->free_huge_pages_node[nid];
1874
1875 return sprintf(buf, "%lu\n", free_huge_pages);
a3437870
NA
1876}
1877HSTATE_ATTR_RO(free_hugepages);
1878
1879static ssize_t resv_hugepages_show(struct kobject *kobj,
1880 struct kobj_attribute *attr, char *buf)
1881{
9a305230 1882 struct hstate *h = kobj_to_hstate(kobj, NULL);
a3437870
NA
1883 return sprintf(buf, "%lu\n", h->resv_huge_pages);
1884}
1885HSTATE_ATTR_RO(resv_hugepages);
1886
1887static ssize_t surplus_hugepages_show(struct kobject *kobj,
1888 struct kobj_attribute *attr, char *buf)
1889{
9a305230
LS
1890 struct hstate *h;
1891 unsigned long surplus_huge_pages;
1892 int nid;
1893
1894 h = kobj_to_hstate(kobj, &nid);
1895 if (nid == NUMA_NO_NODE)
1896 surplus_huge_pages = h->surplus_huge_pages;
1897 else
1898 surplus_huge_pages = h->surplus_huge_pages_node[nid];
1899
1900 return sprintf(buf, "%lu\n", surplus_huge_pages);
a3437870
NA
1901}
1902HSTATE_ATTR_RO(surplus_hugepages);
1903
1904static struct attribute *hstate_attrs[] = {
1905 &nr_hugepages_attr.attr,
1906 &nr_overcommit_hugepages_attr.attr,
1907 &free_hugepages_attr.attr,
1908 &resv_hugepages_attr.attr,
1909 &surplus_hugepages_attr.attr,
06808b08
LS
1910#ifdef CONFIG_NUMA
1911 &nr_hugepages_mempolicy_attr.attr,
1912#endif
a3437870
NA
1913 NULL,
1914};
1915
1916static struct attribute_group hstate_attr_group = {
1917 .attrs = hstate_attrs,
1918};
1919
094e9539
JM
1920static int hugetlb_sysfs_add_hstate(struct hstate *h, struct kobject *parent,
1921 struct kobject **hstate_kobjs,
1922 struct attribute_group *hstate_attr_group)
a3437870
NA
1923{
1924 int retval;
972dc4de 1925 int hi = hstate_index(h);
a3437870 1926
9a305230
LS
1927 hstate_kobjs[hi] = kobject_create_and_add(h->name, parent);
1928 if (!hstate_kobjs[hi])
a3437870
NA
1929 return -ENOMEM;
1930
9a305230 1931 retval = sysfs_create_group(hstate_kobjs[hi], hstate_attr_group);
a3437870 1932 if (retval)
9a305230 1933 kobject_put(hstate_kobjs[hi]);
a3437870
NA
1934
1935 return retval;
1936}
1937
1938static void __init hugetlb_sysfs_init(void)
1939{
1940 struct hstate *h;
1941 int err;
1942
1943 hugepages_kobj = kobject_create_and_add("hugepages", mm_kobj);
1944 if (!hugepages_kobj)
1945 return;
1946
1947 for_each_hstate(h) {
9a305230
LS
1948 err = hugetlb_sysfs_add_hstate(h, hugepages_kobj,
1949 hstate_kobjs, &hstate_attr_group);
a3437870 1950 if (err)
ffb22af5 1951 pr_err("Hugetlb: Unable to add hstate %s", h->name);
a3437870
NA
1952 }
1953}
1954
9a305230
LS
1955#ifdef CONFIG_NUMA
1956
1957/*
1958 * node_hstate/s - associate per node hstate attributes, via their kobjects,
10fbcf4c
KS
1959 * with node devices in node_devices[] using a parallel array. The array
1960 * index of a node device or _hstate == node id.
1961 * This is here to avoid any static dependency of the node device driver, in
9a305230
LS
1962 * the base kernel, on the hugetlb module.
1963 */
1964struct node_hstate {
1965 struct kobject *hugepages_kobj;
1966 struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
1967};
1968struct node_hstate node_hstates[MAX_NUMNODES];
1969
1970/*
10fbcf4c 1971 * A subset of global hstate attributes for node devices
9a305230
LS
1972 */
1973static struct attribute *per_node_hstate_attrs[] = {
1974 &nr_hugepages_attr.attr,
1975 &free_hugepages_attr.attr,
1976 &surplus_hugepages_attr.attr,
1977 NULL,
1978};
1979
1980static struct attribute_group per_node_hstate_attr_group = {
1981 .attrs = per_node_hstate_attrs,
1982};
1983
1984/*
10fbcf4c 1985 * kobj_to_node_hstate - lookup global hstate for node device hstate attr kobj.
9a305230
LS
1986 * Returns node id via non-NULL nidp.
1987 */
1988static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp)
1989{
1990 int nid;
1991
1992 for (nid = 0; nid < nr_node_ids; nid++) {
1993 struct node_hstate *nhs = &node_hstates[nid];
1994 int i;
1995 for (i = 0; i < HUGE_MAX_HSTATE; i++)
1996 if (nhs->hstate_kobjs[i] == kobj) {
1997 if (nidp)
1998 *nidp = nid;
1999 return &hstates[i];
2000 }
2001 }
2002
2003 BUG();
2004 return NULL;
2005}
2006
2007/*
10fbcf4c 2008 * Unregister hstate attributes from a single node device.
9a305230
LS
2009 * No-op if no hstate attributes attached.
2010 */
3cd8b44f 2011static void hugetlb_unregister_node(struct node *node)
9a305230
LS
2012{
2013 struct hstate *h;
10fbcf4c 2014 struct node_hstate *nhs = &node_hstates[node->dev.id];
9a305230
LS
2015
2016 if (!nhs->hugepages_kobj)
9b5e5d0f 2017 return; /* no hstate attributes */
9a305230 2018
972dc4de
AK
2019 for_each_hstate(h) {
2020 int idx = hstate_index(h);
2021 if (nhs->hstate_kobjs[idx]) {
2022 kobject_put(nhs->hstate_kobjs[idx]);
2023 nhs->hstate_kobjs[idx] = NULL;
9a305230 2024 }
972dc4de 2025 }
9a305230
LS
2026
2027 kobject_put(nhs->hugepages_kobj);
2028 nhs->hugepages_kobj = NULL;
2029}
2030
2031/*
10fbcf4c 2032 * hugetlb module exit: unregister hstate attributes from node devices
9a305230
LS
2033 * that have them.
2034 */
2035static void hugetlb_unregister_all_nodes(void)
2036{
2037 int nid;
2038
2039 /*
10fbcf4c 2040 * disable node device registrations.
9a305230
LS
2041 */
2042 register_hugetlbfs_with_node(NULL, NULL);
2043
2044 /*
2045 * remove hstate attributes from any nodes that have them.
2046 */
2047 for (nid = 0; nid < nr_node_ids; nid++)
8732794b 2048 hugetlb_unregister_node(node_devices[nid]);
9a305230
LS
2049}
2050
2051/*
10fbcf4c 2052 * Register hstate attributes for a single node device.
9a305230
LS
2053 * No-op if attributes already registered.
2054 */
3cd8b44f 2055static void hugetlb_register_node(struct node *node)
9a305230
LS
2056{
2057 struct hstate *h;
10fbcf4c 2058 struct node_hstate *nhs = &node_hstates[node->dev.id];
9a305230
LS
2059 int err;
2060
2061 if (nhs->hugepages_kobj)
2062 return; /* already allocated */
2063
2064 nhs->hugepages_kobj = kobject_create_and_add("hugepages",
10fbcf4c 2065 &node->dev.kobj);
9a305230
LS
2066 if (!nhs->hugepages_kobj)
2067 return;
2068
2069 for_each_hstate(h) {
2070 err = hugetlb_sysfs_add_hstate(h, nhs->hugepages_kobj,
2071 nhs->hstate_kobjs,
2072 &per_node_hstate_attr_group);
2073 if (err) {
ffb22af5
AM
2074 pr_err("Hugetlb: Unable to add hstate %s for node %d\n",
2075 h->name, node->dev.id);
9a305230
LS
2076 hugetlb_unregister_node(node);
2077 break;
2078 }
2079 }
2080}
2081
2082/*
9b5e5d0f 2083 * hugetlb init time: register hstate attributes for all registered node
10fbcf4c
KS
2084 * devices of nodes that have memory. All on-line nodes should have
2085 * registered their associated device by this time.
9a305230 2086 */
7d9ca000 2087static void __init hugetlb_register_all_nodes(void)
9a305230
LS
2088{
2089 int nid;
2090
8cebfcd0 2091 for_each_node_state(nid, N_MEMORY) {
8732794b 2092 struct node *node = node_devices[nid];
10fbcf4c 2093 if (node->dev.id == nid)
9a305230
LS
2094 hugetlb_register_node(node);
2095 }
2096
2097 /*
10fbcf4c 2098 * Let the node device driver know we're here so it can
9a305230
LS
2099 * [un]register hstate attributes on node hotplug.
2100 */
2101 register_hugetlbfs_with_node(hugetlb_register_node,
2102 hugetlb_unregister_node);
2103}
2104#else /* !CONFIG_NUMA */
2105
2106static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp)
2107{
2108 BUG();
2109 if (nidp)
2110 *nidp = -1;
2111 return NULL;
2112}
2113
2114static void hugetlb_unregister_all_nodes(void) { }
2115
2116static void hugetlb_register_all_nodes(void) { }
2117
2118#endif
2119
a3437870
NA
2120static void __exit hugetlb_exit(void)
2121{
2122 struct hstate *h;
2123
9a305230
LS
2124 hugetlb_unregister_all_nodes();
2125
a3437870 2126 for_each_hstate(h) {
972dc4de 2127 kobject_put(hstate_kobjs[hstate_index(h)]);
a3437870
NA
2128 }
2129
2130 kobject_put(hugepages_kobj);
8382d914 2131 kfree(htlb_fault_mutex_table);
a3437870
NA
2132}
2133module_exit(hugetlb_exit);
2134
2135static int __init hugetlb_init(void)
2136{
8382d914
DB
2137 int i;
2138
457c1b27 2139 if (!hugepages_supported())
0ef89d25 2140 return 0;
a3437870 2141
e11bfbfc
NP
2142 if (!size_to_hstate(default_hstate_size)) {
2143 default_hstate_size = HPAGE_SIZE;
2144 if (!size_to_hstate(default_hstate_size))
2145 hugetlb_add_hstate(HUGETLB_PAGE_ORDER);
a3437870 2146 }
972dc4de 2147 default_hstate_idx = hstate_index(size_to_hstate(default_hstate_size));
e11bfbfc
NP
2148 if (default_hstate_max_huge_pages)
2149 default_hstate.max_huge_pages = default_hstate_max_huge_pages;
a3437870
NA
2150
2151 hugetlb_init_hstates();
aa888a74 2152 gather_bootmem_prealloc();
a3437870
NA
2153 report_hugepages();
2154
2155 hugetlb_sysfs_init();
9a305230 2156 hugetlb_register_all_nodes();
7179e7bf 2157 hugetlb_cgroup_file_init();
9a305230 2158
8382d914
DB
2159#ifdef CONFIG_SMP
2160 num_fault_mutexes = roundup_pow_of_two(8 * num_possible_cpus());
2161#else
2162 num_fault_mutexes = 1;
2163#endif
2164 htlb_fault_mutex_table =
2165 kmalloc(sizeof(struct mutex) * num_fault_mutexes, GFP_KERNEL);
2166 BUG_ON(!htlb_fault_mutex_table);
2167
2168 for (i = 0; i < num_fault_mutexes; i++)
2169 mutex_init(&htlb_fault_mutex_table[i]);
a3437870
NA
2170 return 0;
2171}
2172module_init(hugetlb_init);
2173
2174/* Should be called on processing a hugepagesz=... option */
2175void __init hugetlb_add_hstate(unsigned order)
2176{
2177 struct hstate *h;
8faa8b07
AK
2178 unsigned long i;
2179
a3437870 2180 if (size_to_hstate(PAGE_SIZE << order)) {
ffb22af5 2181 pr_warning("hugepagesz= specified twice, ignoring\n");
a3437870
NA
2182 return;
2183 }
47d38344 2184 BUG_ON(hugetlb_max_hstate >= HUGE_MAX_HSTATE);
a3437870 2185 BUG_ON(order == 0);
47d38344 2186 h = &hstates[hugetlb_max_hstate++];
a3437870
NA
2187 h->order = order;
2188 h->mask = ~((1ULL << (order + PAGE_SHIFT)) - 1);
8faa8b07
AK
2189 h->nr_huge_pages = 0;
2190 h->free_huge_pages = 0;
2191 for (i = 0; i < MAX_NUMNODES; ++i)
2192 INIT_LIST_HEAD(&h->hugepage_freelists[i]);
0edaecfa 2193 INIT_LIST_HEAD(&h->hugepage_activelist);
8cebfcd0
LJ
2194 h->next_nid_to_alloc = first_node(node_states[N_MEMORY]);
2195 h->next_nid_to_free = first_node(node_states[N_MEMORY]);
a3437870
NA
2196 snprintf(h->name, HSTATE_NAME_LEN, "hugepages-%lukB",
2197 huge_page_size(h)/1024);
8faa8b07 2198
a3437870
NA
2199 parsed_hstate = h;
2200}
2201
e11bfbfc 2202static int __init hugetlb_nrpages_setup(char *s)
a3437870
NA
2203{
2204 unsigned long *mhp;
8faa8b07 2205 static unsigned long *last_mhp;
a3437870
NA
2206
2207 /*
47d38344 2208 * !hugetlb_max_hstate means we haven't parsed a hugepagesz= parameter yet,
a3437870
NA
2209 * so this hugepages= parameter goes to the "default hstate".
2210 */
47d38344 2211 if (!hugetlb_max_hstate)
a3437870
NA
2212 mhp = &default_hstate_max_huge_pages;
2213 else
2214 mhp = &parsed_hstate->max_huge_pages;
2215
8faa8b07 2216 if (mhp == last_mhp) {
ffb22af5
AM
2217 pr_warning("hugepages= specified twice without "
2218 "interleaving hugepagesz=, ignoring\n");
8faa8b07
AK
2219 return 1;
2220 }
2221
a3437870
NA
2222 if (sscanf(s, "%lu", mhp) <= 0)
2223 *mhp = 0;
2224
8faa8b07
AK
2225 /*
2226 * Global state is always initialized later in hugetlb_init.
2227 * But we need to allocate >= MAX_ORDER hstates here early to still
2228 * use the bootmem allocator.
2229 */
47d38344 2230 if (hugetlb_max_hstate && parsed_hstate->order >= MAX_ORDER)
8faa8b07
AK
2231 hugetlb_hstate_alloc_pages(parsed_hstate);
2232
2233 last_mhp = mhp;
2234
a3437870
NA
2235 return 1;
2236}
e11bfbfc
NP
2237__setup("hugepages=", hugetlb_nrpages_setup);
2238
2239static int __init hugetlb_default_setup(char *s)
2240{
2241 default_hstate_size = memparse(s, &s);
2242 return 1;
2243}
2244__setup("default_hugepagesz=", hugetlb_default_setup);
a3437870 2245
8a213460
NA
2246static unsigned int cpuset_mems_nr(unsigned int *array)
2247{
2248 int node;
2249 unsigned int nr = 0;
2250
2251 for_each_node_mask(node, cpuset_current_mems_allowed)
2252 nr += array[node];
2253
2254 return nr;
2255}
2256
2257#ifdef CONFIG_SYSCTL
06808b08
LS
2258static int hugetlb_sysctl_handler_common(bool obey_mempolicy,
2259 struct ctl_table *table, int write,
2260 void __user *buffer, size_t *length, loff_t *ppos)
1da177e4 2261{
e5ff2159 2262 struct hstate *h = &default_hstate;
238d3c13 2263 unsigned long tmp = h->max_huge_pages;
08d4a246 2264 int ret;
e5ff2159 2265
457c1b27
NA
2266 if (!hugepages_supported())
2267 return -ENOTSUPP;
2268
e5ff2159
AK
2269 table->data = &tmp;
2270 table->maxlen = sizeof(unsigned long);
08d4a246
MH
2271 ret = proc_doulongvec_minmax(table, write, buffer, length, ppos);
2272 if (ret)
2273 goto out;
e5ff2159 2274
238d3c13
DR
2275 if (write)
2276 ret = __nr_hugepages_store_common(obey_mempolicy, h,
2277 NUMA_NO_NODE, tmp, *length);
08d4a246
MH
2278out:
2279 return ret;
1da177e4 2280}
396faf03 2281
06808b08
LS
2282int hugetlb_sysctl_handler(struct ctl_table *table, int write,
2283 void __user *buffer, size_t *length, loff_t *ppos)
2284{
2285
2286 return hugetlb_sysctl_handler_common(false, table, write,
2287 buffer, length, ppos);
2288}
2289
2290#ifdef CONFIG_NUMA
2291int hugetlb_mempolicy_sysctl_handler(struct ctl_table *table, int write,
2292 void __user *buffer, size_t *length, loff_t *ppos)
2293{
2294 return hugetlb_sysctl_handler_common(true, table, write,
2295 buffer, length, ppos);
2296}
2297#endif /* CONFIG_NUMA */
2298
a3d0c6aa 2299int hugetlb_overcommit_handler(struct ctl_table *table, int write,
8d65af78 2300 void __user *buffer,
a3d0c6aa
NA
2301 size_t *length, loff_t *ppos)
2302{
a5516438 2303 struct hstate *h = &default_hstate;
e5ff2159 2304 unsigned long tmp;
08d4a246 2305 int ret;
e5ff2159 2306
457c1b27
NA
2307 if (!hugepages_supported())
2308 return -ENOTSUPP;
2309
c033a93c 2310 tmp = h->nr_overcommit_huge_pages;
e5ff2159 2311
bae7f4ae 2312 if (write && hstate_is_gigantic(h))
adbe8726
EM
2313 return -EINVAL;
2314
e5ff2159
AK
2315 table->data = &tmp;
2316 table->maxlen = sizeof(unsigned long);
08d4a246
MH
2317 ret = proc_doulongvec_minmax(table, write, buffer, length, ppos);
2318 if (ret)
2319 goto out;
e5ff2159
AK
2320
2321 if (write) {
2322 spin_lock(&hugetlb_lock);
2323 h->nr_overcommit_huge_pages = tmp;
2324 spin_unlock(&hugetlb_lock);
2325 }
08d4a246
MH
2326out:
2327 return ret;
a3d0c6aa
NA
2328}
2329
1da177e4
LT
2330#endif /* CONFIG_SYSCTL */
2331
e1759c21 2332void hugetlb_report_meminfo(struct seq_file *m)
1da177e4 2333{
a5516438 2334 struct hstate *h = &default_hstate;
457c1b27
NA
2335 if (!hugepages_supported())
2336 return;
e1759c21 2337 seq_printf(m,
4f98a2fe
RR
2338 "HugePages_Total: %5lu\n"
2339 "HugePages_Free: %5lu\n"
2340 "HugePages_Rsvd: %5lu\n"
2341 "HugePages_Surp: %5lu\n"
2342 "Hugepagesize: %8lu kB\n",
a5516438
AK
2343 h->nr_huge_pages,
2344 h->free_huge_pages,
2345 h->resv_huge_pages,
2346 h->surplus_huge_pages,
2347 1UL << (huge_page_order(h) + PAGE_SHIFT - 10));
1da177e4
LT
2348}
2349
2350int hugetlb_report_node_meminfo(int nid, char *buf)
2351{
a5516438 2352 struct hstate *h = &default_hstate;
457c1b27
NA
2353 if (!hugepages_supported())
2354 return 0;
1da177e4
LT
2355 return sprintf(buf,
2356 "Node %d HugePages_Total: %5u\n"
a1de0919
NA
2357 "Node %d HugePages_Free: %5u\n"
2358 "Node %d HugePages_Surp: %5u\n",
a5516438
AK
2359 nid, h->nr_huge_pages_node[nid],
2360 nid, h->free_huge_pages_node[nid],
2361 nid, h->surplus_huge_pages_node[nid]);
1da177e4
LT
2362}
2363
949f7ec5
DR
2364void hugetlb_show_meminfo(void)
2365{
2366 struct hstate *h;
2367 int nid;
2368
457c1b27
NA
2369 if (!hugepages_supported())
2370 return;
2371
949f7ec5
DR
2372 for_each_node_state(nid, N_MEMORY)
2373 for_each_hstate(h)
2374 pr_info("Node %d hugepages_total=%u hugepages_free=%u hugepages_surp=%u hugepages_size=%lukB\n",
2375 nid,
2376 h->nr_huge_pages_node[nid],
2377 h->free_huge_pages_node[nid],
2378 h->surplus_huge_pages_node[nid],
2379 1UL << (huge_page_order(h) + PAGE_SHIFT - 10));
2380}
2381
1da177e4
LT
2382/* Return the number pages of memory we physically have, in PAGE_SIZE units. */
2383unsigned long hugetlb_total_pages(void)
2384{
d0028588
WL
2385 struct hstate *h;
2386 unsigned long nr_total_pages = 0;
2387
2388 for_each_hstate(h)
2389 nr_total_pages += h->nr_huge_pages * pages_per_huge_page(h);
2390 return nr_total_pages;
1da177e4 2391}
1da177e4 2392
a5516438 2393static int hugetlb_acct_memory(struct hstate *h, long delta)
fc1b8a73
MG
2394{
2395 int ret = -ENOMEM;
2396
2397 spin_lock(&hugetlb_lock);
2398 /*
2399 * When cpuset is configured, it breaks the strict hugetlb page
2400 * reservation as the accounting is done on a global variable. Such
2401 * reservation is completely rubbish in the presence of cpuset because
2402 * the reservation is not checked against page availability for the
2403 * current cpuset. Application can still potentially OOM'ed by kernel
2404 * with lack of free htlb page in cpuset that the task is in.
2405 * Attempt to enforce strict accounting with cpuset is almost
2406 * impossible (or too ugly) because cpuset is too fluid that
2407 * task or memory node can be dynamically moved between cpusets.
2408 *
2409 * The change of semantics for shared hugetlb mapping with cpuset is
2410 * undesirable. However, in order to preserve some of the semantics,
2411 * we fall back to check against current free page availability as
2412 * a best attempt and hopefully to minimize the impact of changing
2413 * semantics that cpuset has.
2414 */
2415 if (delta > 0) {
a5516438 2416 if (gather_surplus_pages(h, delta) < 0)
fc1b8a73
MG
2417 goto out;
2418
a5516438
AK
2419 if (delta > cpuset_mems_nr(h->free_huge_pages_node)) {
2420 return_unused_surplus_pages(h, delta);
fc1b8a73
MG
2421 goto out;
2422 }
2423 }
2424
2425 ret = 0;
2426 if (delta < 0)
a5516438 2427 return_unused_surplus_pages(h, (unsigned long) -delta);
fc1b8a73
MG
2428
2429out:
2430 spin_unlock(&hugetlb_lock);
2431 return ret;
2432}
2433
84afd99b
AW
2434static void hugetlb_vm_op_open(struct vm_area_struct *vma)
2435{
f522c3ac 2436 struct resv_map *resv = vma_resv_map(vma);
84afd99b
AW
2437
2438 /*
2439 * This new VMA should share its siblings reservation map if present.
2440 * The VMA will only ever have a valid reservation map pointer where
2441 * it is being copied for another still existing VMA. As that VMA
25985edc 2442 * has a reference to the reservation map it cannot disappear until
84afd99b
AW
2443 * after this open call completes. It is therefore safe to take a
2444 * new reference here without additional locking.
2445 */
4e35f483 2446 if (resv && is_vma_resv_set(vma, HPAGE_RESV_OWNER))
f522c3ac 2447 kref_get(&resv->refs);
84afd99b
AW
2448}
2449
a1e78772
MG
2450static void hugetlb_vm_op_close(struct vm_area_struct *vma)
2451{
a5516438 2452 struct hstate *h = hstate_vma(vma);
f522c3ac 2453 struct resv_map *resv = vma_resv_map(vma);
90481622 2454 struct hugepage_subpool *spool = subpool_vma(vma);
4e35f483 2455 unsigned long reserve, start, end;
84afd99b 2456
4e35f483
JK
2457 if (!resv || !is_vma_resv_set(vma, HPAGE_RESV_OWNER))
2458 return;
84afd99b 2459
4e35f483
JK
2460 start = vma_hugecache_offset(h, vma, vma->vm_start);
2461 end = vma_hugecache_offset(h, vma, vma->vm_end);
84afd99b 2462
4e35f483 2463 reserve = (end - start) - region_count(resv, start, end);
84afd99b 2464
4e35f483
JK
2465 kref_put(&resv->refs, resv_map_release);
2466
2467 if (reserve) {
2468 hugetlb_acct_memory(h, -reserve);
2469 hugepage_subpool_put_pages(spool, reserve);
84afd99b 2470 }
a1e78772
MG
2471}
2472
1da177e4
LT
2473/*
2474 * We cannot handle pagefaults against hugetlb pages at all. They cause
2475 * handle_mm_fault() to try to instantiate regular-sized pages in the
2476 * hugegpage VMA. do_page_fault() is supposed to trap this, so BUG is we get
2477 * this far.
2478 */
d0217ac0 2479static int hugetlb_vm_op_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1da177e4
LT
2480{
2481 BUG();
d0217ac0 2482 return 0;
1da177e4
LT
2483}
2484
f0f37e2f 2485const struct vm_operations_struct hugetlb_vm_ops = {
d0217ac0 2486 .fault = hugetlb_vm_op_fault,
84afd99b 2487 .open = hugetlb_vm_op_open,
a1e78772 2488 .close = hugetlb_vm_op_close,
1da177e4
LT
2489};
2490
1e8f889b
DG
2491static pte_t make_huge_pte(struct vm_area_struct *vma, struct page *page,
2492 int writable)
63551ae0
DG
2493{
2494 pte_t entry;
2495
1e8f889b 2496 if (writable) {
106c992a
GS
2497 entry = huge_pte_mkwrite(huge_pte_mkdirty(mk_huge_pte(page,
2498 vma->vm_page_prot)));
63551ae0 2499 } else {
106c992a
GS
2500 entry = huge_pte_wrprotect(mk_huge_pte(page,
2501 vma->vm_page_prot));
63551ae0
DG
2502 }
2503 entry = pte_mkyoung(entry);
2504 entry = pte_mkhuge(entry);
d9ed9faa 2505 entry = arch_make_huge_pte(entry, vma, page, writable);
63551ae0
DG
2506
2507 return entry;
2508}
2509
1e8f889b
DG
2510static void set_huge_ptep_writable(struct vm_area_struct *vma,
2511 unsigned long address, pte_t *ptep)
2512{
2513 pte_t entry;
2514
106c992a 2515 entry = huge_pte_mkwrite(huge_pte_mkdirty(huge_ptep_get(ptep)));
32f84528 2516 if (huge_ptep_set_access_flags(vma, address, ptep, entry, 1))
4b3073e1 2517 update_mmu_cache(vma, address, ptep);
1e8f889b
DG
2518}
2519
4a705fef
NH
2520static int is_hugetlb_entry_migration(pte_t pte)
2521{
2522 swp_entry_t swp;
2523
2524 if (huge_pte_none(pte) || pte_present(pte))
2525 return 0;
2526 swp = pte_to_swp_entry(pte);
2527 if (non_swap_entry(swp) && is_migration_entry(swp))
2528 return 1;
2529 else
2530 return 0;
2531}
2532
2533static int is_hugetlb_entry_hwpoisoned(pte_t pte)
2534{
2535 swp_entry_t swp;
2536
2537 if (huge_pte_none(pte) || pte_present(pte))
2538 return 0;
2539 swp = pte_to_swp_entry(pte);
2540 if (non_swap_entry(swp) && is_hwpoison_entry(swp))
2541 return 1;
2542 else
2543 return 0;
2544}
1e8f889b 2545
63551ae0
DG
2546int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
2547 struct vm_area_struct *vma)
2548{
2549 pte_t *src_pte, *dst_pte, entry;
2550 struct page *ptepage;
1c59827d 2551 unsigned long addr;
1e8f889b 2552 int cow;
a5516438
AK
2553 struct hstate *h = hstate_vma(vma);
2554 unsigned long sz = huge_page_size(h);
e8569dd2
AS
2555 unsigned long mmun_start; /* For mmu_notifiers */
2556 unsigned long mmun_end; /* For mmu_notifiers */
2557 int ret = 0;
1e8f889b
DG
2558
2559 cow = (vma->vm_flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE;
63551ae0 2560
e8569dd2
AS
2561 mmun_start = vma->vm_start;
2562 mmun_end = vma->vm_end;
2563 if (cow)
2564 mmu_notifier_invalidate_range_start(src, mmun_start, mmun_end);
2565
a5516438 2566 for (addr = vma->vm_start; addr < vma->vm_end; addr += sz) {
cb900f41 2567 spinlock_t *src_ptl, *dst_ptl;
c74df32c
HD
2568 src_pte = huge_pte_offset(src, addr);
2569 if (!src_pte)
2570 continue;
a5516438 2571 dst_pte = huge_pte_alloc(dst, addr, sz);
e8569dd2
AS
2572 if (!dst_pte) {
2573 ret = -ENOMEM;
2574 break;
2575 }
c5c99429
LW
2576
2577 /* If the pagetables are shared don't copy or take references */
2578 if (dst_pte == src_pte)
2579 continue;
2580
cb900f41
KS
2581 dst_ptl = huge_pte_lock(h, dst, dst_pte);
2582 src_ptl = huge_pte_lockptr(h, src, src_pte);
2583 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
4a705fef
NH
2584 entry = huge_ptep_get(src_pte);
2585 if (huge_pte_none(entry)) { /* skip none entry */
2586 ;
2587 } else if (unlikely(is_hugetlb_entry_migration(entry) ||
2588 is_hugetlb_entry_hwpoisoned(entry))) {
2589 swp_entry_t swp_entry = pte_to_swp_entry(entry);
2590
2591 if (is_write_migration_entry(swp_entry) && cow) {
2592 /*
2593 * COW mappings require pages in both
2594 * parent and child to be set to read.
2595 */
2596 make_migration_entry_read(&swp_entry);
2597 entry = swp_entry_to_pte(swp_entry);
2598 set_huge_pte_at(src, addr, src_pte, entry);
2599 }
2600 set_huge_pte_at(dst, addr, dst_pte, entry);
2601 } else {
34ee645e 2602 if (cow) {
7f2e9525 2603 huge_ptep_set_wrprotect(src, addr, src_pte);
34ee645e
JR
2604 mmu_notifier_invalidate_range(src, mmun_start,
2605 mmun_end);
2606 }
0253d634 2607 entry = huge_ptep_get(src_pte);
1c59827d
HD
2608 ptepage = pte_page(entry);
2609 get_page(ptepage);
0fe6e20b 2610 page_dup_rmap(ptepage);
1c59827d
HD
2611 set_huge_pte_at(dst, addr, dst_pte, entry);
2612 }
cb900f41
KS
2613 spin_unlock(src_ptl);
2614 spin_unlock(dst_ptl);
63551ae0 2615 }
63551ae0 2616
e8569dd2
AS
2617 if (cow)
2618 mmu_notifier_invalidate_range_end(src, mmun_start, mmun_end);
2619
2620 return ret;
63551ae0
DG
2621}
2622
24669e58
AK
2623void __unmap_hugepage_range(struct mmu_gather *tlb, struct vm_area_struct *vma,
2624 unsigned long start, unsigned long end,
2625 struct page *ref_page)
63551ae0 2626{
24669e58 2627 int force_flush = 0;
63551ae0
DG
2628 struct mm_struct *mm = vma->vm_mm;
2629 unsigned long address;
c7546f8f 2630 pte_t *ptep;
63551ae0 2631 pte_t pte;
cb900f41 2632 spinlock_t *ptl;
63551ae0 2633 struct page *page;
a5516438
AK
2634 struct hstate *h = hstate_vma(vma);
2635 unsigned long sz = huge_page_size(h);
2ec74c3e
SG
2636 const unsigned long mmun_start = start; /* For mmu_notifiers */
2637 const unsigned long mmun_end = end; /* For mmu_notifiers */
a5516438 2638
63551ae0 2639 WARN_ON(!is_vm_hugetlb_page(vma));
a5516438
AK
2640 BUG_ON(start & ~huge_page_mask(h));
2641 BUG_ON(end & ~huge_page_mask(h));
63551ae0 2642
24669e58 2643 tlb_start_vma(tlb, vma);
2ec74c3e 2644 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
569f48b8 2645 address = start;
24669e58 2646again:
569f48b8 2647 for (; address < end; address += sz) {
c7546f8f 2648 ptep = huge_pte_offset(mm, address);
4c887265 2649 if (!ptep)
c7546f8f
DG
2650 continue;
2651
cb900f41 2652 ptl = huge_pte_lock(h, mm, ptep);
39dde65c 2653 if (huge_pmd_unshare(mm, &address, ptep))
cb900f41 2654 goto unlock;
39dde65c 2655
6629326b
HD
2656 pte = huge_ptep_get(ptep);
2657 if (huge_pte_none(pte))
cb900f41 2658 goto unlock;
6629326b
HD
2659
2660 /*
9fbc1f63
NH
2661 * Migrating hugepage or HWPoisoned hugepage is already
2662 * unmapped and its refcount is dropped, so just clear pte here.
6629326b 2663 */
9fbc1f63 2664 if (unlikely(!pte_present(pte))) {
106c992a 2665 huge_pte_clear(mm, address, ptep);
cb900f41 2666 goto unlock;
8c4894c6 2667 }
6629326b
HD
2668
2669 page = pte_page(pte);
04f2cbe3
MG
2670 /*
2671 * If a reference page is supplied, it is because a specific
2672 * page is being unmapped, not a range. Ensure the page we
2673 * are about to unmap is the actual page of interest.
2674 */
2675 if (ref_page) {
04f2cbe3 2676 if (page != ref_page)
cb900f41 2677 goto unlock;
04f2cbe3
MG
2678
2679 /*
2680 * Mark the VMA as having unmapped its page so that
2681 * future faults in this VMA will fail rather than
2682 * looking like data was lost
2683 */
2684 set_vma_resv_flags(vma, HPAGE_RESV_UNMAPPED);
2685 }
2686
c7546f8f 2687 pte = huge_ptep_get_and_clear(mm, address, ptep);
24669e58 2688 tlb_remove_tlb_entry(tlb, ptep, address);
106c992a 2689 if (huge_pte_dirty(pte))
6649a386 2690 set_page_dirty(page);
9e81130b 2691
24669e58
AK
2692 page_remove_rmap(page);
2693 force_flush = !__tlb_remove_page(tlb, page);
cb900f41 2694 if (force_flush) {
569f48b8 2695 address += sz;
cb900f41 2696 spin_unlock(ptl);
24669e58 2697 break;
cb900f41 2698 }
9e81130b 2699 /* Bail out after unmapping reference page if supplied */
cb900f41
KS
2700 if (ref_page) {
2701 spin_unlock(ptl);
9e81130b 2702 break;
cb900f41
KS
2703 }
2704unlock:
2705 spin_unlock(ptl);
63551ae0 2706 }
24669e58
AK
2707 /*
2708 * mmu_gather ran out of room to batch pages, we break out of
2709 * the PTE lock to avoid doing the potential expensive TLB invalidate
2710 * and page-free while holding it.
2711 */
2712 if (force_flush) {
2713 force_flush = 0;
2714 tlb_flush_mmu(tlb);
2715 if (address < end && !ref_page)
2716 goto again;
fe1668ae 2717 }
2ec74c3e 2718 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
24669e58 2719 tlb_end_vma(tlb, vma);
1da177e4 2720}
63551ae0 2721
d833352a
MG
2722void __unmap_hugepage_range_final(struct mmu_gather *tlb,
2723 struct vm_area_struct *vma, unsigned long start,
2724 unsigned long end, struct page *ref_page)
2725{
2726 __unmap_hugepage_range(tlb, vma, start, end, ref_page);
2727
2728 /*
2729 * Clear this flag so that x86's huge_pmd_share page_table_shareable
2730 * test will fail on a vma being torn down, and not grab a page table
2731 * on its way out. We're lucky that the flag has such an appropriate
2732 * name, and can in fact be safely cleared here. We could clear it
2733 * before the __unmap_hugepage_range above, but all that's necessary
c8c06efa 2734 * is to clear it before releasing the i_mmap_rwsem. This works
d833352a 2735 * because in the context this is called, the VMA is about to be
c8c06efa 2736 * destroyed and the i_mmap_rwsem is held.
d833352a
MG
2737 */
2738 vma->vm_flags &= ~VM_MAYSHARE;
2739}
2740
502717f4 2741void unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
04f2cbe3 2742 unsigned long end, struct page *ref_page)
502717f4 2743{
24669e58
AK
2744 struct mm_struct *mm;
2745 struct mmu_gather tlb;
2746
2747 mm = vma->vm_mm;
2748
2b047252 2749 tlb_gather_mmu(&tlb, mm, start, end);
24669e58
AK
2750 __unmap_hugepage_range(&tlb, vma, start, end, ref_page);
2751 tlb_finish_mmu(&tlb, start, end);
502717f4
CK
2752}
2753
04f2cbe3
MG
2754/*
2755 * This is called when the original mapper is failing to COW a MAP_PRIVATE
2756 * mappping it owns the reserve page for. The intention is to unmap the page
2757 * from other VMAs and let the children be SIGKILLed if they are faulting the
2758 * same region.
2759 */
2f4612af
DB
2760static void unmap_ref_private(struct mm_struct *mm, struct vm_area_struct *vma,
2761 struct page *page, unsigned long address)
04f2cbe3 2762{
7526674d 2763 struct hstate *h = hstate_vma(vma);
04f2cbe3
MG
2764 struct vm_area_struct *iter_vma;
2765 struct address_space *mapping;
04f2cbe3
MG
2766 pgoff_t pgoff;
2767
2768 /*
2769 * vm_pgoff is in PAGE_SIZE units, hence the different calculation
2770 * from page cache lookup which is in HPAGE_SIZE units.
2771 */
7526674d 2772 address = address & huge_page_mask(h);
36e4f20a
MH
2773 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) +
2774 vma->vm_pgoff;
496ad9aa 2775 mapping = file_inode(vma->vm_file)->i_mapping;
04f2cbe3 2776
4eb2b1dc
MG
2777 /*
2778 * Take the mapping lock for the duration of the table walk. As
2779 * this mapping should be shared between all the VMAs,
2780 * __unmap_hugepage_range() is called as the lock is already held
2781 */
83cde9e8 2782 i_mmap_lock_write(mapping);
6b2dbba8 2783 vma_interval_tree_foreach(iter_vma, &mapping->i_mmap, pgoff, pgoff) {
04f2cbe3
MG
2784 /* Do not unmap the current VMA */
2785 if (iter_vma == vma)
2786 continue;
2787
2788 /*
2789 * Unmap the page from other VMAs without their own reserves.
2790 * They get marked to be SIGKILLed if they fault in these
2791 * areas. This is because a future no-page fault on this VMA
2792 * could insert a zeroed page instead of the data existing
2793 * from the time of fork. This would look like data corruption
2794 */
2795 if (!is_vma_resv_set(iter_vma, HPAGE_RESV_OWNER))
24669e58
AK
2796 unmap_hugepage_range(iter_vma, address,
2797 address + huge_page_size(h), page);
04f2cbe3 2798 }
83cde9e8 2799 i_mmap_unlock_write(mapping);
04f2cbe3
MG
2800}
2801
0fe6e20b
NH
2802/*
2803 * Hugetlb_cow() should be called with page lock of the original hugepage held.
ef009b25
MH
2804 * Called with hugetlb_instantiation_mutex held and pte_page locked so we
2805 * cannot race with other handlers or page migration.
2806 * Keep the pte_same checks anyway to make transition from the mutex easier.
0fe6e20b 2807 */
1e8f889b 2808static int hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma,
04f2cbe3 2809 unsigned long address, pte_t *ptep, pte_t pte,
cb900f41 2810 struct page *pagecache_page, spinlock_t *ptl)
1e8f889b 2811{
a5516438 2812 struct hstate *h = hstate_vma(vma);
1e8f889b 2813 struct page *old_page, *new_page;
ad4404a2 2814 int ret = 0, outside_reserve = 0;
2ec74c3e
SG
2815 unsigned long mmun_start; /* For mmu_notifiers */
2816 unsigned long mmun_end; /* For mmu_notifiers */
1e8f889b
DG
2817
2818 old_page = pte_page(pte);
2819
04f2cbe3 2820retry_avoidcopy:
1e8f889b
DG
2821 /* If no-one else is actually using this page, avoid the copy
2822 * and just make the page writable */
37a2140d
JK
2823 if (page_mapcount(old_page) == 1 && PageAnon(old_page)) {
2824 page_move_anon_rmap(old_page, vma, address);
1e8f889b 2825 set_huge_ptep_writable(vma, address, ptep);
83c54070 2826 return 0;
1e8f889b
DG
2827 }
2828
04f2cbe3
MG
2829 /*
2830 * If the process that created a MAP_PRIVATE mapping is about to
2831 * perform a COW due to a shared page count, attempt to satisfy
2832 * the allocation without using the existing reserves. The pagecache
2833 * page is used to determine if the reserve at this address was
2834 * consumed or not. If reserves were used, a partial faulted mapping
2835 * at the time of fork() could consume its reserves on COW instead
2836 * of the full address range.
2837 */
5944d011 2838 if (is_vma_resv_set(vma, HPAGE_RESV_OWNER) &&
04f2cbe3
MG
2839 old_page != pagecache_page)
2840 outside_reserve = 1;
2841
1e8f889b 2842 page_cache_get(old_page);
b76c8cfb 2843
ad4404a2
DB
2844 /*
2845 * Drop page table lock as buddy allocator may be called. It will
2846 * be acquired again before returning to the caller, as expected.
2847 */
cb900f41 2848 spin_unlock(ptl);
04f2cbe3 2849 new_page = alloc_huge_page(vma, address, outside_reserve);
1e8f889b 2850
2fc39cec 2851 if (IS_ERR(new_page)) {
04f2cbe3
MG
2852 /*
2853 * If a process owning a MAP_PRIVATE mapping fails to COW,
2854 * it is due to references held by a child and an insufficient
2855 * huge page pool. To guarantee the original mappers
2856 * reliability, unmap the page from child processes. The child
2857 * may get SIGKILLed if it later faults.
2858 */
2859 if (outside_reserve) {
ad4404a2 2860 page_cache_release(old_page);
04f2cbe3 2861 BUG_ON(huge_pte_none(pte));
2f4612af
DB
2862 unmap_ref_private(mm, vma, old_page, address);
2863 BUG_ON(huge_pte_none(pte));
2864 spin_lock(ptl);
2865 ptep = huge_pte_offset(mm, address & huge_page_mask(h));
2866 if (likely(ptep &&
2867 pte_same(huge_ptep_get(ptep), pte)))
2868 goto retry_avoidcopy;
2869 /*
2870 * race occurs while re-acquiring page table
2871 * lock, and our job is done.
2872 */
2873 return 0;
04f2cbe3
MG
2874 }
2875
ad4404a2
DB
2876 ret = (PTR_ERR(new_page) == -ENOMEM) ?
2877 VM_FAULT_OOM : VM_FAULT_SIGBUS;
2878 goto out_release_old;
1e8f889b
DG
2879 }
2880
0fe6e20b
NH
2881 /*
2882 * When the original hugepage is shared one, it does not have
2883 * anon_vma prepared.
2884 */
44e2aa93 2885 if (unlikely(anon_vma_prepare(vma))) {
ad4404a2
DB
2886 ret = VM_FAULT_OOM;
2887 goto out_release_all;
44e2aa93 2888 }
0fe6e20b 2889
47ad8475
AA
2890 copy_user_huge_page(new_page, old_page, address, vma,
2891 pages_per_huge_page(h));
0ed361de 2892 __SetPageUptodate(new_page);
1e8f889b 2893
2ec74c3e
SG
2894 mmun_start = address & huge_page_mask(h);
2895 mmun_end = mmun_start + huge_page_size(h);
2896 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
ad4404a2 2897
b76c8cfb 2898 /*
cb900f41 2899 * Retake the page table lock to check for racing updates
b76c8cfb
LW
2900 * before the page tables are altered
2901 */
cb900f41 2902 spin_lock(ptl);
a5516438 2903 ptep = huge_pte_offset(mm, address & huge_page_mask(h));
a9af0c5d 2904 if (likely(ptep && pte_same(huge_ptep_get(ptep), pte))) {
07443a85
JK
2905 ClearPagePrivate(new_page);
2906
1e8f889b 2907 /* Break COW */
8fe627ec 2908 huge_ptep_clear_flush(vma, address, ptep);
34ee645e 2909 mmu_notifier_invalidate_range(mm, mmun_start, mmun_end);
1e8f889b
DG
2910 set_huge_pte_at(mm, address, ptep,
2911 make_huge_pte(vma, new_page, 1));
0fe6e20b 2912 page_remove_rmap(old_page);
cd67f0d2 2913 hugepage_add_new_anon_rmap(new_page, vma, address);
1e8f889b
DG
2914 /* Make the old page be freed below */
2915 new_page = old_page;
2916 }
cb900f41 2917 spin_unlock(ptl);
2ec74c3e 2918 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
ad4404a2 2919out_release_all:
1e8f889b 2920 page_cache_release(new_page);
ad4404a2 2921out_release_old:
1e8f889b 2922 page_cache_release(old_page);
8312034f 2923
ad4404a2
DB
2924 spin_lock(ptl); /* Caller expects lock to be held */
2925 return ret;
1e8f889b
DG
2926}
2927
04f2cbe3 2928/* Return the pagecache page at a given address within a VMA */
a5516438
AK
2929static struct page *hugetlbfs_pagecache_page(struct hstate *h,
2930 struct vm_area_struct *vma, unsigned long address)
04f2cbe3
MG
2931{
2932 struct address_space *mapping;
e7c4b0bf 2933 pgoff_t idx;
04f2cbe3
MG
2934
2935 mapping = vma->vm_file->f_mapping;
a5516438 2936 idx = vma_hugecache_offset(h, vma, address);
04f2cbe3
MG
2937
2938 return find_lock_page(mapping, idx);
2939}
2940
3ae77f43
HD
2941/*
2942 * Return whether there is a pagecache page to back given address within VMA.
2943 * Caller follow_hugetlb_page() holds page_table_lock so we cannot lock_page.
2944 */
2945static bool hugetlbfs_pagecache_present(struct hstate *h,
2a15efc9
HD
2946 struct vm_area_struct *vma, unsigned long address)
2947{
2948 struct address_space *mapping;
2949 pgoff_t idx;
2950 struct page *page;
2951
2952 mapping = vma->vm_file->f_mapping;
2953 idx = vma_hugecache_offset(h, vma, address);
2954
2955 page = find_get_page(mapping, idx);
2956 if (page)
2957 put_page(page);
2958 return page != NULL;
2959}
2960
a1ed3dda 2961static int hugetlb_no_page(struct mm_struct *mm, struct vm_area_struct *vma,
8382d914
DB
2962 struct address_space *mapping, pgoff_t idx,
2963 unsigned long address, pte_t *ptep, unsigned int flags)
ac9b9c66 2964{
a5516438 2965 struct hstate *h = hstate_vma(vma);
ac9b9c66 2966 int ret = VM_FAULT_SIGBUS;
409eb8c2 2967 int anon_rmap = 0;
4c887265 2968 unsigned long size;
4c887265 2969 struct page *page;
1e8f889b 2970 pte_t new_pte;
cb900f41 2971 spinlock_t *ptl;
4c887265 2972
04f2cbe3
MG
2973 /*
2974 * Currently, we are forced to kill the process in the event the
2975 * original mapper has unmapped pages from the child due to a failed
25985edc 2976 * COW. Warn that such a situation has occurred as it may not be obvious
04f2cbe3
MG
2977 */
2978 if (is_vma_resv_set(vma, HPAGE_RESV_UNMAPPED)) {
ffb22af5
AM
2979 pr_warning("PID %d killed due to inadequate hugepage pool\n",
2980 current->pid);
04f2cbe3
MG
2981 return ret;
2982 }
2983
4c887265
AL
2984 /*
2985 * Use page lock to guard against racing truncation
2986 * before we get page_table_lock.
2987 */
6bda666a
CL
2988retry:
2989 page = find_lock_page(mapping, idx);
2990 if (!page) {
a5516438 2991 size = i_size_read(mapping->host) >> huge_page_shift(h);
ebed4bfc
HD
2992 if (idx >= size)
2993 goto out;
04f2cbe3 2994 page = alloc_huge_page(vma, address, 0);
2fc39cec 2995 if (IS_ERR(page)) {
76dcee75
AK
2996 ret = PTR_ERR(page);
2997 if (ret == -ENOMEM)
2998 ret = VM_FAULT_OOM;
2999 else
3000 ret = VM_FAULT_SIGBUS;
6bda666a
CL
3001 goto out;
3002 }
47ad8475 3003 clear_huge_page(page, address, pages_per_huge_page(h));
0ed361de 3004 __SetPageUptodate(page);
ac9b9c66 3005
f83a275d 3006 if (vma->vm_flags & VM_MAYSHARE) {
6bda666a 3007 int err;
45c682a6 3008 struct inode *inode = mapping->host;
6bda666a
CL
3009
3010 err = add_to_page_cache(page, mapping, idx, GFP_KERNEL);
3011 if (err) {
3012 put_page(page);
6bda666a
CL
3013 if (err == -EEXIST)
3014 goto retry;
3015 goto out;
3016 }
07443a85 3017 ClearPagePrivate(page);
45c682a6
KC
3018
3019 spin_lock(&inode->i_lock);
a5516438 3020 inode->i_blocks += blocks_per_huge_page(h);
45c682a6 3021 spin_unlock(&inode->i_lock);
23be7468 3022 } else {
6bda666a 3023 lock_page(page);
0fe6e20b
NH
3024 if (unlikely(anon_vma_prepare(vma))) {
3025 ret = VM_FAULT_OOM;
3026 goto backout_unlocked;
3027 }
409eb8c2 3028 anon_rmap = 1;
23be7468 3029 }
0fe6e20b 3030 } else {
998b4382
NH
3031 /*
3032 * If memory error occurs between mmap() and fault, some process
3033 * don't have hwpoisoned swap entry for errored virtual address.
3034 * So we need to block hugepage fault by PG_hwpoison bit check.
3035 */
3036 if (unlikely(PageHWPoison(page))) {
32f84528 3037 ret = VM_FAULT_HWPOISON |
972dc4de 3038 VM_FAULT_SET_HINDEX(hstate_index(h));
998b4382
NH
3039 goto backout_unlocked;
3040 }
6bda666a 3041 }
1e8f889b 3042
57303d80
AW
3043 /*
3044 * If we are going to COW a private mapping later, we examine the
3045 * pending reservations for this page now. This will ensure that
3046 * any allocations necessary to record that reservation occur outside
3047 * the spinlock.
3048 */
788c7df4 3049 if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED))
2b26736c
AW
3050 if (vma_needs_reservation(h, vma, address) < 0) {
3051 ret = VM_FAULT_OOM;
3052 goto backout_unlocked;
3053 }
57303d80 3054
cb900f41
KS
3055 ptl = huge_pte_lockptr(h, mm, ptep);
3056 spin_lock(ptl);
a5516438 3057 size = i_size_read(mapping->host) >> huge_page_shift(h);
4c887265
AL
3058 if (idx >= size)
3059 goto backout;
3060
83c54070 3061 ret = 0;
7f2e9525 3062 if (!huge_pte_none(huge_ptep_get(ptep)))
4c887265
AL
3063 goto backout;
3064
07443a85
JK
3065 if (anon_rmap) {
3066 ClearPagePrivate(page);
409eb8c2 3067 hugepage_add_new_anon_rmap(page, vma, address);
ac714904 3068 } else
409eb8c2 3069 page_dup_rmap(page);
1e8f889b
DG
3070 new_pte = make_huge_pte(vma, page, ((vma->vm_flags & VM_WRITE)
3071 && (vma->vm_flags & VM_SHARED)));
3072 set_huge_pte_at(mm, address, ptep, new_pte);
3073
788c7df4 3074 if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
1e8f889b 3075 /* Optimization, do the COW without a second fault */
cb900f41 3076 ret = hugetlb_cow(mm, vma, address, ptep, new_pte, page, ptl);
1e8f889b
DG
3077 }
3078
cb900f41 3079 spin_unlock(ptl);
4c887265
AL
3080 unlock_page(page);
3081out:
ac9b9c66 3082 return ret;
4c887265
AL
3083
3084backout:
cb900f41 3085 spin_unlock(ptl);
2b26736c 3086backout_unlocked:
4c887265
AL
3087 unlock_page(page);
3088 put_page(page);
3089 goto out;
ac9b9c66
HD
3090}
3091
8382d914
DB
3092#ifdef CONFIG_SMP
3093static u32 fault_mutex_hash(struct hstate *h, struct mm_struct *mm,
3094 struct vm_area_struct *vma,
3095 struct address_space *mapping,
3096 pgoff_t idx, unsigned long address)
3097{
3098 unsigned long key[2];
3099 u32 hash;
3100
3101 if (vma->vm_flags & VM_SHARED) {
3102 key[0] = (unsigned long) mapping;
3103 key[1] = idx;
3104 } else {
3105 key[0] = (unsigned long) mm;
3106 key[1] = address >> huge_page_shift(h);
3107 }
3108
3109 hash = jhash2((u32 *)&key, sizeof(key)/sizeof(u32), 0);
3110
3111 return hash & (num_fault_mutexes - 1);
3112}
3113#else
3114/*
3115 * For uniprocesor systems we always use a single mutex, so just
3116 * return 0 and avoid the hashing overhead.
3117 */
3118static u32 fault_mutex_hash(struct hstate *h, struct mm_struct *mm,
3119 struct vm_area_struct *vma,
3120 struct address_space *mapping,
3121 pgoff_t idx, unsigned long address)
3122{
3123 return 0;
3124}
3125#endif
3126
86e5216f 3127int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
788c7df4 3128 unsigned long address, unsigned int flags)
86e5216f 3129{
8382d914 3130 pte_t *ptep, entry;
cb900f41 3131 spinlock_t *ptl;
1e8f889b 3132 int ret;
8382d914
DB
3133 u32 hash;
3134 pgoff_t idx;
0fe6e20b 3135 struct page *page = NULL;
57303d80 3136 struct page *pagecache_page = NULL;
a5516438 3137 struct hstate *h = hstate_vma(vma);
8382d914 3138 struct address_space *mapping;
0f792cf9 3139 int need_wait_lock = 0;
86e5216f 3140
1e16a539
KH
3141 address &= huge_page_mask(h);
3142
fd6a03ed
NH
3143 ptep = huge_pte_offset(mm, address);
3144 if (ptep) {
3145 entry = huge_ptep_get(ptep);
290408d4 3146 if (unlikely(is_hugetlb_entry_migration(entry))) {
cb900f41 3147 migration_entry_wait_huge(vma, mm, ptep);
290408d4
NH
3148 return 0;
3149 } else if (unlikely(is_hugetlb_entry_hwpoisoned(entry)))
32f84528 3150 return VM_FAULT_HWPOISON_LARGE |
972dc4de 3151 VM_FAULT_SET_HINDEX(hstate_index(h));
fd6a03ed
NH
3152 }
3153
a5516438 3154 ptep = huge_pte_alloc(mm, address, huge_page_size(h));
86e5216f
AL
3155 if (!ptep)
3156 return VM_FAULT_OOM;
3157
8382d914
DB
3158 mapping = vma->vm_file->f_mapping;
3159 idx = vma_hugecache_offset(h, vma, address);
3160
3935baa9
DG
3161 /*
3162 * Serialize hugepage allocation and instantiation, so that we don't
3163 * get spurious allocation failures if two CPUs race to instantiate
3164 * the same page in the page cache.
3165 */
8382d914
DB
3166 hash = fault_mutex_hash(h, mm, vma, mapping, idx, address);
3167 mutex_lock(&htlb_fault_mutex_table[hash]);
3168
7f2e9525
GS
3169 entry = huge_ptep_get(ptep);
3170 if (huge_pte_none(entry)) {
8382d914 3171 ret = hugetlb_no_page(mm, vma, mapping, idx, address, ptep, flags);
b4d1d99f 3172 goto out_mutex;
3935baa9 3173 }
86e5216f 3174
83c54070 3175 ret = 0;
1e8f889b 3176
0f792cf9
NH
3177 /*
3178 * entry could be a migration/hwpoison entry at this point, so this
3179 * check prevents the kernel from going below assuming that we have
3180 * a active hugepage in pagecache. This goto expects the 2nd page fault,
3181 * and is_hugetlb_entry_(migration|hwpoisoned) check will properly
3182 * handle it.
3183 */
3184 if (!pte_present(entry))
3185 goto out_mutex;
3186
57303d80
AW
3187 /*
3188 * If we are going to COW the mapping later, we examine the pending
3189 * reservations for this page now. This will ensure that any
3190 * allocations necessary to record that reservation occur outside the
3191 * spinlock. For private mappings, we also lookup the pagecache
3192 * page now as it is used to determine if a reservation has been
3193 * consumed.
3194 */
106c992a 3195 if ((flags & FAULT_FLAG_WRITE) && !huge_pte_write(entry)) {
2b26736c
AW
3196 if (vma_needs_reservation(h, vma, address) < 0) {
3197 ret = VM_FAULT_OOM;
b4d1d99f 3198 goto out_mutex;
2b26736c 3199 }
57303d80 3200
f83a275d 3201 if (!(vma->vm_flags & VM_MAYSHARE))
57303d80
AW
3202 pagecache_page = hugetlbfs_pagecache_page(h,
3203 vma, address);
3204 }
3205
0f792cf9
NH
3206 ptl = huge_pte_lock(h, mm, ptep);
3207
3208 /* Check for a racing update before calling hugetlb_cow */
3209 if (unlikely(!pte_same(entry, huge_ptep_get(ptep))))
3210 goto out_ptl;
3211
56c9cfb1
NH
3212 /*
3213 * hugetlb_cow() requires page locks of pte_page(entry) and
3214 * pagecache_page, so here we need take the former one
3215 * when page != pagecache_page or !pagecache_page.
56c9cfb1
NH
3216 */
3217 page = pte_page(entry);
3218 if (page != pagecache_page)
0f792cf9
NH
3219 if (!trylock_page(page)) {
3220 need_wait_lock = 1;
3221 goto out_ptl;
3222 }
b4d1d99f 3223
0f792cf9 3224 get_page(page);
b4d1d99f 3225
788c7df4 3226 if (flags & FAULT_FLAG_WRITE) {
106c992a 3227 if (!huge_pte_write(entry)) {
57303d80 3228 ret = hugetlb_cow(mm, vma, address, ptep, entry,
cb900f41 3229 pagecache_page, ptl);
0f792cf9 3230 goto out_put_page;
b4d1d99f 3231 }
106c992a 3232 entry = huge_pte_mkdirty(entry);
b4d1d99f
DG
3233 }
3234 entry = pte_mkyoung(entry);
788c7df4
HD
3235 if (huge_ptep_set_access_flags(vma, address, ptep, entry,
3236 flags & FAULT_FLAG_WRITE))
4b3073e1 3237 update_mmu_cache(vma, address, ptep);
0f792cf9
NH
3238out_put_page:
3239 if (page != pagecache_page)
3240 unlock_page(page);
3241 put_page(page);
cb900f41
KS
3242out_ptl:
3243 spin_unlock(ptl);
57303d80
AW
3244
3245 if (pagecache_page) {
3246 unlock_page(pagecache_page);
3247 put_page(pagecache_page);
3248 }
b4d1d99f 3249out_mutex:
8382d914 3250 mutex_unlock(&htlb_fault_mutex_table[hash]);
0f792cf9
NH
3251 /*
3252 * Generally it's safe to hold refcount during waiting page lock. But
3253 * here we just wait to defer the next page fault to avoid busy loop and
3254 * the page is not used after unlocked before returning from the current
3255 * page fault. So we are safe from accessing freed page, even if we wait
3256 * here without taking refcount.
3257 */
3258 if (need_wait_lock)
3259 wait_on_page_locked(page);
1e8f889b 3260 return ret;
86e5216f
AL
3261}
3262
28a35716
ML
3263long follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma,
3264 struct page **pages, struct vm_area_struct **vmas,
3265 unsigned long *position, unsigned long *nr_pages,
3266 long i, unsigned int flags)
63551ae0 3267{
d5d4b0aa
CK
3268 unsigned long pfn_offset;
3269 unsigned long vaddr = *position;
28a35716 3270 unsigned long remainder = *nr_pages;
a5516438 3271 struct hstate *h = hstate_vma(vma);
63551ae0 3272
63551ae0 3273 while (vaddr < vma->vm_end && remainder) {
4c887265 3274 pte_t *pte;
cb900f41 3275 spinlock_t *ptl = NULL;
2a15efc9 3276 int absent;
4c887265 3277 struct page *page;
63551ae0 3278
02057967
DR
3279 /*
3280 * If we have a pending SIGKILL, don't keep faulting pages and
3281 * potentially allocating memory.
3282 */
3283 if (unlikely(fatal_signal_pending(current))) {
3284 remainder = 0;
3285 break;
3286 }
3287
4c887265
AL
3288 /*
3289 * Some archs (sparc64, sh*) have multiple pte_ts to
2a15efc9 3290 * each hugepage. We have to make sure we get the
4c887265 3291 * first, for the page indexing below to work.
cb900f41
KS
3292 *
3293 * Note that page table lock is not held when pte is null.
4c887265 3294 */
a5516438 3295 pte = huge_pte_offset(mm, vaddr & huge_page_mask(h));
cb900f41
KS
3296 if (pte)
3297 ptl = huge_pte_lock(h, mm, pte);
2a15efc9
HD
3298 absent = !pte || huge_pte_none(huge_ptep_get(pte));
3299
3300 /*
3301 * When coredumping, it suits get_dump_page if we just return
3ae77f43
HD
3302 * an error where there's an empty slot with no huge pagecache
3303 * to back it. This way, we avoid allocating a hugepage, and
3304 * the sparse dumpfile avoids allocating disk blocks, but its
3305 * huge holes still show up with zeroes where they need to be.
2a15efc9 3306 */
3ae77f43
HD
3307 if (absent && (flags & FOLL_DUMP) &&
3308 !hugetlbfs_pagecache_present(h, vma, vaddr)) {
cb900f41
KS
3309 if (pte)
3310 spin_unlock(ptl);
2a15efc9
HD
3311 remainder = 0;
3312 break;
3313 }
63551ae0 3314
9cc3a5bd
NH
3315 /*
3316 * We need call hugetlb_fault for both hugepages under migration
3317 * (in which case hugetlb_fault waits for the migration,) and
3318 * hwpoisoned hugepages (in which case we need to prevent the
3319 * caller from accessing to them.) In order to do this, we use
3320 * here is_swap_pte instead of is_hugetlb_entry_migration and
3321 * is_hugetlb_entry_hwpoisoned. This is because it simply covers
3322 * both cases, and because we can't follow correct pages
3323 * directly from any kind of swap entries.
3324 */
3325 if (absent || is_swap_pte(huge_ptep_get(pte)) ||
106c992a
GS
3326 ((flags & FOLL_WRITE) &&
3327 !huge_pte_write(huge_ptep_get(pte)))) {
4c887265 3328 int ret;
63551ae0 3329
cb900f41
KS
3330 if (pte)
3331 spin_unlock(ptl);
2a15efc9
HD
3332 ret = hugetlb_fault(mm, vma, vaddr,
3333 (flags & FOLL_WRITE) ? FAULT_FLAG_WRITE : 0);
a89182c7 3334 if (!(ret & VM_FAULT_ERROR))
4c887265 3335 continue;
63551ae0 3336
4c887265 3337 remainder = 0;
4c887265
AL
3338 break;
3339 }
3340
a5516438 3341 pfn_offset = (vaddr & ~huge_page_mask(h)) >> PAGE_SHIFT;
7f2e9525 3342 page = pte_page(huge_ptep_get(pte));
d5d4b0aa 3343same_page:
d6692183 3344 if (pages) {
2a15efc9 3345 pages[i] = mem_map_offset(page, pfn_offset);
a0368d4e 3346 get_page_foll(pages[i]);
d6692183 3347 }
63551ae0
DG
3348
3349 if (vmas)
3350 vmas[i] = vma;
3351
3352 vaddr += PAGE_SIZE;
d5d4b0aa 3353 ++pfn_offset;
63551ae0
DG
3354 --remainder;
3355 ++i;
d5d4b0aa 3356 if (vaddr < vma->vm_end && remainder &&
a5516438 3357 pfn_offset < pages_per_huge_page(h)) {
d5d4b0aa
CK
3358 /*
3359 * We use pfn_offset to avoid touching the pageframes
3360 * of this compound page.
3361 */
3362 goto same_page;
3363 }
cb900f41 3364 spin_unlock(ptl);
63551ae0 3365 }
28a35716 3366 *nr_pages = remainder;
63551ae0
DG
3367 *position = vaddr;
3368
2a15efc9 3369 return i ? i : -EFAULT;
63551ae0 3370}
8f860591 3371
7da4d641 3372unsigned long hugetlb_change_protection(struct vm_area_struct *vma,
8f860591
ZY
3373 unsigned long address, unsigned long end, pgprot_t newprot)
3374{
3375 struct mm_struct *mm = vma->vm_mm;
3376 unsigned long start = address;
3377 pte_t *ptep;
3378 pte_t pte;
a5516438 3379 struct hstate *h = hstate_vma(vma);
7da4d641 3380 unsigned long pages = 0;
8f860591
ZY
3381
3382 BUG_ON(address >= end);
3383 flush_cache_range(vma, address, end);
3384
a5338093 3385 mmu_notifier_invalidate_range_start(mm, start, end);
83cde9e8 3386 i_mmap_lock_write(vma->vm_file->f_mapping);
a5516438 3387 for (; address < end; address += huge_page_size(h)) {
cb900f41 3388 spinlock_t *ptl;
8f860591
ZY
3389 ptep = huge_pte_offset(mm, address);
3390 if (!ptep)
3391 continue;
cb900f41 3392 ptl = huge_pte_lock(h, mm, ptep);
7da4d641
PZ
3393 if (huge_pmd_unshare(mm, &address, ptep)) {
3394 pages++;
cb900f41 3395 spin_unlock(ptl);
39dde65c 3396 continue;
7da4d641 3397 }
a8bda28d
NH
3398 pte = huge_ptep_get(ptep);
3399 if (unlikely(is_hugetlb_entry_hwpoisoned(pte))) {
3400 spin_unlock(ptl);
3401 continue;
3402 }
3403 if (unlikely(is_hugetlb_entry_migration(pte))) {
3404 swp_entry_t entry = pte_to_swp_entry(pte);
3405
3406 if (is_write_migration_entry(entry)) {
3407 pte_t newpte;
3408
3409 make_migration_entry_read(&entry);
3410 newpte = swp_entry_to_pte(entry);
3411 set_huge_pte_at(mm, address, ptep, newpte);
3412 pages++;
3413 }
3414 spin_unlock(ptl);
3415 continue;
3416 }
3417 if (!huge_pte_none(pte)) {
8f860591 3418 pte = huge_ptep_get_and_clear(mm, address, ptep);
106c992a 3419 pte = pte_mkhuge(huge_pte_modify(pte, newprot));
be7517d6 3420 pte = arch_make_huge_pte(pte, vma, NULL, 0);
8f860591 3421 set_huge_pte_at(mm, address, ptep, pte);
7da4d641 3422 pages++;
8f860591 3423 }
cb900f41 3424 spin_unlock(ptl);
8f860591 3425 }
d833352a 3426 /*
c8c06efa 3427 * Must flush TLB before releasing i_mmap_rwsem: x86's huge_pmd_unshare
d833352a 3428 * may have cleared our pud entry and done put_page on the page table:
c8c06efa 3429 * once we release i_mmap_rwsem, another task can do the final put_page
d833352a
MG
3430 * and that page table be reused and filled with junk.
3431 */
8f860591 3432 flush_tlb_range(vma, start, end);
34ee645e 3433 mmu_notifier_invalidate_range(mm, start, end);
83cde9e8 3434 i_mmap_unlock_write(vma->vm_file->f_mapping);
a5338093 3435 mmu_notifier_invalidate_range_end(mm, start, end);
7da4d641
PZ
3436
3437 return pages << h->order;
8f860591
ZY
3438}
3439
a1e78772
MG
3440int hugetlb_reserve_pages(struct inode *inode,
3441 long from, long to,
5a6fe125 3442 struct vm_area_struct *vma,
ca16d140 3443 vm_flags_t vm_flags)
e4e574b7 3444{
17c9d12e 3445 long ret, chg;
a5516438 3446 struct hstate *h = hstate_inode(inode);
90481622 3447 struct hugepage_subpool *spool = subpool_inode(inode);
9119a41e 3448 struct resv_map *resv_map;
e4e574b7 3449
17c9d12e
MG
3450 /*
3451 * Only apply hugepage reservation if asked. At fault time, an
3452 * attempt will be made for VM_NORESERVE to allocate a page
90481622 3453 * without using reserves
17c9d12e 3454 */
ca16d140 3455 if (vm_flags & VM_NORESERVE)
17c9d12e
MG
3456 return 0;
3457
a1e78772
MG
3458 /*
3459 * Shared mappings base their reservation on the number of pages that
3460 * are already allocated on behalf of the file. Private mappings need
3461 * to reserve the full area even if read-only as mprotect() may be
3462 * called to make the mapping read-write. Assume !vma is a shm mapping
3463 */
9119a41e 3464 if (!vma || vma->vm_flags & VM_MAYSHARE) {
4e35f483 3465 resv_map = inode_resv_map(inode);
9119a41e 3466
1406ec9b 3467 chg = region_chg(resv_map, from, to);
9119a41e
JK
3468
3469 } else {
3470 resv_map = resv_map_alloc();
17c9d12e
MG
3471 if (!resv_map)
3472 return -ENOMEM;
3473
a1e78772 3474 chg = to - from;
84afd99b 3475
17c9d12e
MG
3476 set_vma_resv_map(vma, resv_map);
3477 set_vma_resv_flags(vma, HPAGE_RESV_OWNER);
3478 }
3479
c50ac050
DH
3480 if (chg < 0) {
3481 ret = chg;
3482 goto out_err;
3483 }
8a630112 3484
90481622 3485 /* There must be enough pages in the subpool for the mapping */
c50ac050
DH
3486 if (hugepage_subpool_get_pages(spool, chg)) {
3487 ret = -ENOSPC;
3488 goto out_err;
3489 }
5a6fe125
MG
3490
3491 /*
17c9d12e 3492 * Check enough hugepages are available for the reservation.
90481622 3493 * Hand the pages back to the subpool if there are not
5a6fe125 3494 */
a5516438 3495 ret = hugetlb_acct_memory(h, chg);
68842c9b 3496 if (ret < 0) {
90481622 3497 hugepage_subpool_put_pages(spool, chg);
c50ac050 3498 goto out_err;
68842c9b 3499 }
17c9d12e
MG
3500
3501 /*
3502 * Account for the reservations made. Shared mappings record regions
3503 * that have reservations as they are shared by multiple VMAs.
3504 * When the last VMA disappears, the region map says how much
3505 * the reservation was and the page cache tells how much of
3506 * the reservation was consumed. Private mappings are per-VMA and
3507 * only the consumed reservations are tracked. When the VMA
3508 * disappears, the original reservation is the VMA size and the
3509 * consumed reservations are stored in the map. Hence, nothing
3510 * else has to be done for private mappings here
3511 */
f83a275d 3512 if (!vma || vma->vm_flags & VM_MAYSHARE)
1406ec9b 3513 region_add(resv_map, from, to);
a43a8c39 3514 return 0;
c50ac050 3515out_err:
f031dd27
JK
3516 if (vma && is_vma_resv_set(vma, HPAGE_RESV_OWNER))
3517 kref_put(&resv_map->refs, resv_map_release);
c50ac050 3518 return ret;
a43a8c39
CK
3519}
3520
3521void hugetlb_unreserve_pages(struct inode *inode, long offset, long freed)
3522{
a5516438 3523 struct hstate *h = hstate_inode(inode);
4e35f483 3524 struct resv_map *resv_map = inode_resv_map(inode);
9119a41e 3525 long chg = 0;
90481622 3526 struct hugepage_subpool *spool = subpool_inode(inode);
45c682a6 3527
9119a41e 3528 if (resv_map)
1406ec9b 3529 chg = region_truncate(resv_map, offset);
45c682a6 3530 spin_lock(&inode->i_lock);
e4c6f8be 3531 inode->i_blocks -= (blocks_per_huge_page(h) * freed);
45c682a6
KC
3532 spin_unlock(&inode->i_lock);
3533
90481622 3534 hugepage_subpool_put_pages(spool, (chg - freed));
a5516438 3535 hugetlb_acct_memory(h, -(chg - freed));
a43a8c39 3536}
93f70f90 3537
3212b535
SC
3538#ifdef CONFIG_ARCH_WANT_HUGE_PMD_SHARE
3539static unsigned long page_table_shareable(struct vm_area_struct *svma,
3540 struct vm_area_struct *vma,
3541 unsigned long addr, pgoff_t idx)
3542{
3543 unsigned long saddr = ((idx - svma->vm_pgoff) << PAGE_SHIFT) +
3544 svma->vm_start;
3545 unsigned long sbase = saddr & PUD_MASK;
3546 unsigned long s_end = sbase + PUD_SIZE;
3547
3548 /* Allow segments to share if only one is marked locked */
3549 unsigned long vm_flags = vma->vm_flags & ~VM_LOCKED;
3550 unsigned long svm_flags = svma->vm_flags & ~VM_LOCKED;
3551
3552 /*
3553 * match the virtual addresses, permission and the alignment of the
3554 * page table page.
3555 */
3556 if (pmd_index(addr) != pmd_index(saddr) ||
3557 vm_flags != svm_flags ||
3558 sbase < svma->vm_start || svma->vm_end < s_end)
3559 return 0;
3560
3561 return saddr;
3562}
3563
3564static int vma_shareable(struct vm_area_struct *vma, unsigned long addr)
3565{
3566 unsigned long base = addr & PUD_MASK;
3567 unsigned long end = base + PUD_SIZE;
3568
3569 /*
3570 * check on proper vm_flags and page table alignment
3571 */
3572 if (vma->vm_flags & VM_MAYSHARE &&
3573 vma->vm_start <= base && end <= vma->vm_end)
3574 return 1;
3575 return 0;
3576}
3577
3578/*
3579 * Search for a shareable pmd page for hugetlb. In any case calls pmd_alloc()
3580 * and returns the corresponding pte. While this is not necessary for the
3581 * !shared pmd case because we can allocate the pmd later as well, it makes the
3582 * code much cleaner. pmd allocation is essential for the shared case because
c8c06efa 3583 * pud has to be populated inside the same i_mmap_rwsem section - otherwise
3212b535
SC
3584 * racing tasks could either miss the sharing (see huge_pte_offset) or select a
3585 * bad pmd for sharing.
3586 */
3587pte_t *huge_pmd_share(struct mm_struct *mm, unsigned long addr, pud_t *pud)
3588{
3589 struct vm_area_struct *vma = find_vma(mm, addr);
3590 struct address_space *mapping = vma->vm_file->f_mapping;
3591 pgoff_t idx = ((addr - vma->vm_start) >> PAGE_SHIFT) +
3592 vma->vm_pgoff;
3593 struct vm_area_struct *svma;
3594 unsigned long saddr;
3595 pte_t *spte = NULL;
3596 pte_t *pte;
cb900f41 3597 spinlock_t *ptl;
3212b535
SC
3598
3599 if (!vma_shareable(vma, addr))
3600 return (pte_t *)pmd_alloc(mm, pud, addr);
3601
83cde9e8 3602 i_mmap_lock_write(mapping);
3212b535
SC
3603 vma_interval_tree_foreach(svma, &mapping->i_mmap, idx, idx) {
3604 if (svma == vma)
3605 continue;
3606
3607 saddr = page_table_shareable(svma, vma, addr, idx);
3608 if (saddr) {
3609 spte = huge_pte_offset(svma->vm_mm, saddr);
3610 if (spte) {
dc6c9a35 3611 mm_inc_nr_pmds(mm);
3212b535
SC
3612 get_page(virt_to_page(spte));
3613 break;
3614 }
3615 }
3616 }
3617
3618 if (!spte)
3619 goto out;
3620
cb900f41
KS
3621 ptl = huge_pte_lockptr(hstate_vma(vma), mm, spte);
3622 spin_lock(ptl);
dc6c9a35 3623 if (pud_none(*pud)) {
3212b535
SC
3624 pud_populate(mm, pud,
3625 (pmd_t *)((unsigned long)spte & PAGE_MASK));
dc6c9a35 3626 } else {
3212b535 3627 put_page(virt_to_page(spte));
dc6c9a35
KS
3628 mm_inc_nr_pmds(mm);
3629 }
cb900f41 3630 spin_unlock(ptl);
3212b535
SC
3631out:
3632 pte = (pte_t *)pmd_alloc(mm, pud, addr);
83cde9e8 3633 i_mmap_unlock_write(mapping);
3212b535
SC
3634 return pte;
3635}
3636
3637/*
3638 * unmap huge page backed by shared pte.
3639 *
3640 * Hugetlb pte page is ref counted at the time of mapping. If pte is shared
3641 * indicated by page_count > 1, unmap is achieved by clearing pud and
3642 * decrementing the ref count. If count == 1, the pte page is not shared.
3643 *
cb900f41 3644 * called with page table lock held.
3212b535
SC
3645 *
3646 * returns: 1 successfully unmapped a shared pte page
3647 * 0 the underlying pte page is not shared, or it is the last user
3648 */
3649int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep)
3650{
3651 pgd_t *pgd = pgd_offset(mm, *addr);
3652 pud_t *pud = pud_offset(pgd, *addr);
3653
3654 BUG_ON(page_count(virt_to_page(ptep)) == 0);
3655 if (page_count(virt_to_page(ptep)) == 1)
3656 return 0;
3657
3658 pud_clear(pud);
3659 put_page(virt_to_page(ptep));
dc6c9a35 3660 mm_dec_nr_pmds(mm);
3212b535
SC
3661 *addr = ALIGN(*addr, HPAGE_SIZE * PTRS_PER_PTE) - HPAGE_SIZE;
3662 return 1;
3663}
9e5fc74c
SC
3664#define want_pmd_share() (1)
3665#else /* !CONFIG_ARCH_WANT_HUGE_PMD_SHARE */
3666pte_t *huge_pmd_share(struct mm_struct *mm, unsigned long addr, pud_t *pud)
3667{
3668 return NULL;
3669}
3670#define want_pmd_share() (0)
3212b535
SC
3671#endif /* CONFIG_ARCH_WANT_HUGE_PMD_SHARE */
3672
9e5fc74c
SC
3673#ifdef CONFIG_ARCH_WANT_GENERAL_HUGETLB
3674pte_t *huge_pte_alloc(struct mm_struct *mm,
3675 unsigned long addr, unsigned long sz)
3676{
3677 pgd_t *pgd;
3678 pud_t *pud;
3679 pte_t *pte = NULL;
3680
3681 pgd = pgd_offset(mm, addr);
3682 pud = pud_alloc(mm, pgd, addr);
3683 if (pud) {
3684 if (sz == PUD_SIZE) {
3685 pte = (pte_t *)pud;
3686 } else {
3687 BUG_ON(sz != PMD_SIZE);
3688 if (want_pmd_share() && pud_none(*pud))
3689 pte = huge_pmd_share(mm, addr, pud);
3690 else
3691 pte = (pte_t *)pmd_alloc(mm, pud, addr);
3692 }
3693 }
3694 BUG_ON(pte && !pte_none(*pte) && !pte_huge(*pte));
3695
3696 return pte;
3697}
3698
3699pte_t *huge_pte_offset(struct mm_struct *mm, unsigned long addr)
3700{
3701 pgd_t *pgd;
3702 pud_t *pud;
3703 pmd_t *pmd = NULL;
3704
3705 pgd = pgd_offset(mm, addr);
3706 if (pgd_present(*pgd)) {
3707 pud = pud_offset(pgd, addr);
3708 if (pud_present(*pud)) {
3709 if (pud_huge(*pud))
3710 return (pte_t *)pud;
3711 pmd = pmd_offset(pud, addr);
3712 }
3713 }
3714 return (pte_t *) pmd;
3715}
3716
61f77eda
NH
3717#endif /* CONFIG_ARCH_WANT_GENERAL_HUGETLB */
3718
3719/*
3720 * These functions are overwritable if your architecture needs its own
3721 * behavior.
3722 */
3723struct page * __weak
3724follow_huge_addr(struct mm_struct *mm, unsigned long address,
3725 int write)
3726{
3727 return ERR_PTR(-EINVAL);
3728}
3729
3730struct page * __weak
9e5fc74c 3731follow_huge_pmd(struct mm_struct *mm, unsigned long address,
e66f17ff 3732 pmd_t *pmd, int flags)
9e5fc74c 3733{
e66f17ff
NH
3734 struct page *page = NULL;
3735 spinlock_t *ptl;
3736retry:
3737 ptl = pmd_lockptr(mm, pmd);
3738 spin_lock(ptl);
3739 /*
3740 * make sure that the address range covered by this pmd is not
3741 * unmapped from other threads.
3742 */
3743 if (!pmd_huge(*pmd))
3744 goto out;
3745 if (pmd_present(*pmd)) {
97534127 3746 page = pmd_page(*pmd) + ((address & ~PMD_MASK) >> PAGE_SHIFT);
e66f17ff
NH
3747 if (flags & FOLL_GET)
3748 get_page(page);
3749 } else {
3750 if (is_hugetlb_entry_migration(huge_ptep_get((pte_t *)pmd))) {
3751 spin_unlock(ptl);
3752 __migration_entry_wait(mm, (pte_t *)pmd, ptl);
3753 goto retry;
3754 }
3755 /*
3756 * hwpoisoned entry is treated as no_page_table in
3757 * follow_page_mask().
3758 */
3759 }
3760out:
3761 spin_unlock(ptl);
9e5fc74c
SC
3762 return page;
3763}
3764
61f77eda 3765struct page * __weak
9e5fc74c 3766follow_huge_pud(struct mm_struct *mm, unsigned long address,
e66f17ff 3767 pud_t *pud, int flags)
9e5fc74c 3768{
e66f17ff
NH
3769 if (flags & FOLL_GET)
3770 return NULL;
9e5fc74c 3771
e66f17ff 3772 return pte_page(*(pte_t *)pud) + ((address & ~PUD_MASK) >> PAGE_SHIFT);
9e5fc74c
SC
3773}
3774
d5bd9106
AK
3775#ifdef CONFIG_MEMORY_FAILURE
3776
6de2b1aa
NH
3777/* Should be called in hugetlb_lock */
3778static int is_hugepage_on_freelist(struct page *hpage)
3779{
3780 struct page *page;
3781 struct page *tmp;
3782 struct hstate *h = page_hstate(hpage);
3783 int nid = page_to_nid(hpage);
3784
3785 list_for_each_entry_safe(page, tmp, &h->hugepage_freelists[nid], lru)
3786 if (page == hpage)
3787 return 1;
3788 return 0;
3789}
3790
93f70f90
NH
3791/*
3792 * This function is called from memory failure code.
3793 * Assume the caller holds page lock of the head page.
3794 */
6de2b1aa 3795int dequeue_hwpoisoned_huge_page(struct page *hpage)
93f70f90
NH
3796{
3797 struct hstate *h = page_hstate(hpage);
3798 int nid = page_to_nid(hpage);
6de2b1aa 3799 int ret = -EBUSY;
93f70f90
NH
3800
3801 spin_lock(&hugetlb_lock);
6de2b1aa 3802 if (is_hugepage_on_freelist(hpage)) {
56f2fb14
NH
3803 /*
3804 * Hwpoisoned hugepage isn't linked to activelist or freelist,
3805 * but dangling hpage->lru can trigger list-debug warnings
3806 * (this happens when we call unpoison_memory() on it),
3807 * so let it point to itself with list_del_init().
3808 */
3809 list_del_init(&hpage->lru);
8c6c2ecb 3810 set_page_refcounted(hpage);
6de2b1aa
NH
3811 h->free_huge_pages--;
3812 h->free_huge_pages_node[nid]--;
3813 ret = 0;
3814 }
93f70f90 3815 spin_unlock(&hugetlb_lock);
6de2b1aa 3816 return ret;
93f70f90 3817}
6de2b1aa 3818#endif
31caf665
NH
3819
3820bool isolate_huge_page(struct page *page, struct list_head *list)
3821{
309381fe 3822 VM_BUG_ON_PAGE(!PageHead(page), page);
31caf665
NH
3823 if (!get_page_unless_zero(page))
3824 return false;
3825 spin_lock(&hugetlb_lock);
3826 list_move_tail(&page->lru, list);
3827 spin_unlock(&hugetlb_lock);
3828 return true;
3829}
3830
3831void putback_active_hugepage(struct page *page)
3832{
309381fe 3833 VM_BUG_ON_PAGE(!PageHead(page), page);
31caf665
NH
3834 spin_lock(&hugetlb_lock);
3835 list_move_tail(&page->lru, &(page_hstate(page))->hugepage_activelist);
3836 spin_unlock(&hugetlb_lock);
3837 put_page(page);
3838}
c8721bbb
NH
3839
3840bool is_hugepage_active(struct page *page)
3841{
309381fe 3842 VM_BUG_ON_PAGE(!PageHuge(page), page);
c8721bbb
NH
3843 /*
3844 * This function can be called for a tail page because the caller,
3845 * scan_movable_pages, scans through a given pfn-range which typically
3846 * covers one memory block. In systems using gigantic hugepage (1GB
3847 * for x86_64,) a hugepage is larger than a memory block, and we don't
3848 * support migrating such large hugepages for now, so return false
3849 * when called for tail pages.
3850 */
3851 if (PageTail(page))
3852 return false;
3853 /*
3854 * Refcount of a hwpoisoned hugepages is 1, but they are not active,
3855 * so we should return false for them.
3856 */
3857 if (unlikely(PageHWPoison(page)))
3858 return false;
3859 return page_count(page) > 0;
3860}