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