]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - mm/hugetlb.c
USB: cdc-acm: downgrade message to debug
[mirror_ubuntu-focal-kernel.git] / mm / hugetlb.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
1da177e4
LT
2/*
3 * Generic hugetlb support.
6d49e352 4 * (C) Nadia Yvette Chambers, April 2004
1da177e4 5 */
1da177e4
LT
6#include <linux/list.h>
7#include <linux/init.h>
1da177e4 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>
97ad1087 19#include <linux/memblock.h>
a3437870 20#include <linux/sysfs.h>
5a0e3ad6 21#include <linux/slab.h>
63489f8e 22#include <linux/mmdebug.h>
174cd4b1 23#include <linux/sched/signal.h>
0fe6e20b 24#include <linux/rmap.h>
c6247f72 25#include <linux/string_helpers.h>
fd6a03ed
NH
26#include <linux/swap.h>
27#include <linux/swapops.h>
8382d914 28#include <linux/jhash.h>
98fa15f3 29#include <linux/numa.h>
ce44b015 30#include <linux/llist.h>
d6606683 31
63551ae0
DG
32#include <asm/page.h>
33#include <asm/pgtable.h>
24669e58 34#include <asm/tlb.h>
63551ae0 35
24669e58 36#include <linux/io.h>
63551ae0 37#include <linux/hugetlb.h>
9dd540e2 38#include <linux/hugetlb_cgroup.h>
9a305230 39#include <linux/node.h>
1a1aad8a 40#include <linux/userfaultfd_k.h>
ab5ac90a 41#include <linux/page_owner.h>
7835e98b 42#include "internal.h"
1da177e4 43
c3f38a38 44int hugetlb_max_hstate __read_mostly;
e5ff2159
AK
45unsigned int default_hstate_idx;
46struct hstate hstates[HUGE_MAX_HSTATE];
641844f5
NH
47/*
48 * Minimum page order among possible hugepage sizes, set to a proper value
49 * at boot time.
50 */
51static unsigned int minimum_order __read_mostly = UINT_MAX;
e5ff2159 52
53ba51d2
JT
53__initdata LIST_HEAD(huge_boot_pages);
54
e5ff2159
AK
55/* for command line parsing */
56static struct hstate * __initdata parsed_hstate;
57static unsigned long __initdata default_hstate_max_huge_pages;
e11bfbfc 58static unsigned long __initdata default_hstate_size;
9fee021d 59static bool __initdata parsed_valid_hugepagesz = true;
e5ff2159 60
3935baa9 61/*
31caf665
NH
62 * Protects updates to hugepage_freelists, hugepage_activelist, nr_huge_pages,
63 * free_huge_pages, and surplus_huge_pages.
3935baa9 64 */
c3f38a38 65DEFINE_SPINLOCK(hugetlb_lock);
0bd0f9fb 66
8382d914
DB
67/*
68 * Serializes faults on the same logical page. This is used to
69 * prevent spurious OOMs when the hugepage pool is fully utilized.
70 */
71static int num_fault_mutexes;
c672c7f2 72struct mutex *hugetlb_fault_mutex_table ____cacheline_aligned_in_smp;
8382d914 73
c2f2139b
MS
74static inline bool PageHugeFreed(struct page *head)
75{
76 return page_private(head + 4) == -1UL;
77}
78
79static inline void SetPageHugeFreed(struct page *head)
80{
81 set_page_private(head + 4, -1UL);
82}
83
84static inline void ClearPageHugeFreed(struct page *head)
85{
86 set_page_private(head + 4, 0);
87}
88
7ca02d0a
MK
89/* Forward declaration */
90static int hugetlb_acct_memory(struct hstate *h, long delta);
91
90481622
DG
92static inline void unlock_or_release_subpool(struct hugepage_subpool *spool)
93{
94 bool free = (spool->count == 0) && (spool->used_hpages == 0);
95
96 spin_unlock(&spool->lock);
97
98 /* If no pages are used, and no other handles to the subpool
7ca02d0a
MK
99 * remain, give up any reservations mased on minimum size and
100 * free the subpool */
101 if (free) {
102 if (spool->min_hpages != -1)
103 hugetlb_acct_memory(spool->hstate,
104 -spool->min_hpages);
90481622 105 kfree(spool);
7ca02d0a 106 }
90481622
DG
107}
108
7ca02d0a
MK
109struct hugepage_subpool *hugepage_new_subpool(struct hstate *h, long max_hpages,
110 long min_hpages)
90481622
DG
111{
112 struct hugepage_subpool *spool;
113
c6a91820 114 spool = kzalloc(sizeof(*spool), GFP_KERNEL);
90481622
DG
115 if (!spool)
116 return NULL;
117
118 spin_lock_init(&spool->lock);
119 spool->count = 1;
7ca02d0a
MK
120 spool->max_hpages = max_hpages;
121 spool->hstate = h;
122 spool->min_hpages = min_hpages;
123
124 if (min_hpages != -1 && hugetlb_acct_memory(h, min_hpages)) {
125 kfree(spool);
126 return NULL;
127 }
128 spool->rsv_hpages = min_hpages;
90481622
DG
129
130 return spool;
131}
132
133void hugepage_put_subpool(struct hugepage_subpool *spool)
134{
135 spin_lock(&spool->lock);
136 BUG_ON(!spool->count);
137 spool->count--;
138 unlock_or_release_subpool(spool);
139}
140
1c5ecae3
MK
141/*
142 * Subpool accounting for allocating and reserving pages.
143 * Return -ENOMEM if there are not enough resources to satisfy the
144 * the request. Otherwise, return the number of pages by which the
145 * global pools must be adjusted (upward). The returned value may
146 * only be different than the passed value (delta) in the case where
147 * a subpool minimum size must be manitained.
148 */
149static long hugepage_subpool_get_pages(struct hugepage_subpool *spool,
90481622
DG
150 long delta)
151{
1c5ecae3 152 long ret = delta;
90481622
DG
153
154 if (!spool)
1c5ecae3 155 return ret;
90481622
DG
156
157 spin_lock(&spool->lock);
1c5ecae3
MK
158
159 if (spool->max_hpages != -1) { /* maximum size accounting */
160 if ((spool->used_hpages + delta) <= spool->max_hpages)
161 spool->used_hpages += delta;
162 else {
163 ret = -ENOMEM;
164 goto unlock_ret;
165 }
90481622 166 }
90481622 167
09a95e29
MK
168 /* minimum size accounting */
169 if (spool->min_hpages != -1 && spool->rsv_hpages) {
1c5ecae3
MK
170 if (delta > spool->rsv_hpages) {
171 /*
172 * Asking for more reserves than those already taken on
173 * behalf of subpool. Return difference.
174 */
175 ret = delta - spool->rsv_hpages;
176 spool->rsv_hpages = 0;
177 } else {
178 ret = 0; /* reserves already accounted for */
179 spool->rsv_hpages -= delta;
180 }
181 }
182
183unlock_ret:
184 spin_unlock(&spool->lock);
90481622
DG
185 return ret;
186}
187
1c5ecae3
MK
188/*
189 * Subpool accounting for freeing and unreserving pages.
190 * Return the number of global page reservations that must be dropped.
191 * The return value may only be different than the passed value (delta)
192 * in the case where a subpool minimum size must be maintained.
193 */
194static long hugepage_subpool_put_pages(struct hugepage_subpool *spool,
90481622
DG
195 long delta)
196{
1c5ecae3
MK
197 long ret = delta;
198
90481622 199 if (!spool)
1c5ecae3 200 return delta;
90481622
DG
201
202 spin_lock(&spool->lock);
1c5ecae3
MK
203
204 if (spool->max_hpages != -1) /* maximum size accounting */
205 spool->used_hpages -= delta;
206
09a95e29
MK
207 /* minimum size accounting */
208 if (spool->min_hpages != -1 && spool->used_hpages < spool->min_hpages) {
1c5ecae3
MK
209 if (spool->rsv_hpages + delta <= spool->min_hpages)
210 ret = 0;
211 else
212 ret = spool->rsv_hpages + delta - spool->min_hpages;
213
214 spool->rsv_hpages += delta;
215 if (spool->rsv_hpages > spool->min_hpages)
216 spool->rsv_hpages = spool->min_hpages;
217 }
218
219 /*
220 * If hugetlbfs_put_super couldn't free spool due to an outstanding
221 * quota reference, free it now.
222 */
90481622 223 unlock_or_release_subpool(spool);
1c5ecae3
MK
224
225 return ret;
90481622
DG
226}
227
228static inline struct hugepage_subpool *subpool_inode(struct inode *inode)
229{
230 return HUGETLBFS_SB(inode->i_sb)->spool;
231}
232
233static inline struct hugepage_subpool *subpool_vma(struct vm_area_struct *vma)
234{
496ad9aa 235 return subpool_inode(file_inode(vma->vm_file));
90481622
DG
236}
237
96822904
AW
238/*
239 * Region tracking -- allows tracking of reservations and instantiated pages
240 * across the pages in a mapping.
84afd99b 241 *
1dd308a7
MK
242 * The region data structures are embedded into a resv_map and protected
243 * by a resv_map's lock. The set of regions within the resv_map represent
244 * reservations for huge pages, or huge pages that have already been
245 * instantiated within the map. The from and to elements are huge page
246 * indicies into the associated mapping. from indicates the starting index
247 * of the region. to represents the first index past the end of the region.
248 *
249 * For example, a file region structure with from == 0 and to == 4 represents
250 * four huge pages in a mapping. It is important to note that the to element
251 * represents the first element past the end of the region. This is used in
252 * arithmetic as 4(to) - 0(from) = 4 huge pages in the region.
253 *
254 * Interval notation of the form [from, to) will be used to indicate that
255 * the endpoint from is inclusive and to is exclusive.
96822904
AW
256 */
257struct file_region {
258 struct list_head link;
259 long from;
260 long to;
261};
262
1dd308a7
MK
263/*
264 * Add the huge page range represented by [f, t) to the reserve
5e911373
MK
265 * map. In the normal case, existing regions will be expanded
266 * to accommodate the specified range. Sufficient regions should
267 * exist for expansion due to the previous call to region_chg
268 * with the same range. However, it is possible that region_del
269 * could have been called after region_chg and modifed the map
270 * in such a way that no region exists to be expanded. In this
271 * case, pull a region descriptor from the cache associated with
272 * the map and use that for the new range.
cf3ad20b
MK
273 *
274 * Return the number of new huge pages added to the map. This
275 * number is greater than or equal to zero.
1dd308a7 276 */
1406ec9b 277static long region_add(struct resv_map *resv, long f, long t)
96822904 278{
1406ec9b 279 struct list_head *head = &resv->regions;
96822904 280 struct file_region *rg, *nrg, *trg;
cf3ad20b 281 long add = 0;
96822904 282
7b24d861 283 spin_lock(&resv->lock);
96822904
AW
284 /* Locate the region we are either in or before. */
285 list_for_each_entry(rg, head, link)
286 if (f <= rg->to)
287 break;
288
5e911373
MK
289 /*
290 * If no region exists which can be expanded to include the
291 * specified range, the list must have been modified by an
292 * interleving call to region_del(). Pull a region descriptor
293 * from the cache and use it for this range.
294 */
295 if (&rg->link == head || t < rg->from) {
296 VM_BUG_ON(resv->region_cache_count <= 0);
297
298 resv->region_cache_count--;
299 nrg = list_first_entry(&resv->region_cache, struct file_region,
300 link);
301 list_del(&nrg->link);
302
303 nrg->from = f;
304 nrg->to = t;
305 list_add(&nrg->link, rg->link.prev);
306
307 add += t - f;
308 goto out_locked;
309 }
310
96822904
AW
311 /* Round our left edge to the current segment if it encloses us. */
312 if (f > rg->from)
313 f = rg->from;
314
315 /* Check for and consume any regions we now overlap with. */
316 nrg = rg;
317 list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
318 if (&rg->link == head)
319 break;
320 if (rg->from > t)
321 break;
322
323 /* If this area reaches higher then extend our area to
324 * include it completely. If this is not the first area
325 * which we intend to reuse, free it. */
326 if (rg->to > t)
327 t = rg->to;
328 if (rg != nrg) {
cf3ad20b
MK
329 /* Decrement return value by the deleted range.
330 * Another range will span this area so that by
331 * end of routine add will be >= zero
332 */
333 add -= (rg->to - rg->from);
96822904
AW
334 list_del(&rg->link);
335 kfree(rg);
336 }
337 }
cf3ad20b
MK
338
339 add += (nrg->from - f); /* Added to beginning of region */
96822904 340 nrg->from = f;
cf3ad20b 341 add += t - nrg->to; /* Added to end of region */
96822904 342 nrg->to = t;
cf3ad20b 343
5e911373
MK
344out_locked:
345 resv->adds_in_progress--;
7b24d861 346 spin_unlock(&resv->lock);
cf3ad20b
MK
347 VM_BUG_ON(add < 0);
348 return add;
96822904
AW
349}
350
1dd308a7
MK
351/*
352 * Examine the existing reserve map and determine how many
353 * huge pages in the specified range [f, t) are NOT currently
354 * represented. This routine is called before a subsequent
355 * call to region_add that will actually modify the reserve
356 * map to add the specified range [f, t). region_chg does
357 * not change the number of huge pages represented by the
358 * map. However, if the existing regions in the map can not
359 * be expanded to represent the new range, a new file_region
360 * structure is added to the map as a placeholder. This is
361 * so that the subsequent region_add call will have all the
362 * regions it needs and will not fail.
363 *
5e911373
MK
364 * Upon entry, region_chg will also examine the cache of region descriptors
365 * associated with the map. If there are not enough descriptors cached, one
366 * will be allocated for the in progress add operation.
367 *
368 * Returns the number of huge pages that need to be added to the existing
369 * reservation map for the range [f, t). This number is greater or equal to
370 * zero. -ENOMEM is returned if a new file_region structure or cache entry
371 * is needed and can not be allocated.
1dd308a7 372 */
1406ec9b 373static long region_chg(struct resv_map *resv, long f, long t)
96822904 374{
1406ec9b 375 struct list_head *head = &resv->regions;
7b24d861 376 struct file_region *rg, *nrg = NULL;
96822904
AW
377 long chg = 0;
378
7b24d861
DB
379retry:
380 spin_lock(&resv->lock);
5e911373
MK
381retry_locked:
382 resv->adds_in_progress++;
383
384 /*
385 * Check for sufficient descriptors in the cache to accommodate
386 * the number of in progress add operations.
387 */
388 if (resv->adds_in_progress > resv->region_cache_count) {
389 struct file_region *trg;
390
391 VM_BUG_ON(resv->adds_in_progress - resv->region_cache_count > 1);
392 /* Must drop lock to allocate a new descriptor. */
393 resv->adds_in_progress--;
394 spin_unlock(&resv->lock);
395
396 trg = kmalloc(sizeof(*trg), GFP_KERNEL);
dbe409e4
MK
397 if (!trg) {
398 kfree(nrg);
5e911373 399 return -ENOMEM;
dbe409e4 400 }
5e911373
MK
401
402 spin_lock(&resv->lock);
403 list_add(&trg->link, &resv->region_cache);
404 resv->region_cache_count++;
405 goto retry_locked;
406 }
407
96822904
AW
408 /* Locate the region we are before or in. */
409 list_for_each_entry(rg, head, link)
410 if (f <= rg->to)
411 break;
412
413 /* If we are below the current region then a new region is required.
414 * Subtle, allocate a new region at the position but make it zero
415 * size such that we can guarantee to record the reservation. */
416 if (&rg->link == head || t < rg->from) {
7b24d861 417 if (!nrg) {
5e911373 418 resv->adds_in_progress--;
7b24d861
DB
419 spin_unlock(&resv->lock);
420 nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
421 if (!nrg)
422 return -ENOMEM;
423
424 nrg->from = f;
425 nrg->to = f;
426 INIT_LIST_HEAD(&nrg->link);
427 goto retry;
428 }
96822904 429
7b24d861
DB
430 list_add(&nrg->link, rg->link.prev);
431 chg = t - f;
432 goto out_nrg;
96822904
AW
433 }
434
435 /* Round our left edge to the current segment if it encloses us. */
436 if (f > rg->from)
437 f = rg->from;
438 chg = t - f;
439
440 /* Check for and consume any regions we now overlap with. */
441 list_for_each_entry(rg, rg->link.prev, link) {
442 if (&rg->link == head)
443 break;
444 if (rg->from > t)
7b24d861 445 goto out;
96822904 446
25985edc 447 /* We overlap with this area, if it extends further than
96822904
AW
448 * us then we must extend ourselves. Account for its
449 * existing reservation. */
450 if (rg->to > t) {
451 chg += rg->to - t;
452 t = rg->to;
453 }
454 chg -= rg->to - rg->from;
455 }
7b24d861
DB
456
457out:
458 spin_unlock(&resv->lock);
459 /* We already know we raced and no longer need the new region */
460 kfree(nrg);
461 return chg;
462out_nrg:
463 spin_unlock(&resv->lock);
96822904
AW
464 return chg;
465}
466
5e911373
MK
467/*
468 * Abort the in progress add operation. The adds_in_progress field
469 * of the resv_map keeps track of the operations in progress between
470 * calls to region_chg and region_add. Operations are sometimes
471 * aborted after the call to region_chg. In such cases, region_abort
472 * is called to decrement the adds_in_progress counter.
473 *
474 * NOTE: The range arguments [f, t) are not needed or used in this
475 * routine. They are kept to make reading the calling code easier as
476 * arguments will match the associated region_chg call.
477 */
478static void region_abort(struct resv_map *resv, long f, long t)
479{
480 spin_lock(&resv->lock);
481 VM_BUG_ON(!resv->region_cache_count);
482 resv->adds_in_progress--;
483 spin_unlock(&resv->lock);
484}
485
1dd308a7 486/*
feba16e2
MK
487 * Delete the specified range [f, t) from the reserve map. If the
488 * t parameter is LONG_MAX, this indicates that ALL regions after f
489 * should be deleted. Locate the regions which intersect [f, t)
490 * and either trim, delete or split the existing regions.
491 *
492 * Returns the number of huge pages deleted from the reserve map.
493 * In the normal case, the return value is zero or more. In the
494 * case where a region must be split, a new region descriptor must
495 * be allocated. If the allocation fails, -ENOMEM will be returned.
496 * NOTE: If the parameter t == LONG_MAX, then we will never split
497 * a region and possibly return -ENOMEM. Callers specifying
498 * t == LONG_MAX do not need to check for -ENOMEM error.
1dd308a7 499 */
feba16e2 500static long region_del(struct resv_map *resv, long f, long t)
96822904 501{
1406ec9b 502 struct list_head *head = &resv->regions;
96822904 503 struct file_region *rg, *trg;
feba16e2
MK
504 struct file_region *nrg = NULL;
505 long del = 0;
96822904 506
feba16e2 507retry:
7b24d861 508 spin_lock(&resv->lock);
feba16e2 509 list_for_each_entry_safe(rg, trg, head, link) {
dbe409e4
MK
510 /*
511 * Skip regions before the range to be deleted. file_region
512 * ranges are normally of the form [from, to). However, there
513 * may be a "placeholder" entry in the map which is of the form
514 * (from, to) with from == to. Check for placeholder entries
515 * at the beginning of the range to be deleted.
516 */
517 if (rg->to <= f && (rg->to != rg->from || rg->to != f))
feba16e2 518 continue;
dbe409e4 519
feba16e2 520 if (rg->from >= t)
96822904 521 break;
96822904 522
feba16e2
MK
523 if (f > rg->from && t < rg->to) { /* Must split region */
524 /*
525 * Check for an entry in the cache before dropping
526 * lock and attempting allocation.
527 */
528 if (!nrg &&
529 resv->region_cache_count > resv->adds_in_progress) {
530 nrg = list_first_entry(&resv->region_cache,
531 struct file_region,
532 link);
533 list_del(&nrg->link);
534 resv->region_cache_count--;
535 }
96822904 536
feba16e2
MK
537 if (!nrg) {
538 spin_unlock(&resv->lock);
539 nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
540 if (!nrg)
541 return -ENOMEM;
542 goto retry;
543 }
544
545 del += t - f;
546
547 /* New entry for end of split region */
548 nrg->from = t;
549 nrg->to = rg->to;
550 INIT_LIST_HEAD(&nrg->link);
551
552 /* Original entry is trimmed */
553 rg->to = f;
554
555 list_add(&nrg->link, &rg->link);
556 nrg = NULL;
96822904 557 break;
feba16e2
MK
558 }
559
560 if (f <= rg->from && t >= rg->to) { /* Remove entire region */
561 del += rg->to - rg->from;
562 list_del(&rg->link);
563 kfree(rg);
564 continue;
565 }
566
567 if (f <= rg->from) { /* Trim beginning of region */
568 del += t - rg->from;
569 rg->from = t;
570 } else { /* Trim end of region */
571 del += rg->to - f;
572 rg->to = f;
573 }
96822904 574 }
7b24d861 575
7b24d861 576 spin_unlock(&resv->lock);
feba16e2
MK
577 kfree(nrg);
578 return del;
96822904
AW
579}
580
b5cec28d
MK
581/*
582 * A rare out of memory error was encountered which prevented removal of
583 * the reserve map region for a page. The huge page itself was free'ed
584 * and removed from the page cache. This routine will adjust the subpool
585 * usage count, and the global reserve count if needed. By incrementing
586 * these counts, the reserve map entry which could not be deleted will
587 * appear as a "reserved" entry instead of simply dangling with incorrect
588 * counts.
589 */
72e2936c 590void hugetlb_fix_reserve_counts(struct inode *inode)
b5cec28d
MK
591{
592 struct hugepage_subpool *spool = subpool_inode(inode);
593 long rsv_adjust;
594
595 rsv_adjust = hugepage_subpool_get_pages(spool, 1);
72e2936c 596 if (rsv_adjust) {
b5cec28d
MK
597 struct hstate *h = hstate_inode(inode);
598
599 hugetlb_acct_memory(h, 1);
600 }
601}
602
1dd308a7
MK
603/*
604 * Count and return the number of huge pages in the reserve map
605 * that intersect with the range [f, t).
606 */
1406ec9b 607static long region_count(struct resv_map *resv, long f, long t)
84afd99b 608{
1406ec9b 609 struct list_head *head = &resv->regions;
84afd99b
AW
610 struct file_region *rg;
611 long chg = 0;
612
7b24d861 613 spin_lock(&resv->lock);
84afd99b
AW
614 /* Locate each segment we overlap with, and count that overlap. */
615 list_for_each_entry(rg, head, link) {
f2135a4a
WSH
616 long seg_from;
617 long seg_to;
84afd99b
AW
618
619 if (rg->to <= f)
620 continue;
621 if (rg->from >= t)
622 break;
623
624 seg_from = max(rg->from, f);
625 seg_to = min(rg->to, t);
626
627 chg += seg_to - seg_from;
628 }
7b24d861 629 spin_unlock(&resv->lock);
84afd99b
AW
630
631 return chg;
632}
633
e7c4b0bf
AW
634/*
635 * Convert the address within this vma to the page offset within
636 * the mapping, in pagecache page units; huge pages here.
637 */
a5516438
AK
638static pgoff_t vma_hugecache_offset(struct hstate *h,
639 struct vm_area_struct *vma, unsigned long address)
e7c4b0bf 640{
a5516438
AK
641 return ((address - vma->vm_start) >> huge_page_shift(h)) +
642 (vma->vm_pgoff >> huge_page_order(h));
e7c4b0bf
AW
643}
644
0fe6e20b
NH
645pgoff_t linear_hugepage_index(struct vm_area_struct *vma,
646 unsigned long address)
647{
648 return vma_hugecache_offset(hstate_vma(vma), vma, address);
649}
dee41079 650EXPORT_SYMBOL_GPL(linear_hugepage_index);
0fe6e20b 651
08fba699
MG
652/*
653 * Return the size of the pages allocated when backing a VMA. In the majority
654 * cases this will be same size as used by the page table entries.
655 */
656unsigned long vma_kernel_pagesize(struct vm_area_struct *vma)
657{
05ea8860
DW
658 if (vma->vm_ops && vma->vm_ops->pagesize)
659 return vma->vm_ops->pagesize(vma);
660 return PAGE_SIZE;
08fba699 661}
f340ca0f 662EXPORT_SYMBOL_GPL(vma_kernel_pagesize);
08fba699 663
3340289d
MG
664/*
665 * Return the page size being used by the MMU to back a VMA. In the majority
666 * of cases, the page size used by the kernel matches the MMU size. On
09135cc5
DW
667 * architectures where it differs, an architecture-specific 'strong'
668 * version of this symbol is required.
3340289d 669 */
09135cc5 670__weak unsigned long vma_mmu_pagesize(struct vm_area_struct *vma)
3340289d
MG
671{
672 return vma_kernel_pagesize(vma);
673}
3340289d 674
84afd99b
AW
675/*
676 * Flags for MAP_PRIVATE reservations. These are stored in the bottom
677 * bits of the reservation map pointer, which are always clear due to
678 * alignment.
679 */
680#define HPAGE_RESV_OWNER (1UL << 0)
681#define HPAGE_RESV_UNMAPPED (1UL << 1)
04f2cbe3 682#define HPAGE_RESV_MASK (HPAGE_RESV_OWNER | HPAGE_RESV_UNMAPPED)
84afd99b 683
a1e78772
MG
684/*
685 * These helpers are used to track how many pages are reserved for
686 * faults in a MAP_PRIVATE mapping. Only the process that called mmap()
687 * is guaranteed to have their future faults succeed.
688 *
689 * With the exception of reset_vma_resv_huge_pages() which is called at fork(),
690 * the reserve counters are updated with the hugetlb_lock held. It is safe
691 * to reset the VMA at fork() time as it is not in use yet and there is no
692 * chance of the global counters getting corrupted as a result of the values.
84afd99b
AW
693 *
694 * The private mapping reservation is represented in a subtly different
695 * manner to a shared mapping. A shared mapping has a region map associated
696 * with the underlying file, this region map represents the backing file
697 * pages which have ever had a reservation assigned which this persists even
698 * after the page is instantiated. A private mapping has a region map
699 * associated with the original mmap which is attached to all VMAs which
700 * reference it, this region map represents those offsets which have consumed
701 * reservation ie. where pages have been instantiated.
a1e78772 702 */
e7c4b0bf
AW
703static unsigned long get_vma_private_data(struct vm_area_struct *vma)
704{
705 return (unsigned long)vma->vm_private_data;
706}
707
708static void set_vma_private_data(struct vm_area_struct *vma,
709 unsigned long value)
710{
711 vma->vm_private_data = (void *)value;
712}
713
9119a41e 714struct resv_map *resv_map_alloc(void)
84afd99b
AW
715{
716 struct resv_map *resv_map = kmalloc(sizeof(*resv_map), GFP_KERNEL);
5e911373
MK
717 struct file_region *rg = kmalloc(sizeof(*rg), GFP_KERNEL);
718
719 if (!resv_map || !rg) {
720 kfree(resv_map);
721 kfree(rg);
84afd99b 722 return NULL;
5e911373 723 }
84afd99b
AW
724
725 kref_init(&resv_map->refs);
7b24d861 726 spin_lock_init(&resv_map->lock);
84afd99b
AW
727 INIT_LIST_HEAD(&resv_map->regions);
728
5e911373
MK
729 resv_map->adds_in_progress = 0;
730
731 INIT_LIST_HEAD(&resv_map->region_cache);
732 list_add(&rg->link, &resv_map->region_cache);
733 resv_map->region_cache_count = 1;
734
84afd99b
AW
735 return resv_map;
736}
737
9119a41e 738void resv_map_release(struct kref *ref)
84afd99b
AW
739{
740 struct resv_map *resv_map = container_of(ref, struct resv_map, refs);
5e911373
MK
741 struct list_head *head = &resv_map->region_cache;
742 struct file_region *rg, *trg;
84afd99b
AW
743
744 /* Clear out any active regions before we release the map. */
feba16e2 745 region_del(resv_map, 0, LONG_MAX);
5e911373
MK
746
747 /* ... and any entries left in the cache */
748 list_for_each_entry_safe(rg, trg, head, link) {
749 list_del(&rg->link);
750 kfree(rg);
751 }
752
753 VM_BUG_ON(resv_map->adds_in_progress);
754
84afd99b
AW
755 kfree(resv_map);
756}
757
4e35f483
JK
758static inline struct resv_map *inode_resv_map(struct inode *inode)
759{
f27a5136
MK
760 /*
761 * At inode evict time, i_mapping may not point to the original
762 * address space within the inode. This original address space
763 * contains the pointer to the resv_map. So, always use the
764 * address space embedded within the inode.
765 * The VERY common case is inode->mapping == &inode->i_data but,
766 * this may not be true for device special inodes.
767 */
768 return (struct resv_map *)(&inode->i_data)->private_data;
4e35f483
JK
769}
770
84afd99b 771static struct resv_map *vma_resv_map(struct vm_area_struct *vma)
a1e78772 772{
81d1b09c 773 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
4e35f483
JK
774 if (vma->vm_flags & VM_MAYSHARE) {
775 struct address_space *mapping = vma->vm_file->f_mapping;
776 struct inode *inode = mapping->host;
777
778 return inode_resv_map(inode);
779
780 } else {
84afd99b
AW
781 return (struct resv_map *)(get_vma_private_data(vma) &
782 ~HPAGE_RESV_MASK);
4e35f483 783 }
a1e78772
MG
784}
785
84afd99b 786static void set_vma_resv_map(struct vm_area_struct *vma, struct resv_map *map)
a1e78772 787{
81d1b09c
SL
788 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
789 VM_BUG_ON_VMA(vma->vm_flags & VM_MAYSHARE, vma);
a1e78772 790
84afd99b
AW
791 set_vma_private_data(vma, (get_vma_private_data(vma) &
792 HPAGE_RESV_MASK) | (unsigned long)map);
04f2cbe3
MG
793}
794
795static void set_vma_resv_flags(struct vm_area_struct *vma, unsigned long flags)
796{
81d1b09c
SL
797 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
798 VM_BUG_ON_VMA(vma->vm_flags & VM_MAYSHARE, vma);
e7c4b0bf
AW
799
800 set_vma_private_data(vma, get_vma_private_data(vma) | flags);
04f2cbe3
MG
801}
802
803static int is_vma_resv_set(struct vm_area_struct *vma, unsigned long flag)
804{
81d1b09c 805 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
e7c4b0bf
AW
806
807 return (get_vma_private_data(vma) & flag) != 0;
a1e78772
MG
808}
809
04f2cbe3 810/* Reset counters to 0 and clear all HPAGE_RESV_* flags */
a1e78772
MG
811void reset_vma_resv_huge_pages(struct vm_area_struct *vma)
812{
81d1b09c 813 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
f83a275d 814 if (!(vma->vm_flags & VM_MAYSHARE))
a1e78772
MG
815 vma->vm_private_data = (void *)0;
816}
817
818/* Returns true if the VMA has associated reserve pages */
559ec2f8 819static bool vma_has_reserves(struct vm_area_struct *vma, long chg)
a1e78772 820{
af0ed73e
JK
821 if (vma->vm_flags & VM_NORESERVE) {
822 /*
823 * This address is already reserved by other process(chg == 0),
824 * so, we should decrement reserved count. Without decrementing,
825 * reserve count remains after releasing inode, because this
826 * allocated page will go into page cache and is regarded as
827 * coming from reserved pool in releasing step. Currently, we
828 * don't have any other solution to deal with this situation
829 * properly, so add work-around here.
830 */
831 if (vma->vm_flags & VM_MAYSHARE && chg == 0)
559ec2f8 832 return true;
af0ed73e 833 else
559ec2f8 834 return false;
af0ed73e 835 }
a63884e9
JK
836
837 /* Shared mappings always use reserves */
1fb1b0e9
MK
838 if (vma->vm_flags & VM_MAYSHARE) {
839 /*
840 * We know VM_NORESERVE is not set. Therefore, there SHOULD
841 * be a region map for all pages. The only situation where
842 * there is no region map is if a hole was punched via
843 * fallocate. In this case, there really are no reverves to
844 * use. This situation is indicated if chg != 0.
845 */
846 if (chg)
847 return false;
848 else
849 return true;
850 }
a63884e9
JK
851
852 /*
853 * Only the process that called mmap() has reserves for
854 * private mappings.
855 */
67961f9d
MK
856 if (is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
857 /*
858 * Like the shared case above, a hole punch or truncate
859 * could have been performed on the private mapping.
860 * Examine the value of chg to determine if reserves
861 * actually exist or were previously consumed.
862 * Very Subtle - The value of chg comes from a previous
863 * call to vma_needs_reserves(). The reserve map for
864 * private mappings has different (opposite) semantics
865 * than that of shared mappings. vma_needs_reserves()
866 * has already taken this difference in semantics into
867 * account. Therefore, the meaning of chg is the same
868 * as in the shared case above. Code could easily be
869 * combined, but keeping it separate draws attention to
870 * subtle differences.
871 */
872 if (chg)
873 return false;
874 else
875 return true;
876 }
a63884e9 877
559ec2f8 878 return false;
a1e78772
MG
879}
880
a5516438 881static void enqueue_huge_page(struct hstate *h, struct page *page)
1da177e4
LT
882{
883 int nid = page_to_nid(page);
0edaecfa 884 list_move(&page->lru, &h->hugepage_freelists[nid]);
a5516438
AK
885 h->free_huge_pages++;
886 h->free_huge_pages_node[nid]++;
c2f2139b 887 SetPageHugeFreed(page);
1da177e4
LT
888}
889
94310cbc 890static struct page *dequeue_huge_page_node_exact(struct hstate *h, int nid)
bf50bab2
NH
891{
892 struct page *page;
893
c8721bbb 894 list_for_each_entry(page, &h->hugepage_freelists[nid], lru)
243abd5b 895 if (!PageHWPoison(page))
c8721bbb
NH
896 break;
897 /*
898 * if 'non-isolated free hugepage' not found on the list,
899 * the allocation fails.
900 */
901 if (&h->hugepage_freelists[nid] == &page->lru)
bf50bab2 902 return NULL;
0edaecfa 903 list_move(&page->lru, &h->hugepage_activelist);
a9869b83 904 set_page_refcounted(page);
c2f2139b 905 ClearPageHugeFreed(page);
bf50bab2
NH
906 h->free_huge_pages--;
907 h->free_huge_pages_node[nid]--;
908 return page;
909}
910
3e59fcb0
MH
911static struct page *dequeue_huge_page_nodemask(struct hstate *h, gfp_t gfp_mask, int nid,
912 nodemask_t *nmask)
94310cbc 913{
3e59fcb0
MH
914 unsigned int cpuset_mems_cookie;
915 struct zonelist *zonelist;
916 struct zone *zone;
917 struct zoneref *z;
98fa15f3 918 int node = NUMA_NO_NODE;
94310cbc 919
3e59fcb0
MH
920 zonelist = node_zonelist(nid, gfp_mask);
921
922retry_cpuset:
923 cpuset_mems_cookie = read_mems_allowed_begin();
924 for_each_zone_zonelist_nodemask(zone, z, zonelist, gfp_zone(gfp_mask), nmask) {
925 struct page *page;
926
927 if (!cpuset_zone_allowed(zone, gfp_mask))
928 continue;
929 /*
930 * no need to ask again on the same node. Pool is node rather than
931 * zone aware
932 */
933 if (zone_to_nid(zone) == node)
934 continue;
935 node = zone_to_nid(zone);
94310cbc 936
94310cbc
AK
937 page = dequeue_huge_page_node_exact(h, node);
938 if (page)
939 return page;
940 }
3e59fcb0
MH
941 if (unlikely(read_mems_allowed_retry(cpuset_mems_cookie)))
942 goto retry_cpuset;
943
94310cbc
AK
944 return NULL;
945}
946
86cdb465
NH
947/* Movability of hugepages depends on migration support. */
948static inline gfp_t htlb_alloc_mask(struct hstate *h)
949{
7ed2c31d 950 if (hugepage_movable_supported(h))
86cdb465
NH
951 return GFP_HIGHUSER_MOVABLE;
952 else
953 return GFP_HIGHUSER;
954}
955
a5516438
AK
956static struct page *dequeue_huge_page_vma(struct hstate *h,
957 struct vm_area_struct *vma,
af0ed73e
JK
958 unsigned long address, int avoid_reserve,
959 long chg)
1da177e4 960{
3e59fcb0 961 struct page *page;
480eccf9 962 struct mempolicy *mpol;
04ec6264 963 gfp_t gfp_mask;
3e59fcb0 964 nodemask_t *nodemask;
04ec6264 965 int nid;
1da177e4 966
a1e78772
MG
967 /*
968 * A child process with MAP_PRIVATE mappings created by their parent
969 * have no page reserves. This check ensures that reservations are
970 * not "stolen". The child may still get SIGKILLed
971 */
af0ed73e 972 if (!vma_has_reserves(vma, chg) &&
a5516438 973 h->free_huge_pages - h->resv_huge_pages == 0)
c0ff7453 974 goto err;
a1e78772 975
04f2cbe3 976 /* If reserves cannot be used, ensure enough pages are in the pool */
a5516438 977 if (avoid_reserve && h->free_huge_pages - h->resv_huge_pages == 0)
6eab04a8 978 goto err;
04f2cbe3 979
04ec6264
VB
980 gfp_mask = htlb_alloc_mask(h);
981 nid = huge_node(vma, address, gfp_mask, &mpol, &nodemask);
3e59fcb0
MH
982 page = dequeue_huge_page_nodemask(h, gfp_mask, nid, nodemask);
983 if (page && !avoid_reserve && vma_has_reserves(vma, chg)) {
984 SetPagePrivate(page);
985 h->resv_huge_pages--;
1da177e4 986 }
cc9a6c87 987
52cd3b07 988 mpol_cond_put(mpol);
1da177e4 989 return page;
cc9a6c87
MG
990
991err:
cc9a6c87 992 return NULL;
1da177e4
LT
993}
994
1cac6f2c
LC
995/*
996 * common helper functions for hstate_next_node_to_{alloc|free}.
997 * We may have allocated or freed a huge page based on a different
998 * nodes_allowed previously, so h->next_node_to_{alloc|free} might
999 * be outside of *nodes_allowed. Ensure that we use an allowed
1000 * node for alloc or free.
1001 */
1002static int next_node_allowed(int nid, nodemask_t *nodes_allowed)
1003{
0edaf86c 1004 nid = next_node_in(nid, *nodes_allowed);
1cac6f2c
LC
1005 VM_BUG_ON(nid >= MAX_NUMNODES);
1006
1007 return nid;
1008}
1009
1010static int get_valid_node_allowed(int nid, nodemask_t *nodes_allowed)
1011{
1012 if (!node_isset(nid, *nodes_allowed))
1013 nid = next_node_allowed(nid, nodes_allowed);
1014 return nid;
1015}
1016
1017/*
1018 * returns the previously saved node ["this node"] from which to
1019 * allocate a persistent huge page for the pool and advance the
1020 * next node from which to allocate, handling wrap at end of node
1021 * mask.
1022 */
1023static int hstate_next_node_to_alloc(struct hstate *h,
1024 nodemask_t *nodes_allowed)
1025{
1026 int nid;
1027
1028 VM_BUG_ON(!nodes_allowed);
1029
1030 nid = get_valid_node_allowed(h->next_nid_to_alloc, nodes_allowed);
1031 h->next_nid_to_alloc = next_node_allowed(nid, nodes_allowed);
1032
1033 return nid;
1034}
1035
1036/*
1037 * helper for free_pool_huge_page() - return the previously saved
1038 * node ["this node"] from which to free a huge page. Advance the
1039 * next node id whether or not we find a free huge page to free so
1040 * that the next attempt to free addresses the next node.
1041 */
1042static int hstate_next_node_to_free(struct hstate *h, nodemask_t *nodes_allowed)
1043{
1044 int nid;
1045
1046 VM_BUG_ON(!nodes_allowed);
1047
1048 nid = get_valid_node_allowed(h->next_nid_to_free, nodes_allowed);
1049 h->next_nid_to_free = next_node_allowed(nid, nodes_allowed);
1050
1051 return nid;
1052}
1053
1054#define for_each_node_mask_to_alloc(hs, nr_nodes, node, mask) \
1055 for (nr_nodes = nodes_weight(*mask); \
1056 nr_nodes > 0 && \
1057 ((node = hstate_next_node_to_alloc(hs, mask)) || 1); \
1058 nr_nodes--)
1059
1060#define for_each_node_mask_to_free(hs, nr_nodes, node, mask) \
1061 for (nr_nodes = nodes_weight(*mask); \
1062 nr_nodes > 0 && \
1063 ((node = hstate_next_node_to_free(hs, mask)) || 1); \
1064 nr_nodes--)
1065
e1073d1e 1066#ifdef CONFIG_ARCH_HAS_GIGANTIC_PAGE
944d9fec 1067static void destroy_compound_gigantic_page(struct page *page,
d00181b9 1068 unsigned int order)
944d9fec
LC
1069{
1070 int i;
1071 int nr_pages = 1 << order;
1072 struct page *p = page + 1;
1073
c8cc708a 1074 atomic_set(compound_mapcount_ptr(page), 0);
944d9fec 1075 for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
1d798ca3 1076 clear_compound_head(p);
944d9fec 1077 set_page_refcounted(p);
944d9fec
LC
1078 }
1079
1080 set_compound_order(page, 0);
1081 __ClearPageHead(page);
1082}
1083
d00181b9 1084static void free_gigantic_page(struct page *page, unsigned int order)
944d9fec
LC
1085{
1086 free_contig_range(page_to_pfn(page), 1 << order);
1087}
1088
4eb0716e 1089#ifdef CONFIG_CONTIG_ALLOC
944d9fec 1090static int __alloc_gigantic_page(unsigned long start_pfn,
79b63f12 1091 unsigned long nr_pages, gfp_t gfp_mask)
944d9fec
LC
1092{
1093 unsigned long end_pfn = start_pfn + nr_pages;
ca96b625 1094 return alloc_contig_range(start_pfn, end_pfn, MIGRATE_MOVABLE,
79b63f12 1095 gfp_mask);
944d9fec
LC
1096}
1097
f44b2dda
JK
1098static bool pfn_range_valid_gigantic(struct zone *z,
1099 unsigned long start_pfn, unsigned long nr_pages)
944d9fec
LC
1100{
1101 unsigned long i, end_pfn = start_pfn + nr_pages;
1102 struct page *page;
1103
1104 for (i = start_pfn; i < end_pfn; i++) {
f231fe42
DH
1105 page = pfn_to_online_page(i);
1106 if (!page)
944d9fec
LC
1107 return false;
1108
f44b2dda
JK
1109 if (page_zone(page) != z)
1110 return false;
1111
944d9fec
LC
1112 if (PageReserved(page))
1113 return false;
1114
1115 if (page_count(page) > 0)
1116 return false;
1117
1118 if (PageHuge(page))
1119 return false;
1120 }
1121
1122 return true;
1123}
1124
1125static bool zone_spans_last_pfn(const struct zone *zone,
1126 unsigned long start_pfn, unsigned long nr_pages)
1127{
1128 unsigned long last_pfn = start_pfn + nr_pages - 1;
1129 return zone_spans_pfn(zone, last_pfn);
1130}
1131
d9cc948f
MH
1132static struct page *alloc_gigantic_page(struct hstate *h, gfp_t gfp_mask,
1133 int nid, nodemask_t *nodemask)
944d9fec 1134{
79b63f12 1135 unsigned int order = huge_page_order(h);
944d9fec
LC
1136 unsigned long nr_pages = 1 << order;
1137 unsigned long ret, pfn, flags;
79b63f12
MH
1138 struct zonelist *zonelist;
1139 struct zone *zone;
1140 struct zoneref *z;
944d9fec 1141
79b63f12 1142 zonelist = node_zonelist(nid, gfp_mask);
d9cc948f 1143 for_each_zone_zonelist_nodemask(zone, z, zonelist, gfp_zone(gfp_mask), nodemask) {
79b63f12 1144 spin_lock_irqsave(&zone->lock, flags);
944d9fec 1145
79b63f12
MH
1146 pfn = ALIGN(zone->zone_start_pfn, nr_pages);
1147 while (zone_spans_last_pfn(zone, pfn, nr_pages)) {
1148 if (pfn_range_valid_gigantic(zone, pfn, nr_pages)) {
944d9fec
LC
1149 /*
1150 * We release the zone lock here because
1151 * alloc_contig_range() will also lock the zone
1152 * at some point. If there's an allocation
1153 * spinning on this lock, it may win the race
1154 * and cause alloc_contig_range() to fail...
1155 */
79b63f12
MH
1156 spin_unlock_irqrestore(&zone->lock, flags);
1157 ret = __alloc_gigantic_page(pfn, nr_pages, gfp_mask);
944d9fec
LC
1158 if (!ret)
1159 return pfn_to_page(pfn);
79b63f12 1160 spin_lock_irqsave(&zone->lock, flags);
944d9fec
LC
1161 }
1162 pfn += nr_pages;
1163 }
1164
79b63f12 1165 spin_unlock_irqrestore(&zone->lock, flags);
944d9fec
LC
1166 }
1167
1168 return NULL;
1169}
1170
1171static void prep_new_huge_page(struct hstate *h, struct page *page, int nid);
d00181b9 1172static void prep_compound_gigantic_page(struct page *page, unsigned int order);
4eb0716e
AG
1173#else /* !CONFIG_CONTIG_ALLOC */
1174static struct page *alloc_gigantic_page(struct hstate *h, gfp_t gfp_mask,
1175 int nid, nodemask_t *nodemask)
1176{
1177 return NULL;
1178}
1179#endif /* CONFIG_CONTIG_ALLOC */
944d9fec 1180
e1073d1e 1181#else /* !CONFIG_ARCH_HAS_GIGANTIC_PAGE */
d9cc948f 1182static struct page *alloc_gigantic_page(struct hstate *h, gfp_t gfp_mask,
4eb0716e
AG
1183 int nid, nodemask_t *nodemask)
1184{
1185 return NULL;
1186}
d00181b9 1187static inline void free_gigantic_page(struct page *page, unsigned int order) { }
944d9fec 1188static inline void destroy_compound_gigantic_page(struct page *page,
d00181b9 1189 unsigned int order) { }
944d9fec
LC
1190#endif
1191
a5516438 1192static void update_and_free_page(struct hstate *h, struct page *page)
6af2acb6
AL
1193{
1194 int i;
fd6126b4 1195 struct page *subpage = page;
a5516438 1196
4eb0716e 1197 if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
944d9fec 1198 return;
18229df5 1199
a5516438
AK
1200 h->nr_huge_pages--;
1201 h->nr_huge_pages_node[page_to_nid(page)]--;
fd6126b4
MK
1202 for (i = 0; i < pages_per_huge_page(h);
1203 i++, subpage = mem_map_next(subpage, page, i)) {
1204 subpage->flags &= ~(1 << PG_locked | 1 << PG_error |
32f84528 1205 1 << PG_referenced | 1 << PG_dirty |
a7407a27
LC
1206 1 << PG_active | 1 << PG_private |
1207 1 << PG_writeback);
6af2acb6 1208 }
309381fe 1209 VM_BUG_ON_PAGE(hugetlb_cgroup_from_page(page), page);
f1e61557 1210 set_compound_page_dtor(page, NULL_COMPOUND_DTOR);
6af2acb6 1211 set_page_refcounted(page);
944d9fec
LC
1212 if (hstate_is_gigantic(h)) {
1213 destroy_compound_gigantic_page(page, huge_page_order(h));
1214 free_gigantic_page(page, huge_page_order(h));
1215 } else {
944d9fec
LC
1216 __free_pages(page, huge_page_order(h));
1217 }
6af2acb6
AL
1218}
1219
e5ff2159
AK
1220struct hstate *size_to_hstate(unsigned long size)
1221{
1222 struct hstate *h;
1223
1224 for_each_hstate(h) {
1225 if (huge_page_size(h) == size)
1226 return h;
1227 }
1228 return NULL;
1229}
1230
bcc54222
NH
1231/*
1232 * Test to determine whether the hugepage is "active/in-use" (i.e. being linked
1233 * to hstate->hugepage_activelist.)
1234 *
1235 * This function can be called for tail pages, but never returns true for them.
1236 */
1237bool page_huge_active(struct page *page)
1238{
08f3c9c1 1239 return PageHeadHuge(page) && PagePrivate(&page[1]);
bcc54222
NH
1240}
1241
1242/* never called for tail page */
55f5a39f 1243void set_page_huge_active(struct page *page)
bcc54222
NH
1244{
1245 VM_BUG_ON_PAGE(!PageHeadHuge(page), page);
1246 SetPagePrivate(&page[1]);
1247}
1248
1249static void clear_page_huge_active(struct page *page)
1250{
1251 VM_BUG_ON_PAGE(!PageHeadHuge(page), page);
1252 ClearPagePrivate(&page[1]);
1253}
1254
ab5ac90a
MH
1255/*
1256 * Internal hugetlb specific page flag. Do not use outside of the hugetlb
1257 * code
1258 */
1259static inline bool PageHugeTemporary(struct page *page)
1260{
1261 if (!PageHuge(page))
1262 return false;
1263
1264 return (unsigned long)page[2].mapping == -1U;
1265}
1266
1267static inline void SetPageHugeTemporary(struct page *page)
1268{
1269 page[2].mapping = (void *)-1U;
1270}
1271
1272static inline void ClearPageHugeTemporary(struct page *page)
1273{
1274 page[2].mapping = NULL;
1275}
1276
ce44b015 1277static void __free_huge_page(struct page *page)
27a85ef1 1278{
a5516438
AK
1279 /*
1280 * Can't pass hstate in here because it is called from the
1281 * compound page destructor.
1282 */
e5ff2159 1283 struct hstate *h = page_hstate(page);
7893d1d5 1284 int nid = page_to_nid(page);
90481622
DG
1285 struct hugepage_subpool *spool =
1286 (struct hugepage_subpool *)page_private(page);
07443a85 1287 bool restore_reserve;
27a85ef1 1288
b4330afb
MK
1289 VM_BUG_ON_PAGE(page_count(page), page);
1290 VM_BUG_ON_PAGE(page_mapcount(page), page);
8ace22bc
YW
1291
1292 set_page_private(page, 0);
1293 page->mapping = NULL;
07443a85 1294 restore_reserve = PagePrivate(page);
16c794b4 1295 ClearPagePrivate(page);
27a85ef1 1296
1c5ecae3 1297 /*
0919e1b6
MK
1298 * If PagePrivate() was set on page, page allocation consumed a
1299 * reservation. If the page was associated with a subpool, there
1300 * would have been a page reserved in the subpool before allocation
1301 * via hugepage_subpool_get_pages(). Since we are 'restoring' the
1302 * reservtion, do not call hugepage_subpool_put_pages() as this will
1303 * remove the reserved page from the subpool.
1c5ecae3 1304 */
0919e1b6
MK
1305 if (!restore_reserve) {
1306 /*
1307 * A return code of zero implies that the subpool will be
1308 * under its minimum size if the reservation is not restored
1309 * after page is free. Therefore, force restore_reserve
1310 * operation.
1311 */
1312 if (hugepage_subpool_put_pages(spool, 1) == 0)
1313 restore_reserve = true;
1314 }
1c5ecae3 1315
27a85ef1 1316 spin_lock(&hugetlb_lock);
bcc54222 1317 clear_page_huge_active(page);
6d76dcf4
AK
1318 hugetlb_cgroup_uncharge_page(hstate_index(h),
1319 pages_per_huge_page(h), page);
07443a85
JK
1320 if (restore_reserve)
1321 h->resv_huge_pages++;
1322
ab5ac90a
MH
1323 if (PageHugeTemporary(page)) {
1324 list_del(&page->lru);
1325 ClearPageHugeTemporary(page);
1326 update_and_free_page(h, page);
1327 } else if (h->surplus_huge_pages_node[nid]) {
0edaecfa
AK
1328 /* remove the page from active list */
1329 list_del(&page->lru);
a5516438
AK
1330 update_and_free_page(h, page);
1331 h->surplus_huge_pages--;
1332 h->surplus_huge_pages_node[nid]--;
7893d1d5 1333 } else {
5d3a551c 1334 arch_clear_hugepage_flags(page);
a5516438 1335 enqueue_huge_page(h, page);
7893d1d5 1336 }
27a85ef1
DG
1337 spin_unlock(&hugetlb_lock);
1338}
1339
ce44b015
WL
1340/*
1341 * As free_huge_page() can be called from a non-task context, we have
1342 * to defer the actual freeing in a workqueue to prevent potential
1343 * hugetlb_lock deadlock.
1344 *
1345 * free_hpage_workfn() locklessly retrieves the linked list of pages to
1346 * be freed and frees them one-by-one. As the page->mapping pointer is
1347 * going to be cleared in __free_huge_page() anyway, it is reused as the
1348 * llist_node structure of a lockless linked list of huge pages to be freed.
1349 */
1350static LLIST_HEAD(hpage_freelist);
1351
1352static void free_hpage_workfn(struct work_struct *work)
1353{
1354 struct llist_node *node;
1355 struct page *page;
1356
1357 node = llist_del_all(&hpage_freelist);
1358
1359 while (node) {
1360 page = container_of((struct address_space **)node,
1361 struct page, mapping);
1362 node = node->next;
1363 __free_huge_page(page);
1364 }
1365}
1366static DECLARE_WORK(free_hpage_work, free_hpage_workfn);
1367
1368void free_huge_page(struct page *page)
1369{
1370 /*
1371 * Defer freeing if in non-task context to avoid hugetlb_lock deadlock.
1372 */
1373 if (!in_task()) {
1374 /*
1375 * Only call schedule_work() if hpage_freelist is previously
1376 * empty. Otherwise, schedule_work() had been called but the
1377 * workfn hasn't retrieved the list yet.
1378 */
1379 if (llist_add((struct llist_node *)&page->mapping,
1380 &hpage_freelist))
1381 schedule_work(&free_hpage_work);
1382 return;
1383 }
1384
1385 __free_huge_page(page);
1386}
1387
a5516438 1388static void prep_new_huge_page(struct hstate *h, struct page *page, int nid)
b7ba30c6 1389{
0edaecfa 1390 INIT_LIST_HEAD(&page->lru);
f1e61557 1391 set_compound_page_dtor(page, HUGETLB_PAGE_DTOR);
b7ba30c6 1392 spin_lock(&hugetlb_lock);
9dd540e2 1393 set_hugetlb_cgroup(page, NULL);
a5516438
AK
1394 h->nr_huge_pages++;
1395 h->nr_huge_pages_node[nid]++;
c2f2139b 1396 ClearPageHugeFreed(page);
b7ba30c6 1397 spin_unlock(&hugetlb_lock);
b7ba30c6
AK
1398}
1399
d00181b9 1400static void prep_compound_gigantic_page(struct page *page, unsigned int order)
20a0307c
WF
1401{
1402 int i;
1403 int nr_pages = 1 << order;
1404 struct page *p = page + 1;
1405
1406 /* we rely on prep_new_huge_page to set the destructor */
1407 set_compound_order(page, order);
ef5a22be 1408 __ClearPageReserved(page);
de09d31d 1409 __SetPageHead(page);
20a0307c 1410 for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
ef5a22be
AA
1411 /*
1412 * For gigantic hugepages allocated through bootmem at
1413 * boot, it's safer to be consistent with the not-gigantic
1414 * hugepages and clear the PG_reserved bit from all tail pages
1415 * too. Otherwse drivers using get_user_pages() to access tail
1416 * pages may get the reference counting wrong if they see
1417 * PG_reserved set on a tail page (despite the head page not
1418 * having PG_reserved set). Enforcing this consistency between
1419 * head and tail pages allows drivers to optimize away a check
1420 * on the head page when they need know if put_page() is needed
1421 * after get_user_pages().
1422 */
1423 __ClearPageReserved(p);
58a84aa9 1424 set_page_count(p, 0);
1d798ca3 1425 set_compound_head(p, page);
20a0307c 1426 }
b4330afb 1427 atomic_set(compound_mapcount_ptr(page), -1);
20a0307c
WF
1428}
1429
7795912c
AM
1430/*
1431 * PageHuge() only returns true for hugetlbfs pages, but not for normal or
1432 * transparent huge pages. See the PageTransHuge() documentation for more
1433 * details.
1434 */
20a0307c
WF
1435int PageHuge(struct page *page)
1436{
20a0307c
WF
1437 if (!PageCompound(page))
1438 return 0;
1439
1440 page = compound_head(page);
f1e61557 1441 return page[1].compound_dtor == HUGETLB_PAGE_DTOR;
20a0307c 1442}
43131e14
NH
1443EXPORT_SYMBOL_GPL(PageHuge);
1444
27c73ae7
AA
1445/*
1446 * PageHeadHuge() only returns true for hugetlbfs head page, but not for
1447 * normal or transparent huge pages.
1448 */
1449int PageHeadHuge(struct page *page_head)
1450{
27c73ae7
AA
1451 if (!PageHead(page_head))
1452 return 0;
1453
758f66a2 1454 return get_compound_page_dtor(page_head) == free_huge_page;
27c73ae7 1455}
27c73ae7 1456
13d60f4b
ZY
1457pgoff_t __basepage_index(struct page *page)
1458{
1459 struct page *page_head = compound_head(page);
1460 pgoff_t index = page_index(page_head);
1461 unsigned long compound_idx;
1462
1463 if (!PageHuge(page_head))
1464 return page_index(page);
1465
1466 if (compound_order(page_head) >= MAX_ORDER)
1467 compound_idx = page_to_pfn(page) - page_to_pfn(page_head);
1468 else
1469 compound_idx = page - page_head;
1470
1471 return (index << compound_order(page_head)) + compound_idx;
1472}
1473
0c397dae 1474static struct page *alloc_buddy_huge_page(struct hstate *h,
f60858f9
MK
1475 gfp_t gfp_mask, int nid, nodemask_t *nmask,
1476 nodemask_t *node_alloc_noretry)
1da177e4 1477{
af0fb9df 1478 int order = huge_page_order(h);
1da177e4 1479 struct page *page;
f60858f9 1480 bool alloc_try_hard = true;
f96efd58 1481
f60858f9
MK
1482 /*
1483 * By default we always try hard to allocate the page with
1484 * __GFP_RETRY_MAYFAIL flag. However, if we are allocating pages in
1485 * a loop (to adjust global huge page counts) and previous allocation
1486 * failed, do not continue to try hard on the same node. Use the
1487 * node_alloc_noretry bitmap to manage this state information.
1488 */
1489 if (node_alloc_noretry && node_isset(nid, *node_alloc_noretry))
1490 alloc_try_hard = false;
1491 gfp_mask |= __GFP_COMP|__GFP_NOWARN;
1492 if (alloc_try_hard)
1493 gfp_mask |= __GFP_RETRY_MAYFAIL;
af0fb9df
MH
1494 if (nid == NUMA_NO_NODE)
1495 nid = numa_mem_id();
1496 page = __alloc_pages_nodemask(gfp_mask, order, nid, nmask);
1497 if (page)
1498 __count_vm_event(HTLB_BUDDY_PGALLOC);
1499 else
1500 __count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
63b4613c 1501
f60858f9
MK
1502 /*
1503 * If we did not specify __GFP_RETRY_MAYFAIL, but still got a page this
1504 * indicates an overall state change. Clear bit so that we resume
1505 * normal 'try hard' allocations.
1506 */
1507 if (node_alloc_noretry && page && !alloc_try_hard)
1508 node_clear(nid, *node_alloc_noretry);
1509
1510 /*
1511 * If we tried hard to get a page but failed, set bit so that
1512 * subsequent attempts will not try as hard until there is an
1513 * overall state change.
1514 */
1515 if (node_alloc_noretry && !page && alloc_try_hard)
1516 node_set(nid, *node_alloc_noretry);
1517
63b4613c
NA
1518 return page;
1519}
1520
0c397dae
MH
1521/*
1522 * Common helper to allocate a fresh hugetlb page. All specific allocators
1523 * should use this function to get new hugetlb pages
1524 */
1525static struct page *alloc_fresh_huge_page(struct hstate *h,
f60858f9
MK
1526 gfp_t gfp_mask, int nid, nodemask_t *nmask,
1527 nodemask_t *node_alloc_noretry)
0c397dae
MH
1528{
1529 struct page *page;
1530
1531 if (hstate_is_gigantic(h))
1532 page = alloc_gigantic_page(h, gfp_mask, nid, nmask);
1533 else
1534 page = alloc_buddy_huge_page(h, gfp_mask,
f60858f9 1535 nid, nmask, node_alloc_noretry);
0c397dae
MH
1536 if (!page)
1537 return NULL;
1538
1539 if (hstate_is_gigantic(h))
1540 prep_compound_gigantic_page(page, huge_page_order(h));
1541 prep_new_huge_page(h, page, page_to_nid(page));
1542
1543 return page;
1544}
1545
af0fb9df
MH
1546/*
1547 * Allocates a fresh page to the hugetlb allocator pool in the node interleaved
1548 * manner.
1549 */
f60858f9
MK
1550static int alloc_pool_huge_page(struct hstate *h, nodemask_t *nodes_allowed,
1551 nodemask_t *node_alloc_noretry)
b2261026
JK
1552{
1553 struct page *page;
1554 int nr_nodes, node;
af0fb9df 1555 gfp_t gfp_mask = htlb_alloc_mask(h) | __GFP_THISNODE;
b2261026
JK
1556
1557 for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
f60858f9
MK
1558 page = alloc_fresh_huge_page(h, gfp_mask, node, nodes_allowed,
1559 node_alloc_noretry);
af0fb9df 1560 if (page)
b2261026 1561 break;
b2261026
JK
1562 }
1563
af0fb9df
MH
1564 if (!page)
1565 return 0;
b2261026 1566
af0fb9df
MH
1567 put_page(page); /* free it into the hugepage allocator */
1568
1569 return 1;
b2261026
JK
1570}
1571
e8c5c824
LS
1572/*
1573 * Free huge page from pool from next node to free.
1574 * Attempt to keep persistent huge pages more or less
1575 * balanced over allowed nodes.
1576 * Called with hugetlb_lock locked.
1577 */
6ae11b27
LS
1578static int free_pool_huge_page(struct hstate *h, nodemask_t *nodes_allowed,
1579 bool acct_surplus)
e8c5c824 1580{
b2261026 1581 int nr_nodes, node;
e8c5c824
LS
1582 int ret = 0;
1583
b2261026 1584 for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
685f3457
LS
1585 /*
1586 * If we're returning unused surplus pages, only examine
1587 * nodes with surplus pages.
1588 */
b2261026
JK
1589 if ((!acct_surplus || h->surplus_huge_pages_node[node]) &&
1590 !list_empty(&h->hugepage_freelists[node])) {
e8c5c824 1591 struct page *page =
b2261026 1592 list_entry(h->hugepage_freelists[node].next,
e8c5c824
LS
1593 struct page, lru);
1594 list_del(&page->lru);
1595 h->free_huge_pages--;
b2261026 1596 h->free_huge_pages_node[node]--;
685f3457
LS
1597 if (acct_surplus) {
1598 h->surplus_huge_pages--;
b2261026 1599 h->surplus_huge_pages_node[node]--;
685f3457 1600 }
e8c5c824
LS
1601 update_and_free_page(h, page);
1602 ret = 1;
9a76db09 1603 break;
e8c5c824 1604 }
b2261026 1605 }
e8c5c824
LS
1606
1607 return ret;
1608}
1609
c8721bbb
NH
1610/*
1611 * Dissolve a given free hugepage into free buddy pages. This function does
faf53def
NH
1612 * nothing for in-use hugepages and non-hugepages.
1613 * This function returns values like below:
1614 *
1615 * -EBUSY: failed to dissolved free hugepages or the hugepage is in-use
1616 * (allocated or reserved.)
1617 * 0: successfully dissolved free hugepages or the page is not a
1618 * hugepage (considered as already dissolved)
c8721bbb 1619 */
c3114a84 1620int dissolve_free_huge_page(struct page *page)
c8721bbb 1621{
6bc9b564 1622 int rc = -EBUSY;
082d5b6b 1623
c2f2139b 1624retry:
faf53def
NH
1625 /* Not to disrupt normal path by vainly holding hugetlb_lock */
1626 if (!PageHuge(page))
1627 return 0;
1628
c8721bbb 1629 spin_lock(&hugetlb_lock);
faf53def
NH
1630 if (!PageHuge(page)) {
1631 rc = 0;
1632 goto out;
1633 }
1634
1635 if (!page_count(page)) {
2247bb33
GS
1636 struct page *head = compound_head(page);
1637 struct hstate *h = page_hstate(head);
1638 int nid = page_to_nid(head);
6bc9b564 1639 if (h->free_huge_pages - h->resv_huge_pages == 0)
082d5b6b 1640 goto out;
c2f2139b
MS
1641
1642 /*
1643 * We should make sure that the page is already on the free list
1644 * when it is dissolved.
1645 */
1646 if (unlikely(!PageHugeFreed(head))) {
1647 spin_unlock(&hugetlb_lock);
1648 cond_resched();
1649
1650 /*
1651 * Theoretically, we should return -EBUSY when we
1652 * encounter this race. In fact, we have a chance
1653 * to successfully dissolve the page if we do a
1654 * retry. Because the race window is quite small.
1655 * If we seize this opportunity, it is an optimization
1656 * for increasing the success rate of dissolving page.
1657 */
1658 goto retry;
1659 }
1660
c3114a84
AK
1661 /*
1662 * Move PageHWPoison flag from head page to the raw error page,
1663 * which makes any subpages rather than the error page reusable.
1664 */
1665 if (PageHWPoison(head) && page != head) {
1666 SetPageHWPoison(page);
1667 ClearPageHWPoison(head);
1668 }
2247bb33 1669 list_del(&head->lru);
c8721bbb
NH
1670 h->free_huge_pages--;
1671 h->free_huge_pages_node[nid]--;
c1470b33 1672 h->max_huge_pages--;
2247bb33 1673 update_and_free_page(h, head);
6bc9b564 1674 rc = 0;
c8721bbb 1675 }
082d5b6b 1676out:
c8721bbb 1677 spin_unlock(&hugetlb_lock);
082d5b6b 1678 return rc;
c8721bbb
NH
1679}
1680
1681/*
1682 * Dissolve free hugepages in a given pfn range. Used by memory hotplug to
1683 * make specified memory blocks removable from the system.
2247bb33
GS
1684 * Note that this will dissolve a free gigantic hugepage completely, if any
1685 * part of it lies within the given range.
082d5b6b
GS
1686 * Also note that if dissolve_free_huge_page() returns with an error, all
1687 * free hugepages that were dissolved before that error are lost.
c8721bbb 1688 */
082d5b6b 1689int dissolve_free_huge_pages(unsigned long start_pfn, unsigned long end_pfn)
c8721bbb 1690{
c8721bbb 1691 unsigned long pfn;
eb03aa00 1692 struct page *page;
082d5b6b 1693 int rc = 0;
c8721bbb 1694
d0177639 1695 if (!hugepages_supported())
082d5b6b 1696 return rc;
d0177639 1697
eb03aa00
GS
1698 for (pfn = start_pfn; pfn < end_pfn; pfn += 1 << minimum_order) {
1699 page = pfn_to_page(pfn);
faf53def
NH
1700 rc = dissolve_free_huge_page(page);
1701 if (rc)
1702 break;
eb03aa00 1703 }
082d5b6b
GS
1704
1705 return rc;
c8721bbb
NH
1706}
1707
ab5ac90a
MH
1708/*
1709 * Allocates a fresh surplus page from the page allocator.
1710 */
0c397dae 1711static struct page *alloc_surplus_huge_page(struct hstate *h, gfp_t gfp_mask,
aaf14e40 1712 int nid, nodemask_t *nmask)
7893d1d5 1713{
9980d744 1714 struct page *page = NULL;
7893d1d5 1715
bae7f4ae 1716 if (hstate_is_gigantic(h))
aa888a74
AK
1717 return NULL;
1718
d1c3fb1f 1719 spin_lock(&hugetlb_lock);
9980d744
MH
1720 if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages)
1721 goto out_unlock;
d1c3fb1f
NA
1722 spin_unlock(&hugetlb_lock);
1723
f60858f9 1724 page = alloc_fresh_huge_page(h, gfp_mask, nid, nmask, NULL);
9980d744 1725 if (!page)
0c397dae 1726 return NULL;
d1c3fb1f
NA
1727
1728 spin_lock(&hugetlb_lock);
9980d744
MH
1729 /*
1730 * We could have raced with the pool size change.
1731 * Double check that and simply deallocate the new page
1732 * if we would end up overcommiting the surpluses. Abuse
1733 * temporary page to workaround the nasty free_huge_page
1734 * codeflow
1735 */
1736 if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages) {
1737 SetPageHugeTemporary(page);
2bf753e6 1738 spin_unlock(&hugetlb_lock);
9980d744 1739 put_page(page);
2bf753e6 1740 return NULL;
9980d744 1741 } else {
9980d744 1742 h->surplus_huge_pages++;
4704dea3 1743 h->surplus_huge_pages_node[page_to_nid(page)]++;
7893d1d5 1744 }
9980d744
MH
1745
1746out_unlock:
d1c3fb1f 1747 spin_unlock(&hugetlb_lock);
7893d1d5
AL
1748
1749 return page;
1750}
1751
9a4e9f3b
AK
1752struct page *alloc_migrate_huge_page(struct hstate *h, gfp_t gfp_mask,
1753 int nid, nodemask_t *nmask)
ab5ac90a
MH
1754{
1755 struct page *page;
1756
1757 if (hstate_is_gigantic(h))
1758 return NULL;
1759
f60858f9 1760 page = alloc_fresh_huge_page(h, gfp_mask, nid, nmask, NULL);
ab5ac90a
MH
1761 if (!page)
1762 return NULL;
1763
1764 /*
1765 * We do not account these pages as surplus because they are only
1766 * temporary and will be released properly on the last reference
1767 */
ab5ac90a
MH
1768 SetPageHugeTemporary(page);
1769
1770 return page;
1771}
1772
099730d6
DH
1773/*
1774 * Use the VMA's mpolicy to allocate a huge page from the buddy.
1775 */
e0ec90ee 1776static
0c397dae 1777struct page *alloc_buddy_huge_page_with_mpol(struct hstate *h,
099730d6
DH
1778 struct vm_area_struct *vma, unsigned long addr)
1779{
aaf14e40
MH
1780 struct page *page;
1781 struct mempolicy *mpol;
1782 gfp_t gfp_mask = htlb_alloc_mask(h);
1783 int nid;
1784 nodemask_t *nodemask;
1785
1786 nid = huge_node(vma, addr, gfp_mask, &mpol, &nodemask);
0c397dae 1787 page = alloc_surplus_huge_page(h, gfp_mask, nid, nodemask);
aaf14e40
MH
1788 mpol_cond_put(mpol);
1789
1790 return page;
099730d6
DH
1791}
1792
ab5ac90a 1793/* page migration callback function */
bf50bab2
NH
1794struct page *alloc_huge_page_node(struct hstate *h, int nid)
1795{
aaf14e40 1796 gfp_t gfp_mask = htlb_alloc_mask(h);
4ef91848 1797 struct page *page = NULL;
bf50bab2 1798
aaf14e40
MH
1799 if (nid != NUMA_NO_NODE)
1800 gfp_mask |= __GFP_THISNODE;
1801
bf50bab2 1802 spin_lock(&hugetlb_lock);
4ef91848 1803 if (h->free_huge_pages - h->resv_huge_pages > 0)
3e59fcb0 1804 page = dequeue_huge_page_nodemask(h, gfp_mask, nid, NULL);
bf50bab2
NH
1805 spin_unlock(&hugetlb_lock);
1806
94ae8ba7 1807 if (!page)
0c397dae 1808 page = alloc_migrate_huge_page(h, gfp_mask, nid, NULL);
bf50bab2
NH
1809
1810 return page;
1811}
1812
ab5ac90a 1813/* page migration callback function */
3e59fcb0
MH
1814struct page *alloc_huge_page_nodemask(struct hstate *h, int preferred_nid,
1815 nodemask_t *nmask)
4db9b2ef 1816{
aaf14e40 1817 gfp_t gfp_mask = htlb_alloc_mask(h);
4db9b2ef
MH
1818
1819 spin_lock(&hugetlb_lock);
1820 if (h->free_huge_pages - h->resv_huge_pages > 0) {
3e59fcb0
MH
1821 struct page *page;
1822
1823 page = dequeue_huge_page_nodemask(h, gfp_mask, preferred_nid, nmask);
1824 if (page) {
1825 spin_unlock(&hugetlb_lock);
1826 return page;
4db9b2ef
MH
1827 }
1828 }
1829 spin_unlock(&hugetlb_lock);
4db9b2ef 1830
0c397dae 1831 return alloc_migrate_huge_page(h, gfp_mask, preferred_nid, nmask);
4db9b2ef
MH
1832}
1833
ebd63723 1834/* mempolicy aware migration callback */
389c8178
MH
1835struct page *alloc_huge_page_vma(struct hstate *h, struct vm_area_struct *vma,
1836 unsigned long address)
ebd63723
MH
1837{
1838 struct mempolicy *mpol;
1839 nodemask_t *nodemask;
1840 struct page *page;
ebd63723
MH
1841 gfp_t gfp_mask;
1842 int node;
1843
ebd63723
MH
1844 gfp_mask = htlb_alloc_mask(h);
1845 node = huge_node(vma, address, gfp_mask, &mpol, &nodemask);
1846 page = alloc_huge_page_nodemask(h, node, nodemask);
1847 mpol_cond_put(mpol);
1848
1849 return page;
1850}
1851
e4e574b7 1852/*
25985edc 1853 * Increase the hugetlb pool such that it can accommodate a reservation
e4e574b7
AL
1854 * of size 'delta'.
1855 */
a5516438 1856static int gather_surplus_pages(struct hstate *h, int delta)
e4e574b7
AL
1857{
1858 struct list_head surplus_list;
1859 struct page *page, *tmp;
1860 int ret, i;
1861 int needed, allocated;
28073b02 1862 bool alloc_ok = true;
e4e574b7 1863
a5516438 1864 needed = (h->resv_huge_pages + delta) - h->free_huge_pages;
ac09b3a1 1865 if (needed <= 0) {
a5516438 1866 h->resv_huge_pages += delta;
e4e574b7 1867 return 0;
ac09b3a1 1868 }
e4e574b7
AL
1869
1870 allocated = 0;
1871 INIT_LIST_HEAD(&surplus_list);
1872
1873 ret = -ENOMEM;
1874retry:
1875 spin_unlock(&hugetlb_lock);
1876 for (i = 0; i < needed; i++) {
0c397dae 1877 page = alloc_surplus_huge_page(h, htlb_alloc_mask(h),
aaf14e40 1878 NUMA_NO_NODE, NULL);
28073b02
HD
1879 if (!page) {
1880 alloc_ok = false;
1881 break;
1882 }
e4e574b7 1883 list_add(&page->lru, &surplus_list);
69ed779a 1884 cond_resched();
e4e574b7 1885 }
28073b02 1886 allocated += i;
e4e574b7
AL
1887
1888 /*
1889 * After retaking hugetlb_lock, we need to recalculate 'needed'
1890 * because either resv_huge_pages or free_huge_pages may have changed.
1891 */
1892 spin_lock(&hugetlb_lock);
a5516438
AK
1893 needed = (h->resv_huge_pages + delta) -
1894 (h->free_huge_pages + allocated);
28073b02
HD
1895 if (needed > 0) {
1896 if (alloc_ok)
1897 goto retry;
1898 /*
1899 * We were not able to allocate enough pages to
1900 * satisfy the entire reservation so we free what
1901 * we've allocated so far.
1902 */
1903 goto free;
1904 }
e4e574b7
AL
1905 /*
1906 * The surplus_list now contains _at_least_ the number of extra pages
25985edc 1907 * needed to accommodate the reservation. Add the appropriate number
e4e574b7 1908 * of pages to the hugetlb pool and free the extras back to the buddy
ac09b3a1
AL
1909 * allocator. Commit the entire reservation here to prevent another
1910 * process from stealing the pages as they are added to the pool but
1911 * before they are reserved.
e4e574b7
AL
1912 */
1913 needed += allocated;
a5516438 1914 h->resv_huge_pages += delta;
e4e574b7 1915 ret = 0;
a9869b83 1916
19fc3f0a 1917 /* Free the needed pages to the hugetlb pool */
e4e574b7 1918 list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
19fc3f0a
AL
1919 if ((--needed) < 0)
1920 break;
a9869b83
NH
1921 /*
1922 * This page is now managed by the hugetlb allocator and has
1923 * no users -- drop the buddy allocator's reference.
1924 */
1925 put_page_testzero(page);
309381fe 1926 VM_BUG_ON_PAGE(page_count(page), page);
a5516438 1927 enqueue_huge_page(h, page);
19fc3f0a 1928 }
28073b02 1929free:
b0365c8d 1930 spin_unlock(&hugetlb_lock);
19fc3f0a
AL
1931
1932 /* Free unnecessary surplus pages to the buddy allocator */
c0d934ba
JK
1933 list_for_each_entry_safe(page, tmp, &surplus_list, lru)
1934 put_page(page);
a9869b83 1935 spin_lock(&hugetlb_lock);
e4e574b7
AL
1936
1937 return ret;
1938}
1939
1940/*
e5bbc8a6
MK
1941 * This routine has two main purposes:
1942 * 1) Decrement the reservation count (resv_huge_pages) by the value passed
1943 * in unused_resv_pages. This corresponds to the prior adjustments made
1944 * to the associated reservation map.
1945 * 2) Free any unused surplus pages that may have been allocated to satisfy
1946 * the reservation. As many as unused_resv_pages may be freed.
1947 *
1948 * Called with hugetlb_lock held. However, the lock could be dropped (and
1949 * reacquired) during calls to cond_resched_lock. Whenever dropping the lock,
1950 * we must make sure nobody else can claim pages we are in the process of
1951 * freeing. Do this by ensuring resv_huge_page always is greater than the
1952 * number of huge pages we plan to free when dropping the lock.
e4e574b7 1953 */
a5516438
AK
1954static void return_unused_surplus_pages(struct hstate *h,
1955 unsigned long unused_resv_pages)
e4e574b7 1956{
e4e574b7
AL
1957 unsigned long nr_pages;
1958
aa888a74 1959 /* Cannot return gigantic pages currently */
bae7f4ae 1960 if (hstate_is_gigantic(h))
e5bbc8a6 1961 goto out;
aa888a74 1962
e5bbc8a6
MK
1963 /*
1964 * Part (or even all) of the reservation could have been backed
1965 * by pre-allocated pages. Only free surplus pages.
1966 */
a5516438 1967 nr_pages = min(unused_resv_pages, h->surplus_huge_pages);
e4e574b7 1968
685f3457
LS
1969 /*
1970 * We want to release as many surplus pages as possible, spread
9b5e5d0f
LS
1971 * evenly across all nodes with memory. Iterate across these nodes
1972 * until we can no longer free unreserved surplus pages. This occurs
1973 * when the nodes with surplus pages have no free pages.
1974 * free_pool_huge_page() will balance the the freed pages across the
1975 * on-line nodes with memory and will handle the hstate accounting.
e5bbc8a6
MK
1976 *
1977 * Note that we decrement resv_huge_pages as we free the pages. If
1978 * we drop the lock, resv_huge_pages will still be sufficiently large
1979 * to cover subsequent pages we may free.
685f3457
LS
1980 */
1981 while (nr_pages--) {
e5bbc8a6
MK
1982 h->resv_huge_pages--;
1983 unused_resv_pages--;
8cebfcd0 1984 if (!free_pool_huge_page(h, &node_states[N_MEMORY], 1))
e5bbc8a6 1985 goto out;
7848a4bf 1986 cond_resched_lock(&hugetlb_lock);
e4e574b7 1987 }
e5bbc8a6
MK
1988
1989out:
1990 /* Fully uncommit the reservation */
1991 h->resv_huge_pages -= unused_resv_pages;
e4e574b7
AL
1992}
1993
5e911373 1994
c37f9fb1 1995/*
feba16e2 1996 * vma_needs_reservation, vma_commit_reservation and vma_end_reservation
5e911373 1997 * are used by the huge page allocation routines to manage reservations.
cf3ad20b
MK
1998 *
1999 * vma_needs_reservation is called to determine if the huge page at addr
2000 * within the vma has an associated reservation. If a reservation is
2001 * needed, the value 1 is returned. The caller is then responsible for
2002 * managing the global reservation and subpool usage counts. After
2003 * the huge page has been allocated, vma_commit_reservation is called
feba16e2
MK
2004 * to add the page to the reservation map. If the page allocation fails,
2005 * the reservation must be ended instead of committed. vma_end_reservation
2006 * is called in such cases.
cf3ad20b
MK
2007 *
2008 * In the normal case, vma_commit_reservation returns the same value
2009 * as the preceding vma_needs_reservation call. The only time this
2010 * is not the case is if a reserve map was changed between calls. It
2011 * is the responsibility of the caller to notice the difference and
2012 * take appropriate action.
96b96a96
MK
2013 *
2014 * vma_add_reservation is used in error paths where a reservation must
2015 * be restored when a newly allocated huge page must be freed. It is
2016 * to be called after calling vma_needs_reservation to determine if a
2017 * reservation exists.
c37f9fb1 2018 */
5e911373
MK
2019enum vma_resv_mode {
2020 VMA_NEEDS_RESV,
2021 VMA_COMMIT_RESV,
feba16e2 2022 VMA_END_RESV,
96b96a96 2023 VMA_ADD_RESV,
5e911373 2024};
cf3ad20b
MK
2025static long __vma_reservation_common(struct hstate *h,
2026 struct vm_area_struct *vma, unsigned long addr,
5e911373 2027 enum vma_resv_mode mode)
c37f9fb1 2028{
4e35f483
JK
2029 struct resv_map *resv;
2030 pgoff_t idx;
cf3ad20b 2031 long ret;
c37f9fb1 2032
4e35f483
JK
2033 resv = vma_resv_map(vma);
2034 if (!resv)
84afd99b 2035 return 1;
c37f9fb1 2036
4e35f483 2037 idx = vma_hugecache_offset(h, vma, addr);
5e911373
MK
2038 switch (mode) {
2039 case VMA_NEEDS_RESV:
cf3ad20b 2040 ret = region_chg(resv, idx, idx + 1);
5e911373
MK
2041 break;
2042 case VMA_COMMIT_RESV:
2043 ret = region_add(resv, idx, idx + 1);
2044 break;
feba16e2 2045 case VMA_END_RESV:
5e911373
MK
2046 region_abort(resv, idx, idx + 1);
2047 ret = 0;
2048 break;
96b96a96
MK
2049 case VMA_ADD_RESV:
2050 if (vma->vm_flags & VM_MAYSHARE)
2051 ret = region_add(resv, idx, idx + 1);
2052 else {
2053 region_abort(resv, idx, idx + 1);
2054 ret = region_del(resv, idx, idx + 1);
2055 }
2056 break;
5e911373
MK
2057 default:
2058 BUG();
2059 }
84afd99b 2060
4e35f483 2061 if (vma->vm_flags & VM_MAYSHARE)
cf3ad20b 2062 return ret;
67961f9d
MK
2063 else if (is_vma_resv_set(vma, HPAGE_RESV_OWNER) && ret >= 0) {
2064 /*
2065 * In most cases, reserves always exist for private mappings.
2066 * However, a file associated with mapping could have been
2067 * hole punched or truncated after reserves were consumed.
2068 * As subsequent fault on such a range will not use reserves.
2069 * Subtle - The reserve map for private mappings has the
2070 * opposite meaning than that of shared mappings. If NO
2071 * entry is in the reserve map, it means a reservation exists.
2072 * If an entry exists in the reserve map, it means the
2073 * reservation has already been consumed. As a result, the
2074 * return value of this routine is the opposite of the
2075 * value returned from reserve map manipulation routines above.
2076 */
2077 if (ret)
2078 return 0;
2079 else
2080 return 1;
2081 }
4e35f483 2082 else
cf3ad20b 2083 return ret < 0 ? ret : 0;
c37f9fb1 2084}
cf3ad20b
MK
2085
2086static long vma_needs_reservation(struct hstate *h,
a5516438 2087 struct vm_area_struct *vma, unsigned long addr)
c37f9fb1 2088{
5e911373 2089 return __vma_reservation_common(h, vma, addr, VMA_NEEDS_RESV);
cf3ad20b 2090}
84afd99b 2091
cf3ad20b
MK
2092static long vma_commit_reservation(struct hstate *h,
2093 struct vm_area_struct *vma, unsigned long addr)
2094{
5e911373
MK
2095 return __vma_reservation_common(h, vma, addr, VMA_COMMIT_RESV);
2096}
2097
feba16e2 2098static void vma_end_reservation(struct hstate *h,
5e911373
MK
2099 struct vm_area_struct *vma, unsigned long addr)
2100{
feba16e2 2101 (void)__vma_reservation_common(h, vma, addr, VMA_END_RESV);
c37f9fb1
AW
2102}
2103
96b96a96
MK
2104static long vma_add_reservation(struct hstate *h,
2105 struct vm_area_struct *vma, unsigned long addr)
2106{
2107 return __vma_reservation_common(h, vma, addr, VMA_ADD_RESV);
2108}
2109
2110/*
2111 * This routine is called to restore a reservation on error paths. In the
2112 * specific error paths, a huge page was allocated (via alloc_huge_page)
2113 * and is about to be freed. If a reservation for the page existed,
2114 * alloc_huge_page would have consumed the reservation and set PagePrivate
2115 * in the newly allocated page. When the page is freed via free_huge_page,
2116 * the global reservation count will be incremented if PagePrivate is set.
2117 * However, free_huge_page can not adjust the reserve map. Adjust the
2118 * reserve map here to be consistent with global reserve count adjustments
2119 * to be made by free_huge_page.
2120 */
2121static void restore_reserve_on_error(struct hstate *h,
2122 struct vm_area_struct *vma, unsigned long address,
2123 struct page *page)
2124{
2125 if (unlikely(PagePrivate(page))) {
2126 long rc = vma_needs_reservation(h, vma, address);
2127
2128 if (unlikely(rc < 0)) {
2129 /*
2130 * Rare out of memory condition in reserve map
2131 * manipulation. Clear PagePrivate so that
2132 * global reserve count will not be incremented
2133 * by free_huge_page. This will make it appear
2134 * as though the reservation for this page was
2135 * consumed. This may prevent the task from
2136 * faulting in the page at a later time. This
2137 * is better than inconsistent global huge page
2138 * accounting of reserve counts.
2139 */
2140 ClearPagePrivate(page);
2141 } else if (rc) {
2142 rc = vma_add_reservation(h, vma, address);
2143 if (unlikely(rc < 0))
2144 /*
2145 * See above comment about rare out of
2146 * memory condition.
2147 */
2148 ClearPagePrivate(page);
2149 } else
2150 vma_end_reservation(h, vma, address);
2151 }
2152}
2153
70c3547e 2154struct page *alloc_huge_page(struct vm_area_struct *vma,
04f2cbe3 2155 unsigned long addr, int avoid_reserve)
1da177e4 2156{
90481622 2157 struct hugepage_subpool *spool = subpool_vma(vma);
a5516438 2158 struct hstate *h = hstate_vma(vma);
348ea204 2159 struct page *page;
d85f69b0
MK
2160 long map_chg, map_commit;
2161 long gbl_chg;
6d76dcf4
AK
2162 int ret, idx;
2163 struct hugetlb_cgroup *h_cg;
a1e78772 2164
6d76dcf4 2165 idx = hstate_index(h);
a1e78772 2166 /*
d85f69b0
MK
2167 * Examine the region/reserve map to determine if the process
2168 * has a reservation for the page to be allocated. A return
2169 * code of zero indicates a reservation exists (no change).
a1e78772 2170 */
d85f69b0
MK
2171 map_chg = gbl_chg = vma_needs_reservation(h, vma, addr);
2172 if (map_chg < 0)
76dcee75 2173 return ERR_PTR(-ENOMEM);
d85f69b0
MK
2174
2175 /*
2176 * Processes that did not create the mapping will have no
2177 * reserves as indicated by the region/reserve map. Check
2178 * that the allocation will not exceed the subpool limit.
2179 * Allocations for MAP_NORESERVE mappings also need to be
2180 * checked against any subpool limit.
2181 */
2182 if (map_chg || avoid_reserve) {
2183 gbl_chg = hugepage_subpool_get_pages(spool, 1);
2184 if (gbl_chg < 0) {
feba16e2 2185 vma_end_reservation(h, vma, addr);
76dcee75 2186 return ERR_PTR(-ENOSPC);
5e911373 2187 }
1da177e4 2188
d85f69b0
MK
2189 /*
2190 * Even though there was no reservation in the region/reserve
2191 * map, there could be reservations associated with the
2192 * subpool that can be used. This would be indicated if the
2193 * return value of hugepage_subpool_get_pages() is zero.
2194 * However, if avoid_reserve is specified we still avoid even
2195 * the subpool reservations.
2196 */
2197 if (avoid_reserve)
2198 gbl_chg = 1;
2199 }
2200
6d76dcf4 2201 ret = hugetlb_cgroup_charge_cgroup(idx, pages_per_huge_page(h), &h_cg);
8f34af6f
JZ
2202 if (ret)
2203 goto out_subpool_put;
2204
1da177e4 2205 spin_lock(&hugetlb_lock);
d85f69b0
MK
2206 /*
2207 * glb_chg is passed to indicate whether or not a page must be taken
2208 * from the global free pool (global change). gbl_chg == 0 indicates
2209 * a reservation exists for the allocation.
2210 */
2211 page = dequeue_huge_page_vma(h, vma, addr, avoid_reserve, gbl_chg);
81a6fcae 2212 if (!page) {
94ae8ba7 2213 spin_unlock(&hugetlb_lock);
0c397dae 2214 page = alloc_buddy_huge_page_with_mpol(h, vma, addr);
8f34af6f
JZ
2215 if (!page)
2216 goto out_uncharge_cgroup;
a88c7695
NH
2217 if (!avoid_reserve && vma_has_reserves(vma, gbl_chg)) {
2218 SetPagePrivate(page);
2219 h->resv_huge_pages--;
2220 }
79dbb236
AK
2221 spin_lock(&hugetlb_lock);
2222 list_move(&page->lru, &h->hugepage_activelist);
81a6fcae 2223 /* Fall through */
68842c9b 2224 }
81a6fcae
JK
2225 hugetlb_cgroup_commit_charge(idx, pages_per_huge_page(h), h_cg, page);
2226 spin_unlock(&hugetlb_lock);
348ea204 2227
90481622 2228 set_page_private(page, (unsigned long)spool);
90d8b7e6 2229
d85f69b0
MK
2230 map_commit = vma_commit_reservation(h, vma, addr);
2231 if (unlikely(map_chg > map_commit)) {
33039678
MK
2232 /*
2233 * The page was added to the reservation map between
2234 * vma_needs_reservation and vma_commit_reservation.
2235 * This indicates a race with hugetlb_reserve_pages.
2236 * Adjust for the subpool count incremented above AND
2237 * in hugetlb_reserve_pages for the same page. Also,
2238 * the reservation count added in hugetlb_reserve_pages
2239 * no longer applies.
2240 */
2241 long rsv_adjust;
2242
2243 rsv_adjust = hugepage_subpool_put_pages(spool, 1);
2244 hugetlb_acct_memory(h, -rsv_adjust);
2245 }
90d8b7e6 2246 return page;
8f34af6f
JZ
2247
2248out_uncharge_cgroup:
2249 hugetlb_cgroup_uncharge_cgroup(idx, pages_per_huge_page(h), h_cg);
2250out_subpool_put:
d85f69b0 2251 if (map_chg || avoid_reserve)
8f34af6f 2252 hugepage_subpool_put_pages(spool, 1);
feba16e2 2253 vma_end_reservation(h, vma, addr);
8f34af6f 2254 return ERR_PTR(-ENOSPC);
b45b5bd6
DG
2255}
2256
e24a1307
AK
2257int alloc_bootmem_huge_page(struct hstate *h)
2258 __attribute__ ((weak, alias("__alloc_bootmem_huge_page")));
2259int __alloc_bootmem_huge_page(struct hstate *h)
aa888a74
AK
2260{
2261 struct huge_bootmem_page *m;
b2261026 2262 int nr_nodes, node;
aa888a74 2263
b2261026 2264 for_each_node_mask_to_alloc(h, nr_nodes, node, &node_states[N_MEMORY]) {
aa888a74
AK
2265 void *addr;
2266
eb31d559 2267 addr = memblock_alloc_try_nid_raw(
8b89a116 2268 huge_page_size(h), huge_page_size(h),
97ad1087 2269 0, MEMBLOCK_ALLOC_ACCESSIBLE, node);
aa888a74
AK
2270 if (addr) {
2271 /*
2272 * Use the beginning of the huge page to store the
2273 * huge_bootmem_page struct (until gather_bootmem
2274 * puts them into the mem_map).
2275 */
2276 m = addr;
91f47662 2277 goto found;
aa888a74 2278 }
aa888a74
AK
2279 }
2280 return 0;
2281
2282found:
df994ead 2283 BUG_ON(!IS_ALIGNED(virt_to_phys(m), huge_page_size(h)));
aa888a74 2284 /* Put them into a private list first because mem_map is not up yet */
330d6e48 2285 INIT_LIST_HEAD(&m->list);
aa888a74
AK
2286 list_add(&m->list, &huge_boot_pages);
2287 m->hstate = h;
2288 return 1;
2289}
2290
d00181b9
KS
2291static void __init prep_compound_huge_page(struct page *page,
2292 unsigned int order)
18229df5
AW
2293{
2294 if (unlikely(order > (MAX_ORDER - 1)))
2295 prep_compound_gigantic_page(page, order);
2296 else
2297 prep_compound_page(page, order);
2298}
2299
aa888a74
AK
2300/* Put bootmem huge pages into the standard lists after mem_map is up */
2301static void __init gather_bootmem_prealloc(void)
2302{
2303 struct huge_bootmem_page *m;
2304
2305 list_for_each_entry(m, &huge_boot_pages, list) {
40d18ebf 2306 struct page *page = virt_to_page(m);
aa888a74 2307 struct hstate *h = m->hstate;
ee8f248d 2308
aa888a74 2309 WARN_ON(page_count(page) != 1);
18229df5 2310 prep_compound_huge_page(page, h->order);
ef5a22be 2311 WARN_ON(PageReserved(page));
aa888a74 2312 prep_new_huge_page(h, page, page_to_nid(page));
af0fb9df
MH
2313 put_page(page); /* free it into the hugepage allocator */
2314
b0320c7b
RA
2315 /*
2316 * If we had gigantic hugepages allocated at boot time, we need
2317 * to restore the 'stolen' pages to totalram_pages in order to
2318 * fix confusing memory reports from free(1) and another
2319 * side-effects, like CommitLimit going negative.
2320 */
bae7f4ae 2321 if (hstate_is_gigantic(h))
3dcc0571 2322 adjust_managed_page_count(page, 1 << h->order);
520495fe 2323 cond_resched();
aa888a74
AK
2324 }
2325}
2326
8faa8b07 2327static void __init hugetlb_hstate_alloc_pages(struct hstate *h)
1da177e4
LT
2328{
2329 unsigned long i;
f60858f9
MK
2330 nodemask_t *node_alloc_noretry;
2331
2332 if (!hstate_is_gigantic(h)) {
2333 /*
2334 * Bit mask controlling how hard we retry per-node allocations.
2335 * Ignore errors as lower level routines can deal with
2336 * node_alloc_noretry == NULL. If this kmalloc fails at boot
2337 * time, we are likely in bigger trouble.
2338 */
2339 node_alloc_noretry = kmalloc(sizeof(*node_alloc_noretry),
2340 GFP_KERNEL);
2341 } else {
2342 /* allocations done at boot time */
2343 node_alloc_noretry = NULL;
2344 }
2345
2346 /* bit mask controlling how hard we retry per-node allocations */
2347 if (node_alloc_noretry)
2348 nodes_clear(*node_alloc_noretry);
a5516438 2349
e5ff2159 2350 for (i = 0; i < h->max_huge_pages; ++i) {
bae7f4ae 2351 if (hstate_is_gigantic(h)) {
aa888a74
AK
2352 if (!alloc_bootmem_huge_page(h))
2353 break;
0c397dae 2354 } else if (!alloc_pool_huge_page(h,
f60858f9
MK
2355 &node_states[N_MEMORY],
2356 node_alloc_noretry))
1da177e4 2357 break;
69ed779a 2358 cond_resched();
1da177e4 2359 }
d715cf80
LH
2360 if (i < h->max_huge_pages) {
2361 char buf[32];
2362
c6247f72 2363 string_get_size(huge_page_size(h), 1, STRING_UNITS_2, buf, 32);
d715cf80
LH
2364 pr_warn("HugeTLB: allocating %lu of page size %s failed. Only allocated %lu hugepages.\n",
2365 h->max_huge_pages, buf, i);
2366 h->max_huge_pages = i;
2367 }
f60858f9
MK
2368
2369 kfree(node_alloc_noretry);
e5ff2159
AK
2370}
2371
2372static void __init hugetlb_init_hstates(void)
2373{
2374 struct hstate *h;
2375
2376 for_each_hstate(h) {
641844f5
NH
2377 if (minimum_order > huge_page_order(h))
2378 minimum_order = huge_page_order(h);
2379
8faa8b07 2380 /* oversize hugepages were init'ed in early boot */
bae7f4ae 2381 if (!hstate_is_gigantic(h))
8faa8b07 2382 hugetlb_hstate_alloc_pages(h);
e5ff2159 2383 }
641844f5 2384 VM_BUG_ON(minimum_order == UINT_MAX);
e5ff2159
AK
2385}
2386
2387static void __init report_hugepages(void)
2388{
2389 struct hstate *h;
2390
2391 for_each_hstate(h) {
4abd32db 2392 char buf[32];
c6247f72
MW
2393
2394 string_get_size(huge_page_size(h), 1, STRING_UNITS_2, buf, 32);
ffb22af5 2395 pr_info("HugeTLB registered %s page size, pre-allocated %ld pages\n",
c6247f72 2396 buf, h->free_huge_pages);
e5ff2159
AK
2397 }
2398}
2399
1da177e4 2400#ifdef CONFIG_HIGHMEM
6ae11b27
LS
2401static void try_to_free_low(struct hstate *h, unsigned long count,
2402 nodemask_t *nodes_allowed)
1da177e4 2403{
4415cc8d
CL
2404 int i;
2405
bae7f4ae 2406 if (hstate_is_gigantic(h))
aa888a74
AK
2407 return;
2408
6ae11b27 2409 for_each_node_mask(i, *nodes_allowed) {
1da177e4 2410 struct page *page, *next;
a5516438
AK
2411 struct list_head *freel = &h->hugepage_freelists[i];
2412 list_for_each_entry_safe(page, next, freel, lru) {
2413 if (count >= h->nr_huge_pages)
6b0c880d 2414 return;
1da177e4
LT
2415 if (PageHighMem(page))
2416 continue;
2417 list_del(&page->lru);
e5ff2159 2418 update_and_free_page(h, page);
a5516438
AK
2419 h->free_huge_pages--;
2420 h->free_huge_pages_node[page_to_nid(page)]--;
1da177e4
LT
2421 }
2422 }
2423}
2424#else
6ae11b27
LS
2425static inline void try_to_free_low(struct hstate *h, unsigned long count,
2426 nodemask_t *nodes_allowed)
1da177e4
LT
2427{
2428}
2429#endif
2430
20a0307c
WF
2431/*
2432 * Increment or decrement surplus_huge_pages. Keep node-specific counters
2433 * balanced by operating on them in a round-robin fashion.
2434 * Returns 1 if an adjustment was made.
2435 */
6ae11b27
LS
2436static int adjust_pool_surplus(struct hstate *h, nodemask_t *nodes_allowed,
2437 int delta)
20a0307c 2438{
b2261026 2439 int nr_nodes, node;
20a0307c
WF
2440
2441 VM_BUG_ON(delta != -1 && delta != 1);
20a0307c 2442
b2261026
JK
2443 if (delta < 0) {
2444 for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
2445 if (h->surplus_huge_pages_node[node])
2446 goto found;
e8c5c824 2447 }
b2261026
JK
2448 } else {
2449 for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
2450 if (h->surplus_huge_pages_node[node] <
2451 h->nr_huge_pages_node[node])
2452 goto found;
e8c5c824 2453 }
b2261026
JK
2454 }
2455 return 0;
20a0307c 2456
b2261026
JK
2457found:
2458 h->surplus_huge_pages += delta;
2459 h->surplus_huge_pages_node[node] += delta;
2460 return 1;
20a0307c
WF
2461}
2462
a5516438 2463#define persistent_huge_pages(h) (h->nr_huge_pages - h->surplus_huge_pages)
fd875dca 2464static int set_max_huge_pages(struct hstate *h, unsigned long count, int nid,
4eb0716e 2465 nodemask_t *nodes_allowed)
1da177e4 2466{
7893d1d5 2467 unsigned long min_count, ret;
f60858f9
MK
2468 NODEMASK_ALLOC(nodemask_t, node_alloc_noretry, GFP_KERNEL);
2469
2470 /*
2471 * Bit mask controlling how hard we retry per-node allocations.
2472 * If we can not allocate the bit mask, do not attempt to allocate
2473 * the requested huge pages.
2474 */
2475 if (node_alloc_noretry)
2476 nodes_clear(*node_alloc_noretry);
2477 else
2478 return -ENOMEM;
1da177e4 2479
4eb0716e
AG
2480 spin_lock(&hugetlb_lock);
2481
fd875dca
MK
2482 /*
2483 * Check for a node specific request.
2484 * Changing node specific huge page count may require a corresponding
2485 * change to the global count. In any case, the passed node mask
2486 * (nodes_allowed) will restrict alloc/free to the specified node.
2487 */
2488 if (nid != NUMA_NO_NODE) {
2489 unsigned long old_count = count;
2490
2491 count += h->nr_huge_pages - h->nr_huge_pages_node[nid];
2492 /*
2493 * User may have specified a large count value which caused the
2494 * above calculation to overflow. In this case, they wanted
2495 * to allocate as many huge pages as possible. Set count to
2496 * largest possible value to align with their intention.
2497 */
2498 if (count < old_count)
2499 count = ULONG_MAX;
2500 }
2501
4eb0716e
AG
2502 /*
2503 * Gigantic pages runtime allocation depend on the capability for large
2504 * page range allocation.
2505 * If the system does not provide this feature, return an error when
2506 * the user tries to allocate gigantic pages but let the user free the
2507 * boottime allocated gigantic pages.
2508 */
2509 if (hstate_is_gigantic(h) && !IS_ENABLED(CONFIG_CONTIG_ALLOC)) {
2510 if (count > persistent_huge_pages(h)) {
2511 spin_unlock(&hugetlb_lock);
f60858f9 2512 NODEMASK_FREE(node_alloc_noretry);
4eb0716e
AG
2513 return -EINVAL;
2514 }
2515 /* Fall through to decrease pool */
2516 }
aa888a74 2517
7893d1d5
AL
2518 /*
2519 * Increase the pool size
2520 * First take pages out of surplus state. Then make up the
2521 * remaining difference by allocating fresh huge pages.
d1c3fb1f 2522 *
0c397dae 2523 * We might race with alloc_surplus_huge_page() here and be unable
d1c3fb1f
NA
2524 * to convert a surplus huge page to a normal huge page. That is
2525 * not critical, though, it just means the overall size of the
2526 * pool might be one hugepage larger than it needs to be, but
2527 * within all the constraints specified by the sysctls.
7893d1d5 2528 */
a5516438 2529 while (h->surplus_huge_pages && count > persistent_huge_pages(h)) {
6ae11b27 2530 if (!adjust_pool_surplus(h, nodes_allowed, -1))
7893d1d5
AL
2531 break;
2532 }
2533
a5516438 2534 while (count > persistent_huge_pages(h)) {
7893d1d5
AL
2535 /*
2536 * If this allocation races such that we no longer need the
2537 * page, free_huge_page will handle it by freeing the page
2538 * and reducing the surplus.
2539 */
2540 spin_unlock(&hugetlb_lock);
649920c6
JH
2541
2542 /* yield cpu to avoid soft lockup */
2543 cond_resched();
2544
f60858f9
MK
2545 ret = alloc_pool_huge_page(h, nodes_allowed,
2546 node_alloc_noretry);
7893d1d5
AL
2547 spin_lock(&hugetlb_lock);
2548 if (!ret)
2549 goto out;
2550
536240f2
MG
2551 /* Bail for signals. Probably ctrl-c from user */
2552 if (signal_pending(current))
2553 goto out;
7893d1d5 2554 }
7893d1d5
AL
2555
2556 /*
2557 * Decrease the pool size
2558 * First return free pages to the buddy allocator (being careful
2559 * to keep enough around to satisfy reservations). Then place
2560 * pages into surplus state as needed so the pool will shrink
2561 * to the desired size as pages become free.
d1c3fb1f
NA
2562 *
2563 * By placing pages into the surplus state independent of the
2564 * overcommit value, we are allowing the surplus pool size to
2565 * exceed overcommit. There are few sane options here. Since
0c397dae 2566 * alloc_surplus_huge_page() is checking the global counter,
d1c3fb1f
NA
2567 * though, we'll note that we're not allowed to exceed surplus
2568 * and won't grow the pool anywhere else. Not until one of the
2569 * sysctls are changed, or the surplus pages go out of use.
7893d1d5 2570 */
a5516438 2571 min_count = h->resv_huge_pages + h->nr_huge_pages - h->free_huge_pages;
6b0c880d 2572 min_count = max(count, min_count);
6ae11b27 2573 try_to_free_low(h, min_count, nodes_allowed);
a5516438 2574 while (min_count < persistent_huge_pages(h)) {
6ae11b27 2575 if (!free_pool_huge_page(h, nodes_allowed, 0))
1da177e4 2576 break;
55f67141 2577 cond_resched_lock(&hugetlb_lock);
1da177e4 2578 }
a5516438 2579 while (count < persistent_huge_pages(h)) {
6ae11b27 2580 if (!adjust_pool_surplus(h, nodes_allowed, 1))
7893d1d5
AL
2581 break;
2582 }
2583out:
4eb0716e 2584 h->max_huge_pages = persistent_huge_pages(h);
1da177e4 2585 spin_unlock(&hugetlb_lock);
4eb0716e 2586
f60858f9
MK
2587 NODEMASK_FREE(node_alloc_noretry);
2588
4eb0716e 2589 return 0;
1da177e4
LT
2590}
2591
a3437870
NA
2592#define HSTATE_ATTR_RO(_name) \
2593 static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
2594
2595#define HSTATE_ATTR(_name) \
2596 static struct kobj_attribute _name##_attr = \
2597 __ATTR(_name, 0644, _name##_show, _name##_store)
2598
2599static struct kobject *hugepages_kobj;
2600static struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
2601
9a305230
LS
2602static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp);
2603
2604static struct hstate *kobj_to_hstate(struct kobject *kobj, int *nidp)
a3437870
NA
2605{
2606 int i;
9a305230 2607
a3437870 2608 for (i = 0; i < HUGE_MAX_HSTATE; i++)
9a305230
LS
2609 if (hstate_kobjs[i] == kobj) {
2610 if (nidp)
2611 *nidp = NUMA_NO_NODE;
a3437870 2612 return &hstates[i];
9a305230
LS
2613 }
2614
2615 return kobj_to_node_hstate(kobj, nidp);
a3437870
NA
2616}
2617
06808b08 2618static ssize_t nr_hugepages_show_common(struct kobject *kobj,
a3437870
NA
2619 struct kobj_attribute *attr, char *buf)
2620{
9a305230
LS
2621 struct hstate *h;
2622 unsigned long nr_huge_pages;
2623 int nid;
2624
2625 h = kobj_to_hstate(kobj, &nid);
2626 if (nid == NUMA_NO_NODE)
2627 nr_huge_pages = h->nr_huge_pages;
2628 else
2629 nr_huge_pages = h->nr_huge_pages_node[nid];
2630
2631 return sprintf(buf, "%lu\n", nr_huge_pages);
a3437870 2632}
adbe8726 2633
238d3c13
DR
2634static ssize_t __nr_hugepages_store_common(bool obey_mempolicy,
2635 struct hstate *h, int nid,
2636 unsigned long count, size_t len)
a3437870
NA
2637{
2638 int err;
2d0adf7e 2639 nodemask_t nodes_allowed, *n_mask;
a3437870 2640
2d0adf7e
OS
2641 if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
2642 return -EINVAL;
adbe8726 2643
9a305230
LS
2644 if (nid == NUMA_NO_NODE) {
2645 /*
2646 * global hstate attribute
2647 */
2648 if (!(obey_mempolicy &&
2d0adf7e
OS
2649 init_nodemask_of_mempolicy(&nodes_allowed)))
2650 n_mask = &node_states[N_MEMORY];
2651 else
2652 n_mask = &nodes_allowed;
2653 } else {
9a305230 2654 /*
fd875dca
MK
2655 * Node specific request. count adjustment happens in
2656 * set_max_huge_pages() after acquiring hugetlb_lock.
9a305230 2657 */
2d0adf7e
OS
2658 init_nodemask_of_node(&nodes_allowed, nid);
2659 n_mask = &nodes_allowed;
fd875dca 2660 }
9a305230 2661
2d0adf7e 2662 err = set_max_huge_pages(h, count, nid, n_mask);
06808b08 2663
4eb0716e 2664 return err ? err : len;
06808b08
LS
2665}
2666
238d3c13
DR
2667static ssize_t nr_hugepages_store_common(bool obey_mempolicy,
2668 struct kobject *kobj, const char *buf,
2669 size_t len)
2670{
2671 struct hstate *h;
2672 unsigned long count;
2673 int nid;
2674 int err;
2675
2676 err = kstrtoul(buf, 10, &count);
2677 if (err)
2678 return err;
2679
2680 h = kobj_to_hstate(kobj, &nid);
2681 return __nr_hugepages_store_common(obey_mempolicy, h, nid, count, len);
2682}
2683
06808b08
LS
2684static ssize_t nr_hugepages_show(struct kobject *kobj,
2685 struct kobj_attribute *attr, char *buf)
2686{
2687 return nr_hugepages_show_common(kobj, attr, buf);
2688}
2689
2690static ssize_t nr_hugepages_store(struct kobject *kobj,
2691 struct kobj_attribute *attr, const char *buf, size_t len)
2692{
238d3c13 2693 return nr_hugepages_store_common(false, kobj, buf, len);
a3437870
NA
2694}
2695HSTATE_ATTR(nr_hugepages);
2696
06808b08
LS
2697#ifdef CONFIG_NUMA
2698
2699/*
2700 * hstate attribute for optionally mempolicy-based constraint on persistent
2701 * huge page alloc/free.
2702 */
2703static ssize_t nr_hugepages_mempolicy_show(struct kobject *kobj,
2704 struct kobj_attribute *attr, char *buf)
2705{
2706 return nr_hugepages_show_common(kobj, attr, buf);
2707}
2708
2709static ssize_t nr_hugepages_mempolicy_store(struct kobject *kobj,
2710 struct kobj_attribute *attr, const char *buf, size_t len)
2711{
238d3c13 2712 return nr_hugepages_store_common(true, kobj, buf, len);
06808b08
LS
2713}
2714HSTATE_ATTR(nr_hugepages_mempolicy);
2715#endif
2716
2717
a3437870
NA
2718static ssize_t nr_overcommit_hugepages_show(struct kobject *kobj,
2719 struct kobj_attribute *attr, char *buf)
2720{
9a305230 2721 struct hstate *h = kobj_to_hstate(kobj, NULL);
a3437870
NA
2722 return sprintf(buf, "%lu\n", h->nr_overcommit_huge_pages);
2723}
adbe8726 2724
a3437870
NA
2725static ssize_t nr_overcommit_hugepages_store(struct kobject *kobj,
2726 struct kobj_attribute *attr, const char *buf, size_t count)
2727{
2728 int err;
2729 unsigned long input;
9a305230 2730 struct hstate *h = kobj_to_hstate(kobj, NULL);
a3437870 2731
bae7f4ae 2732 if (hstate_is_gigantic(h))
adbe8726
EM
2733 return -EINVAL;
2734
3dbb95f7 2735 err = kstrtoul(buf, 10, &input);
a3437870 2736 if (err)
73ae31e5 2737 return err;
a3437870
NA
2738
2739 spin_lock(&hugetlb_lock);
2740 h->nr_overcommit_huge_pages = input;
2741 spin_unlock(&hugetlb_lock);
2742
2743 return count;
2744}
2745HSTATE_ATTR(nr_overcommit_hugepages);
2746
2747static ssize_t free_hugepages_show(struct kobject *kobj,
2748 struct kobj_attribute *attr, char *buf)
2749{
9a305230
LS
2750 struct hstate *h;
2751 unsigned long free_huge_pages;
2752 int nid;
2753
2754 h = kobj_to_hstate(kobj, &nid);
2755 if (nid == NUMA_NO_NODE)
2756 free_huge_pages = h->free_huge_pages;
2757 else
2758 free_huge_pages = h->free_huge_pages_node[nid];
2759
2760 return sprintf(buf, "%lu\n", free_huge_pages);
a3437870
NA
2761}
2762HSTATE_ATTR_RO(free_hugepages);
2763
2764static ssize_t resv_hugepages_show(struct kobject *kobj,
2765 struct kobj_attribute *attr, char *buf)
2766{
9a305230 2767 struct hstate *h = kobj_to_hstate(kobj, NULL);
a3437870
NA
2768 return sprintf(buf, "%lu\n", h->resv_huge_pages);
2769}
2770HSTATE_ATTR_RO(resv_hugepages);
2771
2772static ssize_t surplus_hugepages_show(struct kobject *kobj,
2773 struct kobj_attribute *attr, char *buf)
2774{
9a305230
LS
2775 struct hstate *h;
2776 unsigned long surplus_huge_pages;
2777 int nid;
2778
2779 h = kobj_to_hstate(kobj, &nid);
2780 if (nid == NUMA_NO_NODE)
2781 surplus_huge_pages = h->surplus_huge_pages;
2782 else
2783 surplus_huge_pages = h->surplus_huge_pages_node[nid];
2784
2785 return sprintf(buf, "%lu\n", surplus_huge_pages);
a3437870
NA
2786}
2787HSTATE_ATTR_RO(surplus_hugepages);
2788
2789static struct attribute *hstate_attrs[] = {
2790 &nr_hugepages_attr.attr,
2791 &nr_overcommit_hugepages_attr.attr,
2792 &free_hugepages_attr.attr,
2793 &resv_hugepages_attr.attr,
2794 &surplus_hugepages_attr.attr,
06808b08
LS
2795#ifdef CONFIG_NUMA
2796 &nr_hugepages_mempolicy_attr.attr,
2797#endif
a3437870
NA
2798 NULL,
2799};
2800
67e5ed96 2801static const struct attribute_group hstate_attr_group = {
a3437870
NA
2802 .attrs = hstate_attrs,
2803};
2804
094e9539
JM
2805static int hugetlb_sysfs_add_hstate(struct hstate *h, struct kobject *parent,
2806 struct kobject **hstate_kobjs,
67e5ed96 2807 const struct attribute_group *hstate_attr_group)
a3437870
NA
2808{
2809 int retval;
972dc4de 2810 int hi = hstate_index(h);
a3437870 2811
9a305230
LS
2812 hstate_kobjs[hi] = kobject_create_and_add(h->name, parent);
2813 if (!hstate_kobjs[hi])
a3437870
NA
2814 return -ENOMEM;
2815
9a305230 2816 retval = sysfs_create_group(hstate_kobjs[hi], hstate_attr_group);
62fd7270 2817 if (retval) {
9a305230 2818 kobject_put(hstate_kobjs[hi]);
62fd7270
ML
2819 hstate_kobjs[hi] = NULL;
2820 }
a3437870
NA
2821
2822 return retval;
2823}
2824
2825static void __init hugetlb_sysfs_init(void)
2826{
2827 struct hstate *h;
2828 int err;
2829
2830 hugepages_kobj = kobject_create_and_add("hugepages", mm_kobj);
2831 if (!hugepages_kobj)
2832 return;
2833
2834 for_each_hstate(h) {
9a305230
LS
2835 err = hugetlb_sysfs_add_hstate(h, hugepages_kobj,
2836 hstate_kobjs, &hstate_attr_group);
a3437870 2837 if (err)
ffb22af5 2838 pr_err("Hugetlb: Unable to add hstate %s", h->name);
a3437870
NA
2839 }
2840}
2841
9a305230
LS
2842#ifdef CONFIG_NUMA
2843
2844/*
2845 * node_hstate/s - associate per node hstate attributes, via their kobjects,
10fbcf4c
KS
2846 * with node devices in node_devices[] using a parallel array. The array
2847 * index of a node device or _hstate == node id.
2848 * This is here to avoid any static dependency of the node device driver, in
9a305230
LS
2849 * the base kernel, on the hugetlb module.
2850 */
2851struct node_hstate {
2852 struct kobject *hugepages_kobj;
2853 struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
2854};
b4e289a6 2855static struct node_hstate node_hstates[MAX_NUMNODES];
9a305230
LS
2856
2857/*
10fbcf4c 2858 * A subset of global hstate attributes for node devices
9a305230
LS
2859 */
2860static struct attribute *per_node_hstate_attrs[] = {
2861 &nr_hugepages_attr.attr,
2862 &free_hugepages_attr.attr,
2863 &surplus_hugepages_attr.attr,
2864 NULL,
2865};
2866
67e5ed96 2867static const struct attribute_group per_node_hstate_attr_group = {
9a305230
LS
2868 .attrs = per_node_hstate_attrs,
2869};
2870
2871/*
10fbcf4c 2872 * kobj_to_node_hstate - lookup global hstate for node device hstate attr kobj.
9a305230
LS
2873 * Returns node id via non-NULL nidp.
2874 */
2875static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp)
2876{
2877 int nid;
2878
2879 for (nid = 0; nid < nr_node_ids; nid++) {
2880 struct node_hstate *nhs = &node_hstates[nid];
2881 int i;
2882 for (i = 0; i < HUGE_MAX_HSTATE; i++)
2883 if (nhs->hstate_kobjs[i] == kobj) {
2884 if (nidp)
2885 *nidp = nid;
2886 return &hstates[i];
2887 }
2888 }
2889
2890 BUG();
2891 return NULL;
2892}
2893
2894/*
10fbcf4c 2895 * Unregister hstate attributes from a single node device.
9a305230
LS
2896 * No-op if no hstate attributes attached.
2897 */
3cd8b44f 2898static void hugetlb_unregister_node(struct node *node)
9a305230
LS
2899{
2900 struct hstate *h;
10fbcf4c 2901 struct node_hstate *nhs = &node_hstates[node->dev.id];
9a305230
LS
2902
2903 if (!nhs->hugepages_kobj)
9b5e5d0f 2904 return; /* no hstate attributes */
9a305230 2905
972dc4de
AK
2906 for_each_hstate(h) {
2907 int idx = hstate_index(h);
2908 if (nhs->hstate_kobjs[idx]) {
2909 kobject_put(nhs->hstate_kobjs[idx]);
2910 nhs->hstate_kobjs[idx] = NULL;
9a305230 2911 }
972dc4de 2912 }
9a305230
LS
2913
2914 kobject_put(nhs->hugepages_kobj);
2915 nhs->hugepages_kobj = NULL;
2916}
2917
9a305230
LS
2918
2919/*
10fbcf4c 2920 * Register hstate attributes for a single node device.
9a305230
LS
2921 * No-op if attributes already registered.
2922 */
3cd8b44f 2923static void hugetlb_register_node(struct node *node)
9a305230
LS
2924{
2925 struct hstate *h;
10fbcf4c 2926 struct node_hstate *nhs = &node_hstates[node->dev.id];
9a305230
LS
2927 int err;
2928
2929 if (nhs->hugepages_kobj)
2930 return; /* already allocated */
2931
2932 nhs->hugepages_kobj = kobject_create_and_add("hugepages",
10fbcf4c 2933 &node->dev.kobj);
9a305230
LS
2934 if (!nhs->hugepages_kobj)
2935 return;
2936
2937 for_each_hstate(h) {
2938 err = hugetlb_sysfs_add_hstate(h, nhs->hugepages_kobj,
2939 nhs->hstate_kobjs,
2940 &per_node_hstate_attr_group);
2941 if (err) {
ffb22af5
AM
2942 pr_err("Hugetlb: Unable to add hstate %s for node %d\n",
2943 h->name, node->dev.id);
9a305230
LS
2944 hugetlb_unregister_node(node);
2945 break;
2946 }
2947 }
2948}
2949
2950/*
9b5e5d0f 2951 * hugetlb init time: register hstate attributes for all registered node
10fbcf4c
KS
2952 * devices of nodes that have memory. All on-line nodes should have
2953 * registered their associated device by this time.
9a305230 2954 */
7d9ca000 2955static void __init hugetlb_register_all_nodes(void)
9a305230
LS
2956{
2957 int nid;
2958
8cebfcd0 2959 for_each_node_state(nid, N_MEMORY) {
8732794b 2960 struct node *node = node_devices[nid];
10fbcf4c 2961 if (node->dev.id == nid)
9a305230
LS
2962 hugetlb_register_node(node);
2963 }
2964
2965 /*
10fbcf4c 2966 * Let the node device driver know we're here so it can
9a305230
LS
2967 * [un]register hstate attributes on node hotplug.
2968 */
2969 register_hugetlbfs_with_node(hugetlb_register_node,
2970 hugetlb_unregister_node);
2971}
2972#else /* !CONFIG_NUMA */
2973
2974static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp)
2975{
2976 BUG();
2977 if (nidp)
2978 *nidp = -1;
2979 return NULL;
2980}
2981
9a305230
LS
2982static void hugetlb_register_all_nodes(void) { }
2983
2984#endif
2985
a3437870
NA
2986static int __init hugetlb_init(void)
2987{
8382d914
DB
2988 int i;
2989
457c1b27 2990 if (!hugepages_supported())
0ef89d25 2991 return 0;
a3437870 2992
e11bfbfc 2993 if (!size_to_hstate(default_hstate_size)) {
d715cf80
LH
2994 if (default_hstate_size != 0) {
2995 pr_err("HugeTLB: unsupported default_hugepagesz %lu. Reverting to %lu\n",
2996 default_hstate_size, HPAGE_SIZE);
2997 }
2998
e11bfbfc
NP
2999 default_hstate_size = HPAGE_SIZE;
3000 if (!size_to_hstate(default_hstate_size))
3001 hugetlb_add_hstate(HUGETLB_PAGE_ORDER);
a3437870 3002 }
972dc4de 3003 default_hstate_idx = hstate_index(size_to_hstate(default_hstate_size));
f8b74815
VT
3004 if (default_hstate_max_huge_pages) {
3005 if (!default_hstate.max_huge_pages)
3006 default_hstate.max_huge_pages = default_hstate_max_huge_pages;
3007 }
a3437870
NA
3008
3009 hugetlb_init_hstates();
aa888a74 3010 gather_bootmem_prealloc();
a3437870
NA
3011 report_hugepages();
3012
3013 hugetlb_sysfs_init();
9a305230 3014 hugetlb_register_all_nodes();
7179e7bf 3015 hugetlb_cgroup_file_init();
9a305230 3016
8382d914
DB
3017#ifdef CONFIG_SMP
3018 num_fault_mutexes = roundup_pow_of_two(8 * num_possible_cpus());
3019#else
3020 num_fault_mutexes = 1;
3021#endif
c672c7f2 3022 hugetlb_fault_mutex_table =
6da2ec56
KC
3023 kmalloc_array(num_fault_mutexes, sizeof(struct mutex),
3024 GFP_KERNEL);
c672c7f2 3025 BUG_ON(!hugetlb_fault_mutex_table);
8382d914
DB
3026
3027 for (i = 0; i < num_fault_mutexes; i++)
c672c7f2 3028 mutex_init(&hugetlb_fault_mutex_table[i]);
a3437870
NA
3029 return 0;
3030}
3e89e1c5 3031subsys_initcall(hugetlb_init);
a3437870
NA
3032
3033/* Should be called on processing a hugepagesz=... option */
9fee021d
VT
3034void __init hugetlb_bad_size(void)
3035{
3036 parsed_valid_hugepagesz = false;
3037}
3038
d00181b9 3039void __init hugetlb_add_hstate(unsigned int order)
a3437870
NA
3040{
3041 struct hstate *h;
8faa8b07
AK
3042 unsigned long i;
3043
a3437870 3044 if (size_to_hstate(PAGE_SIZE << order)) {
598d8091 3045 pr_warn("hugepagesz= specified twice, ignoring\n");
a3437870
NA
3046 return;
3047 }
47d38344 3048 BUG_ON(hugetlb_max_hstate >= HUGE_MAX_HSTATE);
a3437870 3049 BUG_ON(order == 0);
47d38344 3050 h = &hstates[hugetlb_max_hstate++];
a3437870
NA
3051 h->order = order;
3052 h->mask = ~((1ULL << (order + PAGE_SHIFT)) - 1);
8faa8b07
AK
3053 h->nr_huge_pages = 0;
3054 h->free_huge_pages = 0;
3055 for (i = 0; i < MAX_NUMNODES; ++i)
3056 INIT_LIST_HEAD(&h->hugepage_freelists[i]);
0edaecfa 3057 INIT_LIST_HEAD(&h->hugepage_activelist);
54f18d35
AM
3058 h->next_nid_to_alloc = first_memory_node;
3059 h->next_nid_to_free = first_memory_node;
a3437870
NA
3060 snprintf(h->name, HSTATE_NAME_LEN, "hugepages-%lukB",
3061 huge_page_size(h)/1024);
8faa8b07 3062
a3437870
NA
3063 parsed_hstate = h;
3064}
3065
e11bfbfc 3066static int __init hugetlb_nrpages_setup(char *s)
a3437870
NA
3067{
3068 unsigned long *mhp;
8faa8b07 3069 static unsigned long *last_mhp;
a3437870 3070
9fee021d
VT
3071 if (!parsed_valid_hugepagesz) {
3072 pr_warn("hugepages = %s preceded by "
3073 "an unsupported hugepagesz, ignoring\n", s);
3074 parsed_valid_hugepagesz = true;
3075 return 1;
3076 }
a3437870 3077 /*
47d38344 3078 * !hugetlb_max_hstate means we haven't parsed a hugepagesz= parameter yet,
a3437870
NA
3079 * so this hugepages= parameter goes to the "default hstate".
3080 */
9fee021d 3081 else if (!hugetlb_max_hstate)
a3437870
NA
3082 mhp = &default_hstate_max_huge_pages;
3083 else
3084 mhp = &parsed_hstate->max_huge_pages;
3085
8faa8b07 3086 if (mhp == last_mhp) {
598d8091 3087 pr_warn("hugepages= specified twice without interleaving hugepagesz=, ignoring\n");
8faa8b07
AK
3088 return 1;
3089 }
3090
a3437870
NA
3091 if (sscanf(s, "%lu", mhp) <= 0)
3092 *mhp = 0;
3093
8faa8b07
AK
3094 /*
3095 * Global state is always initialized later in hugetlb_init.
3096 * But we need to allocate >= MAX_ORDER hstates here early to still
3097 * use the bootmem allocator.
3098 */
47d38344 3099 if (hugetlb_max_hstate && parsed_hstate->order >= MAX_ORDER)
8faa8b07
AK
3100 hugetlb_hstate_alloc_pages(parsed_hstate);
3101
3102 last_mhp = mhp;
3103
a3437870
NA
3104 return 1;
3105}
e11bfbfc
NP
3106__setup("hugepages=", hugetlb_nrpages_setup);
3107
3108static int __init hugetlb_default_setup(char *s)
3109{
3110 default_hstate_size = memparse(s, &s);
3111 return 1;
3112}
3113__setup("default_hugepagesz=", hugetlb_default_setup);
a3437870 3114
8a213460
NA
3115static unsigned int cpuset_mems_nr(unsigned int *array)
3116{
3117 int node;
3118 unsigned int nr = 0;
3119
3120 for_each_node_mask(node, cpuset_current_mems_allowed)
3121 nr += array[node];
3122
3123 return nr;
3124}
3125
3126#ifdef CONFIG_SYSCTL
5f84359e
MS
3127static int proc_hugetlb_doulongvec_minmax(struct ctl_table *table, int write,
3128 void *buffer, size_t *length,
3129 loff_t *ppos, unsigned long *out)
3130{
3131 struct ctl_table dup_table;
3132
3133 /*
3134 * In order to avoid races with __do_proc_doulongvec_minmax(), we
3135 * can duplicate the @table and alter the duplicate of it.
3136 */
3137 dup_table = *table;
3138 dup_table.data = out;
3139
3140 return proc_doulongvec_minmax(&dup_table, write, buffer, length, ppos);
3141}
3142
06808b08
LS
3143static int hugetlb_sysctl_handler_common(bool obey_mempolicy,
3144 struct ctl_table *table, int write,
3145 void __user *buffer, size_t *length, loff_t *ppos)
1da177e4 3146{
e5ff2159 3147 struct hstate *h = &default_hstate;
238d3c13 3148 unsigned long tmp = h->max_huge_pages;
08d4a246 3149 int ret;
e5ff2159 3150
457c1b27 3151 if (!hugepages_supported())
86613628 3152 return -EOPNOTSUPP;
457c1b27 3153
5f84359e
MS
3154 ret = proc_hugetlb_doulongvec_minmax(table, write, buffer, length, ppos,
3155 &tmp);
08d4a246
MH
3156 if (ret)
3157 goto out;
e5ff2159 3158
238d3c13
DR
3159 if (write)
3160 ret = __nr_hugepages_store_common(obey_mempolicy, h,
3161 NUMA_NO_NODE, tmp, *length);
08d4a246
MH
3162out:
3163 return ret;
1da177e4 3164}
396faf03 3165
06808b08
LS
3166int hugetlb_sysctl_handler(struct ctl_table *table, int write,
3167 void __user *buffer, size_t *length, loff_t *ppos)
3168{
3169
3170 return hugetlb_sysctl_handler_common(false, table, write,
3171 buffer, length, ppos);
3172}
3173
3174#ifdef CONFIG_NUMA
3175int hugetlb_mempolicy_sysctl_handler(struct ctl_table *table, int write,
3176 void __user *buffer, size_t *length, loff_t *ppos)
3177{
3178 return hugetlb_sysctl_handler_common(true, table, write,
3179 buffer, length, ppos);
3180}
3181#endif /* CONFIG_NUMA */
3182
a3d0c6aa 3183int hugetlb_overcommit_handler(struct ctl_table *table, int write,
8d65af78 3184 void __user *buffer,
a3d0c6aa
NA
3185 size_t *length, loff_t *ppos)
3186{
a5516438 3187 struct hstate *h = &default_hstate;
e5ff2159 3188 unsigned long tmp;
08d4a246 3189 int ret;
e5ff2159 3190
457c1b27 3191 if (!hugepages_supported())
86613628 3192 return -EOPNOTSUPP;
457c1b27 3193
c033a93c 3194 tmp = h->nr_overcommit_huge_pages;
e5ff2159 3195
bae7f4ae 3196 if (write && hstate_is_gigantic(h))
adbe8726
EM
3197 return -EINVAL;
3198
5f84359e
MS
3199 ret = proc_hugetlb_doulongvec_minmax(table, write, buffer, length, ppos,
3200 &tmp);
08d4a246
MH
3201 if (ret)
3202 goto out;
e5ff2159
AK
3203
3204 if (write) {
3205 spin_lock(&hugetlb_lock);
3206 h->nr_overcommit_huge_pages = tmp;
3207 spin_unlock(&hugetlb_lock);
3208 }
08d4a246
MH
3209out:
3210 return ret;
a3d0c6aa
NA
3211}
3212
1da177e4
LT
3213#endif /* CONFIG_SYSCTL */
3214
e1759c21 3215void hugetlb_report_meminfo(struct seq_file *m)
1da177e4 3216{
fcb2b0c5
RG
3217 struct hstate *h;
3218 unsigned long total = 0;
3219
457c1b27
NA
3220 if (!hugepages_supported())
3221 return;
fcb2b0c5
RG
3222
3223 for_each_hstate(h) {
3224 unsigned long count = h->nr_huge_pages;
3225
3226 total += (PAGE_SIZE << huge_page_order(h)) * count;
3227
3228 if (h == &default_hstate)
3229 seq_printf(m,
3230 "HugePages_Total: %5lu\n"
3231 "HugePages_Free: %5lu\n"
3232 "HugePages_Rsvd: %5lu\n"
3233 "HugePages_Surp: %5lu\n"
3234 "Hugepagesize: %8lu kB\n",
3235 count,
3236 h->free_huge_pages,
3237 h->resv_huge_pages,
3238 h->surplus_huge_pages,
3239 (PAGE_SIZE << huge_page_order(h)) / 1024);
3240 }
3241
3242 seq_printf(m, "Hugetlb: %8lu kB\n", total / 1024);
1da177e4
LT
3243}
3244
3245int hugetlb_report_node_meminfo(int nid, char *buf)
3246{
a5516438 3247 struct hstate *h = &default_hstate;
457c1b27
NA
3248 if (!hugepages_supported())
3249 return 0;
1da177e4
LT
3250 return sprintf(buf,
3251 "Node %d HugePages_Total: %5u\n"
a1de0919
NA
3252 "Node %d HugePages_Free: %5u\n"
3253 "Node %d HugePages_Surp: %5u\n",
a5516438
AK
3254 nid, h->nr_huge_pages_node[nid],
3255 nid, h->free_huge_pages_node[nid],
3256 nid, h->surplus_huge_pages_node[nid]);
1da177e4
LT
3257}
3258
949f7ec5
DR
3259void hugetlb_show_meminfo(void)
3260{
3261 struct hstate *h;
3262 int nid;
3263
457c1b27
NA
3264 if (!hugepages_supported())
3265 return;
3266
949f7ec5
DR
3267 for_each_node_state(nid, N_MEMORY)
3268 for_each_hstate(h)
3269 pr_info("Node %d hugepages_total=%u hugepages_free=%u hugepages_surp=%u hugepages_size=%lukB\n",
3270 nid,
3271 h->nr_huge_pages_node[nid],
3272 h->free_huge_pages_node[nid],
3273 h->surplus_huge_pages_node[nid],
3274 1UL << (huge_page_order(h) + PAGE_SHIFT - 10));
3275}
3276
5d317b2b
NH
3277void hugetlb_report_usage(struct seq_file *m, struct mm_struct *mm)
3278{
3279 seq_printf(m, "HugetlbPages:\t%8lu kB\n",
3280 atomic_long_read(&mm->hugetlb_usage) << (PAGE_SHIFT - 10));
3281}
3282
1da177e4
LT
3283/* Return the number pages of memory we physically have, in PAGE_SIZE units. */
3284unsigned long hugetlb_total_pages(void)
3285{
d0028588
WL
3286 struct hstate *h;
3287 unsigned long nr_total_pages = 0;
3288
3289 for_each_hstate(h)
3290 nr_total_pages += h->nr_huge_pages * pages_per_huge_page(h);
3291 return nr_total_pages;
1da177e4 3292}
1da177e4 3293
a5516438 3294static int hugetlb_acct_memory(struct hstate *h, long delta)
fc1b8a73
MG
3295{
3296 int ret = -ENOMEM;
3297
3298 spin_lock(&hugetlb_lock);
3299 /*
3300 * When cpuset is configured, it breaks the strict hugetlb page
3301 * reservation as the accounting is done on a global variable. Such
3302 * reservation is completely rubbish in the presence of cpuset because
3303 * the reservation is not checked against page availability for the
3304 * current cpuset. Application can still potentially OOM'ed by kernel
3305 * with lack of free htlb page in cpuset that the task is in.
3306 * Attempt to enforce strict accounting with cpuset is almost
3307 * impossible (or too ugly) because cpuset is too fluid that
3308 * task or memory node can be dynamically moved between cpusets.
3309 *
3310 * The change of semantics for shared hugetlb mapping with cpuset is
3311 * undesirable. However, in order to preserve some of the semantics,
3312 * we fall back to check against current free page availability as
3313 * a best attempt and hopefully to minimize the impact of changing
3314 * semantics that cpuset has.
3315 */
3316 if (delta > 0) {
a5516438 3317 if (gather_surplus_pages(h, delta) < 0)
fc1b8a73
MG
3318 goto out;
3319
a5516438
AK
3320 if (delta > cpuset_mems_nr(h->free_huge_pages_node)) {
3321 return_unused_surplus_pages(h, delta);
fc1b8a73
MG
3322 goto out;
3323 }
3324 }
3325
3326 ret = 0;
3327 if (delta < 0)
a5516438 3328 return_unused_surplus_pages(h, (unsigned long) -delta);
fc1b8a73
MG
3329
3330out:
3331 spin_unlock(&hugetlb_lock);
3332 return ret;
3333}
3334
84afd99b
AW
3335static void hugetlb_vm_op_open(struct vm_area_struct *vma)
3336{
f522c3ac 3337 struct resv_map *resv = vma_resv_map(vma);
84afd99b
AW
3338
3339 /*
3340 * This new VMA should share its siblings reservation map if present.
3341 * The VMA will only ever have a valid reservation map pointer where
3342 * it is being copied for another still existing VMA. As that VMA
25985edc 3343 * has a reference to the reservation map it cannot disappear until
84afd99b
AW
3344 * after this open call completes. It is therefore safe to take a
3345 * new reference here without additional locking.
3346 */
4e35f483 3347 if (resv && is_vma_resv_set(vma, HPAGE_RESV_OWNER))
f522c3ac 3348 kref_get(&resv->refs);
84afd99b
AW
3349}
3350
a1e78772
MG
3351static void hugetlb_vm_op_close(struct vm_area_struct *vma)
3352{
a5516438 3353 struct hstate *h = hstate_vma(vma);
f522c3ac 3354 struct resv_map *resv = vma_resv_map(vma);
90481622 3355 struct hugepage_subpool *spool = subpool_vma(vma);
4e35f483 3356 unsigned long reserve, start, end;
1c5ecae3 3357 long gbl_reserve;
84afd99b 3358
4e35f483
JK
3359 if (!resv || !is_vma_resv_set(vma, HPAGE_RESV_OWNER))
3360 return;
84afd99b 3361
4e35f483
JK
3362 start = vma_hugecache_offset(h, vma, vma->vm_start);
3363 end = vma_hugecache_offset(h, vma, vma->vm_end);
84afd99b 3364
4e35f483 3365 reserve = (end - start) - region_count(resv, start, end);
84afd99b 3366
4e35f483
JK
3367 kref_put(&resv->refs, resv_map_release);
3368
3369 if (reserve) {
1c5ecae3
MK
3370 /*
3371 * Decrement reserve counts. The global reserve count may be
3372 * adjusted if the subpool has a minimum size.
3373 */
3374 gbl_reserve = hugepage_subpool_put_pages(spool, reserve);
3375 hugetlb_acct_memory(h, -gbl_reserve);
84afd99b 3376 }
a1e78772
MG
3377}
3378
31383c68
DW
3379static int hugetlb_vm_op_split(struct vm_area_struct *vma, unsigned long addr)
3380{
3381 if (addr & ~(huge_page_mask(hstate_vma(vma))))
3382 return -EINVAL;
3383 return 0;
3384}
3385
05ea8860
DW
3386static unsigned long hugetlb_vm_op_pagesize(struct vm_area_struct *vma)
3387{
3388 struct hstate *hstate = hstate_vma(vma);
3389
3390 return 1UL << huge_page_shift(hstate);
3391}
3392
1da177e4
LT
3393/*
3394 * We cannot handle pagefaults against hugetlb pages at all. They cause
3395 * handle_mm_fault() to try to instantiate regular-sized pages in the
3396 * hugegpage VMA. do_page_fault() is supposed to trap this, so BUG is we get
3397 * this far.
3398 */
b3ec9f33 3399static vm_fault_t hugetlb_vm_op_fault(struct vm_fault *vmf)
1da177e4
LT
3400{
3401 BUG();
d0217ac0 3402 return 0;
1da177e4
LT
3403}
3404
eec3636a
JC
3405/*
3406 * When a new function is introduced to vm_operations_struct and added
3407 * to hugetlb_vm_ops, please consider adding the function to shm_vm_ops.
3408 * This is because under System V memory model, mappings created via
3409 * shmget/shmat with "huge page" specified are backed by hugetlbfs files,
3410 * their original vm_ops are overwritten with shm_vm_ops.
3411 */
f0f37e2f 3412const struct vm_operations_struct hugetlb_vm_ops = {
d0217ac0 3413 .fault = hugetlb_vm_op_fault,
84afd99b 3414 .open = hugetlb_vm_op_open,
a1e78772 3415 .close = hugetlb_vm_op_close,
31383c68 3416 .split = hugetlb_vm_op_split,
05ea8860 3417 .pagesize = hugetlb_vm_op_pagesize,
1da177e4
LT
3418};
3419
1e8f889b
DG
3420static pte_t make_huge_pte(struct vm_area_struct *vma, struct page *page,
3421 int writable)
63551ae0
DG
3422{
3423 pte_t entry;
3424
1e8f889b 3425 if (writable) {
106c992a
GS
3426 entry = huge_pte_mkwrite(huge_pte_mkdirty(mk_huge_pte(page,
3427 vma->vm_page_prot)));
63551ae0 3428 } else {
106c992a
GS
3429 entry = huge_pte_wrprotect(mk_huge_pte(page,
3430 vma->vm_page_prot));
63551ae0
DG
3431 }
3432 entry = pte_mkyoung(entry);
3433 entry = pte_mkhuge(entry);
d9ed9faa 3434 entry = arch_make_huge_pte(entry, vma, page, writable);
63551ae0
DG
3435
3436 return entry;
3437}
3438
1e8f889b
DG
3439static void set_huge_ptep_writable(struct vm_area_struct *vma,
3440 unsigned long address, pte_t *ptep)
3441{
3442 pte_t entry;
3443
106c992a 3444 entry = huge_pte_mkwrite(huge_pte_mkdirty(huge_ptep_get(ptep)));
32f84528 3445 if (huge_ptep_set_access_flags(vma, address, ptep, entry, 1))
4b3073e1 3446 update_mmu_cache(vma, address, ptep);
1e8f889b
DG
3447}
3448
d5ed7444 3449bool is_hugetlb_entry_migration(pte_t pte)
4a705fef
NH
3450{
3451 swp_entry_t swp;
3452
3453 if (huge_pte_none(pte) || pte_present(pte))
d5ed7444 3454 return false;
4a705fef
NH
3455 swp = pte_to_swp_entry(pte);
3456 if (non_swap_entry(swp) && is_migration_entry(swp))
d5ed7444 3457 return true;
4a705fef 3458 else
d5ed7444 3459 return false;
4a705fef
NH
3460}
3461
3462static int is_hugetlb_entry_hwpoisoned(pte_t pte)
3463{
3464 swp_entry_t swp;
3465
3466 if (huge_pte_none(pte) || pte_present(pte))
3467 return 0;
3468 swp = pte_to_swp_entry(pte);
3469 if (non_swap_entry(swp) && is_hwpoison_entry(swp))
3470 return 1;
3471 else
3472 return 0;
3473}
1e8f889b 3474
63551ae0
DG
3475int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
3476 struct vm_area_struct *vma)
3477{
5e41540c 3478 pte_t *src_pte, *dst_pte, entry, dst_entry;
63551ae0 3479 struct page *ptepage;
1c59827d 3480 unsigned long addr;
1e8f889b 3481 int cow;
a5516438
AK
3482 struct hstate *h = hstate_vma(vma);
3483 unsigned long sz = huge_page_size(h);
ac46d4f3 3484 struct mmu_notifier_range range;
e8569dd2 3485 int ret = 0;
1e8f889b
DG
3486
3487 cow = (vma->vm_flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE;
63551ae0 3488
ac46d4f3 3489 if (cow) {
7269f999 3490 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, src,
6f4f13e8 3491 vma->vm_start,
ac46d4f3
JG
3492 vma->vm_end);
3493 mmu_notifier_invalidate_range_start(&range);
3494 }
e8569dd2 3495
a5516438 3496 for (addr = vma->vm_start; addr < vma->vm_end; addr += sz) {
cb900f41 3497 spinlock_t *src_ptl, *dst_ptl;
7868a208 3498 src_pte = huge_pte_offset(src, addr, sz);
c74df32c
HD
3499 if (!src_pte)
3500 continue;
a5516438 3501 dst_pte = huge_pte_alloc(dst, addr, sz);
e8569dd2
AS
3502 if (!dst_pte) {
3503 ret = -ENOMEM;
3504 break;
3505 }
c5c99429 3506
5e41540c
MK
3507 /*
3508 * If the pagetables are shared don't copy or take references.
3509 * dst_pte == src_pte is the common case of src/dest sharing.
3510 *
3511 * However, src could have 'unshared' and dst shares with
3512 * another vma. If dst_pte !none, this implies sharing.
3513 * Check here before taking page table lock, and once again
3514 * after taking the lock below.
3515 */
3516 dst_entry = huge_ptep_get(dst_pte);
3517 if ((dst_pte == src_pte) || !huge_pte_none(dst_entry))
c5c99429
LW
3518 continue;
3519
cb900f41
KS
3520 dst_ptl = huge_pte_lock(h, dst, dst_pte);
3521 src_ptl = huge_pte_lockptr(h, src, src_pte);
3522 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
4a705fef 3523 entry = huge_ptep_get(src_pte);
5e41540c
MK
3524 dst_entry = huge_ptep_get(dst_pte);
3525 if (huge_pte_none(entry) || !huge_pte_none(dst_entry)) {
3526 /*
3527 * Skip if src entry none. Also, skip in the
3528 * unlikely case dst entry !none as this implies
3529 * sharing with another vma.
3530 */
4a705fef
NH
3531 ;
3532 } else if (unlikely(is_hugetlb_entry_migration(entry) ||
3533 is_hugetlb_entry_hwpoisoned(entry))) {
3534 swp_entry_t swp_entry = pte_to_swp_entry(entry);
3535
3536 if (is_write_migration_entry(swp_entry) && cow) {
3537 /*
3538 * COW mappings require pages in both
3539 * parent and child to be set to read.
3540 */
3541 make_migration_entry_read(&swp_entry);
3542 entry = swp_entry_to_pte(swp_entry);
e5251fd4
PA
3543 set_huge_swap_pte_at(src, addr, src_pte,
3544 entry, sz);
4a705fef 3545 }
e5251fd4 3546 set_huge_swap_pte_at(dst, addr, dst_pte, entry, sz);
4a705fef 3547 } else {
34ee645e 3548 if (cow) {
0f10851e
JG
3549 /*
3550 * No need to notify as we are downgrading page
3551 * table protection not changing it to point
3552 * to a new page.
3553 *
ad56b738 3554 * See Documentation/vm/mmu_notifier.rst
0f10851e 3555 */
7f2e9525 3556 huge_ptep_set_wrprotect(src, addr, src_pte);
34ee645e 3557 }
0253d634 3558 entry = huge_ptep_get(src_pte);
1c59827d
HD
3559 ptepage = pte_page(entry);
3560 get_page(ptepage);
53f9263b 3561 page_dup_rmap(ptepage, true);
1c59827d 3562 set_huge_pte_at(dst, addr, dst_pte, entry);
5d317b2b 3563 hugetlb_count_add(pages_per_huge_page(h), dst);
1c59827d 3564 }
cb900f41
KS
3565 spin_unlock(src_ptl);
3566 spin_unlock(dst_ptl);
63551ae0 3567 }
63551ae0 3568
e8569dd2 3569 if (cow)
ac46d4f3 3570 mmu_notifier_invalidate_range_end(&range);
e8569dd2
AS
3571
3572 return ret;
63551ae0
DG
3573}
3574
24669e58
AK
3575void __unmap_hugepage_range(struct mmu_gather *tlb, struct vm_area_struct *vma,
3576 unsigned long start, unsigned long end,
3577 struct page *ref_page)
63551ae0
DG
3578{
3579 struct mm_struct *mm = vma->vm_mm;
3580 unsigned long address;
c7546f8f 3581 pte_t *ptep;
63551ae0 3582 pte_t pte;
cb900f41 3583 spinlock_t *ptl;
63551ae0 3584 struct page *page;
a5516438
AK
3585 struct hstate *h = hstate_vma(vma);
3586 unsigned long sz = huge_page_size(h);
ac46d4f3 3587 struct mmu_notifier_range range;
a5516438 3588
63551ae0 3589 WARN_ON(!is_vm_hugetlb_page(vma));
a5516438
AK
3590 BUG_ON(start & ~huge_page_mask(h));
3591 BUG_ON(end & ~huge_page_mask(h));
63551ae0 3592
07e32661
AK
3593 /*
3594 * This is a hugetlb vma, all the pte entries should point
3595 * to huge page.
3596 */
ed6a7935 3597 tlb_change_page_size(tlb, sz);
24669e58 3598 tlb_start_vma(tlb, vma);
dff11abe
MK
3599
3600 /*
3601 * If sharing possible, alert mmu notifiers of worst case.
3602 */
6f4f13e8
JG
3603 mmu_notifier_range_init(&range, MMU_NOTIFY_UNMAP, 0, vma, mm, start,
3604 end);
ac46d4f3
JG
3605 adjust_range_if_pmd_sharing_possible(vma, &range.start, &range.end);
3606 mmu_notifier_invalidate_range_start(&range);
569f48b8 3607 address = start;
569f48b8 3608 for (; address < end; address += sz) {
7868a208 3609 ptep = huge_pte_offset(mm, address, sz);
4c887265 3610 if (!ptep)
c7546f8f
DG
3611 continue;
3612
cb900f41 3613 ptl = huge_pte_lock(h, mm, ptep);
31d49da5
AK
3614 if (huge_pmd_unshare(mm, &address, ptep)) {
3615 spin_unlock(ptl);
dff11abe
MK
3616 /*
3617 * We just unmapped a page of PMDs by clearing a PUD.
3618 * The caller's TLB flush range should cover this area.
3619 */
31d49da5
AK
3620 continue;
3621 }
39dde65c 3622
6629326b 3623 pte = huge_ptep_get(ptep);
31d49da5
AK
3624 if (huge_pte_none(pte)) {
3625 spin_unlock(ptl);
3626 continue;
3627 }
6629326b
HD
3628
3629 /*
9fbc1f63
NH
3630 * Migrating hugepage or HWPoisoned hugepage is already
3631 * unmapped and its refcount is dropped, so just clear pte here.
6629326b 3632 */
9fbc1f63 3633 if (unlikely(!pte_present(pte))) {
9386fac3 3634 huge_pte_clear(mm, address, ptep, sz);
31d49da5
AK
3635 spin_unlock(ptl);
3636 continue;
8c4894c6 3637 }
6629326b
HD
3638
3639 page = pte_page(pte);
04f2cbe3
MG
3640 /*
3641 * If a reference page is supplied, it is because a specific
3642 * page is being unmapped, not a range. Ensure the page we
3643 * are about to unmap is the actual page of interest.
3644 */
3645 if (ref_page) {
31d49da5
AK
3646 if (page != ref_page) {
3647 spin_unlock(ptl);
3648 continue;
3649 }
04f2cbe3
MG
3650 /*
3651 * Mark the VMA as having unmapped its page so that
3652 * future faults in this VMA will fail rather than
3653 * looking like data was lost
3654 */
3655 set_vma_resv_flags(vma, HPAGE_RESV_UNMAPPED);
3656 }
3657
c7546f8f 3658 pte = huge_ptep_get_and_clear(mm, address, ptep);
b528e4b6 3659 tlb_remove_huge_tlb_entry(h, tlb, ptep, address);
106c992a 3660 if (huge_pte_dirty(pte))
6649a386 3661 set_page_dirty(page);
9e81130b 3662
5d317b2b 3663 hugetlb_count_sub(pages_per_huge_page(h), mm);
d281ee61 3664 page_remove_rmap(page, true);
31d49da5 3665
cb900f41 3666 spin_unlock(ptl);
e77b0852 3667 tlb_remove_page_size(tlb, page, huge_page_size(h));
31d49da5
AK
3668 /*
3669 * Bail out after unmapping reference page if supplied
3670 */
3671 if (ref_page)
3672 break;
fe1668ae 3673 }
ac46d4f3 3674 mmu_notifier_invalidate_range_end(&range);
24669e58 3675 tlb_end_vma(tlb, vma);
1da177e4 3676}
63551ae0 3677
d833352a
MG
3678void __unmap_hugepage_range_final(struct mmu_gather *tlb,
3679 struct vm_area_struct *vma, unsigned long start,
3680 unsigned long end, struct page *ref_page)
3681{
3682 __unmap_hugepage_range(tlb, vma, start, end, ref_page);
3683
3684 /*
3685 * Clear this flag so that x86's huge_pmd_share page_table_shareable
3686 * test will fail on a vma being torn down, and not grab a page table
3687 * on its way out. We're lucky that the flag has such an appropriate
3688 * name, and can in fact be safely cleared here. We could clear it
3689 * before the __unmap_hugepage_range above, but all that's necessary
c8c06efa 3690 * is to clear it before releasing the i_mmap_rwsem. This works
d833352a 3691 * because in the context this is called, the VMA is about to be
c8c06efa 3692 * destroyed and the i_mmap_rwsem is held.
d833352a
MG
3693 */
3694 vma->vm_flags &= ~VM_MAYSHARE;
3695}
3696
502717f4 3697void unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
04f2cbe3 3698 unsigned long end, struct page *ref_page)
502717f4 3699{
24669e58
AK
3700 struct mm_struct *mm;
3701 struct mmu_gather tlb;
dff11abe
MK
3702 unsigned long tlb_start = start;
3703 unsigned long tlb_end = end;
3704
3705 /*
3706 * If shared PMDs were possibly used within this vma range, adjust
3707 * start/end for worst case tlb flushing.
3708 * Note that we can not be sure if PMDs are shared until we try to
3709 * unmap pages. However, we want to make sure TLB flushing covers
3710 * the largest possible range.
3711 */
3712 adjust_range_if_pmd_sharing_possible(vma, &tlb_start, &tlb_end);
24669e58
AK
3713
3714 mm = vma->vm_mm;
3715
dff11abe 3716 tlb_gather_mmu(&tlb, mm, tlb_start, tlb_end);
24669e58 3717 __unmap_hugepage_range(&tlb, vma, start, end, ref_page);
dff11abe 3718 tlb_finish_mmu(&tlb, tlb_start, tlb_end);
502717f4
KC
3719}
3720
04f2cbe3
MG
3721/*
3722 * This is called when the original mapper is failing to COW a MAP_PRIVATE
3723 * mappping it owns the reserve page for. The intention is to unmap the page
3724 * from other VMAs and let the children be SIGKILLed if they are faulting the
3725 * same region.
3726 */
2f4612af
DB
3727static void unmap_ref_private(struct mm_struct *mm, struct vm_area_struct *vma,
3728 struct page *page, unsigned long address)
04f2cbe3 3729{
7526674d 3730 struct hstate *h = hstate_vma(vma);
04f2cbe3
MG
3731 struct vm_area_struct *iter_vma;
3732 struct address_space *mapping;
04f2cbe3
MG
3733 pgoff_t pgoff;
3734
3735 /*
3736 * vm_pgoff is in PAGE_SIZE units, hence the different calculation
3737 * from page cache lookup which is in HPAGE_SIZE units.
3738 */
7526674d 3739 address = address & huge_page_mask(h);
36e4f20a
MH
3740 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) +
3741 vma->vm_pgoff;
93c76a3d 3742 mapping = vma->vm_file->f_mapping;
04f2cbe3 3743
4eb2b1dc
MG
3744 /*
3745 * Take the mapping lock for the duration of the table walk. As
3746 * this mapping should be shared between all the VMAs,
3747 * __unmap_hugepage_range() is called as the lock is already held
3748 */
83cde9e8 3749 i_mmap_lock_write(mapping);
6b2dbba8 3750 vma_interval_tree_foreach(iter_vma, &mapping->i_mmap, pgoff, pgoff) {
04f2cbe3
MG
3751 /* Do not unmap the current VMA */
3752 if (iter_vma == vma)
3753 continue;
3754
2f84a899
MG
3755 /*
3756 * Shared VMAs have their own reserves and do not affect
3757 * MAP_PRIVATE accounting but it is possible that a shared
3758 * VMA is using the same page so check and skip such VMAs.
3759 */
3760 if (iter_vma->vm_flags & VM_MAYSHARE)
3761 continue;
3762
04f2cbe3
MG
3763 /*
3764 * Unmap the page from other VMAs without their own reserves.
3765 * They get marked to be SIGKILLed if they fault in these
3766 * areas. This is because a future no-page fault on this VMA
3767 * could insert a zeroed page instead of the data existing
3768 * from the time of fork. This would look like data corruption
3769 */
3770 if (!is_vma_resv_set(iter_vma, HPAGE_RESV_OWNER))
24669e58
AK
3771 unmap_hugepage_range(iter_vma, address,
3772 address + huge_page_size(h), page);
04f2cbe3 3773 }
83cde9e8 3774 i_mmap_unlock_write(mapping);
04f2cbe3
MG
3775}
3776
0fe6e20b
NH
3777/*
3778 * Hugetlb_cow() should be called with page lock of the original hugepage held.
ef009b25
MH
3779 * Called with hugetlb_instantiation_mutex held and pte_page locked so we
3780 * cannot race with other handlers or page migration.
3781 * Keep the pte_same checks anyway to make transition from the mutex easier.
0fe6e20b 3782 */
2b740303 3783static vm_fault_t hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma,
974e6d66 3784 unsigned long address, pte_t *ptep,
3999f52e 3785 struct page *pagecache_page, spinlock_t *ptl)
1e8f889b 3786{
3999f52e 3787 pte_t pte;
a5516438 3788 struct hstate *h = hstate_vma(vma);
1e8f889b 3789 struct page *old_page, *new_page;
2b740303
SJ
3790 int outside_reserve = 0;
3791 vm_fault_t ret = 0;
974e6d66 3792 unsigned long haddr = address & huge_page_mask(h);
ac46d4f3 3793 struct mmu_notifier_range range;
1e8f889b 3794
3999f52e 3795 pte = huge_ptep_get(ptep);
1e8f889b
DG
3796 old_page = pte_page(pte);
3797
04f2cbe3 3798retry_avoidcopy:
1e8f889b
DG
3799 /* If no-one else is actually using this page, avoid the copy
3800 * and just make the page writable */
37a2140d 3801 if (page_mapcount(old_page) == 1 && PageAnon(old_page)) {
5a49973d 3802 page_move_anon_rmap(old_page, vma);
5b7a1d40 3803 set_huge_ptep_writable(vma, haddr, ptep);
83c54070 3804 return 0;
1e8f889b
DG
3805 }
3806
04f2cbe3
MG
3807 /*
3808 * If the process that created a MAP_PRIVATE mapping is about to
3809 * perform a COW due to a shared page count, attempt to satisfy
3810 * the allocation without using the existing reserves. The pagecache
3811 * page is used to determine if the reserve at this address was
3812 * consumed or not. If reserves were used, a partial faulted mapping
3813 * at the time of fork() could consume its reserves on COW instead
3814 * of the full address range.
3815 */
5944d011 3816 if (is_vma_resv_set(vma, HPAGE_RESV_OWNER) &&
04f2cbe3
MG
3817 old_page != pagecache_page)
3818 outside_reserve = 1;
3819
09cbfeaf 3820 get_page(old_page);
b76c8cfb 3821
ad4404a2
DB
3822 /*
3823 * Drop page table lock as buddy allocator may be called. It will
3824 * be acquired again before returning to the caller, as expected.
3825 */
cb900f41 3826 spin_unlock(ptl);
5b7a1d40 3827 new_page = alloc_huge_page(vma, haddr, outside_reserve);
1e8f889b 3828
2fc39cec 3829 if (IS_ERR(new_page)) {
04f2cbe3
MG
3830 /*
3831 * If a process owning a MAP_PRIVATE mapping fails to COW,
3832 * it is due to references held by a child and an insufficient
3833 * huge page pool. To guarantee the original mappers
3834 * reliability, unmap the page from child processes. The child
3835 * may get SIGKILLed if it later faults.
3836 */
3837 if (outside_reserve) {
09cbfeaf 3838 put_page(old_page);
04f2cbe3 3839 BUG_ON(huge_pte_none(pte));
5b7a1d40 3840 unmap_ref_private(mm, vma, old_page, haddr);
2f4612af
DB
3841 BUG_ON(huge_pte_none(pte));
3842 spin_lock(ptl);
5b7a1d40 3843 ptep = huge_pte_offset(mm, haddr, huge_page_size(h));
2f4612af
DB
3844 if (likely(ptep &&
3845 pte_same(huge_ptep_get(ptep), pte)))
3846 goto retry_avoidcopy;
3847 /*
3848 * race occurs while re-acquiring page table
3849 * lock, and our job is done.
3850 */
3851 return 0;
04f2cbe3
MG
3852 }
3853
2b740303 3854 ret = vmf_error(PTR_ERR(new_page));
ad4404a2 3855 goto out_release_old;
1e8f889b
DG
3856 }
3857
0fe6e20b
NH
3858 /*
3859 * When the original hugepage is shared one, it does not have
3860 * anon_vma prepared.
3861 */
44e2aa93 3862 if (unlikely(anon_vma_prepare(vma))) {
ad4404a2
DB
3863 ret = VM_FAULT_OOM;
3864 goto out_release_all;
44e2aa93 3865 }
0fe6e20b 3866
974e6d66 3867 copy_user_huge_page(new_page, old_page, address, vma,
47ad8475 3868 pages_per_huge_page(h));
0ed361de 3869 __SetPageUptodate(new_page);
1e8f889b 3870
7269f999 3871 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, mm, haddr,
6f4f13e8 3872 haddr + huge_page_size(h));
ac46d4f3 3873 mmu_notifier_invalidate_range_start(&range);
ad4404a2 3874
b76c8cfb 3875 /*
cb900f41 3876 * Retake the page table lock to check for racing updates
b76c8cfb
LW
3877 * before the page tables are altered
3878 */
cb900f41 3879 spin_lock(ptl);
5b7a1d40 3880 ptep = huge_pte_offset(mm, haddr, huge_page_size(h));
a9af0c5d 3881 if (likely(ptep && pte_same(huge_ptep_get(ptep), pte))) {
07443a85
JK
3882 ClearPagePrivate(new_page);
3883
1e8f889b 3884 /* Break COW */
5b7a1d40 3885 huge_ptep_clear_flush(vma, haddr, ptep);
ac46d4f3 3886 mmu_notifier_invalidate_range(mm, range.start, range.end);
5b7a1d40 3887 set_huge_pte_at(mm, haddr, ptep,
1e8f889b 3888 make_huge_pte(vma, new_page, 1));
d281ee61 3889 page_remove_rmap(old_page, true);
5b7a1d40 3890 hugepage_add_new_anon_rmap(new_page, vma, haddr);
cb6acd01 3891 set_page_huge_active(new_page);
1e8f889b
DG
3892 /* Make the old page be freed below */
3893 new_page = old_page;
3894 }
cb900f41 3895 spin_unlock(ptl);
ac46d4f3 3896 mmu_notifier_invalidate_range_end(&range);
ad4404a2 3897out_release_all:
5b7a1d40 3898 restore_reserve_on_error(h, vma, haddr, new_page);
09cbfeaf 3899 put_page(new_page);
ad4404a2 3900out_release_old:
09cbfeaf 3901 put_page(old_page);
8312034f 3902
ad4404a2
DB
3903 spin_lock(ptl); /* Caller expects lock to be held */
3904 return ret;
1e8f889b
DG
3905}
3906
04f2cbe3 3907/* Return the pagecache page at a given address within a VMA */
a5516438
AK
3908static struct page *hugetlbfs_pagecache_page(struct hstate *h,
3909 struct vm_area_struct *vma, unsigned long address)
04f2cbe3
MG
3910{
3911 struct address_space *mapping;
e7c4b0bf 3912 pgoff_t idx;
04f2cbe3
MG
3913
3914 mapping = vma->vm_file->f_mapping;
a5516438 3915 idx = vma_hugecache_offset(h, vma, address);
04f2cbe3
MG
3916
3917 return find_lock_page(mapping, idx);
3918}
3919
3ae77f43
HD
3920/*
3921 * Return whether there is a pagecache page to back given address within VMA.
3922 * Caller follow_hugetlb_page() holds page_table_lock so we cannot lock_page.
3923 */
3924static bool hugetlbfs_pagecache_present(struct hstate *h,
2a15efc9
HD
3925 struct vm_area_struct *vma, unsigned long address)
3926{
3927 struct address_space *mapping;
3928 pgoff_t idx;
3929 struct page *page;
3930
3931 mapping = vma->vm_file->f_mapping;
3932 idx = vma_hugecache_offset(h, vma, address);
3933
3934 page = find_get_page(mapping, idx);
3935 if (page)
3936 put_page(page);
3937 return page != NULL;
3938}
3939
ab76ad54
MK
3940int huge_add_to_page_cache(struct page *page, struct address_space *mapping,
3941 pgoff_t idx)
3942{
3943 struct inode *inode = mapping->host;
3944 struct hstate *h = hstate_inode(inode);
3945 int err = add_to_page_cache(page, mapping, idx, GFP_KERNEL);
3946
3947 if (err)
3948 return err;
3949 ClearPagePrivate(page);
3950
22146c3c
MK
3951 /*
3952 * set page dirty so that it will not be removed from cache/file
3953 * by non-hugetlbfs specific code paths.
3954 */
3955 set_page_dirty(page);
3956
ab76ad54
MK
3957 spin_lock(&inode->i_lock);
3958 inode->i_blocks += blocks_per_huge_page(h);
3959 spin_unlock(&inode->i_lock);
3960 return 0;
3961}
3962
2b740303
SJ
3963static vm_fault_t hugetlb_no_page(struct mm_struct *mm,
3964 struct vm_area_struct *vma,
3965 struct address_space *mapping, pgoff_t idx,
3966 unsigned long address, pte_t *ptep, unsigned int flags)
ac9b9c66 3967{
a5516438 3968 struct hstate *h = hstate_vma(vma);
2b740303 3969 vm_fault_t ret = VM_FAULT_SIGBUS;
409eb8c2 3970 int anon_rmap = 0;
4c887265 3971 unsigned long size;
4c887265 3972 struct page *page;
1e8f889b 3973 pte_t new_pte;
cb900f41 3974 spinlock_t *ptl;
285b8dca 3975 unsigned long haddr = address & huge_page_mask(h);
cb6acd01 3976 bool new_page = false;
4c887265 3977
04f2cbe3
MG
3978 /*
3979 * Currently, we are forced to kill the process in the event the
3980 * original mapper has unmapped pages from the child due to a failed
25985edc 3981 * COW. Warn that such a situation has occurred as it may not be obvious
04f2cbe3
MG
3982 */
3983 if (is_vma_resv_set(vma, HPAGE_RESV_UNMAPPED)) {
910154d5 3984 pr_warn_ratelimited("PID %d killed due to inadequate hugepage pool\n",
ffb22af5 3985 current->pid);
04f2cbe3
MG
3986 return ret;
3987 }
3988
4c887265 3989 /*
e7c58097
MK
3990 * Use page lock to guard against racing truncation
3991 * before we get page_table_lock.
4c887265 3992 */
6bda666a
CL
3993retry:
3994 page = find_lock_page(mapping, idx);
3995 if (!page) {
e7c58097
MK
3996 size = i_size_read(mapping->host) >> huge_page_shift(h);
3997 if (idx >= size)
3998 goto out;
3999
1a1aad8a
MK
4000 /*
4001 * Check for page in userfault range
4002 */
4003 if (userfaultfd_missing(vma)) {
4004 u32 hash;
4005 struct vm_fault vmf = {
4006 .vma = vma,
285b8dca 4007 .address = haddr,
1a1aad8a
MK
4008 .flags = flags,
4009 /*
4010 * Hard to debug if it ends up being
4011 * used by a callee that assumes
4012 * something about the other
4013 * uninitialized fields... same as in
4014 * memory.c
4015 */
4016 };
4017
4018 /*
ddeaab32
MK
4019 * hugetlb_fault_mutex must be dropped before
4020 * handling userfault. Reacquire after handling
4021 * fault to make calling code simpler.
1a1aad8a 4022 */
5e3cb663 4023 hash = hugetlb_fault_mutex_hash(h, mapping, idx);
1a1aad8a
MK
4024 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
4025 ret = handle_userfault(&vmf, VM_UFFD_MISSING);
4026 mutex_lock(&hugetlb_fault_mutex_table[hash]);
4027 goto out;
4028 }
4029
285b8dca 4030 page = alloc_huge_page(vma, haddr, 0);
2fc39cec 4031 if (IS_ERR(page)) {
4643d67e
MK
4032 /*
4033 * Returning error will result in faulting task being
4034 * sent SIGBUS. The hugetlb fault mutex prevents two
4035 * tasks from racing to fault in the same page which
4036 * could result in false unable to allocate errors.
4037 * Page migration does not take the fault mutex, but
4038 * does a clear then write of pte's under page table
4039 * lock. Page fault code could race with migration,
4040 * notice the clear pte and try to allocate a page
4041 * here. Before returning error, get ptl and make
4042 * sure there really is no pte entry.
4043 */
4044 ptl = huge_pte_lock(h, mm, ptep);
4045 if (!huge_pte_none(huge_ptep_get(ptep))) {
4046 ret = 0;
4047 spin_unlock(ptl);
4048 goto out;
4049 }
4050 spin_unlock(ptl);
2b740303 4051 ret = vmf_error(PTR_ERR(page));
6bda666a
CL
4052 goto out;
4053 }
47ad8475 4054 clear_huge_page(page, address, pages_per_huge_page(h));
0ed361de 4055 __SetPageUptodate(page);
cb6acd01 4056 new_page = true;
ac9b9c66 4057
f83a275d 4058 if (vma->vm_flags & VM_MAYSHARE) {
ab76ad54 4059 int err = huge_add_to_page_cache(page, mapping, idx);
6bda666a
CL
4060 if (err) {
4061 put_page(page);
6bda666a
CL
4062 if (err == -EEXIST)
4063 goto retry;
4064 goto out;
4065 }
23be7468 4066 } else {
6bda666a 4067 lock_page(page);
0fe6e20b
NH
4068 if (unlikely(anon_vma_prepare(vma))) {
4069 ret = VM_FAULT_OOM;
4070 goto backout_unlocked;
4071 }
409eb8c2 4072 anon_rmap = 1;
23be7468 4073 }
0fe6e20b 4074 } else {
998b4382
NH
4075 /*
4076 * If memory error occurs between mmap() and fault, some process
4077 * don't have hwpoisoned swap entry for errored virtual address.
4078 * So we need to block hugepage fault by PG_hwpoison bit check.
4079 */
4080 if (unlikely(PageHWPoison(page))) {
61edc516 4081 ret = VM_FAULT_HWPOISON_LARGE |
972dc4de 4082 VM_FAULT_SET_HINDEX(hstate_index(h));
998b4382
NH
4083 goto backout_unlocked;
4084 }
6bda666a 4085 }
1e8f889b 4086
57303d80
AW
4087 /*
4088 * If we are going to COW a private mapping later, we examine the
4089 * pending reservations for this page now. This will ensure that
4090 * any allocations necessary to record that reservation occur outside
4091 * the spinlock.
4092 */
5e911373 4093 if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
285b8dca 4094 if (vma_needs_reservation(h, vma, haddr) < 0) {
2b26736c
AW
4095 ret = VM_FAULT_OOM;
4096 goto backout_unlocked;
4097 }
5e911373 4098 /* Just decrements count, does not deallocate */
285b8dca 4099 vma_end_reservation(h, vma, haddr);
5e911373 4100 }
57303d80 4101
8bea8052 4102 ptl = huge_pte_lock(h, mm, ptep);
e7c58097
MK
4103 size = i_size_read(mapping->host) >> huge_page_shift(h);
4104 if (idx >= size)
4105 goto backout;
4c887265 4106
83c54070 4107 ret = 0;
7f2e9525 4108 if (!huge_pte_none(huge_ptep_get(ptep)))
4c887265
AL
4109 goto backout;
4110
07443a85
JK
4111 if (anon_rmap) {
4112 ClearPagePrivate(page);
285b8dca 4113 hugepage_add_new_anon_rmap(page, vma, haddr);
ac714904 4114 } else
53f9263b 4115 page_dup_rmap(page, true);
1e8f889b
DG
4116 new_pte = make_huge_pte(vma, page, ((vma->vm_flags & VM_WRITE)
4117 && (vma->vm_flags & VM_SHARED)));
285b8dca 4118 set_huge_pte_at(mm, haddr, ptep, new_pte);
1e8f889b 4119
5d317b2b 4120 hugetlb_count_add(pages_per_huge_page(h), mm);
788c7df4 4121 if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
1e8f889b 4122 /* Optimization, do the COW without a second fault */
974e6d66 4123 ret = hugetlb_cow(mm, vma, address, ptep, page, ptl);
1e8f889b
DG
4124 }
4125
cb900f41 4126 spin_unlock(ptl);
cb6acd01
MK
4127
4128 /*
4129 * Only make newly allocated pages active. Existing pages found
4130 * in the pagecache could be !page_huge_active() if they have been
4131 * isolated for migration.
4132 */
4133 if (new_page)
4134 set_page_huge_active(page);
4135
4c887265
AL
4136 unlock_page(page);
4137out:
ac9b9c66 4138 return ret;
4c887265
AL
4139
4140backout:
cb900f41 4141 spin_unlock(ptl);
2b26736c 4142backout_unlocked:
4c887265 4143 unlock_page(page);
285b8dca 4144 restore_reserve_on_error(h, vma, haddr, page);
4c887265
AL
4145 put_page(page);
4146 goto out;
ac9b9c66
HD
4147}
4148
8382d914 4149#ifdef CONFIG_SMP
1b426bac 4150u32 hugetlb_fault_mutex_hash(struct hstate *h, struct address_space *mapping,
5e3cb663 4151 pgoff_t idx)
8382d914
DB
4152{
4153 unsigned long key[2];
4154 u32 hash;
4155
1b426bac
MK
4156 key[0] = (unsigned long) mapping;
4157 key[1] = idx;
8382d914 4158
5e3cb663 4159 hash = jhash2((u32 *)&key, sizeof(key)/(sizeof(u32)), 0);
8382d914
DB
4160
4161 return hash & (num_fault_mutexes - 1);
4162}
4163#else
4164/*
4165 * For uniprocesor systems we always use a single mutex, so just
4166 * return 0 and avoid the hashing overhead.
4167 */
1b426bac 4168u32 hugetlb_fault_mutex_hash(struct hstate *h, struct address_space *mapping,
5e3cb663 4169 pgoff_t idx)
8382d914
DB
4170{
4171 return 0;
4172}
4173#endif
4174
2b740303 4175vm_fault_t hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
788c7df4 4176 unsigned long address, unsigned int flags)
86e5216f 4177{
8382d914 4178 pte_t *ptep, entry;
cb900f41 4179 spinlock_t *ptl;
2b740303 4180 vm_fault_t ret;
8382d914
DB
4181 u32 hash;
4182 pgoff_t idx;
0fe6e20b 4183 struct page *page = NULL;
57303d80 4184 struct page *pagecache_page = NULL;
a5516438 4185 struct hstate *h = hstate_vma(vma);
8382d914 4186 struct address_space *mapping;
0f792cf9 4187 int need_wait_lock = 0;
285b8dca 4188 unsigned long haddr = address & huge_page_mask(h);
86e5216f 4189
285b8dca 4190 ptep = huge_pte_offset(mm, haddr, huge_page_size(h));
fd6a03ed
NH
4191 if (ptep) {
4192 entry = huge_ptep_get(ptep);
290408d4 4193 if (unlikely(is_hugetlb_entry_migration(entry))) {
cb900f41 4194 migration_entry_wait_huge(vma, mm, ptep);
290408d4
NH
4195 return 0;
4196 } else if (unlikely(is_hugetlb_entry_hwpoisoned(entry)))
32f84528 4197 return VM_FAULT_HWPOISON_LARGE |
972dc4de 4198 VM_FAULT_SET_HINDEX(hstate_index(h));
ddeaab32
MK
4199 } else {
4200 ptep = huge_pte_alloc(mm, haddr, huge_page_size(h));
4201 if (!ptep)
4202 return VM_FAULT_OOM;
fd6a03ed
NH
4203 }
4204
8382d914 4205 mapping = vma->vm_file->f_mapping;
ddeaab32 4206 idx = vma_hugecache_offset(h, vma, haddr);
8382d914 4207
3935baa9
DG
4208 /*
4209 * Serialize hugepage allocation and instantiation, so that we don't
4210 * get spurious allocation failures if two CPUs race to instantiate
4211 * the same page in the page cache.
4212 */
5e3cb663 4213 hash = hugetlb_fault_mutex_hash(h, mapping, idx);
c672c7f2 4214 mutex_lock(&hugetlb_fault_mutex_table[hash]);
8382d914 4215
7f2e9525
GS
4216 entry = huge_ptep_get(ptep);
4217 if (huge_pte_none(entry)) {
8382d914 4218 ret = hugetlb_no_page(mm, vma, mapping, idx, address, ptep, flags);
b4d1d99f 4219 goto out_mutex;
3935baa9 4220 }
86e5216f 4221
83c54070 4222 ret = 0;
1e8f889b 4223
0f792cf9
NH
4224 /*
4225 * entry could be a migration/hwpoison entry at this point, so this
4226 * check prevents the kernel from going below assuming that we have
4227 * a active hugepage in pagecache. This goto expects the 2nd page fault,
4228 * and is_hugetlb_entry_(migration|hwpoisoned) check will properly
4229 * handle it.
4230 */
4231 if (!pte_present(entry))
4232 goto out_mutex;
4233
57303d80
AW
4234 /*
4235 * If we are going to COW the mapping later, we examine the pending
4236 * reservations for this page now. This will ensure that any
4237 * allocations necessary to record that reservation occur outside the
4238 * spinlock. For private mappings, we also lookup the pagecache
4239 * page now as it is used to determine if a reservation has been
4240 * consumed.
4241 */
106c992a 4242 if ((flags & FAULT_FLAG_WRITE) && !huge_pte_write(entry)) {
285b8dca 4243 if (vma_needs_reservation(h, vma, haddr) < 0) {
2b26736c 4244 ret = VM_FAULT_OOM;
b4d1d99f 4245 goto out_mutex;
2b26736c 4246 }
5e911373 4247 /* Just decrements count, does not deallocate */
285b8dca 4248 vma_end_reservation(h, vma, haddr);
57303d80 4249
f83a275d 4250 if (!(vma->vm_flags & VM_MAYSHARE))
57303d80 4251 pagecache_page = hugetlbfs_pagecache_page(h,
285b8dca 4252 vma, haddr);
57303d80
AW
4253 }
4254
0f792cf9
NH
4255 ptl = huge_pte_lock(h, mm, ptep);
4256
4257 /* Check for a racing update before calling hugetlb_cow */
4258 if (unlikely(!pte_same(entry, huge_ptep_get(ptep))))
4259 goto out_ptl;
4260
56c9cfb1
NH
4261 /*
4262 * hugetlb_cow() requires page locks of pte_page(entry) and
4263 * pagecache_page, so here we need take the former one
4264 * when page != pagecache_page or !pagecache_page.
56c9cfb1
NH
4265 */
4266 page = pte_page(entry);
4267 if (page != pagecache_page)
0f792cf9
NH
4268 if (!trylock_page(page)) {
4269 need_wait_lock = 1;
4270 goto out_ptl;
4271 }
b4d1d99f 4272
0f792cf9 4273 get_page(page);
b4d1d99f 4274
788c7df4 4275 if (flags & FAULT_FLAG_WRITE) {
106c992a 4276 if (!huge_pte_write(entry)) {
974e6d66 4277 ret = hugetlb_cow(mm, vma, address, ptep,
3999f52e 4278 pagecache_page, ptl);
0f792cf9 4279 goto out_put_page;
b4d1d99f 4280 }
106c992a 4281 entry = huge_pte_mkdirty(entry);
b4d1d99f
DG
4282 }
4283 entry = pte_mkyoung(entry);
285b8dca 4284 if (huge_ptep_set_access_flags(vma, haddr, ptep, entry,
788c7df4 4285 flags & FAULT_FLAG_WRITE))
285b8dca 4286 update_mmu_cache(vma, haddr, ptep);
0f792cf9
NH
4287out_put_page:
4288 if (page != pagecache_page)
4289 unlock_page(page);
4290 put_page(page);
cb900f41
KS
4291out_ptl:
4292 spin_unlock(ptl);
57303d80
AW
4293
4294 if (pagecache_page) {
4295 unlock_page(pagecache_page);
4296 put_page(pagecache_page);
4297 }
b4d1d99f 4298out_mutex:
c672c7f2 4299 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
0f792cf9
NH
4300 /*
4301 * Generally it's safe to hold refcount during waiting page lock. But
4302 * here we just wait to defer the next page fault to avoid busy loop and
4303 * the page is not used after unlocked before returning from the current
4304 * page fault. So we are safe from accessing freed page, even if we wait
4305 * here without taking refcount.
4306 */
4307 if (need_wait_lock)
4308 wait_on_page_locked(page);
1e8f889b 4309 return ret;
86e5216f
AL
4310}
4311
8fb5debc
MK
4312/*
4313 * Used by userfaultfd UFFDIO_COPY. Based on mcopy_atomic_pte with
4314 * modifications for huge pages.
4315 */
4316int hugetlb_mcopy_atomic_pte(struct mm_struct *dst_mm,
4317 pte_t *dst_pte,
4318 struct vm_area_struct *dst_vma,
4319 unsigned long dst_addr,
4320 unsigned long src_addr,
4321 struct page **pagep)
4322{
1e392147
AA
4323 struct address_space *mapping;
4324 pgoff_t idx;
4325 unsigned long size;
1c9e8def 4326 int vm_shared = dst_vma->vm_flags & VM_SHARED;
8fb5debc
MK
4327 struct hstate *h = hstate_vma(dst_vma);
4328 pte_t _dst_pte;
4329 spinlock_t *ptl;
4330 int ret;
4331 struct page *page;
4332
4333 if (!*pagep) {
4334 ret = -ENOMEM;
4335 page = alloc_huge_page(dst_vma, dst_addr, 0);
4336 if (IS_ERR(page))
4337 goto out;
4338
4339 ret = copy_huge_page_from_user(page,
4340 (const void __user *) src_addr,
810a56b9 4341 pages_per_huge_page(h), false);
8fb5debc
MK
4342
4343 /* fallback to copy_from_user outside mmap_sem */
4344 if (unlikely(ret)) {
9e368259 4345 ret = -ENOENT;
8fb5debc
MK
4346 *pagep = page;
4347 /* don't free the page */
4348 goto out;
4349 }
4350 } else {
4351 page = *pagep;
4352 *pagep = NULL;
4353 }
4354
4355 /*
4356 * The memory barrier inside __SetPageUptodate makes sure that
4357 * preceding stores to the page contents become visible before
4358 * the set_pte_at() write.
4359 */
4360 __SetPageUptodate(page);
8fb5debc 4361
1e392147
AA
4362 mapping = dst_vma->vm_file->f_mapping;
4363 idx = vma_hugecache_offset(h, dst_vma, dst_addr);
4364
1c9e8def
MK
4365 /*
4366 * If shared, add to page cache
4367 */
4368 if (vm_shared) {
1e392147
AA
4369 size = i_size_read(mapping->host) >> huge_page_shift(h);
4370 ret = -EFAULT;
4371 if (idx >= size)
4372 goto out_release_nounlock;
1c9e8def 4373
1e392147
AA
4374 /*
4375 * Serialization between remove_inode_hugepages() and
4376 * huge_add_to_page_cache() below happens through the
4377 * hugetlb_fault_mutex_table that here must be hold by
4378 * the caller.
4379 */
1c9e8def
MK
4380 ret = huge_add_to_page_cache(page, mapping, idx);
4381 if (ret)
4382 goto out_release_nounlock;
4383 }
4384
8fb5debc
MK
4385 ptl = huge_pte_lockptr(h, dst_mm, dst_pte);
4386 spin_lock(ptl);
4387
1e392147
AA
4388 /*
4389 * Recheck the i_size after holding PT lock to make sure not
4390 * to leave any page mapped (as page_mapped()) beyond the end
4391 * of the i_size (remove_inode_hugepages() is strict about
4392 * enforcing that). If we bail out here, we'll also leave a
4393 * page in the radix tree in the vm_shared case beyond the end
4394 * of the i_size, but remove_inode_hugepages() will take care
4395 * of it as soon as we drop the hugetlb_fault_mutex_table.
4396 */
4397 size = i_size_read(mapping->host) >> huge_page_shift(h);
4398 ret = -EFAULT;
4399 if (idx >= size)
4400 goto out_release_unlock;
4401
8fb5debc
MK
4402 ret = -EEXIST;
4403 if (!huge_pte_none(huge_ptep_get(dst_pte)))
4404 goto out_release_unlock;
4405
1c9e8def
MK
4406 if (vm_shared) {
4407 page_dup_rmap(page, true);
4408 } else {
4409 ClearPagePrivate(page);
4410 hugepage_add_new_anon_rmap(page, dst_vma, dst_addr);
4411 }
8fb5debc
MK
4412
4413 _dst_pte = make_huge_pte(dst_vma, page, dst_vma->vm_flags & VM_WRITE);
4414 if (dst_vma->vm_flags & VM_WRITE)
4415 _dst_pte = huge_pte_mkdirty(_dst_pte);
4416 _dst_pte = pte_mkyoung(_dst_pte);
4417
4418 set_huge_pte_at(dst_mm, dst_addr, dst_pte, _dst_pte);
4419
4420 (void)huge_ptep_set_access_flags(dst_vma, dst_addr, dst_pte, _dst_pte,
4421 dst_vma->vm_flags & VM_WRITE);
4422 hugetlb_count_add(pages_per_huge_page(h), dst_mm);
4423
4424 /* No need to invalidate - it was non-present before */
4425 update_mmu_cache(dst_vma, dst_addr, dst_pte);
4426
4427 spin_unlock(ptl);
cb6acd01 4428 set_page_huge_active(page);
1c9e8def
MK
4429 if (vm_shared)
4430 unlock_page(page);
8fb5debc
MK
4431 ret = 0;
4432out:
4433 return ret;
4434out_release_unlock:
4435 spin_unlock(ptl);
1c9e8def
MK
4436 if (vm_shared)
4437 unlock_page(page);
5af10dfd 4438out_release_nounlock:
8fb5debc
MK
4439 put_page(page);
4440 goto out;
4441}
4442
28a35716
ML
4443long follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma,
4444 struct page **pages, struct vm_area_struct **vmas,
4445 unsigned long *position, unsigned long *nr_pages,
87ffc118 4446 long i, unsigned int flags, int *nonblocking)
63551ae0 4447{
d5d4b0aa
KC
4448 unsigned long pfn_offset;
4449 unsigned long vaddr = *position;
28a35716 4450 unsigned long remainder = *nr_pages;
a5516438 4451 struct hstate *h = hstate_vma(vma);
2be7cfed 4452 int err = -EFAULT;
63551ae0 4453
63551ae0 4454 while (vaddr < vma->vm_end && remainder) {
4c887265 4455 pte_t *pte;
cb900f41 4456 spinlock_t *ptl = NULL;
2a15efc9 4457 int absent;
4c887265 4458 struct page *page;
63551ae0 4459
02057967
DR
4460 /*
4461 * If we have a pending SIGKILL, don't keep faulting pages and
4462 * potentially allocating memory.
4463 */
fa45f116 4464 if (fatal_signal_pending(current)) {
02057967
DR
4465 remainder = 0;
4466 break;
4467 }
4468
4c887265
AL
4469 /*
4470 * Some archs (sparc64, sh*) have multiple pte_ts to
2a15efc9 4471 * each hugepage. We have to make sure we get the
4c887265 4472 * first, for the page indexing below to work.
cb900f41
KS
4473 *
4474 * Note that page table lock is not held when pte is null.
4c887265 4475 */
7868a208
PA
4476 pte = huge_pte_offset(mm, vaddr & huge_page_mask(h),
4477 huge_page_size(h));
cb900f41
KS
4478 if (pte)
4479 ptl = huge_pte_lock(h, mm, pte);
2a15efc9
HD
4480 absent = !pte || huge_pte_none(huge_ptep_get(pte));
4481
4482 /*
4483 * When coredumping, it suits get_dump_page if we just return
3ae77f43
HD
4484 * an error where there's an empty slot with no huge pagecache
4485 * to back it. This way, we avoid allocating a hugepage, and
4486 * the sparse dumpfile avoids allocating disk blocks, but its
4487 * huge holes still show up with zeroes where they need to be.
2a15efc9 4488 */
3ae77f43
HD
4489 if (absent && (flags & FOLL_DUMP) &&
4490 !hugetlbfs_pagecache_present(h, vma, vaddr)) {
cb900f41
KS
4491 if (pte)
4492 spin_unlock(ptl);
2a15efc9
HD
4493 remainder = 0;
4494 break;
4495 }
63551ae0 4496
9cc3a5bd
NH
4497 /*
4498 * We need call hugetlb_fault for both hugepages under migration
4499 * (in which case hugetlb_fault waits for the migration,) and
4500 * hwpoisoned hugepages (in which case we need to prevent the
4501 * caller from accessing to them.) In order to do this, we use
4502 * here is_swap_pte instead of is_hugetlb_entry_migration and
4503 * is_hugetlb_entry_hwpoisoned. This is because it simply covers
4504 * both cases, and because we can't follow correct pages
4505 * directly from any kind of swap entries.
4506 */
4507 if (absent || is_swap_pte(huge_ptep_get(pte)) ||
106c992a
GS
4508 ((flags & FOLL_WRITE) &&
4509 !huge_pte_write(huge_ptep_get(pte)))) {
2b740303 4510 vm_fault_t ret;
87ffc118 4511 unsigned int fault_flags = 0;
63551ae0 4512
cb900f41
KS
4513 if (pte)
4514 spin_unlock(ptl);
87ffc118
AA
4515 if (flags & FOLL_WRITE)
4516 fault_flags |= FAULT_FLAG_WRITE;
4517 if (nonblocking)
4518 fault_flags |= FAULT_FLAG_ALLOW_RETRY;
4519 if (flags & FOLL_NOWAIT)
4520 fault_flags |= FAULT_FLAG_ALLOW_RETRY |
4521 FAULT_FLAG_RETRY_NOWAIT;
4522 if (flags & FOLL_TRIED) {
4523 VM_WARN_ON_ONCE(fault_flags &
4524 FAULT_FLAG_ALLOW_RETRY);
4525 fault_flags |= FAULT_FLAG_TRIED;
4526 }
4527 ret = hugetlb_fault(mm, vma, vaddr, fault_flags);
4528 if (ret & VM_FAULT_ERROR) {
2be7cfed 4529 err = vm_fault_to_errno(ret, flags);
87ffc118
AA
4530 remainder = 0;
4531 break;
4532 }
4533 if (ret & VM_FAULT_RETRY) {
1ac25013
AA
4534 if (nonblocking &&
4535 !(fault_flags & FAULT_FLAG_RETRY_NOWAIT))
87ffc118
AA
4536 *nonblocking = 0;
4537 *nr_pages = 0;
4538 /*
4539 * VM_FAULT_RETRY must not return an
4540 * error, it will return zero
4541 * instead.
4542 *
4543 * No need to update "position" as the
4544 * caller will not check it after
4545 * *nr_pages is set to 0.
4546 */
4547 return i;
4548 }
4549 continue;
4c887265
AL
4550 }
4551
a5516438 4552 pfn_offset = (vaddr & ~huge_page_mask(h)) >> PAGE_SHIFT;
7f2e9525 4553 page = pte_page(huge_ptep_get(pte));
8fde12ca
LT
4554
4555 /*
4556 * Instead of doing 'try_get_page()' below in the same_page
4557 * loop, just check the count once here.
4558 */
4559 if (unlikely(page_count(page) <= 0)) {
4560 if (pages) {
4561 spin_unlock(ptl);
4562 remainder = 0;
4563 err = -ENOMEM;
4564 break;
4565 }
4566 }
d5d4b0aa 4567same_page:
d6692183 4568 if (pages) {
2a15efc9 4569 pages[i] = mem_map_offset(page, pfn_offset);
ddc58f27 4570 get_page(pages[i]);
d6692183 4571 }
63551ae0
DG
4572
4573 if (vmas)
4574 vmas[i] = vma;
4575
4576 vaddr += PAGE_SIZE;
d5d4b0aa 4577 ++pfn_offset;
63551ae0
DG
4578 --remainder;
4579 ++i;
d5d4b0aa 4580 if (vaddr < vma->vm_end && remainder &&
a5516438 4581 pfn_offset < pages_per_huge_page(h)) {
d5d4b0aa
KC
4582 /*
4583 * We use pfn_offset to avoid touching the pageframes
4584 * of this compound page.
4585 */
4586 goto same_page;
4587 }
cb900f41 4588 spin_unlock(ptl);
63551ae0 4589 }
28a35716 4590 *nr_pages = remainder;
87ffc118
AA
4591 /*
4592 * setting position is actually required only if remainder is
4593 * not zero but it's faster not to add a "if (remainder)"
4594 * branch.
4595 */
63551ae0
DG
4596 *position = vaddr;
4597
2be7cfed 4598 return i ? i : err;
63551ae0 4599}
8f860591 4600
5491ae7b
AK
4601#ifndef __HAVE_ARCH_FLUSH_HUGETLB_TLB_RANGE
4602/*
4603 * ARCHes with special requirements for evicting HUGETLB backing TLB entries can
4604 * implement this.
4605 */
4606#define flush_hugetlb_tlb_range(vma, addr, end) flush_tlb_range(vma, addr, end)
4607#endif
4608
7da4d641 4609unsigned long hugetlb_change_protection(struct vm_area_struct *vma,
8f860591
ZY
4610 unsigned long address, unsigned long end, pgprot_t newprot)
4611{
4612 struct mm_struct *mm = vma->vm_mm;
4613 unsigned long start = address;
4614 pte_t *ptep;
4615 pte_t pte;
a5516438 4616 struct hstate *h = hstate_vma(vma);
7da4d641 4617 unsigned long pages = 0;
dff11abe 4618 bool shared_pmd = false;
ac46d4f3 4619 struct mmu_notifier_range range;
dff11abe
MK
4620
4621 /*
4622 * In the case of shared PMDs, the area to flush could be beyond
ac46d4f3 4623 * start/end. Set range.start/range.end to cover the maximum possible
dff11abe
MK
4624 * range if PMD sharing is possible.
4625 */
7269f999
JG
4626 mmu_notifier_range_init(&range, MMU_NOTIFY_PROTECTION_VMA,
4627 0, vma, mm, start, end);
ac46d4f3 4628 adjust_range_if_pmd_sharing_possible(vma, &range.start, &range.end);
8f860591
ZY
4629
4630 BUG_ON(address >= end);
ac46d4f3 4631 flush_cache_range(vma, range.start, range.end);
8f860591 4632
ac46d4f3 4633 mmu_notifier_invalidate_range_start(&range);
83cde9e8 4634 i_mmap_lock_write(vma->vm_file->f_mapping);
a5516438 4635 for (; address < end; address += huge_page_size(h)) {
cb900f41 4636 spinlock_t *ptl;
7868a208 4637 ptep = huge_pte_offset(mm, address, huge_page_size(h));
8f860591
ZY
4638 if (!ptep)
4639 continue;
cb900f41 4640 ptl = huge_pte_lock(h, mm, ptep);
7da4d641
PZ
4641 if (huge_pmd_unshare(mm, &address, ptep)) {
4642 pages++;
cb900f41 4643 spin_unlock(ptl);
dff11abe 4644 shared_pmd = true;
39dde65c 4645 continue;
7da4d641 4646 }
a8bda28d
NH
4647 pte = huge_ptep_get(ptep);
4648 if (unlikely(is_hugetlb_entry_hwpoisoned(pte))) {
4649 spin_unlock(ptl);
4650 continue;
4651 }
4652 if (unlikely(is_hugetlb_entry_migration(pte))) {
4653 swp_entry_t entry = pte_to_swp_entry(pte);
4654
4655 if (is_write_migration_entry(entry)) {
4656 pte_t newpte;
4657
4658 make_migration_entry_read(&entry);
4659 newpte = swp_entry_to_pte(entry);
e5251fd4
PA
4660 set_huge_swap_pte_at(mm, address, ptep,
4661 newpte, huge_page_size(h));
a8bda28d
NH
4662 pages++;
4663 }
4664 spin_unlock(ptl);
4665 continue;
4666 }
4667 if (!huge_pte_none(pte)) {
023bdd00
AK
4668 pte_t old_pte;
4669
4670 old_pte = huge_ptep_modify_prot_start(vma, address, ptep);
4671 pte = pte_mkhuge(huge_pte_modify(old_pte, newprot));
be7517d6 4672 pte = arch_make_huge_pte(pte, vma, NULL, 0);
023bdd00 4673 huge_ptep_modify_prot_commit(vma, address, ptep, old_pte, pte);
7da4d641 4674 pages++;
8f860591 4675 }
cb900f41 4676 spin_unlock(ptl);
8f860591 4677 }
d833352a 4678 /*
c8c06efa 4679 * Must flush TLB before releasing i_mmap_rwsem: x86's huge_pmd_unshare
d833352a 4680 * may have cleared our pud entry and done put_page on the page table:
c8c06efa 4681 * once we release i_mmap_rwsem, another task can do the final put_page
dff11abe
MK
4682 * and that page table be reused and filled with junk. If we actually
4683 * did unshare a page of pmds, flush the range corresponding to the pud.
d833352a 4684 */
dff11abe 4685 if (shared_pmd)
ac46d4f3 4686 flush_hugetlb_tlb_range(vma, range.start, range.end);
dff11abe
MK
4687 else
4688 flush_hugetlb_tlb_range(vma, start, end);
0f10851e
JG
4689 /*
4690 * No need to call mmu_notifier_invalidate_range() we are downgrading
4691 * page table protection not changing it to point to a new page.
4692 *
ad56b738 4693 * See Documentation/vm/mmu_notifier.rst
0f10851e 4694 */
83cde9e8 4695 i_mmap_unlock_write(vma->vm_file->f_mapping);
ac46d4f3 4696 mmu_notifier_invalidate_range_end(&range);
7da4d641
PZ
4697
4698 return pages << h->order;
8f860591
ZY
4699}
4700
a1e78772
MG
4701int hugetlb_reserve_pages(struct inode *inode,
4702 long from, long to,
5a6fe125 4703 struct vm_area_struct *vma,
ca16d140 4704 vm_flags_t vm_flags)
e4e574b7 4705{
17c9d12e 4706 long ret, chg;
a5516438 4707 struct hstate *h = hstate_inode(inode);
90481622 4708 struct hugepage_subpool *spool = subpool_inode(inode);
9119a41e 4709 struct resv_map *resv_map;
1c5ecae3 4710 long gbl_reserve;
e4e574b7 4711
63489f8e
MK
4712 /* This should never happen */
4713 if (from > to) {
4714 VM_WARN(1, "%s called with a negative range\n", __func__);
4715 return -EINVAL;
4716 }
4717
17c9d12e
MG
4718 /*
4719 * Only apply hugepage reservation if asked. At fault time, an
4720 * attempt will be made for VM_NORESERVE to allocate a page
90481622 4721 * without using reserves
17c9d12e 4722 */
ca16d140 4723 if (vm_flags & VM_NORESERVE)
17c9d12e
MG
4724 return 0;
4725
a1e78772
MG
4726 /*
4727 * Shared mappings base their reservation on the number of pages that
4728 * are already allocated on behalf of the file. Private mappings need
4729 * to reserve the full area even if read-only as mprotect() may be
4730 * called to make the mapping read-write. Assume !vma is a shm mapping
4731 */
9119a41e 4732 if (!vma || vma->vm_flags & VM_MAYSHARE) {
f27a5136
MK
4733 /*
4734 * resv_map can not be NULL as hugetlb_reserve_pages is only
4735 * called for inodes for which resv_maps were created (see
4736 * hugetlbfs_get_inode).
4737 */
4e35f483 4738 resv_map = inode_resv_map(inode);
9119a41e 4739
1406ec9b 4740 chg = region_chg(resv_map, from, to);
9119a41e
JK
4741
4742 } else {
4743 resv_map = resv_map_alloc();
17c9d12e
MG
4744 if (!resv_map)
4745 return -ENOMEM;
4746
a1e78772 4747 chg = to - from;
84afd99b 4748
17c9d12e
MG
4749 set_vma_resv_map(vma, resv_map);
4750 set_vma_resv_flags(vma, HPAGE_RESV_OWNER);
4751 }
4752
c50ac050
DH
4753 if (chg < 0) {
4754 ret = chg;
4755 goto out_err;
4756 }
8a630112 4757
1c5ecae3
MK
4758 /*
4759 * There must be enough pages in the subpool for the mapping. If
4760 * the subpool has a minimum size, there may be some global
4761 * reservations already in place (gbl_reserve).
4762 */
4763 gbl_reserve = hugepage_subpool_get_pages(spool, chg);
4764 if (gbl_reserve < 0) {
c50ac050
DH
4765 ret = -ENOSPC;
4766 goto out_err;
4767 }
5a6fe125
MG
4768
4769 /*
17c9d12e 4770 * Check enough hugepages are available for the reservation.
90481622 4771 * Hand the pages back to the subpool if there are not
5a6fe125 4772 */
1c5ecae3 4773 ret = hugetlb_acct_memory(h, gbl_reserve);
68842c9b 4774 if (ret < 0) {
1c5ecae3
MK
4775 /* put back original number of pages, chg */
4776 (void)hugepage_subpool_put_pages(spool, chg);
c50ac050 4777 goto out_err;
68842c9b 4778 }
17c9d12e
MG
4779
4780 /*
4781 * Account for the reservations made. Shared mappings record regions
4782 * that have reservations as they are shared by multiple VMAs.
4783 * When the last VMA disappears, the region map says how much
4784 * the reservation was and the page cache tells how much of
4785 * the reservation was consumed. Private mappings are per-VMA and
4786 * only the consumed reservations are tracked. When the VMA
4787 * disappears, the original reservation is the VMA size and the
4788 * consumed reservations are stored in the map. Hence, nothing
4789 * else has to be done for private mappings here
4790 */
33039678
MK
4791 if (!vma || vma->vm_flags & VM_MAYSHARE) {
4792 long add = region_add(resv_map, from, to);
4793
4794 if (unlikely(chg > add)) {
4795 /*
4796 * pages in this range were added to the reserve
4797 * map between region_chg and region_add. This
4798 * indicates a race with alloc_huge_page. Adjust
4799 * the subpool and reserve counts modified above
4800 * based on the difference.
4801 */
4802 long rsv_adjust;
4803
4804 rsv_adjust = hugepage_subpool_put_pages(spool,
4805 chg - add);
4806 hugetlb_acct_memory(h, -rsv_adjust);
4807 }
4808 }
a43a8c39 4809 return 0;
c50ac050 4810out_err:
5e911373 4811 if (!vma || vma->vm_flags & VM_MAYSHARE)
ff8c0c53
MK
4812 /* Don't call region_abort if region_chg failed */
4813 if (chg >= 0)
4814 region_abort(resv_map, from, to);
f031dd27
JK
4815 if (vma && is_vma_resv_set(vma, HPAGE_RESV_OWNER))
4816 kref_put(&resv_map->refs, resv_map_release);
c50ac050 4817 return ret;
a43a8c39
KC
4818}
4819
b5cec28d
MK
4820long hugetlb_unreserve_pages(struct inode *inode, long start, long end,
4821 long freed)
a43a8c39 4822{
a5516438 4823 struct hstate *h = hstate_inode(inode);
4e35f483 4824 struct resv_map *resv_map = inode_resv_map(inode);
9119a41e 4825 long chg = 0;
90481622 4826 struct hugepage_subpool *spool = subpool_inode(inode);
1c5ecae3 4827 long gbl_reserve;
45c682a6 4828
f27a5136
MK
4829 /*
4830 * Since this routine can be called in the evict inode path for all
4831 * hugetlbfs inodes, resv_map could be NULL.
4832 */
b5cec28d
MK
4833 if (resv_map) {
4834 chg = region_del(resv_map, start, end);
4835 /*
4836 * region_del() can fail in the rare case where a region
4837 * must be split and another region descriptor can not be
4838 * allocated. If end == LONG_MAX, it will not fail.
4839 */
4840 if (chg < 0)
4841 return chg;
4842 }
4843
45c682a6 4844 spin_lock(&inode->i_lock);
e4c6f8be 4845 inode->i_blocks -= (blocks_per_huge_page(h) * freed);
45c682a6
KC
4846 spin_unlock(&inode->i_lock);
4847
1c5ecae3
MK
4848 /*
4849 * If the subpool has a minimum size, the number of global
4850 * reservations to be released may be adjusted.
4851 */
4852 gbl_reserve = hugepage_subpool_put_pages(spool, (chg - freed));
4853 hugetlb_acct_memory(h, -gbl_reserve);
b5cec28d
MK
4854
4855 return 0;
a43a8c39 4856}
93f70f90 4857
3212b535
SC
4858#ifdef CONFIG_ARCH_WANT_HUGE_PMD_SHARE
4859static unsigned long page_table_shareable(struct vm_area_struct *svma,
4860 struct vm_area_struct *vma,
4861 unsigned long addr, pgoff_t idx)
4862{
4863 unsigned long saddr = ((idx - svma->vm_pgoff) << PAGE_SHIFT) +
4864 svma->vm_start;
4865 unsigned long sbase = saddr & PUD_MASK;
4866 unsigned long s_end = sbase + PUD_SIZE;
4867
4868 /* Allow segments to share if only one is marked locked */
de60f5f1
EM
4869 unsigned long vm_flags = vma->vm_flags & VM_LOCKED_CLEAR_MASK;
4870 unsigned long svm_flags = svma->vm_flags & VM_LOCKED_CLEAR_MASK;
3212b535
SC
4871
4872 /*
4873 * match the virtual addresses, permission and the alignment of the
4874 * page table page.
4875 */
4876 if (pmd_index(addr) != pmd_index(saddr) ||
4877 vm_flags != svm_flags ||
4878 sbase < svma->vm_start || svma->vm_end < s_end)
4879 return 0;
4880
4881 return saddr;
4882}
4883
31aafb45 4884static bool vma_shareable(struct vm_area_struct *vma, unsigned long addr)
3212b535
SC
4885{
4886 unsigned long base = addr & PUD_MASK;
4887 unsigned long end = base + PUD_SIZE;
4888
4889 /*
4890 * check on proper vm_flags and page table alignment
4891 */
017b1660 4892 if (vma->vm_flags & VM_MAYSHARE && range_in_vma(vma, base, end))
31aafb45
NK
4893 return true;
4894 return false;
3212b535
SC
4895}
4896
017b1660
MK
4897/*
4898 * Determine if start,end range within vma could be mapped by shared pmd.
4899 * If yes, adjust start and end to cover range associated with possible
4900 * shared pmd mappings.
4901 */
4902void adjust_range_if_pmd_sharing_possible(struct vm_area_struct *vma,
4903 unsigned long *start, unsigned long *end)
4904{
ce202e4b
LX
4905 unsigned long v_start = ALIGN(vma->vm_start, PUD_SIZE),
4906 v_end = ALIGN_DOWN(vma->vm_end, PUD_SIZE);
017b1660 4907
ce202e4b
LX
4908 /*
4909 * vma need span at least one aligned PUD size and the start,end range
4910 * must at least partialy within it.
4911 */
4912 if (!(vma->vm_flags & VM_MAYSHARE) || !(v_end > v_start) ||
4913 (*end <= v_start) || (*start >= v_end))
017b1660
MK
4914 return;
4915
6727dc93 4916 /* Extend the range to be PUD aligned for a worst case scenario */
ce202e4b
LX
4917 if (*start > v_start)
4918 *start = ALIGN_DOWN(*start, PUD_SIZE);
017b1660 4919
ce202e4b
LX
4920 if (*end < v_end)
4921 *end = ALIGN(*end, PUD_SIZE);
017b1660
MK
4922}
4923
3212b535
SC
4924/*
4925 * Search for a shareable pmd page for hugetlb. In any case calls pmd_alloc()
4926 * and returns the corresponding pte. While this is not necessary for the
4927 * !shared pmd case because we can allocate the pmd later as well, it makes the
ddeaab32
MK
4928 * code much cleaner. pmd allocation is essential for the shared case because
4929 * pud has to be populated inside the same i_mmap_rwsem section - otherwise
4930 * racing tasks could either miss the sharing (see huge_pte_offset) or select a
4931 * bad pmd for sharing.
3212b535
SC
4932 */
4933pte_t *huge_pmd_share(struct mm_struct *mm, unsigned long addr, pud_t *pud)
4934{
4935 struct vm_area_struct *vma = find_vma(mm, addr);
4936 struct address_space *mapping = vma->vm_file->f_mapping;
4937 pgoff_t idx = ((addr - vma->vm_start) >> PAGE_SHIFT) +
4938 vma->vm_pgoff;
4939 struct vm_area_struct *svma;
4940 unsigned long saddr;
4941 pte_t *spte = NULL;
4942 pte_t *pte;
cb900f41 4943 spinlock_t *ptl;
3212b535
SC
4944
4945 if (!vma_shareable(vma, addr))
4946 return (pte_t *)pmd_alloc(mm, pud, addr);
4947
6f21bb93 4948 i_mmap_lock_read(mapping);
3212b535
SC
4949 vma_interval_tree_foreach(svma, &mapping->i_mmap, idx, idx) {
4950 if (svma == vma)
4951 continue;
4952
4953 saddr = page_table_shareable(svma, vma, addr, idx);
4954 if (saddr) {
7868a208
PA
4955 spte = huge_pte_offset(svma->vm_mm, saddr,
4956 vma_mmu_pagesize(svma));
3212b535
SC
4957 if (spte) {
4958 get_page(virt_to_page(spte));
4959 break;
4960 }
4961 }
4962 }
4963
4964 if (!spte)
4965 goto out;
4966
8bea8052 4967 ptl = huge_pte_lock(hstate_vma(vma), mm, spte);
dc6c9a35 4968 if (pud_none(*pud)) {
3212b535
SC
4969 pud_populate(mm, pud,
4970 (pmd_t *)((unsigned long)spte & PAGE_MASK));
c17b1f42 4971 mm_inc_nr_pmds(mm);
dc6c9a35 4972 } else {
3212b535 4973 put_page(virt_to_page(spte));
dc6c9a35 4974 }
cb900f41 4975 spin_unlock(ptl);
3212b535
SC
4976out:
4977 pte = (pte_t *)pmd_alloc(mm, pud, addr);
6f21bb93 4978 i_mmap_unlock_read(mapping);
3212b535
SC
4979 return pte;
4980}
4981
4982/*
4983 * unmap huge page backed by shared pte.
4984 *
4985 * Hugetlb pte page is ref counted at the time of mapping. If pte is shared
4986 * indicated by page_count > 1, unmap is achieved by clearing pud and
4987 * decrementing the ref count. If count == 1, the pte page is not shared.
4988 *
ddeaab32 4989 * called with page table lock held.
3212b535
SC
4990 *
4991 * returns: 1 successfully unmapped a shared pte page
4992 * 0 the underlying pte page is not shared, or it is the last user
4993 */
4994int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep)
4995{
4996 pgd_t *pgd = pgd_offset(mm, *addr);
c2febafc
KS
4997 p4d_t *p4d = p4d_offset(pgd, *addr);
4998 pud_t *pud = pud_offset(p4d, *addr);
3212b535
SC
4999
5000 BUG_ON(page_count(virt_to_page(ptep)) == 0);
5001 if (page_count(virt_to_page(ptep)) == 1)
5002 return 0;
5003
5004 pud_clear(pud);
5005 put_page(virt_to_page(ptep));
dc6c9a35 5006 mm_dec_nr_pmds(mm);
3212b535
SC
5007 *addr = ALIGN(*addr, HPAGE_SIZE * PTRS_PER_PTE) - HPAGE_SIZE;
5008 return 1;
5009}
9e5fc74c
SC
5010#define want_pmd_share() (1)
5011#else /* !CONFIG_ARCH_WANT_HUGE_PMD_SHARE */
5012pte_t *huge_pmd_share(struct mm_struct *mm, unsigned long addr, pud_t *pud)
5013{
5014 return NULL;
5015}
e81f2d22
ZZ
5016
5017int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep)
5018{
5019 return 0;
5020}
017b1660
MK
5021
5022void adjust_range_if_pmd_sharing_possible(struct vm_area_struct *vma,
5023 unsigned long *start, unsigned long *end)
5024{
5025}
9e5fc74c 5026#define want_pmd_share() (0)
3212b535
SC
5027#endif /* CONFIG_ARCH_WANT_HUGE_PMD_SHARE */
5028
9e5fc74c
SC
5029#ifdef CONFIG_ARCH_WANT_GENERAL_HUGETLB
5030pte_t *huge_pte_alloc(struct mm_struct *mm,
5031 unsigned long addr, unsigned long sz)
5032{
5033 pgd_t *pgd;
c2febafc 5034 p4d_t *p4d;
9e5fc74c
SC
5035 pud_t *pud;
5036 pte_t *pte = NULL;
5037
5038 pgd = pgd_offset(mm, addr);
f4f0a3d8
KS
5039 p4d = p4d_alloc(mm, pgd, addr);
5040 if (!p4d)
5041 return NULL;
c2febafc 5042 pud = pud_alloc(mm, p4d, addr);
9e5fc74c
SC
5043 if (pud) {
5044 if (sz == PUD_SIZE) {
5045 pte = (pte_t *)pud;
5046 } else {
5047 BUG_ON(sz != PMD_SIZE);
5048 if (want_pmd_share() && pud_none(*pud))
5049 pte = huge_pmd_share(mm, addr, pud);
5050 else
5051 pte = (pte_t *)pmd_alloc(mm, pud, addr);
5052 }
5053 }
4e666314 5054 BUG_ON(pte && pte_present(*pte) && !pte_huge(*pte));
9e5fc74c
SC
5055
5056 return pte;
5057}
5058
9b19df29
PA
5059/*
5060 * huge_pte_offset() - Walk the page table to resolve the hugepage
5061 * entry at address @addr
5062 *
5063 * Return: Pointer to page table or swap entry (PUD or PMD) for
5064 * address @addr, or NULL if a p*d_none() entry is encountered and the
5065 * size @sz doesn't match the hugepage size at this level of the page
5066 * table.
5067 */
7868a208
PA
5068pte_t *huge_pte_offset(struct mm_struct *mm,
5069 unsigned long addr, unsigned long sz)
9e5fc74c
SC
5070{
5071 pgd_t *pgd;
c2febafc 5072 p4d_t *p4d;
37a6e55e
L
5073 pud_t *pud, pud_entry;
5074 pmd_t *pmd, pmd_entry;
9e5fc74c
SC
5075
5076 pgd = pgd_offset(mm, addr);
c2febafc
KS
5077 if (!pgd_present(*pgd))
5078 return NULL;
5079 p4d = p4d_offset(pgd, addr);
5080 if (!p4d_present(*p4d))
5081 return NULL;
9b19df29 5082
c2febafc 5083 pud = pud_offset(p4d, addr);
37a6e55e
L
5084 pud_entry = READ_ONCE(*pud);
5085 if (sz != PUD_SIZE && pud_none(pud_entry))
c2febafc 5086 return NULL;
9b19df29 5087 /* hugepage or swap? */
37a6e55e 5088 if (pud_huge(pud_entry) || !pud_present(pud_entry))
c2febafc 5089 return (pte_t *)pud;
9b19df29 5090
c2febafc 5091 pmd = pmd_offset(pud, addr);
37a6e55e
L
5092 pmd_entry = READ_ONCE(*pmd);
5093 if (sz != PMD_SIZE && pmd_none(pmd_entry))
9b19df29
PA
5094 return NULL;
5095 /* hugepage or swap? */
37a6e55e 5096 if (pmd_huge(pmd_entry) || !pmd_present(pmd_entry))
9b19df29
PA
5097 return (pte_t *)pmd;
5098
5099 return NULL;
9e5fc74c
SC
5100}
5101
61f77eda
NH
5102#endif /* CONFIG_ARCH_WANT_GENERAL_HUGETLB */
5103
5104/*
5105 * These functions are overwritable if your architecture needs its own
5106 * behavior.
5107 */
5108struct page * __weak
5109follow_huge_addr(struct mm_struct *mm, unsigned long address,
5110 int write)
5111{
5112 return ERR_PTR(-EINVAL);
5113}
5114
4dc71451
AK
5115struct page * __weak
5116follow_huge_pd(struct vm_area_struct *vma,
5117 unsigned long address, hugepd_t hpd, int flags, int pdshift)
5118{
5119 WARN(1, "hugepd follow called with no support for hugepage directory format\n");
5120 return NULL;
5121}
5122
61f77eda 5123struct page * __weak
9e5fc74c 5124follow_huge_pmd(struct mm_struct *mm, unsigned long address,
e66f17ff 5125 pmd_t *pmd, int flags)
9e5fc74c 5126{
e66f17ff
NH
5127 struct page *page = NULL;
5128 spinlock_t *ptl;
c9d398fa 5129 pte_t pte;
e66f17ff
NH
5130retry:
5131 ptl = pmd_lockptr(mm, pmd);
5132 spin_lock(ptl);
5133 /*
5134 * make sure that the address range covered by this pmd is not
5135 * unmapped from other threads.
5136 */
5137 if (!pmd_huge(*pmd))
5138 goto out;
c9d398fa
NH
5139 pte = huge_ptep_get((pte_t *)pmd);
5140 if (pte_present(pte)) {
97534127 5141 page = pmd_page(*pmd) + ((address & ~PMD_MASK) >> PAGE_SHIFT);
e66f17ff
NH
5142 if (flags & FOLL_GET)
5143 get_page(page);
5144 } else {
c9d398fa 5145 if (is_hugetlb_entry_migration(pte)) {
e66f17ff
NH
5146 spin_unlock(ptl);
5147 __migration_entry_wait(mm, (pte_t *)pmd, ptl);
5148 goto retry;
5149 }
5150 /*
5151 * hwpoisoned entry is treated as no_page_table in
5152 * follow_page_mask().
5153 */
5154 }
5155out:
5156 spin_unlock(ptl);
9e5fc74c
SC
5157 return page;
5158}
5159
61f77eda 5160struct page * __weak
9e5fc74c 5161follow_huge_pud(struct mm_struct *mm, unsigned long address,
e66f17ff 5162 pud_t *pud, int flags)
9e5fc74c 5163{
e66f17ff
NH
5164 if (flags & FOLL_GET)
5165 return NULL;
9e5fc74c 5166
e66f17ff 5167 return pte_page(*(pte_t *)pud) + ((address & ~PUD_MASK) >> PAGE_SHIFT);
9e5fc74c
SC
5168}
5169
faaa5b62
AK
5170struct page * __weak
5171follow_huge_pgd(struct mm_struct *mm, unsigned long address, pgd_t *pgd, int flags)
5172{
5173 if (flags & FOLL_GET)
5174 return NULL;
5175
5176 return pte_page(*(pte_t *)pgd) + ((address & ~PGDIR_MASK) >> PAGE_SHIFT);
5177}
5178
31caf665
NH
5179bool isolate_huge_page(struct page *page, struct list_head *list)
5180{
bcc54222
NH
5181 bool ret = true;
5182
31caf665 5183 spin_lock(&hugetlb_lock);
9b7a670c
MS
5184 if (!PageHeadHuge(page) || !page_huge_active(page) ||
5185 !get_page_unless_zero(page)) {
bcc54222
NH
5186 ret = false;
5187 goto unlock;
5188 }
5189 clear_page_huge_active(page);
31caf665 5190 list_move_tail(&page->lru, list);
bcc54222 5191unlock:
31caf665 5192 spin_unlock(&hugetlb_lock);
bcc54222 5193 return ret;
31caf665
NH
5194}
5195
5196void putback_active_hugepage(struct page *page)
5197{
309381fe 5198 VM_BUG_ON_PAGE(!PageHead(page), page);
31caf665 5199 spin_lock(&hugetlb_lock);
bcc54222 5200 set_page_huge_active(page);
31caf665
NH
5201 list_move_tail(&page->lru, &(page_hstate(page))->hugepage_activelist);
5202 spin_unlock(&hugetlb_lock);
5203 put_page(page);
5204}
ab5ac90a
MH
5205
5206void move_hugetlb_state(struct page *oldpage, struct page *newpage, int reason)
5207{
5208 struct hstate *h = page_hstate(oldpage);
5209
5210 hugetlb_cgroup_migrate(oldpage, newpage);
5211 set_page_owner_migrate_reason(newpage, reason);
5212
5213 /*
5214 * transfer temporary state of the new huge page. This is
5215 * reverse to other transitions because the newpage is going to
5216 * be final while the old one will be freed so it takes over
5217 * the temporary status.
5218 *
5219 * Also note that we have to transfer the per-node surplus state
5220 * here as well otherwise the global surplus count will not match
5221 * the per-node's.
5222 */
5223 if (PageHugeTemporary(newpage)) {
5224 int old_nid = page_to_nid(oldpage);
5225 int new_nid = page_to_nid(newpage);
5226
5227 SetPageHugeTemporary(oldpage);
5228 ClearPageHugeTemporary(newpage);
5229
5230 spin_lock(&hugetlb_lock);
5231 if (h->surplus_huge_pages_node[old_nid]) {
5232 h->surplus_huge_pages_node[old_nid]--;
5233 h->surplus_huge_pages_node[new_nid]++;
5234 }
5235 spin_unlock(&hugetlb_lock);
5236 }
5237}