blob: b86d27870c540f081cbf6e7523c1df22d31042ce [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Generic hugetlb support.
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01004 * (C) Nadia Yvette Chambers, April 2004
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/list.h>
7#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/mm.h>
Alexey Dobriyane1759c22008-10-15 23:50:22 +04009#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/sysctl.h>
11#include <linux/highmem.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070012#include <linux/mmu_notifier.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/nodemask.h>
David Gibson63551ae2005-06-21 17:14:44 -070014#include <linux/pagemap.h>
Christoph Lameter5da7ca82006-01-06 00:10:46 -080015#include <linux/mempolicy.h>
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -070016#include <linux/compiler.h>
Christoph Lameteraea47ff2006-01-08 01:00:57 -080017#include <linux/cpuset.h>
David Gibson3935baa2006-03-22 00:08:53 -080018#include <linux/mutex.h>
Mike Rapoport97ad1082018-10-30 15:09:44 -070019#include <linux/memblock.h>
Nishanth Aravamudana3437872008-07-23 21:27:44 -070020#include <linux/sysfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Joonsoo Kimbbe88752020-08-11 18:37:38 -070022#include <linux/sched/mm.h>
Mike Kravetz63489f82018-03-22 16:17:13 -070023#include <linux/mmdebug.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010024#include <linux/sched/signal.h>
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +090025#include <linux/rmap.h>
Matthew Wilcoxc6247f72017-07-10 15:48:56 -070026#include <linux/string_helpers.h>
Naoya Horiguchifd6a03e2010-05-28 09:29:21 +090027#include <linux/swap.h>
28#include <linux/swapops.h>
Davidlohr Bueso8382d912014-04-03 14:47:31 -070029#include <linux/jhash.h>
Anshuman Khandual98fa15f2019-03-05 15:42:58 -080030#include <linux/numa.h>
Waiman Longc77c0a82020-01-04 13:00:15 -080031#include <linux/llist.h>
Roman Gushchincf11e852020-04-10 14:32:45 -070032#include <linux/cma.h>
Mina Almasry8cc5fcb2021-06-30 18:48:19 -070033#include <linux/migrate.h>
Linus Torvaldsd6606682008-08-06 12:04:54 -070034
David Gibson63551ae2005-06-21 17:14:44 -070035#include <asm/page.h>
Mike Rapoportca15ca42020-08-06 23:22:28 -070036#include <asm/pgalloc.h>
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -070037#include <asm/tlb.h>
David Gibson63551ae2005-06-21 17:14:44 -070038
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -070039#include <linux/io.h>
David Gibson63551ae2005-06-21 17:14:44 -070040#include <linux/hugetlb.h>
Aneesh Kumar K.V9dd540e2012-07-31 16:42:15 -070041#include <linux/hugetlb_cgroup.h>
Lee Schermerhorn9a3052302009-12-14 17:58:25 -080042#include <linux/node.h>
Michal Hockoab5ac902018-01-31 16:20:48 -080043#include <linux/page_owner.h>
Nick Piggin7835e982006-03-22 00:08:40 -080044#include "internal.h"
Muchun Songf41f2ed2021-06-30 18:47:13 -070045#include "hugetlb_vmemmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Aneesh Kumar K.Vc3f38a32012-07-31 16:42:10 -070047int hugetlb_max_hstate __read_mostly;
Andi Kleene5ff2152008-07-23 21:27:42 -070048unsigned int default_hstate_idx;
49struct hstate hstates[HUGE_MAX_HSTATE];
Roman Gushchincf11e852020-04-10 14:32:45 -070050
Barry Songdbda8fe2020-07-23 21:15:30 -070051#ifdef CONFIG_CMA
Roman Gushchincf11e852020-04-10 14:32:45 -070052static struct cma *hugetlb_cma[MAX_NUMNODES];
Baolin Wang38e719a2021-11-05 13:41:46 -070053static unsigned long hugetlb_cma_size_in_node[MAX_NUMNODES] __initdata;
Mike Kravetza01f4392021-11-05 13:41:27 -070054static bool hugetlb_cma_page(struct page *page, unsigned int order)
55{
56 return cma_pages_valid(hugetlb_cma[page_to_nid(page)], page,
57 1 << order);
58}
59#else
60static bool hugetlb_cma_page(struct page *page, unsigned int order)
61{
62 return false;
63}
Barry Songdbda8fe2020-07-23 21:15:30 -070064#endif
65static unsigned long hugetlb_cma_size __initdata;
Roman Gushchincf11e852020-04-10 14:32:45 -070066
Naoya Horiguchi641844f2015-06-24 16:56:59 -070067/*
68 * Minimum page order among possible hugepage sizes, set to a proper value
69 * at boot time.
70 */
71static unsigned int minimum_order __read_mostly = UINT_MAX;
Andi Kleene5ff2152008-07-23 21:27:42 -070072
Jon Tollefson53ba51d2008-07-23 21:27:52 -070073__initdata LIST_HEAD(huge_boot_pages);
74
Andi Kleene5ff2152008-07-23 21:27:42 -070075/* for command line parsing */
76static struct hstate * __initdata parsed_hstate;
77static unsigned long __initdata default_hstate_max_huge_pages;
Vaishali Thakkar9fee0212016-05-19 17:11:04 -070078static bool __initdata parsed_valid_hugepagesz = true;
Mike Kravetz282f4212020-06-03 16:00:46 -070079static bool __initdata parsed_default_hugepagesz;
Andi Kleene5ff2152008-07-23 21:27:42 -070080
David Gibson3935baa2006-03-22 00:08:53 -080081/*
Naoya Horiguchi31caf662013-09-11 14:21:59 -070082 * Protects updates to hugepage_freelists, hugepage_activelist, nr_huge_pages,
83 * free_huge_pages, and surplus_huge_pages.
David Gibson3935baa2006-03-22 00:08:53 -080084 */
Aneesh Kumar K.Vc3f38a32012-07-31 16:42:10 -070085DEFINE_SPINLOCK(hugetlb_lock);
Eric Paris0bd0f9f2005-11-21 21:32:28 -080086
Davidlohr Bueso8382d912014-04-03 14:47:31 -070087/*
88 * Serializes faults on the same logical page. This is used to
89 * prevent spurious OOMs when the hugepage pool is fully utilized.
90 */
91static int num_fault_mutexes;
Mike Kravetzc672c7f2015-09-08 15:01:35 -070092struct mutex *hugetlb_fault_mutex_table ____cacheline_aligned_in_smp;
Davidlohr Bueso8382d912014-04-03 14:47:31 -070093
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -070094/* Forward declaration */
95static int hugetlb_acct_memory(struct hstate *h, long delta);
96
Miaohe Lin1d884332021-02-24 12:07:05 -080097static inline bool subpool_is_free(struct hugepage_subpool *spool)
98{
99 if (spool->count)
100 return false;
101 if (spool->max_hpages != -1)
102 return spool->used_hpages == 0;
103 if (spool->min_hpages != -1)
104 return spool->rsv_hpages == spool->min_hpages;
105
106 return true;
107}
108
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700109static inline void unlock_or_release_subpool(struct hugepage_subpool *spool,
110 unsigned long irq_flags)
David Gibson90481622012-03-21 16:34:12 -0700111{
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700112 spin_unlock_irqrestore(&spool->lock, irq_flags);
David Gibson90481622012-03-21 16:34:12 -0700113
114 /* If no pages are used, and no other handles to the subpool
Ethon Paul7c8de352020-06-04 16:49:07 -0700115 * remain, give up any reservations based on minimum size and
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -0700116 * free the subpool */
Miaohe Lin1d884332021-02-24 12:07:05 -0800117 if (subpool_is_free(spool)) {
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -0700118 if (spool->min_hpages != -1)
119 hugetlb_acct_memory(spool->hstate,
120 -spool->min_hpages);
David Gibson90481622012-03-21 16:34:12 -0700121 kfree(spool);
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -0700122 }
David Gibson90481622012-03-21 16:34:12 -0700123}
124
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -0700125struct hugepage_subpool *hugepage_new_subpool(struct hstate *h, long max_hpages,
126 long min_hpages)
David Gibson90481622012-03-21 16:34:12 -0700127{
128 struct hugepage_subpool *spool;
129
Mike Kravetzc6a91822015-04-15 16:13:36 -0700130 spool = kzalloc(sizeof(*spool), GFP_KERNEL);
David Gibson90481622012-03-21 16:34:12 -0700131 if (!spool)
132 return NULL;
133
134 spin_lock_init(&spool->lock);
135 spool->count = 1;
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -0700136 spool->max_hpages = max_hpages;
137 spool->hstate = h;
138 spool->min_hpages = min_hpages;
139
140 if (min_hpages != -1 && hugetlb_acct_memory(h, min_hpages)) {
141 kfree(spool);
142 return NULL;
143 }
144 spool->rsv_hpages = min_hpages;
David Gibson90481622012-03-21 16:34:12 -0700145
146 return spool;
147}
148
149void hugepage_put_subpool(struct hugepage_subpool *spool)
150{
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700151 unsigned long flags;
152
153 spin_lock_irqsave(&spool->lock, flags);
David Gibson90481622012-03-21 16:34:12 -0700154 BUG_ON(!spool->count);
155 spool->count--;
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700156 unlock_or_release_subpool(spool, flags);
David Gibson90481622012-03-21 16:34:12 -0700157}
158
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700159/*
160 * Subpool accounting for allocating and reserving pages.
161 * Return -ENOMEM if there are not enough resources to satisfy the
Randy Dunlap9e7ee402020-08-11 18:32:59 -0700162 * request. Otherwise, return the number of pages by which the
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700163 * global pools must be adjusted (upward). The returned value may
164 * only be different than the passed value (delta) in the case where
Ethon Paul7c8de352020-06-04 16:49:07 -0700165 * a subpool minimum size must be maintained.
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700166 */
167static long hugepage_subpool_get_pages(struct hugepage_subpool *spool,
David Gibson90481622012-03-21 16:34:12 -0700168 long delta)
169{
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700170 long ret = delta;
David Gibson90481622012-03-21 16:34:12 -0700171
172 if (!spool)
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700173 return ret;
David Gibson90481622012-03-21 16:34:12 -0700174
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700175 spin_lock_irq(&spool->lock);
David Gibson90481622012-03-21 16:34:12 -0700176
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700177 if (spool->max_hpages != -1) { /* maximum size accounting */
178 if ((spool->used_hpages + delta) <= spool->max_hpages)
179 spool->used_hpages += delta;
180 else {
181 ret = -ENOMEM;
182 goto unlock_ret;
183 }
184 }
185
Mike Kravetz09a95e22016-05-19 17:11:01 -0700186 /* minimum size accounting */
187 if (spool->min_hpages != -1 && spool->rsv_hpages) {
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700188 if (delta > spool->rsv_hpages) {
189 /*
190 * Asking for more reserves than those already taken on
191 * behalf of subpool. Return difference.
192 */
193 ret = delta - spool->rsv_hpages;
194 spool->rsv_hpages = 0;
195 } else {
196 ret = 0; /* reserves already accounted for */
197 spool->rsv_hpages -= delta;
198 }
199 }
200
201unlock_ret:
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700202 spin_unlock_irq(&spool->lock);
David Gibson90481622012-03-21 16:34:12 -0700203 return ret;
204}
205
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700206/*
207 * Subpool accounting for freeing and unreserving pages.
208 * Return the number of global page reservations that must be dropped.
209 * The return value may only be different than the passed value (delta)
210 * in the case where a subpool minimum size must be maintained.
211 */
212static long hugepage_subpool_put_pages(struct hugepage_subpool *spool,
David Gibson90481622012-03-21 16:34:12 -0700213 long delta)
214{
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700215 long ret = delta;
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700216 unsigned long flags;
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700217
David Gibson90481622012-03-21 16:34:12 -0700218 if (!spool)
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700219 return delta;
David Gibson90481622012-03-21 16:34:12 -0700220
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700221 spin_lock_irqsave(&spool->lock, flags);
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700222
223 if (spool->max_hpages != -1) /* maximum size accounting */
224 spool->used_hpages -= delta;
225
Mike Kravetz09a95e22016-05-19 17:11:01 -0700226 /* minimum size accounting */
227 if (spool->min_hpages != -1 && spool->used_hpages < spool->min_hpages) {
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700228 if (spool->rsv_hpages + delta <= spool->min_hpages)
229 ret = 0;
230 else
231 ret = spool->rsv_hpages + delta - spool->min_hpages;
232
233 spool->rsv_hpages += delta;
234 if (spool->rsv_hpages > spool->min_hpages)
235 spool->rsv_hpages = spool->min_hpages;
236 }
237
238 /*
239 * If hugetlbfs_put_super couldn't free spool due to an outstanding
240 * quota reference, free it now.
241 */
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700242 unlock_or_release_subpool(spool, flags);
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700243
244 return ret;
David Gibson90481622012-03-21 16:34:12 -0700245}
246
247static inline struct hugepage_subpool *subpool_inode(struct inode *inode)
248{
249 return HUGETLBFS_SB(inode->i_sb)->spool;
250}
251
252static inline struct hugepage_subpool *subpool_vma(struct vm_area_struct *vma)
253{
Al Viro496ad9a2013-01-23 17:07:38 -0500254 return subpool_inode(file_inode(vma->vm_file));
David Gibson90481622012-03-21 16:34:12 -0700255}
256
Mina Almasry0db9d742020-04-01 21:11:25 -0700257/* Helper that removes a struct file_region from the resv_map cache and returns
258 * it for use.
259 */
260static struct file_region *
261get_file_region_entry_from_cache(struct resv_map *resv, long from, long to)
262{
263 struct file_region *nrg = NULL;
264
265 VM_BUG_ON(resv->region_cache_count <= 0);
266
267 resv->region_cache_count--;
268 nrg = list_first_entry(&resv->region_cache, struct file_region, link);
Mina Almasry0db9d742020-04-01 21:11:25 -0700269 list_del(&nrg->link);
270
271 nrg->from = from;
272 nrg->to = to;
273
274 return nrg;
275}
276
Mina Almasry075a61d2020-04-01 21:11:28 -0700277static void copy_hugetlb_cgroup_uncharge_info(struct file_region *nrg,
278 struct file_region *rg)
279{
280#ifdef CONFIG_CGROUP_HUGETLB
281 nrg->reservation_counter = rg->reservation_counter;
282 nrg->css = rg->css;
283 if (rg->css)
284 css_get(rg->css);
285#endif
286}
287
288/* Helper that records hugetlb_cgroup uncharge info. */
289static void record_hugetlb_cgroup_uncharge_info(struct hugetlb_cgroup *h_cg,
290 struct hstate *h,
291 struct resv_map *resv,
292 struct file_region *nrg)
293{
294#ifdef CONFIG_CGROUP_HUGETLB
295 if (h_cg) {
296 nrg->reservation_counter =
297 &h_cg->rsvd_hugepage[hstate_index(h)];
298 nrg->css = &h_cg->css;
Miaohe Lind85aecf2021-03-24 21:37:17 -0700299 /*
300 * The caller will hold exactly one h_cg->css reference for the
301 * whole contiguous reservation region. But this area might be
302 * scattered when there are already some file_regions reside in
303 * it. As a result, many file_regions may share only one css
304 * reference. In order to ensure that one file_region must hold
305 * exactly one h_cg->css reference, we should do css_get for
306 * each file_region and leave the reference held by caller
307 * untouched.
308 */
309 css_get(&h_cg->css);
Mina Almasry075a61d2020-04-01 21:11:28 -0700310 if (!resv->pages_per_hpage)
311 resv->pages_per_hpage = pages_per_huge_page(h);
312 /* pages_per_hpage should be the same for all entries in
313 * a resv_map.
314 */
315 VM_BUG_ON(resv->pages_per_hpage != pages_per_huge_page(h));
316 } else {
317 nrg->reservation_counter = NULL;
318 nrg->css = NULL;
319 }
320#endif
321}
322
Miaohe Lind85aecf2021-03-24 21:37:17 -0700323static void put_uncharge_info(struct file_region *rg)
324{
325#ifdef CONFIG_CGROUP_HUGETLB
326 if (rg->css)
327 css_put(rg->css);
328#endif
329}
330
Mina Almasrya9b3f862020-04-01 21:11:35 -0700331static bool has_same_uncharge_info(struct file_region *rg,
332 struct file_region *org)
333{
334#ifdef CONFIG_CGROUP_HUGETLB
335 return rg && org &&
336 rg->reservation_counter == org->reservation_counter &&
337 rg->css == org->css;
338
339#else
340 return true;
341#endif
342}
343
344static void coalesce_file_region(struct resv_map *resv, struct file_region *rg)
345{
346 struct file_region *nrg = NULL, *prg = NULL;
347
348 prg = list_prev_entry(rg, link);
349 if (&prg->link != &resv->regions && prg->to == rg->from &&
350 has_same_uncharge_info(prg, rg)) {
351 prg->to = rg->to;
352
353 list_del(&rg->link);
Miaohe Lind85aecf2021-03-24 21:37:17 -0700354 put_uncharge_info(rg);
Mina Almasrya9b3f862020-04-01 21:11:35 -0700355 kfree(rg);
356
Wei Yang7db5e7b2020-10-13 16:56:20 -0700357 rg = prg;
Mina Almasrya9b3f862020-04-01 21:11:35 -0700358 }
359
360 nrg = list_next_entry(rg, link);
361 if (&nrg->link != &resv->regions && nrg->from == rg->to &&
362 has_same_uncharge_info(nrg, rg)) {
363 nrg->from = rg->from;
364
365 list_del(&rg->link);
Miaohe Lind85aecf2021-03-24 21:37:17 -0700366 put_uncharge_info(rg);
Mina Almasrya9b3f862020-04-01 21:11:35 -0700367 kfree(rg);
Mina Almasrya9b3f862020-04-01 21:11:35 -0700368 }
369}
370
Peter Xu2103cf92021-03-12 21:07:18 -0800371static inline long
372hugetlb_resv_map_add(struct resv_map *map, struct file_region *rg, long from,
373 long to, struct hstate *h, struct hugetlb_cgroup *cg,
374 long *regions_needed)
375{
376 struct file_region *nrg;
377
378 if (!regions_needed) {
379 nrg = get_file_region_entry_from_cache(map, from, to);
380 record_hugetlb_cgroup_uncharge_info(cg, h, map, nrg);
381 list_add(&nrg->link, rg->link.prev);
382 coalesce_file_region(map, nrg);
383 } else
384 *regions_needed += 1;
385
386 return to - from;
387}
388
Wei Yang972a3da32020-10-13 16:56:30 -0700389/*
390 * Must be called with resv->lock held.
391 *
392 * Calling this with regions_needed != NULL will count the number of pages
393 * to be added but will not modify the linked list. And regions_needed will
394 * indicate the number of file_regions needed in the cache to carry out to add
395 * the regions for this range.
Mina Almasryd75c6af2019-11-30 17:56:59 -0800396 */
397static long add_reservation_in_range(struct resv_map *resv, long f, long t,
Mina Almasry075a61d2020-04-01 21:11:28 -0700398 struct hugetlb_cgroup *h_cg,
Wei Yang972a3da32020-10-13 16:56:30 -0700399 struct hstate *h, long *regions_needed)
Mina Almasryd75c6af2019-11-30 17:56:59 -0800400{
Mina Almasry0db9d742020-04-01 21:11:25 -0700401 long add = 0;
Mina Almasryd75c6af2019-11-30 17:56:59 -0800402 struct list_head *head = &resv->regions;
Mina Almasry0db9d742020-04-01 21:11:25 -0700403 long last_accounted_offset = f;
Peter Xu2103cf92021-03-12 21:07:18 -0800404 struct file_region *rg = NULL, *trg = NULL;
Mina Almasryd75c6af2019-11-30 17:56:59 -0800405
Mina Almasry0db9d742020-04-01 21:11:25 -0700406 if (regions_needed)
407 *regions_needed = 0;
Mina Almasryd75c6af2019-11-30 17:56:59 -0800408
Mina Almasry0db9d742020-04-01 21:11:25 -0700409 /* In this loop, we essentially handle an entry for the range
410 * [last_accounted_offset, rg->from), at every iteration, with some
411 * bounds checking.
412 */
413 list_for_each_entry_safe(rg, trg, head, link) {
414 /* Skip irrelevant regions that start before our range. */
415 if (rg->from < f) {
416 /* If this region ends after the last accounted offset,
417 * then we need to update last_accounted_offset.
418 */
419 if (rg->to > last_accounted_offset)
420 last_accounted_offset = rg->to;
421 continue;
422 }
Mina Almasryd75c6af2019-11-30 17:56:59 -0800423
Mina Almasry0db9d742020-04-01 21:11:25 -0700424 /* When we find a region that starts beyond our range, we've
425 * finished.
426 */
Peter Xuca7e0452021-03-12 21:07:22 -0800427 if (rg->from >= t)
Mina Almasryd75c6af2019-11-30 17:56:59 -0800428 break;
429
Mina Almasry0db9d742020-04-01 21:11:25 -0700430 /* Add an entry for last_accounted_offset -> rg->from, and
431 * update last_accounted_offset.
Mina Almasryd75c6af2019-11-30 17:56:59 -0800432 */
Peter Xu2103cf92021-03-12 21:07:18 -0800433 if (rg->from > last_accounted_offset)
434 add += hugetlb_resv_map_add(resv, rg,
435 last_accounted_offset,
436 rg->from, h, h_cg,
437 regions_needed);
Mina Almasryd75c6af2019-11-30 17:56:59 -0800438
Mina Almasry0db9d742020-04-01 21:11:25 -0700439 last_accounted_offset = rg->to;
440 }
441
442 /* Handle the case where our range extends beyond
443 * last_accounted_offset.
444 */
Peter Xu2103cf92021-03-12 21:07:18 -0800445 if (last_accounted_offset < t)
446 add += hugetlb_resv_map_add(resv, rg, last_accounted_offset,
447 t, h, h_cg, regions_needed);
Mina Almasry0db9d742020-04-01 21:11:25 -0700448
449 VM_BUG_ON(add < 0);
450 return add;
451}
452
453/* Must be called with resv->lock acquired. Will drop lock to allocate entries.
454 */
455static int allocate_file_region_entries(struct resv_map *resv,
456 int regions_needed)
457 __must_hold(&resv->lock)
458{
459 struct list_head allocated_regions;
460 int to_allocate = 0, i = 0;
461 struct file_region *trg = NULL, *rg = NULL;
462
463 VM_BUG_ON(regions_needed < 0);
464
465 INIT_LIST_HEAD(&allocated_regions);
466
467 /*
468 * Check for sufficient descriptors in the cache to accommodate
469 * the number of in progress add operations plus regions_needed.
470 *
471 * This is a while loop because when we drop the lock, some other call
472 * to region_add or region_del may have consumed some region_entries,
473 * so we keep looping here until we finally have enough entries for
474 * (adds_in_progress + regions_needed).
475 */
476 while (resv->region_cache_count <
477 (resv->adds_in_progress + regions_needed)) {
478 to_allocate = resv->adds_in_progress + regions_needed -
479 resv->region_cache_count;
480
481 /* At this point, we should have enough entries in the cache
Ingo Molnarf0953a12021-05-06 18:06:47 -0700482 * for all the existing adds_in_progress. We should only be
Mina Almasry0db9d742020-04-01 21:11:25 -0700483 * needing to allocate for regions_needed.
484 */
485 VM_BUG_ON(resv->region_cache_count < resv->adds_in_progress);
486
487 spin_unlock(&resv->lock);
488 for (i = 0; i < to_allocate; i++) {
489 trg = kmalloc(sizeof(*trg), GFP_KERNEL);
490 if (!trg)
491 goto out_of_memory;
492 list_add(&trg->link, &allocated_regions);
493 }
494
495 spin_lock(&resv->lock);
496
Wei Yangd3ec7b62020-10-13 16:56:27 -0700497 list_splice(&allocated_regions, &resv->region_cache);
498 resv->region_cache_count += to_allocate;
Mina Almasryd75c6af2019-11-30 17:56:59 -0800499 }
500
Mina Almasry0db9d742020-04-01 21:11:25 -0700501 return 0;
Mina Almasryd75c6af2019-11-30 17:56:59 -0800502
Mina Almasry0db9d742020-04-01 21:11:25 -0700503out_of_memory:
504 list_for_each_entry_safe(rg, trg, &allocated_regions, link) {
505 list_del(&rg->link);
506 kfree(rg);
507 }
508 return -ENOMEM;
Mina Almasryd75c6af2019-11-30 17:56:59 -0800509}
510
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700511/*
512 * Add the huge page range represented by [f, t) to the reserve
Mina Almasry0db9d742020-04-01 21:11:25 -0700513 * map. Regions will be taken from the cache to fill in this range.
514 * Sufficient regions should exist in the cache due to the previous
515 * call to region_chg with the same range, but in some cases the cache will not
516 * have sufficient entries due to races with other code doing region_add or
517 * region_del. The extra needed entries will be allocated.
Mike Kravetzcf3ad202015-06-24 16:57:55 -0700518 *
Mina Almasry0db9d742020-04-01 21:11:25 -0700519 * regions_needed is the out value provided by a previous call to region_chg.
520 *
521 * Return the number of new huge pages added to the map. This number is greater
522 * than or equal to zero. If file_region entries needed to be allocated for
Ethon Paul7c8de352020-06-04 16:49:07 -0700523 * this operation and we were not able to allocate, it returns -ENOMEM.
Mina Almasry0db9d742020-04-01 21:11:25 -0700524 * region_add of regions of length 1 never allocate file_regions and cannot
525 * fail; region_chg will always allocate at least 1 entry and a region_add for
526 * 1 page will only require at most 1 entry.
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700527 */
Mina Almasry0db9d742020-04-01 21:11:25 -0700528static long region_add(struct resv_map *resv, long f, long t,
Mina Almasry075a61d2020-04-01 21:11:28 -0700529 long in_regions_needed, struct hstate *h,
530 struct hugetlb_cgroup *h_cg)
Andy Whitcroft96822902008-07-23 21:27:29 -0700531{
Mina Almasry0db9d742020-04-01 21:11:25 -0700532 long add = 0, actual_regions_needed = 0;
Andy Whitcroft96822902008-07-23 21:27:29 -0700533
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700534 spin_lock(&resv->lock);
Mina Almasry0db9d742020-04-01 21:11:25 -0700535retry:
536
537 /* Count how many regions are actually needed to execute this add. */
Wei Yang972a3da32020-10-13 16:56:30 -0700538 add_reservation_in_range(resv, f, t, NULL, NULL,
539 &actual_regions_needed);
Andy Whitcroft96822902008-07-23 21:27:29 -0700540
Mike Kravetz5e911372015-09-08 15:01:28 -0700541 /*
Mina Almasry0db9d742020-04-01 21:11:25 -0700542 * Check for sufficient descriptors in the cache to accommodate
543 * this add operation. Note that actual_regions_needed may be greater
544 * than in_regions_needed, as the resv_map may have been modified since
545 * the region_chg call. In this case, we need to make sure that we
546 * allocate extra entries, such that we have enough for all the
547 * existing adds_in_progress, plus the excess needed for this
548 * operation.
Mike Kravetz5e911372015-09-08 15:01:28 -0700549 */
Mina Almasry0db9d742020-04-01 21:11:25 -0700550 if (actual_regions_needed > in_regions_needed &&
551 resv->region_cache_count <
552 resv->adds_in_progress +
553 (actual_regions_needed - in_regions_needed)) {
554 /* region_add operation of range 1 should never need to
555 * allocate file_region entries.
556 */
557 VM_BUG_ON(t - f <= 1);
Mike Kravetz5e911372015-09-08 15:01:28 -0700558
Mina Almasry0db9d742020-04-01 21:11:25 -0700559 if (allocate_file_region_entries(
560 resv, actual_regions_needed - in_regions_needed)) {
561 return -ENOMEM;
562 }
Mike Kravetz5e911372015-09-08 15:01:28 -0700563
Mina Almasry0db9d742020-04-01 21:11:25 -0700564 goto retry;
Mike Kravetz5e911372015-09-08 15:01:28 -0700565 }
566
Wei Yang972a3da32020-10-13 16:56:30 -0700567 add = add_reservation_in_range(resv, f, t, h_cg, h, NULL);
Mike Kravetzcf3ad202015-06-24 16:57:55 -0700568
Mina Almasry0db9d742020-04-01 21:11:25 -0700569 resv->adds_in_progress -= in_regions_needed;
570
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700571 spin_unlock(&resv->lock);
Mike Kravetzcf3ad202015-06-24 16:57:55 -0700572 return add;
Andy Whitcroft96822902008-07-23 21:27:29 -0700573}
574
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700575/*
576 * Examine the existing reserve map and determine how many
577 * huge pages in the specified range [f, t) are NOT currently
578 * represented. This routine is called before a subsequent
579 * call to region_add that will actually modify the reserve
580 * map to add the specified range [f, t). region_chg does
581 * not change the number of huge pages represented by the
Mina Almasry0db9d742020-04-01 21:11:25 -0700582 * map. A number of new file_region structures is added to the cache as a
583 * placeholder, for the subsequent region_add call to use. At least 1
584 * file_region structure is added.
585 *
586 * out_regions_needed is the number of regions added to the
587 * resv->adds_in_progress. This value needs to be provided to a follow up call
588 * to region_add or region_abort for proper accounting.
Mike Kravetz5e911372015-09-08 15:01:28 -0700589 *
590 * Returns the number of huge pages that need to be added to the existing
591 * reservation map for the range [f, t). This number is greater or equal to
592 * zero. -ENOMEM is returned if a new file_region structure or cache entry
593 * is needed and can not be allocated.
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700594 */
Mina Almasry0db9d742020-04-01 21:11:25 -0700595static long region_chg(struct resv_map *resv, long f, long t,
596 long *out_regions_needed)
Andy Whitcroft96822902008-07-23 21:27:29 -0700597{
Andy Whitcroft96822902008-07-23 21:27:29 -0700598 long chg = 0;
599
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700600 spin_lock(&resv->lock);
Mike Kravetz5e911372015-09-08 15:01:28 -0700601
Wei Yang972a3da32020-10-13 16:56:30 -0700602 /* Count how many hugepages in this range are NOT represented. */
Mina Almasry075a61d2020-04-01 21:11:28 -0700603 chg = add_reservation_in_range(resv, f, t, NULL, NULL,
Wei Yang972a3da32020-10-13 16:56:30 -0700604 out_regions_needed);
Mike Kravetz5e911372015-09-08 15:01:28 -0700605
Mina Almasry0db9d742020-04-01 21:11:25 -0700606 if (*out_regions_needed == 0)
607 *out_regions_needed = 1;
Mike Kravetz5e911372015-09-08 15:01:28 -0700608
Mina Almasry0db9d742020-04-01 21:11:25 -0700609 if (allocate_file_region_entries(resv, *out_regions_needed))
610 return -ENOMEM;
Mike Kravetz5e911372015-09-08 15:01:28 -0700611
Mina Almasry0db9d742020-04-01 21:11:25 -0700612 resv->adds_in_progress += *out_regions_needed;
Andy Whitcroft96822902008-07-23 21:27:29 -0700613
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700614 spin_unlock(&resv->lock);
Andy Whitcroft96822902008-07-23 21:27:29 -0700615 return chg;
616}
617
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700618/*
Mike Kravetz5e911372015-09-08 15:01:28 -0700619 * Abort the in progress add operation. The adds_in_progress field
620 * of the resv_map keeps track of the operations in progress between
621 * calls to region_chg and region_add. Operations are sometimes
622 * aborted after the call to region_chg. In such cases, region_abort
Mina Almasry0db9d742020-04-01 21:11:25 -0700623 * is called to decrement the adds_in_progress counter. regions_needed
624 * is the value returned by the region_chg call, it is used to decrement
625 * the adds_in_progress counter.
Mike Kravetz5e911372015-09-08 15:01:28 -0700626 *
627 * NOTE: The range arguments [f, t) are not needed or used in this
628 * routine. They are kept to make reading the calling code easier as
629 * arguments will match the associated region_chg call.
630 */
Mina Almasry0db9d742020-04-01 21:11:25 -0700631static void region_abort(struct resv_map *resv, long f, long t,
632 long regions_needed)
Mike Kravetz5e911372015-09-08 15:01:28 -0700633{
634 spin_lock(&resv->lock);
635 VM_BUG_ON(!resv->region_cache_count);
Mina Almasry0db9d742020-04-01 21:11:25 -0700636 resv->adds_in_progress -= regions_needed;
Mike Kravetz5e911372015-09-08 15:01:28 -0700637 spin_unlock(&resv->lock);
638}
639
640/*
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700641 * Delete the specified range [f, t) from the reserve map. If the
642 * t parameter is LONG_MAX, this indicates that ALL regions after f
643 * should be deleted. Locate the regions which intersect [f, t)
644 * and either trim, delete or split the existing regions.
645 *
646 * Returns the number of huge pages deleted from the reserve map.
647 * In the normal case, the return value is zero or more. In the
648 * case where a region must be split, a new region descriptor must
649 * be allocated. If the allocation fails, -ENOMEM will be returned.
650 * NOTE: If the parameter t == LONG_MAX, then we will never split
651 * a region and possibly return -ENOMEM. Callers specifying
652 * t == LONG_MAX do not need to check for -ENOMEM error.
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700653 */
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700654static long region_del(struct resv_map *resv, long f, long t)
Andy Whitcroft96822902008-07-23 21:27:29 -0700655{
Joonsoo Kim1406ec92014-04-03 14:47:26 -0700656 struct list_head *head = &resv->regions;
Andy Whitcroft96822902008-07-23 21:27:29 -0700657 struct file_region *rg, *trg;
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700658 struct file_region *nrg = NULL;
659 long del = 0;
Andy Whitcroft96822902008-07-23 21:27:29 -0700660
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700661retry:
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700662 spin_lock(&resv->lock);
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700663 list_for_each_entry_safe(rg, trg, head, link) {
Mike Kravetzdbe409e2015-12-11 13:40:52 -0800664 /*
665 * Skip regions before the range to be deleted. file_region
666 * ranges are normally of the form [from, to). However, there
667 * may be a "placeholder" entry in the map which is of the form
668 * (from, to) with from == to. Check for placeholder entries
669 * at the beginning of the range to be deleted.
670 */
671 if (rg->to <= f && (rg->to != rg->from || rg->to != f))
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700672 continue;
Mike Kravetzdbe409e2015-12-11 13:40:52 -0800673
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700674 if (rg->from >= t)
Andy Whitcroft96822902008-07-23 21:27:29 -0700675 break;
Andy Whitcroft96822902008-07-23 21:27:29 -0700676
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700677 if (f > rg->from && t < rg->to) { /* Must split region */
678 /*
679 * Check for an entry in the cache before dropping
680 * lock and attempting allocation.
681 */
682 if (!nrg &&
683 resv->region_cache_count > resv->adds_in_progress) {
684 nrg = list_first_entry(&resv->region_cache,
685 struct file_region,
686 link);
687 list_del(&nrg->link);
688 resv->region_cache_count--;
689 }
690
691 if (!nrg) {
692 spin_unlock(&resv->lock);
693 nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
694 if (!nrg)
695 return -ENOMEM;
696 goto retry;
697 }
698
699 del += t - f;
Mike Kravetz79aa9252020-11-01 17:07:27 -0800700 hugetlb_cgroup_uncharge_file_region(
Miaohe Lind85aecf2021-03-24 21:37:17 -0700701 resv, rg, t - f, false);
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700702
703 /* New entry for end of split region */
704 nrg->from = t;
705 nrg->to = rg->to;
Mina Almasry075a61d2020-04-01 21:11:28 -0700706
707 copy_hugetlb_cgroup_uncharge_info(nrg, rg);
708
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700709 INIT_LIST_HEAD(&nrg->link);
710
711 /* Original entry is trimmed */
712 rg->to = f;
713
714 list_add(&nrg->link, &rg->link);
715 nrg = NULL;
716 break;
717 }
718
719 if (f <= rg->from && t >= rg->to) { /* Remove entire region */
720 del += rg->to - rg->from;
Mina Almasry075a61d2020-04-01 21:11:28 -0700721 hugetlb_cgroup_uncharge_file_region(resv, rg,
Miaohe Lind85aecf2021-03-24 21:37:17 -0700722 rg->to - rg->from, true);
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700723 list_del(&rg->link);
724 kfree(rg);
725 continue;
726 }
727
728 if (f <= rg->from) { /* Trim beginning of region */
Mina Almasry075a61d2020-04-01 21:11:28 -0700729 hugetlb_cgroup_uncharge_file_region(resv, rg,
Miaohe Lind85aecf2021-03-24 21:37:17 -0700730 t - rg->from, false);
Mina Almasry075a61d2020-04-01 21:11:28 -0700731
Mike Kravetz79aa9252020-11-01 17:07:27 -0800732 del += t - rg->from;
733 rg->from = t;
734 } else { /* Trim end of region */
Mina Almasry075a61d2020-04-01 21:11:28 -0700735 hugetlb_cgroup_uncharge_file_region(resv, rg,
Miaohe Lind85aecf2021-03-24 21:37:17 -0700736 rg->to - f, false);
Mike Kravetz79aa9252020-11-01 17:07:27 -0800737
738 del += rg->to - f;
739 rg->to = f;
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700740 }
Andy Whitcroft96822902008-07-23 21:27:29 -0700741 }
742
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700743 spin_unlock(&resv->lock);
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700744 kfree(nrg);
745 return del;
Andy Whitcroft96822902008-07-23 21:27:29 -0700746}
747
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700748/*
Mike Kravetzb5cec282015-09-08 15:01:41 -0700749 * A rare out of memory error was encountered which prevented removal of
750 * the reserve map region for a page. The huge page itself was free'ed
751 * and removed from the page cache. This routine will adjust the subpool
752 * usage count, and the global reserve count if needed. By incrementing
753 * these counts, the reserve map entry which could not be deleted will
754 * appear as a "reserved" entry instead of simply dangling with incorrect
755 * counts.
756 */
zhong jiang72e29362016-10-07 17:02:01 -0700757void hugetlb_fix_reserve_counts(struct inode *inode)
Mike Kravetzb5cec282015-09-08 15:01:41 -0700758{
759 struct hugepage_subpool *spool = subpool_inode(inode);
760 long rsv_adjust;
Miaohe Linda563882021-05-04 18:34:38 -0700761 bool reserved = false;
Mike Kravetzb5cec282015-09-08 15:01:41 -0700762
763 rsv_adjust = hugepage_subpool_get_pages(spool, 1);
Miaohe Linda563882021-05-04 18:34:38 -0700764 if (rsv_adjust > 0) {
Mike Kravetzb5cec282015-09-08 15:01:41 -0700765 struct hstate *h = hstate_inode(inode);
766
Miaohe Linda563882021-05-04 18:34:38 -0700767 if (!hugetlb_acct_memory(h, 1))
768 reserved = true;
769 } else if (!rsv_adjust) {
770 reserved = true;
Mike Kravetzb5cec282015-09-08 15:01:41 -0700771 }
Miaohe Linda563882021-05-04 18:34:38 -0700772
773 if (!reserved)
774 pr_warn("hugetlb: Huge Page Reserved count may go negative.\n");
Mike Kravetzb5cec282015-09-08 15:01:41 -0700775}
776
777/*
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700778 * Count and return the number of huge pages in the reserve map
779 * that intersect with the range [f, t).
780 */
Joonsoo Kim1406ec92014-04-03 14:47:26 -0700781static long region_count(struct resv_map *resv, long f, long t)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700782{
Joonsoo Kim1406ec92014-04-03 14:47:26 -0700783 struct list_head *head = &resv->regions;
Andy Whitcroft84afd992008-07-23 21:27:32 -0700784 struct file_region *rg;
785 long chg = 0;
786
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700787 spin_lock(&resv->lock);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700788 /* Locate each segment we overlap with, and count that overlap. */
789 list_for_each_entry(rg, head, link) {
Wang Sheng-Huif2135a42012-05-29 15:06:17 -0700790 long seg_from;
791 long seg_to;
Andy Whitcroft84afd992008-07-23 21:27:32 -0700792
793 if (rg->to <= f)
794 continue;
795 if (rg->from >= t)
796 break;
797
798 seg_from = max(rg->from, f);
799 seg_to = min(rg->to, t);
800
801 chg += seg_to - seg_from;
802 }
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700803 spin_unlock(&resv->lock);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700804
805 return chg;
806}
807
Andy Whitcroft96822902008-07-23 21:27:29 -0700808/*
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700809 * Convert the address within this vma to the page offset within
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700810 * the mapping, in pagecache page units; huge pages here.
811 */
Andi Kleena5516432008-07-23 21:27:41 -0700812static pgoff_t vma_hugecache_offset(struct hstate *h,
813 struct vm_area_struct *vma, unsigned long address)
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700814{
Andi Kleena5516432008-07-23 21:27:41 -0700815 return ((address - vma->vm_start) >> huge_page_shift(h)) +
816 (vma->vm_pgoff >> huge_page_order(h));
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700817}
818
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +0900819pgoff_t linear_hugepage_index(struct vm_area_struct *vma,
820 unsigned long address)
821{
822 return vma_hugecache_offset(hstate_vma(vma), vma, address);
823}
Dan Williamsdee41072016-05-14 12:20:44 -0700824EXPORT_SYMBOL_GPL(linear_hugepage_index);
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +0900825
Andy Whitcroft84afd992008-07-23 21:27:32 -0700826/*
Mel Gorman08fba692009-01-06 14:38:53 -0800827 * Return the size of the pages allocated when backing a VMA. In the majority
828 * cases this will be same size as used by the page table entries.
829 */
830unsigned long vma_kernel_pagesize(struct vm_area_struct *vma)
831{
Dan Williams05ea8862018-04-05 16:24:25 -0700832 if (vma->vm_ops && vma->vm_ops->pagesize)
833 return vma->vm_ops->pagesize(vma);
834 return PAGE_SIZE;
Mel Gorman08fba692009-01-06 14:38:53 -0800835}
Joerg Roedelf340ca02009-06-19 15:16:22 +0200836EXPORT_SYMBOL_GPL(vma_kernel_pagesize);
Mel Gorman08fba692009-01-06 14:38:53 -0800837
838/*
Mel Gorman33402892009-01-06 14:38:54 -0800839 * Return the page size being used by the MMU to back a VMA. In the majority
840 * of cases, the page size used by the kernel matches the MMU size. On
Dan Williams09135cc2018-04-05 16:24:21 -0700841 * architectures where it differs, an architecture-specific 'strong'
842 * version of this symbol is required.
Mel Gorman33402892009-01-06 14:38:54 -0800843 */
Dan Williams09135cc2018-04-05 16:24:21 -0700844__weak unsigned long vma_mmu_pagesize(struct vm_area_struct *vma)
Mel Gorman33402892009-01-06 14:38:54 -0800845{
846 return vma_kernel_pagesize(vma);
847}
Mel Gorman33402892009-01-06 14:38:54 -0800848
849/*
Andy Whitcroft84afd992008-07-23 21:27:32 -0700850 * Flags for MAP_PRIVATE reservations. These are stored in the bottom
851 * bits of the reservation map pointer, which are always clear due to
852 * alignment.
853 */
854#define HPAGE_RESV_OWNER (1UL << 0)
855#define HPAGE_RESV_UNMAPPED (1UL << 1)
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700856#define HPAGE_RESV_MASK (HPAGE_RESV_OWNER | HPAGE_RESV_UNMAPPED)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700857
Mel Gormana1e78772008-07-23 21:27:23 -0700858/*
859 * These helpers are used to track how many pages are reserved for
860 * faults in a MAP_PRIVATE mapping. Only the process that called mmap()
861 * is guaranteed to have their future faults succeed.
862 *
863 * With the exception of reset_vma_resv_huge_pages() which is called at fork(),
864 * the reserve counters are updated with the hugetlb_lock held. It is safe
865 * to reset the VMA at fork() time as it is not in use yet and there is no
866 * chance of the global counters getting corrupted as a result of the values.
Andy Whitcroft84afd992008-07-23 21:27:32 -0700867 *
868 * The private mapping reservation is represented in a subtly different
869 * manner to a shared mapping. A shared mapping has a region map associated
870 * with the underlying file, this region map represents the backing file
871 * pages which have ever had a reservation assigned which this persists even
872 * after the page is instantiated. A private mapping has a region map
873 * associated with the original mmap which is attached to all VMAs which
874 * reference it, this region map represents those offsets which have consumed
875 * reservation ie. where pages have been instantiated.
Mel Gormana1e78772008-07-23 21:27:23 -0700876 */
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700877static unsigned long get_vma_private_data(struct vm_area_struct *vma)
878{
879 return (unsigned long)vma->vm_private_data;
880}
881
882static void set_vma_private_data(struct vm_area_struct *vma,
883 unsigned long value)
884{
885 vma->vm_private_data = (void *)value;
886}
887
Mina Almasrye9fe92a2020-04-01 21:11:21 -0700888static void
889resv_map_set_hugetlb_cgroup_uncharge_info(struct resv_map *resv_map,
890 struct hugetlb_cgroup *h_cg,
891 struct hstate *h)
892{
893#ifdef CONFIG_CGROUP_HUGETLB
894 if (!h_cg || !h) {
895 resv_map->reservation_counter = NULL;
896 resv_map->pages_per_hpage = 0;
897 resv_map->css = NULL;
898 } else {
899 resv_map->reservation_counter =
900 &h_cg->rsvd_hugepage[hstate_index(h)];
901 resv_map->pages_per_hpage = pages_per_huge_page(h);
902 resv_map->css = &h_cg->css;
903 }
904#endif
905}
906
Joonsoo Kim9119a412014-04-03 14:47:25 -0700907struct resv_map *resv_map_alloc(void)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700908{
909 struct resv_map *resv_map = kmalloc(sizeof(*resv_map), GFP_KERNEL);
Mike Kravetz5e911372015-09-08 15:01:28 -0700910 struct file_region *rg = kmalloc(sizeof(*rg), GFP_KERNEL);
911
912 if (!resv_map || !rg) {
913 kfree(resv_map);
914 kfree(rg);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700915 return NULL;
Mike Kravetz5e911372015-09-08 15:01:28 -0700916 }
Andy Whitcroft84afd992008-07-23 21:27:32 -0700917
918 kref_init(&resv_map->refs);
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700919 spin_lock_init(&resv_map->lock);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700920 INIT_LIST_HEAD(&resv_map->regions);
921
Mike Kravetz5e911372015-09-08 15:01:28 -0700922 resv_map->adds_in_progress = 0;
Mina Almasrye9fe92a2020-04-01 21:11:21 -0700923 /*
924 * Initialize these to 0. On shared mappings, 0's here indicate these
925 * fields don't do cgroup accounting. On private mappings, these will be
926 * re-initialized to the proper values, to indicate that hugetlb cgroup
927 * reservations are to be un-charged from here.
928 */
929 resv_map_set_hugetlb_cgroup_uncharge_info(resv_map, NULL, NULL);
Mike Kravetz5e911372015-09-08 15:01:28 -0700930
931 INIT_LIST_HEAD(&resv_map->region_cache);
932 list_add(&rg->link, &resv_map->region_cache);
933 resv_map->region_cache_count = 1;
934
Andy Whitcroft84afd992008-07-23 21:27:32 -0700935 return resv_map;
936}
937
Joonsoo Kim9119a412014-04-03 14:47:25 -0700938void resv_map_release(struct kref *ref)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700939{
940 struct resv_map *resv_map = container_of(ref, struct resv_map, refs);
Mike Kravetz5e911372015-09-08 15:01:28 -0700941 struct list_head *head = &resv_map->region_cache;
942 struct file_region *rg, *trg;
Andy Whitcroft84afd992008-07-23 21:27:32 -0700943
944 /* Clear out any active regions before we release the map. */
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700945 region_del(resv_map, 0, LONG_MAX);
Mike Kravetz5e911372015-09-08 15:01:28 -0700946
947 /* ... and any entries left in the cache */
948 list_for_each_entry_safe(rg, trg, head, link) {
949 list_del(&rg->link);
950 kfree(rg);
951 }
952
953 VM_BUG_ON(resv_map->adds_in_progress);
954
Andy Whitcroft84afd992008-07-23 21:27:32 -0700955 kfree(resv_map);
956}
957
Joonsoo Kim4e35f482014-04-03 14:47:30 -0700958static inline struct resv_map *inode_resv_map(struct inode *inode)
959{
Mike Kravetzf27a5132019-05-13 17:22:55 -0700960 /*
961 * At inode evict time, i_mapping may not point to the original
962 * address space within the inode. This original address space
963 * contains the pointer to the resv_map. So, always use the
964 * address space embedded within the inode.
965 * The VERY common case is inode->mapping == &inode->i_data but,
966 * this may not be true for device special inodes.
967 */
968 return (struct resv_map *)(&inode->i_data)->private_data;
Joonsoo Kim4e35f482014-04-03 14:47:30 -0700969}
970
Andy Whitcroft84afd992008-07-23 21:27:32 -0700971static struct resv_map *vma_resv_map(struct vm_area_struct *vma)
Mel Gormana1e78772008-07-23 21:27:23 -0700972{
Sasha Levin81d1b092014-10-09 15:28:10 -0700973 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
Joonsoo Kim4e35f482014-04-03 14:47:30 -0700974 if (vma->vm_flags & VM_MAYSHARE) {
975 struct address_space *mapping = vma->vm_file->f_mapping;
976 struct inode *inode = mapping->host;
977
978 return inode_resv_map(inode);
979
980 } else {
Andy Whitcroft84afd992008-07-23 21:27:32 -0700981 return (struct resv_map *)(get_vma_private_data(vma) &
982 ~HPAGE_RESV_MASK);
Joonsoo Kim4e35f482014-04-03 14:47:30 -0700983 }
Mel Gormana1e78772008-07-23 21:27:23 -0700984}
985
Andy Whitcroft84afd992008-07-23 21:27:32 -0700986static void set_vma_resv_map(struct vm_area_struct *vma, struct resv_map *map)
Mel Gormana1e78772008-07-23 21:27:23 -0700987{
Sasha Levin81d1b092014-10-09 15:28:10 -0700988 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
989 VM_BUG_ON_VMA(vma->vm_flags & VM_MAYSHARE, vma);
Mel Gormana1e78772008-07-23 21:27:23 -0700990
Andy Whitcroft84afd992008-07-23 21:27:32 -0700991 set_vma_private_data(vma, (get_vma_private_data(vma) &
992 HPAGE_RESV_MASK) | (unsigned long)map);
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700993}
994
995static void set_vma_resv_flags(struct vm_area_struct *vma, unsigned long flags)
996{
Sasha Levin81d1b092014-10-09 15:28:10 -0700997 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
998 VM_BUG_ON_VMA(vma->vm_flags & VM_MAYSHARE, vma);
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700999
1000 set_vma_private_data(vma, get_vma_private_data(vma) | flags);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001001}
1002
1003static int is_vma_resv_set(struct vm_area_struct *vma, unsigned long flag)
1004{
Sasha Levin81d1b092014-10-09 15:28:10 -07001005 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -07001006
1007 return (get_vma_private_data(vma) & flag) != 0;
Mel Gormana1e78772008-07-23 21:27:23 -07001008}
1009
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001010/* Reset counters to 0 and clear all HPAGE_RESV_* flags */
Mel Gormana1e78772008-07-23 21:27:23 -07001011void reset_vma_resv_huge_pages(struct vm_area_struct *vma)
1012{
Sasha Levin81d1b092014-10-09 15:28:10 -07001013 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
Mel Gormanf83a2752009-05-28 14:34:40 -07001014 if (!(vma->vm_flags & VM_MAYSHARE))
Mel Gormana1e78772008-07-23 21:27:23 -07001015 vma->vm_private_data = (void *)0;
1016}
1017
Mina Almasry550a7d62021-11-05 13:41:40 -07001018/*
1019 * Reset and decrement one ref on hugepage private reservation.
1020 * Called with mm->mmap_sem writer semaphore held.
1021 * This function should be only used by move_vma() and operate on
1022 * same sized vma. It should never come here with last ref on the
1023 * reservation.
1024 */
1025void clear_vma_resv_huge_pages(struct vm_area_struct *vma)
1026{
1027 /*
1028 * Clear the old hugetlb private page reservation.
1029 * It has already been transferred to new_vma.
1030 *
1031 * During a mremap() operation of a hugetlb vma we call move_vma()
1032 * which copies vma into new_vma and unmaps vma. After the copy
1033 * operation both new_vma and vma share a reference to the resv_map
1034 * struct, and at that point vma is about to be unmapped. We don't
1035 * want to return the reservation to the pool at unmap of vma because
1036 * the reservation still lives on in new_vma, so simply decrement the
1037 * ref here and remove the resv_map reference from this vma.
1038 */
1039 struct resv_map *reservations = vma_resv_map(vma);
1040
1041 if (reservations && is_vma_resv_set(vma, HPAGE_RESV_OWNER))
1042 kref_put(&reservations->refs, resv_map_release);
1043
1044 reset_vma_resv_huge_pages(vma);
1045}
1046
Mel Gormana1e78772008-07-23 21:27:23 -07001047/* Returns true if the VMA has associated reserve pages */
Nicholas Krause559ec2f2015-09-04 15:48:27 -07001048static bool vma_has_reserves(struct vm_area_struct *vma, long chg)
Mel Gormana1e78772008-07-23 21:27:23 -07001049{
Joonsoo Kimaf0ed732013-09-11 14:21:18 -07001050 if (vma->vm_flags & VM_NORESERVE) {
1051 /*
1052 * This address is already reserved by other process(chg == 0),
1053 * so, we should decrement reserved count. Without decrementing,
1054 * reserve count remains after releasing inode, because this
1055 * allocated page will go into page cache and is regarded as
1056 * coming from reserved pool in releasing step. Currently, we
1057 * don't have any other solution to deal with this situation
1058 * properly, so add work-around here.
1059 */
1060 if (vma->vm_flags & VM_MAYSHARE && chg == 0)
Nicholas Krause559ec2f2015-09-04 15:48:27 -07001061 return true;
Joonsoo Kimaf0ed732013-09-11 14:21:18 -07001062 else
Nicholas Krause559ec2f2015-09-04 15:48:27 -07001063 return false;
Joonsoo Kimaf0ed732013-09-11 14:21:18 -07001064 }
Joonsoo Kima63884e2013-09-11 14:21:07 -07001065
1066 /* Shared mappings always use reserves */
Mike Kravetz1fb1b0e2015-09-08 15:01:44 -07001067 if (vma->vm_flags & VM_MAYSHARE) {
1068 /*
1069 * We know VM_NORESERVE is not set. Therefore, there SHOULD
1070 * be a region map for all pages. The only situation where
1071 * there is no region map is if a hole was punched via
Ethon Paul7c8de352020-06-04 16:49:07 -07001072 * fallocate. In this case, there really are no reserves to
Mike Kravetz1fb1b0e2015-09-08 15:01:44 -07001073 * use. This situation is indicated if chg != 0.
1074 */
1075 if (chg)
1076 return false;
1077 else
1078 return true;
1079 }
Joonsoo Kima63884e2013-09-11 14:21:07 -07001080
1081 /*
1082 * Only the process that called mmap() has reserves for
1083 * private mappings.
1084 */
Mike Kravetz67961f92016-06-08 15:33:42 -07001085 if (is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
1086 /*
1087 * Like the shared case above, a hole punch or truncate
1088 * could have been performed on the private mapping.
1089 * Examine the value of chg to determine if reserves
1090 * actually exist or were previously consumed.
1091 * Very Subtle - The value of chg comes from a previous
1092 * call to vma_needs_reserves(). The reserve map for
1093 * private mappings has different (opposite) semantics
1094 * than that of shared mappings. vma_needs_reserves()
1095 * has already taken this difference in semantics into
1096 * account. Therefore, the meaning of chg is the same
1097 * as in the shared case above. Code could easily be
1098 * combined, but keeping it separate draws attention to
1099 * subtle differences.
1100 */
1101 if (chg)
1102 return false;
1103 else
1104 return true;
1105 }
Joonsoo Kima63884e2013-09-11 14:21:07 -07001106
Nicholas Krause559ec2f2015-09-04 15:48:27 -07001107 return false;
Mel Gormana1e78772008-07-23 21:27:23 -07001108}
1109
Andi Kleena5516432008-07-23 21:27:41 -07001110static void enqueue_huge_page(struct hstate *h, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
1112 int nid = page_to_nid(page);
Mike Kravetz9487ca62021-05-04 18:35:10 -07001113
1114 lockdep_assert_held(&hugetlb_lock);
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07001115 VM_BUG_ON_PAGE(page_count(page), page);
1116
Aneesh Kumar K.V0edaecf2012-07-31 16:42:07 -07001117 list_move(&page->lru, &h->hugepage_freelists[nid]);
Andi Kleena5516432008-07-23 21:27:41 -07001118 h->free_huge_pages++;
1119 h->free_huge_pages_node[nid]++;
Mike Kravetz6c037142021-02-24 12:09:04 -08001120 SetHPageFreed(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121}
1122
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001123static struct page *dequeue_huge_page_node_exact(struct hstate *h, int nid)
Naoya Horiguchibf50bab2010-09-08 10:19:33 +09001124{
1125 struct page *page;
Pavel Tatashin1a08ae32021-05-04 18:38:53 -07001126 bool pin = !!(current->flags & PF_MEMALLOC_PIN);
Naoya Horiguchibf50bab2010-09-08 10:19:33 +09001127
Mike Kravetz9487ca62021-05-04 18:35:10 -07001128 lockdep_assert_held(&hugetlb_lock);
Joonsoo Kimbbe88752020-08-11 18:37:38 -07001129 list_for_each_entry(page, &h->hugepage_freelists[nid], lru) {
Pavel Tatashin8e3560d2021-05-04 18:39:00 -07001130 if (pin && !is_pinnable_page(page))
Joonsoo Kimbbe88752020-08-11 18:37:38 -07001131 continue;
1132
Wei Yang6664bfc2020-10-13 16:56:39 -07001133 if (PageHWPoison(page))
1134 continue;
1135
1136 list_move(&page->lru, &h->hugepage_activelist);
1137 set_page_refcounted(page);
Mike Kravetz6c037142021-02-24 12:09:04 -08001138 ClearHPageFreed(page);
Wei Yang6664bfc2020-10-13 16:56:39 -07001139 h->free_huge_pages--;
1140 h->free_huge_pages_node[nid]--;
1141 return page;
Joonsoo Kimbbe88752020-08-11 18:37:38 -07001142 }
1143
Wei Yang6664bfc2020-10-13 16:56:39 -07001144 return NULL;
Naoya Horiguchibf50bab2010-09-08 10:19:33 +09001145}
1146
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001147static struct page *dequeue_huge_page_nodemask(struct hstate *h, gfp_t gfp_mask, int nid,
1148 nodemask_t *nmask)
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001149{
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001150 unsigned int cpuset_mems_cookie;
1151 struct zonelist *zonelist;
1152 struct zone *zone;
1153 struct zoneref *z;
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08001154 int node = NUMA_NO_NODE;
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001155
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001156 zonelist = node_zonelist(nid, gfp_mask);
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001157
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001158retry_cpuset:
1159 cpuset_mems_cookie = read_mems_allowed_begin();
1160 for_each_zone_zonelist_nodemask(zone, z, zonelist, gfp_zone(gfp_mask), nmask) {
1161 struct page *page;
1162
1163 if (!cpuset_zone_allowed(zone, gfp_mask))
1164 continue;
1165 /*
1166 * no need to ask again on the same node. Pool is node rather than
1167 * zone aware
1168 */
1169 if (zone_to_nid(zone) == node)
1170 continue;
1171 node = zone_to_nid(zone);
1172
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001173 page = dequeue_huge_page_node_exact(h, node);
1174 if (page)
1175 return page;
1176 }
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001177 if (unlikely(read_mems_allowed_retry(cpuset_mems_cookie)))
1178 goto retry_cpuset;
1179
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001180 return NULL;
1181}
1182
Andi Kleena5516432008-07-23 21:27:41 -07001183static struct page *dequeue_huge_page_vma(struct hstate *h,
1184 struct vm_area_struct *vma,
Joonsoo Kimaf0ed732013-09-11 14:21:18 -07001185 unsigned long address, int avoid_reserve,
1186 long chg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
Ben Widawskycfcaa662021-09-02 15:00:13 -07001188 struct page *page = NULL;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001189 struct mempolicy *mpol;
Vlastimil Babka04ec6262017-07-06 15:40:03 -07001190 gfp_t gfp_mask;
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001191 nodemask_t *nodemask;
Vlastimil Babka04ec6262017-07-06 15:40:03 -07001192 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Mel Gormana1e78772008-07-23 21:27:23 -07001194 /*
1195 * A child process with MAP_PRIVATE mappings created by their parent
1196 * have no page reserves. This check ensures that reservations are
1197 * not "stolen". The child may still get SIGKILLed
1198 */
Joonsoo Kimaf0ed732013-09-11 14:21:18 -07001199 if (!vma_has_reserves(vma, chg) &&
Andi Kleena5516432008-07-23 21:27:41 -07001200 h->free_huge_pages - h->resv_huge_pages == 0)
Miao Xiec0ff7452010-05-24 14:32:08 -07001201 goto err;
Mel Gormana1e78772008-07-23 21:27:23 -07001202
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001203 /* If reserves cannot be used, ensure enough pages are in the pool */
Andi Kleena5516432008-07-23 21:27:41 -07001204 if (avoid_reserve && h->free_huge_pages - h->resv_huge_pages == 0)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -07001205 goto err;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001206
Vlastimil Babka04ec6262017-07-06 15:40:03 -07001207 gfp_mask = htlb_alloc_mask(h);
1208 nid = huge_node(vma, address, gfp_mask, &mpol, &nodemask);
Ben Widawskycfcaa662021-09-02 15:00:13 -07001209
1210 if (mpol_is_preferred_many(mpol)) {
1211 page = dequeue_huge_page_nodemask(h, gfp_mask, nid, nodemask);
1212
1213 /* Fallback to all nodes if page==NULL */
1214 nodemask = NULL;
1215 }
1216
1217 if (!page)
1218 page = dequeue_huge_page_nodemask(h, gfp_mask, nid, nodemask);
1219
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001220 if (page && !avoid_reserve && vma_has_reserves(vma, chg)) {
Mike Kravetzd6995da2021-02-24 12:08:51 -08001221 SetHPageRestoreReserve(page);
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001222 h->resv_huge_pages--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07001224
1225 mpol_cond_put(mpol);
Mel Gormancc9a6c82012-03-21 16:34:11 -07001226 return page;
1227
Miao Xiec0ff7452010-05-24 14:32:08 -07001228err:
Mel Gormancc9a6c82012-03-21 16:34:11 -07001229 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230}
1231
Luiz Capitulino1cac6f22014-06-04 16:07:11 -07001232/*
1233 * common helper functions for hstate_next_node_to_{alloc|free}.
1234 * We may have allocated or freed a huge page based on a different
1235 * nodes_allowed previously, so h->next_node_to_{alloc|free} might
1236 * be outside of *nodes_allowed. Ensure that we use an allowed
1237 * node for alloc or free.
1238 */
1239static int next_node_allowed(int nid, nodemask_t *nodes_allowed)
1240{
Andrew Morton0edaf862016-05-19 17:10:58 -07001241 nid = next_node_in(nid, *nodes_allowed);
Luiz Capitulino1cac6f22014-06-04 16:07:11 -07001242 VM_BUG_ON(nid >= MAX_NUMNODES);
1243
1244 return nid;
1245}
1246
1247static int get_valid_node_allowed(int nid, nodemask_t *nodes_allowed)
1248{
1249 if (!node_isset(nid, *nodes_allowed))
1250 nid = next_node_allowed(nid, nodes_allowed);
1251 return nid;
1252}
1253
1254/*
1255 * returns the previously saved node ["this node"] from which to
1256 * allocate a persistent huge page for the pool and advance the
1257 * next node from which to allocate, handling wrap at end of node
1258 * mask.
1259 */
1260static int hstate_next_node_to_alloc(struct hstate *h,
1261 nodemask_t *nodes_allowed)
1262{
1263 int nid;
1264
1265 VM_BUG_ON(!nodes_allowed);
1266
1267 nid = get_valid_node_allowed(h->next_nid_to_alloc, nodes_allowed);
1268 h->next_nid_to_alloc = next_node_allowed(nid, nodes_allowed);
1269
1270 return nid;
1271}
1272
1273/*
Mike Kravetz10c6ec42021-05-04 18:35:03 -07001274 * helper for remove_pool_huge_page() - return the previously saved
Luiz Capitulino1cac6f22014-06-04 16:07:11 -07001275 * node ["this node"] from which to free a huge page. Advance the
1276 * next node id whether or not we find a free huge page to free so
1277 * that the next attempt to free addresses the next node.
1278 */
1279static int hstate_next_node_to_free(struct hstate *h, nodemask_t *nodes_allowed)
1280{
1281 int nid;
1282
1283 VM_BUG_ON(!nodes_allowed);
1284
1285 nid = get_valid_node_allowed(h->next_nid_to_free, nodes_allowed);
1286 h->next_nid_to_free = next_node_allowed(nid, nodes_allowed);
1287
1288 return nid;
1289}
1290
1291#define for_each_node_mask_to_alloc(hs, nr_nodes, node, mask) \
1292 for (nr_nodes = nodes_weight(*mask); \
1293 nr_nodes > 0 && \
1294 ((node = hstate_next_node_to_alloc(hs, mask)) || 1); \
1295 nr_nodes--)
1296
1297#define for_each_node_mask_to_free(hs, nr_nodes, node, mask) \
1298 for (nr_nodes = nodes_weight(*mask); \
1299 nr_nodes > 0 && \
1300 ((node = hstate_next_node_to_free(hs, mask)) || 1); \
1301 nr_nodes--)
1302
Mike Kravetz8531fc62021-11-05 13:41:33 -07001303/* used to demote non-gigantic_huge pages as well */
Mike Kravetz34d9e352021-11-05 13:41:30 -07001304static void __destroy_compound_gigantic_page(struct page *page,
1305 unsigned int order, bool demote)
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001306{
1307 int i;
1308 int nr_pages = 1 << order;
1309 struct page *p = page + 1;
1310
Gerald Schaeferc8cc7082016-06-24 14:50:04 -07001311 atomic_set(compound_mapcount_ptr(page), 0);
Yanfei Xu5291c092021-02-24 12:07:22 -08001312 atomic_set(compound_pincount_ptr(page), 0);
John Hubbard47e29d32020-04-01 21:05:33 -07001313
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001314 for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
Mike Kravetza01f4392021-11-05 13:41:27 -07001315 p->mapping = NULL;
Kirill A. Shutemov1d798ca2015-11-06 16:29:54 -08001316 clear_compound_head(p);
Mike Kravetz34d9e352021-11-05 13:41:30 -07001317 if (!demote)
1318 set_page_refcounted(p);
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001319 }
1320
1321 set_compound_order(page, 0);
Gerald Schaeferba9c1202020-12-11 13:36:53 -08001322 page[1].compound_nr = 0;
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001323 __ClearPageHead(page);
1324}
1325
Mike Kravetz8531fc62021-11-05 13:41:33 -07001326static void destroy_compound_hugetlb_page_for_demote(struct page *page,
1327 unsigned int order)
1328{
1329 __destroy_compound_gigantic_page(page, order, true);
1330}
1331
1332#ifdef CONFIG_ARCH_HAS_GIGANTIC_PAGE
Mike Kravetz34d9e352021-11-05 13:41:30 -07001333static void destroy_compound_gigantic_page(struct page *page,
1334 unsigned int order)
1335{
1336 __destroy_compound_gigantic_page(page, order, false);
1337}
1338
Kirill A. Shutemovd00181b2015-11-06 16:29:57 -08001339static void free_gigantic_page(struct page *page, unsigned int order)
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001340{
Roman Gushchincf11e852020-04-10 14:32:45 -07001341 /*
1342 * If the page isn't allocated using the cma allocator,
1343 * cma_release() returns false.
1344 */
Barry Songdbda8fe2020-07-23 21:15:30 -07001345#ifdef CONFIG_CMA
1346 if (cma_release(hugetlb_cma[page_to_nid(page)], page, 1 << order))
Roman Gushchincf11e852020-04-10 14:32:45 -07001347 return;
Barry Songdbda8fe2020-07-23 21:15:30 -07001348#endif
Roman Gushchincf11e852020-04-10 14:32:45 -07001349
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001350 free_contig_range(page_to_pfn(page), 1 << order);
1351}
1352
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07001353#ifdef CONFIG_CONTIG_ALLOC
Michal Hockod9cc948f2018-01-31 16:20:44 -08001354static struct page *alloc_gigantic_page(struct hstate *h, gfp_t gfp_mask,
1355 int nid, nodemask_t *nodemask)
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001356{
Miaohe Lin04adbc32021-05-04 18:33:22 -07001357 unsigned long nr_pages = pages_per_huge_page(h);
Li Xinhai953f0642020-09-04 16:36:10 -07001358 if (nid == NUMA_NO_NODE)
1359 nid = numa_mem_id();
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001360
Barry Songdbda8fe2020-07-23 21:15:30 -07001361#ifdef CONFIG_CMA
1362 {
Roman Gushchincf11e852020-04-10 14:32:45 -07001363 struct page *page;
1364 int node;
1365
Li Xinhai953f0642020-09-04 16:36:10 -07001366 if (hugetlb_cma[nid]) {
1367 page = cma_alloc(hugetlb_cma[nid], nr_pages,
1368 huge_page_order(h), true);
Roman Gushchincf11e852020-04-10 14:32:45 -07001369 if (page)
1370 return page;
1371 }
Li Xinhai953f0642020-09-04 16:36:10 -07001372
1373 if (!(gfp_mask & __GFP_THISNODE)) {
1374 for_each_node_mask(node, *nodemask) {
1375 if (node == nid || !hugetlb_cma[node])
1376 continue;
1377
1378 page = cma_alloc(hugetlb_cma[node], nr_pages,
1379 huge_page_order(h), true);
1380 if (page)
1381 return page;
1382 }
1383 }
Roman Gushchincf11e852020-04-10 14:32:45 -07001384 }
Barry Songdbda8fe2020-07-23 21:15:30 -07001385#endif
Roman Gushchincf11e852020-04-10 14:32:45 -07001386
Anshuman Khandual5e27a2d2019-11-30 17:55:06 -08001387 return alloc_contig_pages(nr_pages, gfp_mask, nid, nodemask);
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001388}
1389
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07001390#else /* !CONFIG_CONTIG_ALLOC */
1391static struct page *alloc_gigantic_page(struct hstate *h, gfp_t gfp_mask,
1392 int nid, nodemask_t *nodemask)
1393{
1394 return NULL;
1395}
1396#endif /* CONFIG_CONTIG_ALLOC */
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001397
Aneesh Kumar K.Ve1073d12017-07-06 15:39:17 -07001398#else /* !CONFIG_ARCH_HAS_GIGANTIC_PAGE */
Michal Hockod9cc948f2018-01-31 16:20:44 -08001399static struct page *alloc_gigantic_page(struct hstate *h, gfp_t gfp_mask,
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07001400 int nid, nodemask_t *nodemask)
1401{
1402 return NULL;
1403}
Kirill A. Shutemovd00181b2015-11-06 16:29:57 -08001404static inline void free_gigantic_page(struct page *page, unsigned int order) { }
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001405static inline void destroy_compound_gigantic_page(struct page *page,
Kirill A. Shutemovd00181b2015-11-06 16:29:57 -08001406 unsigned int order) { }
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001407#endif
1408
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001409/*
1410 * Remove hugetlb page from lists, and update dtor so that page appears
Mike Kravetz34d9e352021-11-05 13:41:30 -07001411 * as just a compound page.
1412 *
1413 * A reference is held on the page, except in the case of demote.
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001414 *
1415 * Must be called with hugetlb lock held.
1416 */
Mike Kravetz34d9e352021-11-05 13:41:30 -07001417static void __remove_hugetlb_page(struct hstate *h, struct page *page,
1418 bool adjust_surplus,
1419 bool demote)
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001420{
1421 int nid = page_to_nid(page);
1422
1423 VM_BUG_ON_PAGE(hugetlb_cgroup_from_page(page), page);
1424 VM_BUG_ON_PAGE(hugetlb_cgroup_from_page_rsvd(page), page);
1425
Mike Kravetz9487ca62021-05-04 18:35:10 -07001426 lockdep_assert_held(&hugetlb_lock);
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001427 if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
1428 return;
1429
1430 list_del(&page->lru);
1431
1432 if (HPageFreed(page)) {
1433 h->free_huge_pages--;
1434 h->free_huge_pages_node[nid]--;
1435 }
1436 if (adjust_surplus) {
1437 h->surplus_huge_pages--;
1438 h->surplus_huge_pages_node[nid]--;
1439 }
1440
Mike Kravetze32d20c2021-09-02 14:58:50 -07001441 /*
1442 * Very subtle
1443 *
1444 * For non-gigantic pages set the destructor to the normal compound
1445 * page dtor. This is needed in case someone takes an additional
1446 * temporary ref to the page, and freeing is delayed until they drop
1447 * their reference.
1448 *
1449 * For gigantic pages set the destructor to the null dtor. This
1450 * destructor will never be called. Before freeing the gigantic
1451 * page destroy_compound_gigantic_page will turn the compound page
1452 * into a simple group of pages. After this the destructor does not
1453 * apply.
1454 *
1455 * This handles the case where more than one ref is held when and
1456 * after update_and_free_page is called.
Mike Kravetz34d9e352021-11-05 13:41:30 -07001457 *
1458 * In the case of demote we do not ref count the page as it will soon
1459 * be turned into a page of smaller size.
Mike Kravetze32d20c2021-09-02 14:58:50 -07001460 */
Mike Kravetz34d9e352021-11-05 13:41:30 -07001461 if (!demote)
1462 set_page_refcounted(page);
Mike Kravetze32d20c2021-09-02 14:58:50 -07001463 if (hstate_is_gigantic(h))
1464 set_compound_page_dtor(page, NULL_COMPOUND_DTOR);
1465 else
1466 set_compound_page_dtor(page, COMPOUND_PAGE_DTOR);
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001467
1468 h->nr_huge_pages--;
1469 h->nr_huge_pages_node[nid]--;
1470}
1471
Mike Kravetz34d9e352021-11-05 13:41:30 -07001472static void remove_hugetlb_page(struct hstate *h, struct page *page,
1473 bool adjust_surplus)
1474{
1475 __remove_hugetlb_page(h, page, adjust_surplus, false);
1476}
1477
Mike Kravetz8531fc62021-11-05 13:41:33 -07001478static void remove_hugetlb_page_for_demote(struct hstate *h, struct page *page,
1479 bool adjust_surplus)
1480{
1481 __remove_hugetlb_page(h, page, adjust_surplus, true);
1482}
1483
Muchun Songad2fa372021-06-30 18:47:21 -07001484static void add_hugetlb_page(struct hstate *h, struct page *page,
1485 bool adjust_surplus)
1486{
1487 int zeroed;
1488 int nid = page_to_nid(page);
1489
1490 VM_BUG_ON_PAGE(!HPageVmemmapOptimized(page), page);
1491
1492 lockdep_assert_held(&hugetlb_lock);
1493
1494 INIT_LIST_HEAD(&page->lru);
1495 h->nr_huge_pages++;
1496 h->nr_huge_pages_node[nid]++;
1497
1498 if (adjust_surplus) {
1499 h->surplus_huge_pages++;
1500 h->surplus_huge_pages_node[nid]++;
1501 }
1502
1503 set_compound_page_dtor(page, HUGETLB_PAGE_DTOR);
1504 set_page_private(page, 0);
1505 SetHPageVmemmapOptimized(page);
1506
1507 /*
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07001508 * This page is about to be managed by the hugetlb allocator and
1509 * should have no users. Drop our reference, and check for others
1510 * just in case.
Muchun Songad2fa372021-06-30 18:47:21 -07001511 */
1512 zeroed = put_page_testzero(page);
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07001513 if (!zeroed)
1514 /*
1515 * It is VERY unlikely soneone else has taken a ref on
1516 * the page. In this case, we simply return as the
1517 * hugetlb destructor (free_huge_page) will be called
1518 * when this other ref is dropped.
1519 */
1520 return;
1521
Muchun Songad2fa372021-06-30 18:47:21 -07001522 arch_clear_hugepage_flags(page);
1523 enqueue_huge_page(h, page);
1524}
1525
Muchun Songb65d4ad2021-06-30 18:47:17 -07001526static void __update_and_free_page(struct hstate *h, struct page *page)
Adam Litke6af2acb2007-10-16 01:26:16 -07001527{
1528 int i;
Mike Kravetzdbfee5a2021-02-24 12:07:50 -08001529 struct page *subpage = page;
Andi Kleena5516432008-07-23 21:27:41 -07001530
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07001531 if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001532 return;
Andy Whitcroft18229df2008-11-06 12:53:27 -08001533
Muchun Songad2fa372021-06-30 18:47:21 -07001534 if (alloc_huge_page_vmemmap(h, page)) {
1535 spin_lock_irq(&hugetlb_lock);
1536 /*
1537 * If we cannot allocate vmemmap pages, just refuse to free the
1538 * page and put the page back on the hugetlb free list and treat
1539 * as a surplus page.
1540 */
1541 add_hugetlb_page(h, page, true);
1542 spin_unlock_irq(&hugetlb_lock);
1543 return;
1544 }
1545
Mike Kravetzdbfee5a2021-02-24 12:07:50 -08001546 for (i = 0; i < pages_per_huge_page(h);
1547 i++, subpage = mem_map_next(subpage, page, i)) {
1548 subpage->flags &= ~(1 << PG_locked | 1 << PG_error |
Chris Forbes32f84522011-07-25 17:12:14 -07001549 1 << PG_referenced | 1 << PG_dirty |
Luiz Capitulinoa7407a22014-06-04 16:07:09 -07001550 1 << PG_active | 1 << PG_private |
1551 1 << PG_writeback);
Adam Litke6af2acb2007-10-16 01:26:16 -07001552 }
Mike Kravetza01f4392021-11-05 13:41:27 -07001553
1554 /*
1555 * Non-gigantic pages demoted from CMA allocated gigantic pages
1556 * need to be given back to CMA in free_gigantic_page.
1557 */
1558 if (hstate_is_gigantic(h) ||
1559 hugetlb_cma_page(page, huge_page_order(h))) {
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001560 destroy_compound_gigantic_page(page, huge_page_order(h));
1561 free_gigantic_page(page, huge_page_order(h));
1562 } else {
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001563 __free_pages(page, huge_page_order(h));
1564 }
Adam Litke6af2acb2007-10-16 01:26:16 -07001565}
1566
Muchun Songb65d4ad2021-06-30 18:47:17 -07001567/*
1568 * As update_and_free_page() can be called under any context, so we cannot
1569 * use GFP_KERNEL to allocate vmemmap pages. However, we can defer the
1570 * actual freeing in a workqueue to prevent from using GFP_ATOMIC to allocate
1571 * the vmemmap pages.
1572 *
1573 * free_hpage_workfn() locklessly retrieves the linked list of pages to be
1574 * freed and frees them one-by-one. As the page->mapping pointer is going
1575 * to be cleared in free_hpage_workfn() anyway, it is reused as the llist_node
1576 * structure of a lockless linked list of huge pages to be freed.
1577 */
1578static LLIST_HEAD(hpage_freelist);
1579
1580static void free_hpage_workfn(struct work_struct *work)
1581{
1582 struct llist_node *node;
1583
1584 node = llist_del_all(&hpage_freelist);
1585
1586 while (node) {
1587 struct page *page;
1588 struct hstate *h;
1589
1590 page = container_of((struct address_space **)node,
1591 struct page, mapping);
1592 node = node->next;
1593 page->mapping = NULL;
1594 /*
1595 * The VM_BUG_ON_PAGE(!PageHuge(page), page) in page_hstate()
1596 * is going to trigger because a previous call to
1597 * remove_hugetlb_page() will set_compound_page_dtor(page,
1598 * NULL_COMPOUND_DTOR), so do not use page_hstate() directly.
1599 */
1600 h = size_to_hstate(page_size(page));
1601
1602 __update_and_free_page(h, page);
1603
1604 cond_resched();
1605 }
1606}
1607static DECLARE_WORK(free_hpage_work, free_hpage_workfn);
1608
1609static inline void flush_free_hpage_work(struct hstate *h)
1610{
1611 if (free_vmemmap_pages_per_hpage(h))
1612 flush_work(&free_hpage_work);
1613}
1614
1615static void update_and_free_page(struct hstate *h, struct page *page,
1616 bool atomic)
1617{
Muchun Songad2fa372021-06-30 18:47:21 -07001618 if (!HPageVmemmapOptimized(page) || !atomic) {
Muchun Songb65d4ad2021-06-30 18:47:17 -07001619 __update_and_free_page(h, page);
1620 return;
1621 }
1622
1623 /*
1624 * Defer freeing to avoid using GFP_ATOMIC to allocate vmemmap pages.
1625 *
1626 * Only call schedule_work() if hpage_freelist is previously
1627 * empty. Otherwise, schedule_work() had been called but the workfn
1628 * hasn't retrieved the list yet.
1629 */
1630 if (llist_add((struct llist_node *)&page->mapping, &hpage_freelist))
1631 schedule_work(&free_hpage_work);
1632}
1633
Mike Kravetz10c6ec42021-05-04 18:35:03 -07001634static void update_and_free_pages_bulk(struct hstate *h, struct list_head *list)
1635{
1636 struct page *page, *t_page;
1637
1638 list_for_each_entry_safe(page, t_page, list, lru) {
Muchun Songb65d4ad2021-06-30 18:47:17 -07001639 update_and_free_page(h, page, false);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07001640 cond_resched();
1641 }
1642}
1643
Andi Kleene5ff2152008-07-23 21:27:42 -07001644struct hstate *size_to_hstate(unsigned long size)
1645{
1646 struct hstate *h;
1647
1648 for_each_hstate(h) {
1649 if (huge_page_size(h) == size)
1650 return h;
1651 }
1652 return NULL;
1653}
1654
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001655void free_huge_page(struct page *page)
David Gibson27a85ef2006-03-22 00:08:56 -08001656{
Andi Kleena5516432008-07-23 21:27:41 -07001657 /*
1658 * Can't pass hstate in here because it is called from the
1659 * compound page destructor.
1660 */
Andi Kleene5ff2152008-07-23 21:27:42 -07001661 struct hstate *h = page_hstate(page);
Adam Litke7893d1d2007-10-16 01:26:18 -07001662 int nid = page_to_nid(page);
Mike Kravetzd6995da2021-02-24 12:08:51 -08001663 struct hugepage_subpool *spool = hugetlb_page_subpool(page);
Joonsoo Kim07443a82013-09-11 14:21:58 -07001664 bool restore_reserve;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001665 unsigned long flags;
David Gibson27a85ef2006-03-22 00:08:56 -08001666
Mike Kravetzb4330af2016-02-05 15:36:38 -08001667 VM_BUG_ON_PAGE(page_count(page), page);
1668 VM_BUG_ON_PAGE(page_mapcount(page), page);
Yongkai Wu8ace22b2018-12-14 14:17:10 -08001669
Mike Kravetzd6995da2021-02-24 12:08:51 -08001670 hugetlb_set_page_subpool(page, NULL);
Yongkai Wu8ace22b2018-12-14 14:17:10 -08001671 page->mapping = NULL;
Mike Kravetzd6995da2021-02-24 12:08:51 -08001672 restore_reserve = HPageRestoreReserve(page);
1673 ClearHPageRestoreReserve(page);
David Gibson27a85ef2006-03-22 00:08:56 -08001674
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07001675 /*
Mike Kravetzd6995da2021-02-24 12:08:51 -08001676 * If HPageRestoreReserve was set on page, page allocation consumed a
Mike Kravetz0919e1b2019-05-13 17:19:38 -07001677 * reservation. If the page was associated with a subpool, there
1678 * would have been a page reserved in the subpool before allocation
1679 * via hugepage_subpool_get_pages(). Since we are 'restoring' the
Miaohe Lin6c26d312021-02-24 12:07:19 -08001680 * reservation, do not call hugepage_subpool_put_pages() as this will
Mike Kravetz0919e1b2019-05-13 17:19:38 -07001681 * remove the reserved page from the subpool.
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07001682 */
Mike Kravetz0919e1b2019-05-13 17:19:38 -07001683 if (!restore_reserve) {
1684 /*
1685 * A return code of zero implies that the subpool will be
1686 * under its minimum size if the reservation is not restored
1687 * after page is free. Therefore, force restore_reserve
1688 * operation.
1689 */
1690 if (hugepage_subpool_put_pages(spool, 1) == 0)
1691 restore_reserve = true;
1692 }
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07001693
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001694 spin_lock_irqsave(&hugetlb_lock, flags);
Mike Kravetz8f251a32021-02-24 12:08:56 -08001695 ClearHPageMigratable(page);
Aneesh Kumar K.V6d76dcf2012-07-31 16:42:18 -07001696 hugetlb_cgroup_uncharge_page(hstate_index(h),
1697 pages_per_huge_page(h), page);
Mina Almasry08cf9fa2020-04-01 21:11:31 -07001698 hugetlb_cgroup_uncharge_page_rsvd(hstate_index(h),
1699 pages_per_huge_page(h), page);
Joonsoo Kim07443a82013-09-11 14:21:58 -07001700 if (restore_reserve)
1701 h->resv_huge_pages++;
1702
Mike Kravetz9157c3112021-02-24 12:09:00 -08001703 if (HPageTemporary(page)) {
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001704 remove_hugetlb_page(h, page, false);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001705 spin_unlock_irqrestore(&hugetlb_lock, flags);
Muchun Songb65d4ad2021-06-30 18:47:17 -07001706 update_and_free_page(h, page, true);
Michal Hockoab5ac902018-01-31 16:20:48 -08001707 } else if (h->surplus_huge_pages_node[nid]) {
Aneesh Kumar K.V0edaecf2012-07-31 16:42:07 -07001708 /* remove the page from active list */
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001709 remove_hugetlb_page(h, page, true);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001710 spin_unlock_irqrestore(&hugetlb_lock, flags);
Muchun Songb65d4ad2021-06-30 18:47:17 -07001711 update_and_free_page(h, page, true);
Adam Litke7893d1d2007-10-16 01:26:18 -07001712 } else {
Will Deacon5d3a5512012-10-08 16:29:32 -07001713 arch_clear_hugepage_flags(page);
Andi Kleena5516432008-07-23 21:27:41 -07001714 enqueue_huge_page(h, page);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001715 spin_unlock_irqrestore(&hugetlb_lock, flags);
Adam Litke7893d1d2007-10-16 01:26:18 -07001716 }
David Gibson27a85ef2006-03-22 00:08:56 -08001717}
1718
Oscar Salvadord3d99fc2021-05-04 18:35:23 -07001719/*
1720 * Must be called with the hugetlb lock held
1721 */
1722static void __prep_account_new_huge_page(struct hstate *h, int nid)
1723{
1724 lockdep_assert_held(&hugetlb_lock);
1725 h->nr_huge_pages++;
1726 h->nr_huge_pages_node[nid]++;
1727}
1728
Muchun Songf41f2ed2021-06-30 18:47:13 -07001729static void __prep_new_huge_page(struct hstate *h, struct page *page)
Andi Kleenb7ba30c2008-07-23 21:27:40 -07001730{
Muchun Songf41f2ed2021-06-30 18:47:13 -07001731 free_huge_page_vmemmap(h, page);
Aneesh Kumar K.V0edaecf2012-07-31 16:42:07 -07001732 INIT_LIST_HEAD(&page->lru);
Kirill A. Shutemovf1e61552015-11-06 16:29:50 -08001733 set_compound_page_dtor(page, HUGETLB_PAGE_DTOR);
Mike Kravetzff546112021-02-24 12:09:11 -08001734 hugetlb_set_page_subpool(page, NULL);
Aneesh Kumar K.V9dd540e2012-07-31 16:42:15 -07001735 set_hugetlb_cgroup(page, NULL);
Mina Almasry1adc4d42020-04-01 21:11:15 -07001736 set_hugetlb_cgroup_rsvd(page, NULL);
Oscar Salvadord3d99fc2021-05-04 18:35:23 -07001737}
1738
1739static void prep_new_huge_page(struct hstate *h, struct page *page, int nid)
1740{
Muchun Songf41f2ed2021-06-30 18:47:13 -07001741 __prep_new_huge_page(h, page);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001742 spin_lock_irq(&hugetlb_lock);
Oscar Salvadord3d99fc2021-05-04 18:35:23 -07001743 __prep_account_new_huge_page(h, nid);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001744 spin_unlock_irq(&hugetlb_lock);
Andi Kleenb7ba30c2008-07-23 21:27:40 -07001745}
1746
Mike Kravetz34d9e352021-11-05 13:41:30 -07001747static bool __prep_compound_gigantic_page(struct page *page, unsigned int order,
1748 bool demote)
Wu Fengguang20a03072009-06-16 15:32:22 -07001749{
Mike Kravetz7118fc22021-06-30 18:48:34 -07001750 int i, j;
Wu Fengguang20a03072009-06-16 15:32:22 -07001751 int nr_pages = 1 << order;
1752 struct page *p = page + 1;
1753
1754 /* we rely on prep_new_huge_page to set the destructor */
1755 set_compound_order(page, order);
Andrea Arcangelief5a22b2013-10-16 13:46:56 -07001756 __ClearPageReserved(page);
Kirill A. Shutemovde09d312016-01-15 16:51:42 -08001757 __SetPageHead(page);
Wu Fengguang20a03072009-06-16 15:32:22 -07001758 for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
Andrea Arcangelief5a22b2013-10-16 13:46:56 -07001759 /*
1760 * For gigantic hugepages allocated through bootmem at
1761 * boot, it's safer to be consistent with the not-gigantic
1762 * hugepages and clear the PG_reserved bit from all tail pages
Ethon Paul7c8de352020-06-04 16:49:07 -07001763 * too. Otherwise drivers using get_user_pages() to access tail
Andrea Arcangelief5a22b2013-10-16 13:46:56 -07001764 * pages may get the reference counting wrong if they see
1765 * PG_reserved set on a tail page (despite the head page not
1766 * having PG_reserved set). Enforcing this consistency between
1767 * head and tail pages allows drivers to optimize away a check
1768 * on the head page when they need know if put_page() is needed
1769 * after get_user_pages().
1770 */
1771 __ClearPageReserved(p);
Mike Kravetz7118fc22021-06-30 18:48:34 -07001772 /*
1773 * Subtle and very unlikely
1774 *
1775 * Gigantic 'page allocators' such as memblock or cma will
1776 * return a set of pages with each page ref counted. We need
1777 * to turn this set of pages into a compound page with tail
1778 * page ref counts set to zero. Code such as speculative page
1779 * cache adding could take a ref on a 'to be' tail page.
1780 * We need to respect any increased ref count, and only set
1781 * the ref count to zero if count is currently 1. If count
Mike Kravetz416d85e2021-09-02 14:58:43 -07001782 * is not 1, we return an error. An error return indicates
1783 * the set of pages can not be converted to a gigantic page.
1784 * The caller who allocated the pages should then discard the
1785 * pages using the appropriate free interface.
Mike Kravetz34d9e352021-11-05 13:41:30 -07001786 *
1787 * In the case of demote, the ref count will be zero.
Mike Kravetz7118fc22021-06-30 18:48:34 -07001788 */
Mike Kravetz34d9e352021-11-05 13:41:30 -07001789 if (!demote) {
1790 if (!page_ref_freeze(p, 1)) {
1791 pr_warn("HugeTLB page can not be used due to unexpected inflated ref count\n");
1792 goto out_error;
1793 }
1794 } else {
1795 VM_BUG_ON_PAGE(page_count(p), p);
Mike Kravetz7118fc22021-06-30 18:48:34 -07001796 }
Youquan Song58a84aa2011-12-08 14:34:18 -08001797 set_page_count(p, 0);
Kirill A. Shutemov1d798ca2015-11-06 16:29:54 -08001798 set_compound_head(p, page);
Wu Fengguang20a03072009-06-16 15:32:22 -07001799 }
Mike Kravetzb4330af2016-02-05 15:36:38 -08001800 atomic_set(compound_mapcount_ptr(page), -1);
Yanfei Xu5291c092021-02-24 12:07:22 -08001801 atomic_set(compound_pincount_ptr(page), 0);
Mike Kravetz7118fc22021-06-30 18:48:34 -07001802 return true;
1803
1804out_error:
1805 /* undo tail page modifications made above */
1806 p = page + 1;
1807 for (j = 1; j < i; j++, p = mem_map_next(p, page, j)) {
1808 clear_compound_head(p);
1809 set_page_refcounted(p);
1810 }
1811 /* need to clear PG_reserved on remaining tail pages */
1812 for (; j < nr_pages; j++, p = mem_map_next(p, page, j))
1813 __ClearPageReserved(p);
1814 set_compound_order(page, 0);
1815 page[1].compound_nr = 0;
1816 __ClearPageHead(page);
1817 return false;
Wu Fengguang20a03072009-06-16 15:32:22 -07001818}
1819
Mike Kravetz34d9e352021-11-05 13:41:30 -07001820static bool prep_compound_gigantic_page(struct page *page, unsigned int order)
1821{
1822 return __prep_compound_gigantic_page(page, order, false);
1823}
1824
Mike Kravetz8531fc62021-11-05 13:41:33 -07001825static bool prep_compound_gigantic_page_for_demote(struct page *page,
1826 unsigned int order)
1827{
1828 return __prep_compound_gigantic_page(page, order, true);
1829}
1830
Andrew Morton77959122012-10-08 16:34:11 -07001831/*
1832 * PageHuge() only returns true for hugetlbfs pages, but not for normal or
1833 * transparent huge pages. See the PageTransHuge() documentation for more
1834 * details.
1835 */
Wu Fengguang20a03072009-06-16 15:32:22 -07001836int PageHuge(struct page *page)
1837{
Wu Fengguang20a03072009-06-16 15:32:22 -07001838 if (!PageCompound(page))
1839 return 0;
1840
1841 page = compound_head(page);
Kirill A. Shutemovf1e61552015-11-06 16:29:50 -08001842 return page[1].compound_dtor == HUGETLB_PAGE_DTOR;
Wu Fengguang20a03072009-06-16 15:32:22 -07001843}
Naoya Horiguchi43131e12010-05-28 09:29:22 +09001844EXPORT_SYMBOL_GPL(PageHuge);
1845
Andrea Arcangeli27c73ae2013-11-21 14:32:02 -08001846/*
1847 * PageHeadHuge() only returns true for hugetlbfs head page, but not for
1848 * normal or transparent huge pages.
1849 */
1850int PageHeadHuge(struct page *page_head)
1851{
Andrea Arcangeli27c73ae2013-11-21 14:32:02 -08001852 if (!PageHead(page_head))
1853 return 0;
1854
Vlastimil Babkad4af73e2020-04-01 21:11:48 -07001855 return page_head[1].compound_dtor == HUGETLB_PAGE_DTOR;
Andrea Arcangeli27c73ae2013-11-21 14:32:02 -08001856}
Andrea Arcangeli27c73ae2013-11-21 14:32:02 -08001857
Mike Kravetzc0d03812020-04-01 21:11:05 -07001858/*
Mike Kravetzc0d03812020-04-01 21:11:05 -07001859 * Find and lock address space (mapping) in write mode.
1860 *
Mike Kravetz336bf302020-11-13 22:52:16 -08001861 * Upon entry, the page is locked which means that page_mapping() is
1862 * stable. Due to locking order, we can only trylock_write. If we can
1863 * not get the lock, simply return NULL to caller.
Mike Kravetzc0d03812020-04-01 21:11:05 -07001864 */
1865struct address_space *hugetlb_page_mapping_lock_write(struct page *hpage)
1866{
Mike Kravetz336bf302020-11-13 22:52:16 -08001867 struct address_space *mapping = page_mapping(hpage);
Mike Kravetzc0d03812020-04-01 21:11:05 -07001868
Mike Kravetzc0d03812020-04-01 21:11:05 -07001869 if (!mapping)
1870 return mapping;
1871
Mike Kravetzc0d03812020-04-01 21:11:05 -07001872 if (i_mmap_trylock_write(mapping))
1873 return mapping;
1874
Mike Kravetz336bf302020-11-13 22:52:16 -08001875 return NULL;
Mike Kravetzc0d03812020-04-01 21:11:05 -07001876}
1877
Hugh Dickinsfe19bd32021-06-24 18:39:52 -07001878pgoff_t hugetlb_basepage_index(struct page *page)
Zhang Yi13d60f42013-06-25 21:19:31 +08001879{
1880 struct page *page_head = compound_head(page);
1881 pgoff_t index = page_index(page_head);
1882 unsigned long compound_idx;
1883
Zhang Yi13d60f42013-06-25 21:19:31 +08001884 if (compound_order(page_head) >= MAX_ORDER)
1885 compound_idx = page_to_pfn(page) - page_to_pfn(page_head);
1886 else
1887 compound_idx = page - page_head;
1888
1889 return (index << compound_order(page_head)) + compound_idx;
1890}
1891
Michal Hocko0c397da2018-01-31 16:20:56 -08001892static struct page *alloc_buddy_huge_page(struct hstate *h,
Mike Kravetzf60858f2019-09-23 15:37:35 -07001893 gfp_t gfp_mask, int nid, nodemask_t *nmask,
1894 nodemask_t *node_alloc_noretry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895{
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001896 int order = huge_page_order(h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 struct page *page;
Mike Kravetzf60858f2019-09-23 15:37:35 -07001898 bool alloc_try_hard = true;
Joe Jinf96efd52007-07-15 23:38:12 -07001899
Mike Kravetzf60858f2019-09-23 15:37:35 -07001900 /*
1901 * By default we always try hard to allocate the page with
1902 * __GFP_RETRY_MAYFAIL flag. However, if we are allocating pages in
1903 * a loop (to adjust global huge page counts) and previous allocation
1904 * failed, do not continue to try hard on the same node. Use the
1905 * node_alloc_noretry bitmap to manage this state information.
1906 */
1907 if (node_alloc_noretry && node_isset(nid, *node_alloc_noretry))
1908 alloc_try_hard = false;
1909 gfp_mask |= __GFP_COMP|__GFP_NOWARN;
1910 if (alloc_try_hard)
1911 gfp_mask |= __GFP_RETRY_MAYFAIL;
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001912 if (nid == NUMA_NO_NODE)
1913 nid = numa_mem_id();
Matthew Wilcox (Oracle)84172f42021-04-29 23:01:15 -07001914 page = __alloc_pages(gfp_mask, order, nid, nmask);
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001915 if (page)
1916 __count_vm_event(HTLB_BUDDY_PGALLOC);
1917 else
1918 __count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
Nishanth Aravamudan63b46132007-10-16 01:26:24 -07001919
Mike Kravetzf60858f2019-09-23 15:37:35 -07001920 /*
1921 * If we did not specify __GFP_RETRY_MAYFAIL, but still got a page this
1922 * indicates an overall state change. Clear bit so that we resume
1923 * normal 'try hard' allocations.
1924 */
1925 if (node_alloc_noretry && page && !alloc_try_hard)
1926 node_clear(nid, *node_alloc_noretry);
1927
1928 /*
1929 * If we tried hard to get a page but failed, set bit so that
1930 * subsequent attempts will not try as hard until there is an
1931 * overall state change.
1932 */
1933 if (node_alloc_noretry && !page && alloc_try_hard)
1934 node_set(nid, *node_alloc_noretry);
1935
Nishanth Aravamudan63b46132007-10-16 01:26:24 -07001936 return page;
1937}
1938
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001939/*
Michal Hocko0c397da2018-01-31 16:20:56 -08001940 * Common helper to allocate a fresh hugetlb page. All specific allocators
1941 * should use this function to get new hugetlb pages
1942 */
1943static struct page *alloc_fresh_huge_page(struct hstate *h,
Mike Kravetzf60858f2019-09-23 15:37:35 -07001944 gfp_t gfp_mask, int nid, nodemask_t *nmask,
1945 nodemask_t *node_alloc_noretry)
Michal Hocko0c397da2018-01-31 16:20:56 -08001946{
1947 struct page *page;
Mike Kravetz7118fc22021-06-30 18:48:34 -07001948 bool retry = false;
Michal Hocko0c397da2018-01-31 16:20:56 -08001949
Mike Kravetz7118fc22021-06-30 18:48:34 -07001950retry:
Michal Hocko0c397da2018-01-31 16:20:56 -08001951 if (hstate_is_gigantic(h))
1952 page = alloc_gigantic_page(h, gfp_mask, nid, nmask);
1953 else
1954 page = alloc_buddy_huge_page(h, gfp_mask,
Mike Kravetzf60858f2019-09-23 15:37:35 -07001955 nid, nmask, node_alloc_noretry);
Michal Hocko0c397da2018-01-31 16:20:56 -08001956 if (!page)
1957 return NULL;
1958
Mike Kravetz7118fc22021-06-30 18:48:34 -07001959 if (hstate_is_gigantic(h)) {
1960 if (!prep_compound_gigantic_page(page, huge_page_order(h))) {
1961 /*
1962 * Rare failure to convert pages to compound page.
1963 * Free pages and try again - ONCE!
1964 */
1965 free_gigantic_page(page, huge_page_order(h));
1966 if (!retry) {
1967 retry = true;
1968 goto retry;
1969 }
Mike Kravetz7118fc22021-06-30 18:48:34 -07001970 return NULL;
1971 }
1972 }
Michal Hocko0c397da2018-01-31 16:20:56 -08001973 prep_new_huge_page(h, page, page_to_nid(page));
1974
1975 return page;
1976}
1977
1978/*
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001979 * Allocates a fresh page to the hugetlb allocator pool in the node interleaved
1980 * manner.
1981 */
Mike Kravetzf60858f2019-09-23 15:37:35 -07001982static int alloc_pool_huge_page(struct hstate *h, nodemask_t *nodes_allowed,
1983 nodemask_t *node_alloc_noretry)
Joonsoo Kimb2261022013-09-11 14:21:00 -07001984{
1985 struct page *page;
1986 int nr_nodes, node;
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001987 gfp_t gfp_mask = htlb_alloc_mask(h) | __GFP_THISNODE;
Joonsoo Kimb2261022013-09-11 14:21:00 -07001988
1989 for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
Mike Kravetzf60858f2019-09-23 15:37:35 -07001990 page = alloc_fresh_huge_page(h, gfp_mask, node, nodes_allowed,
1991 node_alloc_noretry);
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001992 if (page)
Joonsoo Kimb2261022013-09-11 14:21:00 -07001993 break;
Joonsoo Kimb2261022013-09-11 14:21:00 -07001994 }
1995
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001996 if (!page)
1997 return 0;
Joonsoo Kimb2261022013-09-11 14:21:00 -07001998
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001999 put_page(page); /* free it into the hugepage allocator */
2000
2001 return 1;
Joonsoo Kimb2261022013-09-11 14:21:00 -07002002}
2003
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07002004/*
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002005 * Remove huge page from pool from next node to free. Attempt to keep
2006 * persistent huge pages more or less balanced over allowed nodes.
2007 * This routine only 'removes' the hugetlb page. The caller must make
2008 * an additional call to free the page to low level allocators.
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07002009 * Called with hugetlb_lock locked.
2010 */
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002011static struct page *remove_pool_huge_page(struct hstate *h,
2012 nodemask_t *nodes_allowed,
2013 bool acct_surplus)
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07002014{
Joonsoo Kimb2261022013-09-11 14:21:00 -07002015 int nr_nodes, node;
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002016 struct page *page = NULL;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07002017
Mike Kravetz9487ca62021-05-04 18:35:10 -07002018 lockdep_assert_held(&hugetlb_lock);
Joonsoo Kimb2261022013-09-11 14:21:00 -07002019 for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
Lee Schermerhorn685f3452009-09-21 17:01:23 -07002020 /*
2021 * If we're returning unused surplus pages, only examine
2022 * nodes with surplus pages.
2023 */
Joonsoo Kimb2261022013-09-11 14:21:00 -07002024 if ((!acct_surplus || h->surplus_huge_pages_node[node]) &&
2025 !list_empty(&h->hugepage_freelists[node])) {
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002026 page = list_entry(h->hugepage_freelists[node].next,
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07002027 struct page, lru);
Mike Kravetz6eb4e882021-05-04 18:34:55 -07002028 remove_hugetlb_page(h, page, acct_surplus);
Lee Schermerhorn9a76db02009-12-14 17:58:15 -08002029 break;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07002030 }
Joonsoo Kimb2261022013-09-11 14:21:00 -07002031 }
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07002032
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002033 return page;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07002034}
2035
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002036/*
2037 * Dissolve a given free hugepage into free buddy pages. This function does
Naoya Horiguchifaf53de2019-06-28 12:06:56 -07002038 * nothing for in-use hugepages and non-hugepages.
2039 * This function returns values like below:
2040 *
Muchun Songad2fa372021-06-30 18:47:21 -07002041 * -ENOMEM: failed to allocate vmemmap pages to free the freed hugepages
2042 * when the system is under memory pressure and the feature of
2043 * freeing unused vmemmap pages associated with each hugetlb page
2044 * is enabled.
2045 * -EBUSY: failed to dissolved free hugepages or the hugepage is in-use
2046 * (allocated or reserved.)
2047 * 0: successfully dissolved free hugepages or the page is not a
2048 * hugepage (considered as already dissolved)
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002049 */
Anshuman Khandualc3114a82017-07-10 15:47:41 -07002050int dissolve_free_huge_page(struct page *page)
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002051{
Naoya Horiguchi6bc9b562018-08-23 17:00:38 -07002052 int rc = -EBUSY;
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002053
Muchun Song7ffddd42021-02-04 18:32:06 -08002054retry:
Naoya Horiguchifaf53de2019-06-28 12:06:56 -07002055 /* Not to disrupt normal path by vainly holding hugetlb_lock */
2056 if (!PageHuge(page))
2057 return 0;
2058
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002059 spin_lock_irq(&hugetlb_lock);
Naoya Horiguchifaf53de2019-06-28 12:06:56 -07002060 if (!PageHuge(page)) {
2061 rc = 0;
2062 goto out;
2063 }
2064
2065 if (!page_count(page)) {
Gerald Schaefer2247bb32016-10-07 17:01:07 -07002066 struct page *head = compound_head(page);
2067 struct hstate *h = page_hstate(head);
Naoya Horiguchi6bc9b562018-08-23 17:00:38 -07002068 if (h->free_huge_pages - h->resv_huge_pages == 0)
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002069 goto out;
Muchun Song7ffddd42021-02-04 18:32:06 -08002070
2071 /*
2072 * We should make sure that the page is already on the free list
2073 * when it is dissolved.
2074 */
Mike Kravetz6c037142021-02-24 12:09:04 -08002075 if (unlikely(!HPageFreed(head))) {
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002076 spin_unlock_irq(&hugetlb_lock);
Muchun Song7ffddd42021-02-04 18:32:06 -08002077 cond_resched();
2078
2079 /*
2080 * Theoretically, we should return -EBUSY when we
2081 * encounter this race. In fact, we have a chance
2082 * to successfully dissolve the page if we do a
2083 * retry. Because the race window is quite small.
2084 * If we seize this opportunity, it is an optimization
2085 * for increasing the success rate of dissolving page.
2086 */
2087 goto retry;
2088 }
2089
Naoya Horiguchi0c5da352021-06-04 20:01:27 -07002090 remove_hugetlb_page(h, head, false);
zhong jiangc1470b32016-08-11 15:32:55 -07002091 h->max_huge_pages--;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002092 spin_unlock_irq(&hugetlb_lock);
Muchun Songad2fa372021-06-30 18:47:21 -07002093
2094 /*
2095 * Normally update_and_free_page will allocate required vmemmmap
2096 * before freeing the page. update_and_free_page will fail to
2097 * free the page if it can not allocate required vmemmap. We
2098 * need to adjust max_huge_pages if the page is not freed.
2099 * Attempt to allocate vmemmmap here so that we can take
2100 * appropriate action on failure.
2101 */
2102 rc = alloc_huge_page_vmemmap(h, head);
2103 if (!rc) {
2104 /*
2105 * Move PageHWPoison flag from head page to the raw
2106 * error page, which makes any subpages rather than
2107 * the error page reusable.
2108 */
2109 if (PageHWPoison(head) && page != head) {
2110 SetPageHWPoison(page);
2111 ClearPageHWPoison(head);
2112 }
2113 update_and_free_page(h, head, false);
2114 } else {
2115 spin_lock_irq(&hugetlb_lock);
2116 add_hugetlb_page(h, head, false);
2117 h->max_huge_pages++;
2118 spin_unlock_irq(&hugetlb_lock);
2119 }
2120
2121 return rc;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002122 }
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002123out:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002124 spin_unlock_irq(&hugetlb_lock);
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002125 return rc;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002126}
2127
2128/*
2129 * Dissolve free hugepages in a given pfn range. Used by memory hotplug to
2130 * make specified memory blocks removable from the system.
Gerald Schaefer2247bb32016-10-07 17:01:07 -07002131 * Note that this will dissolve a free gigantic hugepage completely, if any
2132 * part of it lies within the given range.
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002133 * Also note that if dissolve_free_huge_page() returns with an error, all
2134 * free hugepages that were dissolved before that error are lost.
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002135 */
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002136int dissolve_free_huge_pages(unsigned long start_pfn, unsigned long end_pfn)
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002137{
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002138 unsigned long pfn;
Gerald Schaefereb03aa02016-10-07 17:01:13 -07002139 struct page *page;
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002140 int rc = 0;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002141
Li Zhongd0177632014-08-06 16:07:56 -07002142 if (!hugepages_supported())
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002143 return rc;
Li Zhongd0177632014-08-06 16:07:56 -07002144
Gerald Schaefereb03aa02016-10-07 17:01:13 -07002145 for (pfn = start_pfn; pfn < end_pfn; pfn += 1 << minimum_order) {
2146 page = pfn_to_page(pfn);
Naoya Horiguchifaf53de2019-06-28 12:06:56 -07002147 rc = dissolve_free_huge_page(page);
2148 if (rc)
2149 break;
Gerald Schaefereb03aa02016-10-07 17:01:13 -07002150 }
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002151
2152 return rc;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002153}
2154
Michal Hockoab5ac902018-01-31 16:20:48 -08002155/*
2156 * Allocates a fresh surplus page from the page allocator.
2157 */
Michal Hocko0c397da2018-01-31 16:20:56 -08002158static struct page *alloc_surplus_huge_page(struct hstate *h, gfp_t gfp_mask,
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002159 int nid, nodemask_t *nmask, bool zero_ref)
Adam Litke7893d1d2007-10-16 01:26:18 -07002160{
Michal Hocko9980d742018-01-31 16:20:52 -08002161 struct page *page = NULL;
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002162 bool retry = false;
Adam Litke7893d1d2007-10-16 01:26:18 -07002163
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07002164 if (hstate_is_gigantic(h))
Andi Kleenaa888a72008-07-23 21:27:47 -07002165 return NULL;
2166
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002167 spin_lock_irq(&hugetlb_lock);
Michal Hocko9980d742018-01-31 16:20:52 -08002168 if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages)
2169 goto out_unlock;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002170 spin_unlock_irq(&hugetlb_lock);
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08002171
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002172retry:
Mike Kravetzf60858f2019-09-23 15:37:35 -07002173 page = alloc_fresh_huge_page(h, gfp_mask, nid, nmask, NULL);
Michal Hocko9980d742018-01-31 16:20:52 -08002174 if (!page)
Michal Hocko0c397da2018-01-31 16:20:56 -08002175 return NULL;
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08002176
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002177 spin_lock_irq(&hugetlb_lock);
Michal Hocko9980d742018-01-31 16:20:52 -08002178 /*
2179 * We could have raced with the pool size change.
2180 * Double check that and simply deallocate the new page
2181 * if we would end up overcommiting the surpluses. Abuse
2182 * temporary page to workaround the nasty free_huge_page
2183 * codeflow
2184 */
2185 if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages) {
Mike Kravetz9157c3112021-02-24 12:09:00 -08002186 SetHPageTemporary(page);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002187 spin_unlock_irq(&hugetlb_lock);
Michal Hocko9980d742018-01-31 16:20:52 -08002188 put_page(page);
Kai Shen2bf753e2019-05-13 17:15:37 -07002189 return NULL;
Adam Litke7893d1d2007-10-16 01:26:18 -07002190 }
Michal Hocko9980d742018-01-31 16:20:52 -08002191
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002192 if (zero_ref) {
2193 /*
2194 * Caller requires a page with zero ref count.
2195 * We will drop ref count here. If someone else is holding
2196 * a ref, the page will be freed when they drop it. Abuse
2197 * temporary page flag to accomplish this.
2198 */
2199 SetHPageTemporary(page);
2200 if (!put_page_testzero(page)) {
2201 /*
2202 * Unexpected inflated ref count on freshly allocated
2203 * huge. Retry once.
2204 */
2205 pr_info("HugeTLB unexpected inflated ref count on freshly allocated page\n");
2206 spin_unlock_irq(&hugetlb_lock);
2207 if (retry)
2208 return NULL;
2209
2210 retry = true;
2211 goto retry;
2212 }
2213 ClearHPageTemporary(page);
2214 }
2215
2216 h->surplus_huge_pages++;
2217 h->surplus_huge_pages_node[page_to_nid(page)]++;
2218
Michal Hocko9980d742018-01-31 16:20:52 -08002219out_unlock:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002220 spin_unlock_irq(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -07002221
2222 return page;
2223}
2224
Joonsoo Kimbbe88752020-08-11 18:37:38 -07002225static struct page *alloc_migrate_huge_page(struct hstate *h, gfp_t gfp_mask,
Aneesh Kumar K.V9a4e9f32019-03-05 15:47:44 -08002226 int nid, nodemask_t *nmask)
Michal Hockoab5ac902018-01-31 16:20:48 -08002227{
2228 struct page *page;
2229
2230 if (hstate_is_gigantic(h))
2231 return NULL;
2232
Mike Kravetzf60858f2019-09-23 15:37:35 -07002233 page = alloc_fresh_huge_page(h, gfp_mask, nid, nmask, NULL);
Michal Hockoab5ac902018-01-31 16:20:48 -08002234 if (!page)
2235 return NULL;
2236
2237 /*
2238 * We do not account these pages as surplus because they are only
2239 * temporary and will be released properly on the last reference
2240 */
Mike Kravetz9157c3112021-02-24 12:09:00 -08002241 SetHPageTemporary(page);
Michal Hockoab5ac902018-01-31 16:20:48 -08002242
2243 return page;
2244}
2245
Adam Litkee4e574b2007-10-16 01:26:19 -07002246/*
Dave Hansen099730d2015-11-05 18:50:17 -08002247 * Use the VMA's mpolicy to allocate a huge page from the buddy.
2248 */
Dave Hansene0ec90e2015-11-05 18:50:20 -08002249static
Michal Hocko0c397da2018-01-31 16:20:56 -08002250struct page *alloc_buddy_huge_page_with_mpol(struct hstate *h,
Dave Hansen099730d2015-11-05 18:50:17 -08002251 struct vm_area_struct *vma, unsigned long addr)
2252{
Ben Widawskycfcaa662021-09-02 15:00:13 -07002253 struct page *page = NULL;
Michal Hockoaaf14e42017-07-10 15:49:08 -07002254 struct mempolicy *mpol;
2255 gfp_t gfp_mask = htlb_alloc_mask(h);
2256 int nid;
2257 nodemask_t *nodemask;
2258
2259 nid = huge_node(vma, addr, gfp_mask, &mpol, &nodemask);
Ben Widawskycfcaa662021-09-02 15:00:13 -07002260 if (mpol_is_preferred_many(mpol)) {
2261 gfp_t gfp = gfp_mask | __GFP_NOWARN;
Michal Hockoaaf14e42017-07-10 15:49:08 -07002262
Ben Widawskycfcaa662021-09-02 15:00:13 -07002263 gfp &= ~(__GFP_DIRECT_RECLAIM | __GFP_NOFAIL);
2264 page = alloc_surplus_huge_page(h, gfp, nid, nodemask, false);
2265
2266 /* Fallback to all nodes if page==NULL */
2267 nodemask = NULL;
2268 }
2269
2270 if (!page)
2271 page = alloc_surplus_huge_page(h, gfp_mask, nid, nodemask, false);
2272 mpol_cond_put(mpol);
Michal Hockoaaf14e42017-07-10 15:49:08 -07002273 return page;
Dave Hansen099730d2015-11-05 18:50:17 -08002274}
2275
Michal Hockoab5ac902018-01-31 16:20:48 -08002276/* page migration callback function */
Michal Hocko3e59fcb2017-07-10 15:49:11 -07002277struct page *alloc_huge_page_nodemask(struct hstate *h, int preferred_nid,
Joonsoo Kimd92bbc22020-08-11 18:37:17 -07002278 nodemask_t *nmask, gfp_t gfp_mask)
Michal Hocko4db9b2e2017-07-10 15:48:44 -07002279{
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002280 spin_lock_irq(&hugetlb_lock);
Michal Hocko4db9b2e2017-07-10 15:48:44 -07002281 if (h->free_huge_pages - h->resv_huge_pages > 0) {
Michal Hocko3e59fcb2017-07-10 15:49:11 -07002282 struct page *page;
2283
2284 page = dequeue_huge_page_nodemask(h, gfp_mask, preferred_nid, nmask);
2285 if (page) {
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002286 spin_unlock_irq(&hugetlb_lock);
Michal Hocko3e59fcb2017-07-10 15:49:11 -07002287 return page;
Michal Hocko4db9b2e2017-07-10 15:48:44 -07002288 }
2289 }
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002290 spin_unlock_irq(&hugetlb_lock);
Michal Hocko4db9b2e2017-07-10 15:48:44 -07002291
Michal Hocko0c397da2018-01-31 16:20:56 -08002292 return alloc_migrate_huge_page(h, gfp_mask, preferred_nid, nmask);
Michal Hocko4db9b2e2017-07-10 15:48:44 -07002293}
2294
Michal Hockoebd63722018-01-31 16:21:00 -08002295/* mempolicy aware migration callback */
Michal Hocko389c8172018-01-31 16:21:03 -08002296struct page *alloc_huge_page_vma(struct hstate *h, struct vm_area_struct *vma,
2297 unsigned long address)
Michal Hockoebd63722018-01-31 16:21:00 -08002298{
2299 struct mempolicy *mpol;
2300 nodemask_t *nodemask;
2301 struct page *page;
Michal Hockoebd63722018-01-31 16:21:00 -08002302 gfp_t gfp_mask;
2303 int node;
2304
Michal Hockoebd63722018-01-31 16:21:00 -08002305 gfp_mask = htlb_alloc_mask(h);
2306 node = huge_node(vma, address, gfp_mask, &mpol, &nodemask);
Joonsoo Kimd92bbc22020-08-11 18:37:17 -07002307 page = alloc_huge_page_nodemask(h, node, nodemask, gfp_mask);
Michal Hockoebd63722018-01-31 16:21:00 -08002308 mpol_cond_put(mpol);
2309
2310 return page;
2311}
2312
Naoya Horiguchibf50bab2010-09-08 10:19:33 +09002313/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002314 * Increase the hugetlb pool such that it can accommodate a reservation
Adam Litkee4e574b2007-10-16 01:26:19 -07002315 * of size 'delta'.
2316 */
Liu Xiang0a4f3d12020-12-14 19:12:05 -08002317static int gather_surplus_pages(struct hstate *h, long delta)
Jules Irenge1b2a1e72020-04-06 20:08:09 -07002318 __must_hold(&hugetlb_lock)
Adam Litkee4e574b2007-10-16 01:26:19 -07002319{
2320 struct list_head surplus_list;
2321 struct page *page, *tmp;
Liu Xiang0a4f3d12020-12-14 19:12:05 -08002322 int ret;
2323 long i;
2324 long needed, allocated;
Hillf Danton28073b02012-03-21 16:34:00 -07002325 bool alloc_ok = true;
Adam Litkee4e574b2007-10-16 01:26:19 -07002326
Mike Kravetz9487ca62021-05-04 18:35:10 -07002327 lockdep_assert_held(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -07002328 needed = (h->resv_huge_pages + delta) - h->free_huge_pages;
Adam Litkeac09b3a2008-03-04 14:29:38 -08002329 if (needed <= 0) {
Andi Kleena5516432008-07-23 21:27:41 -07002330 h->resv_huge_pages += delta;
Adam Litkee4e574b2007-10-16 01:26:19 -07002331 return 0;
Adam Litkeac09b3a2008-03-04 14:29:38 -08002332 }
Adam Litkee4e574b2007-10-16 01:26:19 -07002333
2334 allocated = 0;
2335 INIT_LIST_HEAD(&surplus_list);
2336
2337 ret = -ENOMEM;
2338retry:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002339 spin_unlock_irq(&hugetlb_lock);
Adam Litkee4e574b2007-10-16 01:26:19 -07002340 for (i = 0; i < needed; i++) {
Michal Hocko0c397da2018-01-31 16:20:56 -08002341 page = alloc_surplus_huge_page(h, htlb_alloc_mask(h),
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002342 NUMA_NO_NODE, NULL, true);
Hillf Danton28073b02012-03-21 16:34:00 -07002343 if (!page) {
2344 alloc_ok = false;
2345 break;
2346 }
Adam Litkee4e574b2007-10-16 01:26:19 -07002347 list_add(&page->lru, &surplus_list);
David Rientjes69ed7792017-07-10 15:48:50 -07002348 cond_resched();
Adam Litkee4e574b2007-10-16 01:26:19 -07002349 }
Hillf Danton28073b02012-03-21 16:34:00 -07002350 allocated += i;
Adam Litkee4e574b2007-10-16 01:26:19 -07002351
2352 /*
2353 * After retaking hugetlb_lock, we need to recalculate 'needed'
2354 * because either resv_huge_pages or free_huge_pages may have changed.
2355 */
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002356 spin_lock_irq(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -07002357 needed = (h->resv_huge_pages + delta) -
2358 (h->free_huge_pages + allocated);
Hillf Danton28073b02012-03-21 16:34:00 -07002359 if (needed > 0) {
2360 if (alloc_ok)
2361 goto retry;
2362 /*
2363 * We were not able to allocate enough pages to
2364 * satisfy the entire reservation so we free what
2365 * we've allocated so far.
2366 */
2367 goto free;
2368 }
Adam Litkee4e574b2007-10-16 01:26:19 -07002369 /*
2370 * The surplus_list now contains _at_least_ the number of extra pages
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002371 * needed to accommodate the reservation. Add the appropriate number
Adam Litkee4e574b2007-10-16 01:26:19 -07002372 * of pages to the hugetlb pool and free the extras back to the buddy
Adam Litkeac09b3a2008-03-04 14:29:38 -08002373 * allocator. Commit the entire reservation here to prevent another
2374 * process from stealing the pages as they are added to the pool but
2375 * before they are reserved.
Adam Litkee4e574b2007-10-16 01:26:19 -07002376 */
2377 needed += allocated;
Andi Kleena5516432008-07-23 21:27:41 -07002378 h->resv_huge_pages += delta;
Adam Litkee4e574b2007-10-16 01:26:19 -07002379 ret = 0;
Naoya Horiguchia9869b82010-09-08 10:19:37 +09002380
Adam Litke19fc3f02008-04-28 02:12:20 -07002381 /* Free the needed pages to the hugetlb pool */
Adam Litkee4e574b2007-10-16 01:26:19 -07002382 list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
Adam Litke19fc3f02008-04-28 02:12:20 -07002383 if ((--needed) < 0)
2384 break;
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002385 /* Add the page to the hugetlb allocator */
Andi Kleena5516432008-07-23 21:27:41 -07002386 enqueue_huge_page(h, page);
Adam Litke19fc3f02008-04-28 02:12:20 -07002387 }
Hillf Danton28073b02012-03-21 16:34:00 -07002388free:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002389 spin_unlock_irq(&hugetlb_lock);
Adam Litke19fc3f02008-04-28 02:12:20 -07002390
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002391 /*
2392 * Free unnecessary surplus pages to the buddy allocator.
2393 * Pages have no ref count, call free_huge_page directly.
2394 */
Joonsoo Kimc0d934b2013-09-11 14:21:02 -07002395 list_for_each_entry_safe(page, tmp, &surplus_list, lru)
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002396 free_huge_page(page);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002397 spin_lock_irq(&hugetlb_lock);
Adam Litkee4e574b2007-10-16 01:26:19 -07002398
2399 return ret;
2400}
2401
2402/*
Mike Kravetze5bbc8a2017-01-10 16:58:27 -08002403 * This routine has two main purposes:
2404 * 1) Decrement the reservation count (resv_huge_pages) by the value passed
2405 * in unused_resv_pages. This corresponds to the prior adjustments made
2406 * to the associated reservation map.
2407 * 2) Free any unused surplus pages that may have been allocated to satisfy
2408 * the reservation. As many as unused_resv_pages may be freed.
Adam Litkee4e574b2007-10-16 01:26:19 -07002409 */
Andi Kleena5516432008-07-23 21:27:41 -07002410static void return_unused_surplus_pages(struct hstate *h,
2411 unsigned long unused_resv_pages)
Adam Litkee4e574b2007-10-16 01:26:19 -07002412{
Adam Litkee4e574b2007-10-16 01:26:19 -07002413 unsigned long nr_pages;
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002414 struct page *page;
2415 LIST_HEAD(page_list);
2416
Mike Kravetz9487ca62021-05-04 18:35:10 -07002417 lockdep_assert_held(&hugetlb_lock);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002418 /* Uncommit the reservation */
2419 h->resv_huge_pages -= unused_resv_pages;
Adam Litkee4e574b2007-10-16 01:26:19 -07002420
Andi Kleenaa888a72008-07-23 21:27:47 -07002421 /* Cannot return gigantic pages currently */
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07002422 if (hstate_is_gigantic(h))
Mike Kravetze5bbc8a2017-01-10 16:58:27 -08002423 goto out;
Andi Kleenaa888a72008-07-23 21:27:47 -07002424
Mike Kravetze5bbc8a2017-01-10 16:58:27 -08002425 /*
2426 * Part (or even all) of the reservation could have been backed
2427 * by pre-allocated pages. Only free surplus pages.
2428 */
Andi Kleena5516432008-07-23 21:27:41 -07002429 nr_pages = min(unused_resv_pages, h->surplus_huge_pages);
Adam Litkee4e574b2007-10-16 01:26:19 -07002430
Lee Schermerhorn685f3452009-09-21 17:01:23 -07002431 /*
2432 * We want to release as many surplus pages as possible, spread
Lee Schermerhorn9b5e5d02009-12-14 17:58:32 -08002433 * evenly across all nodes with memory. Iterate across these nodes
2434 * until we can no longer free unreserved surplus pages. This occurs
2435 * when the nodes with surplus pages have no free pages.
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002436 * remove_pool_huge_page() will balance the freed pages across the
Lee Schermerhorn9b5e5d02009-12-14 17:58:32 -08002437 * on-line nodes with memory and will handle the hstate accounting.
Lee Schermerhorn685f3452009-09-21 17:01:23 -07002438 */
2439 while (nr_pages--) {
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002440 page = remove_pool_huge_page(h, &node_states[N_MEMORY], 1);
2441 if (!page)
Mike Kravetze5bbc8a2017-01-10 16:58:27 -08002442 goto out;
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002443
2444 list_add(&page->lru, &page_list);
Adam Litkee4e574b2007-10-16 01:26:19 -07002445 }
Mike Kravetze5bbc8a2017-01-10 16:58:27 -08002446
2447out:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002448 spin_unlock_irq(&hugetlb_lock);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002449 update_and_free_pages_bulk(h, &page_list);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002450 spin_lock_irq(&hugetlb_lock);
Adam Litkee4e574b2007-10-16 01:26:19 -07002451}
2452
Mike Kravetz5e911372015-09-08 15:01:28 -07002453
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002454/*
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002455 * vma_needs_reservation, vma_commit_reservation and vma_end_reservation
Mike Kravetz5e911372015-09-08 15:01:28 -07002456 * are used by the huge page allocation routines to manage reservations.
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002457 *
2458 * vma_needs_reservation is called to determine if the huge page at addr
2459 * within the vma has an associated reservation. If a reservation is
2460 * needed, the value 1 is returned. The caller is then responsible for
2461 * managing the global reservation and subpool usage counts. After
2462 * the huge page has been allocated, vma_commit_reservation is called
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002463 * to add the page to the reservation map. If the page allocation fails,
2464 * the reservation must be ended instead of committed. vma_end_reservation
2465 * is called in such cases.
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002466 *
2467 * In the normal case, vma_commit_reservation returns the same value
2468 * as the preceding vma_needs_reservation call. The only time this
2469 * is not the case is if a reserve map was changed between calls. It
2470 * is the responsibility of the caller to notice the difference and
2471 * take appropriate action.
Mike Kravetz96b96a92016-11-10 10:46:32 -08002472 *
2473 * vma_add_reservation is used in error paths where a reservation must
2474 * be restored when a newly allocated huge page must be freed. It is
2475 * to be called after calling vma_needs_reservation to determine if a
2476 * reservation exists.
Mike Kravetz846be082021-06-15 18:23:29 -07002477 *
2478 * vma_del_reservation is used in error paths where an entry in the reserve
2479 * map was created during huge page allocation and must be removed. It is to
2480 * be called after calling vma_needs_reservation to determine if a reservation
2481 * exists.
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002482 */
Mike Kravetz5e911372015-09-08 15:01:28 -07002483enum vma_resv_mode {
2484 VMA_NEEDS_RESV,
2485 VMA_COMMIT_RESV,
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002486 VMA_END_RESV,
Mike Kravetz96b96a92016-11-10 10:46:32 -08002487 VMA_ADD_RESV,
Mike Kravetz846be082021-06-15 18:23:29 -07002488 VMA_DEL_RESV,
Mike Kravetz5e911372015-09-08 15:01:28 -07002489};
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002490static long __vma_reservation_common(struct hstate *h,
2491 struct vm_area_struct *vma, unsigned long addr,
Mike Kravetz5e911372015-09-08 15:01:28 -07002492 enum vma_resv_mode mode)
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002493{
Joonsoo Kim4e35f482014-04-03 14:47:30 -07002494 struct resv_map *resv;
2495 pgoff_t idx;
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002496 long ret;
Mina Almasry0db9d742020-04-01 21:11:25 -07002497 long dummy_out_regions_needed;
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002498
Joonsoo Kim4e35f482014-04-03 14:47:30 -07002499 resv = vma_resv_map(vma);
2500 if (!resv)
Andy Whitcroft84afd992008-07-23 21:27:32 -07002501 return 1;
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002502
Joonsoo Kim4e35f482014-04-03 14:47:30 -07002503 idx = vma_hugecache_offset(h, vma, addr);
Mike Kravetz5e911372015-09-08 15:01:28 -07002504 switch (mode) {
2505 case VMA_NEEDS_RESV:
Mina Almasry0db9d742020-04-01 21:11:25 -07002506 ret = region_chg(resv, idx, idx + 1, &dummy_out_regions_needed);
2507 /* We assume that vma_reservation_* routines always operate on
2508 * 1 page, and that adding to resv map a 1 page entry can only
2509 * ever require 1 region.
2510 */
2511 VM_BUG_ON(dummy_out_regions_needed != 1);
Mike Kravetz5e911372015-09-08 15:01:28 -07002512 break;
2513 case VMA_COMMIT_RESV:
Mina Almasry075a61d2020-04-01 21:11:28 -07002514 ret = region_add(resv, idx, idx + 1, 1, NULL, NULL);
Mina Almasry0db9d742020-04-01 21:11:25 -07002515 /* region_add calls of range 1 should never fail. */
2516 VM_BUG_ON(ret < 0);
Mike Kravetz5e911372015-09-08 15:01:28 -07002517 break;
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002518 case VMA_END_RESV:
Mina Almasry0db9d742020-04-01 21:11:25 -07002519 region_abort(resv, idx, idx + 1, 1);
Mike Kravetz5e911372015-09-08 15:01:28 -07002520 ret = 0;
2521 break;
Mike Kravetz96b96a92016-11-10 10:46:32 -08002522 case VMA_ADD_RESV:
Mina Almasry0db9d742020-04-01 21:11:25 -07002523 if (vma->vm_flags & VM_MAYSHARE) {
Mina Almasry075a61d2020-04-01 21:11:28 -07002524 ret = region_add(resv, idx, idx + 1, 1, NULL, NULL);
Mina Almasry0db9d742020-04-01 21:11:25 -07002525 /* region_add calls of range 1 should never fail. */
2526 VM_BUG_ON(ret < 0);
2527 } else {
2528 region_abort(resv, idx, idx + 1, 1);
Mike Kravetz96b96a92016-11-10 10:46:32 -08002529 ret = region_del(resv, idx, idx + 1);
2530 }
2531 break;
Mike Kravetz846be082021-06-15 18:23:29 -07002532 case VMA_DEL_RESV:
2533 if (vma->vm_flags & VM_MAYSHARE) {
2534 region_abort(resv, idx, idx + 1, 1);
2535 ret = region_del(resv, idx, idx + 1);
2536 } else {
2537 ret = region_add(resv, idx, idx + 1, 1, NULL, NULL);
2538 /* region_add calls of range 1 should never fail. */
2539 VM_BUG_ON(ret < 0);
2540 }
2541 break;
Mike Kravetz5e911372015-09-08 15:01:28 -07002542 default:
2543 BUG();
2544 }
Andy Whitcroft84afd992008-07-23 21:27:32 -07002545
Mike Kravetz846be082021-06-15 18:23:29 -07002546 if (vma->vm_flags & VM_MAYSHARE || mode == VMA_DEL_RESV)
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002547 return ret;
Miaohe Linbf3d12b2021-05-04 18:34:32 -07002548 /*
2549 * We know private mapping must have HPAGE_RESV_OWNER set.
2550 *
2551 * In most cases, reserves always exist for private mappings.
2552 * However, a file associated with mapping could have been
2553 * hole punched or truncated after reserves were consumed.
2554 * As subsequent fault on such a range will not use reserves.
2555 * Subtle - The reserve map for private mappings has the
2556 * opposite meaning than that of shared mappings. If NO
2557 * entry is in the reserve map, it means a reservation exists.
2558 * If an entry exists in the reserve map, it means the
2559 * reservation has already been consumed. As a result, the
2560 * return value of this routine is the opposite of the
2561 * value returned from reserve map manipulation routines above.
2562 */
2563 if (ret > 0)
2564 return 0;
2565 if (ret == 0)
2566 return 1;
2567 return ret;
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002568}
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002569
2570static long vma_needs_reservation(struct hstate *h,
Andi Kleena5516432008-07-23 21:27:41 -07002571 struct vm_area_struct *vma, unsigned long addr)
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002572{
Mike Kravetz5e911372015-09-08 15:01:28 -07002573 return __vma_reservation_common(h, vma, addr, VMA_NEEDS_RESV);
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002574}
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002575
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002576static long vma_commit_reservation(struct hstate *h,
2577 struct vm_area_struct *vma, unsigned long addr)
2578{
Mike Kravetz5e911372015-09-08 15:01:28 -07002579 return __vma_reservation_common(h, vma, addr, VMA_COMMIT_RESV);
2580}
2581
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002582static void vma_end_reservation(struct hstate *h,
Mike Kravetz5e911372015-09-08 15:01:28 -07002583 struct vm_area_struct *vma, unsigned long addr)
2584{
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002585 (void)__vma_reservation_common(h, vma, addr, VMA_END_RESV);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002586}
2587
Mike Kravetz96b96a92016-11-10 10:46:32 -08002588static long vma_add_reservation(struct hstate *h,
2589 struct vm_area_struct *vma, unsigned long addr)
2590{
2591 return __vma_reservation_common(h, vma, addr, VMA_ADD_RESV);
2592}
2593
Mike Kravetz846be082021-06-15 18:23:29 -07002594static long vma_del_reservation(struct hstate *h,
2595 struct vm_area_struct *vma, unsigned long addr)
Mike Kravetz96b96a92016-11-10 10:46:32 -08002596{
Mike Kravetz846be082021-06-15 18:23:29 -07002597 return __vma_reservation_common(h, vma, addr, VMA_DEL_RESV);
2598}
Mike Kravetz96b96a92016-11-10 10:46:32 -08002599
Mike Kravetz846be082021-06-15 18:23:29 -07002600/*
2601 * This routine is called to restore reservation information on error paths.
2602 * It should ONLY be called for pages allocated via alloc_huge_page(), and
2603 * the hugetlb mutex should remain held when calling this routine.
2604 *
2605 * It handles two specific cases:
2606 * 1) A reservation was in place and the page consumed the reservation.
2607 * HPageRestoreReserve is set in the page.
2608 * 2) No reservation was in place for the page, so HPageRestoreReserve is
2609 * not set. However, alloc_huge_page always updates the reserve map.
2610 *
2611 * In case 1, free_huge_page later in the error path will increment the
2612 * global reserve count. But, free_huge_page does not have enough context
2613 * to adjust the reservation map. This case deals primarily with private
2614 * mappings. Adjust the reserve map here to be consistent with global
2615 * reserve count adjustments to be made by free_huge_page. Make sure the
2616 * reserve map indicates there is a reservation present.
2617 *
2618 * In case 2, simply undo reserve map modifications done by alloc_huge_page.
2619 */
2620void restore_reserve_on_error(struct hstate *h, struct vm_area_struct *vma,
2621 unsigned long address, struct page *page)
2622{
2623 long rc = vma_needs_reservation(h, vma, address);
2624
2625 if (HPageRestoreReserve(page)) {
2626 if (unlikely(rc < 0))
Mike Kravetz96b96a92016-11-10 10:46:32 -08002627 /*
2628 * Rare out of memory condition in reserve map
Mike Kravetzd6995da2021-02-24 12:08:51 -08002629 * manipulation. Clear HPageRestoreReserve so that
Mike Kravetz96b96a92016-11-10 10:46:32 -08002630 * global reserve count will not be incremented
2631 * by free_huge_page. This will make it appear
2632 * as though the reservation for this page was
2633 * consumed. This may prevent the task from
2634 * faulting in the page at a later time. This
2635 * is better than inconsistent global huge page
2636 * accounting of reserve counts.
2637 */
Mike Kravetzd6995da2021-02-24 12:08:51 -08002638 ClearHPageRestoreReserve(page);
Mike Kravetz846be082021-06-15 18:23:29 -07002639 else if (rc)
2640 (void)vma_add_reservation(h, vma, address);
2641 else
Mike Kravetz96b96a92016-11-10 10:46:32 -08002642 vma_end_reservation(h, vma, address);
Mike Kravetz846be082021-06-15 18:23:29 -07002643 } else {
2644 if (!rc) {
2645 /*
2646 * This indicates there is an entry in the reserve map
Mike Kravetzc7b18502021-08-19 19:04:33 -07002647 * not added by alloc_huge_page. We know it was added
Mike Kravetz846be082021-06-15 18:23:29 -07002648 * before the alloc_huge_page call, otherwise
2649 * HPageRestoreReserve would be set on the page.
2650 * Remove the entry so that a subsequent allocation
2651 * does not consume a reservation.
2652 */
2653 rc = vma_del_reservation(h, vma, address);
2654 if (rc < 0)
2655 /*
2656 * VERY rare out of memory condition. Since
2657 * we can not delete the entry, set
2658 * HPageRestoreReserve so that the reserve
2659 * count will be incremented when the page
2660 * is freed. This reserve will be consumed
2661 * on a subsequent allocation.
2662 */
2663 SetHPageRestoreReserve(page);
2664 } else if (rc < 0) {
2665 /*
2666 * Rare out of memory condition from
2667 * vma_needs_reservation call. Memory allocation is
2668 * only attempted if a new entry is needed. Therefore,
2669 * this implies there is not an entry in the
2670 * reserve map.
2671 *
2672 * For shared mappings, no entry in the map indicates
2673 * no reservation. We are done.
2674 */
2675 if (!(vma->vm_flags & VM_MAYSHARE))
2676 /*
2677 * For private mappings, no entry indicates
2678 * a reservation is present. Since we can
2679 * not add an entry, set SetHPageRestoreReserve
2680 * on the page so reserve count will be
2681 * incremented when freed. This reserve will
2682 * be consumed on a subsequent allocation.
2683 */
2684 SetHPageRestoreReserve(page);
2685 } else
2686 /*
2687 * No reservation present, do nothing
2688 */
2689 vma_end_reservation(h, vma, address);
Mike Kravetz96b96a92016-11-10 10:46:32 -08002690 }
2691}
2692
Oscar Salvador369fa222021-05-04 18:35:26 -07002693/*
2694 * alloc_and_dissolve_huge_page - Allocate a new page and dissolve the old one
2695 * @h: struct hstate old page belongs to
2696 * @old_page: Old page to dissolve
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002697 * @list: List to isolate the page in case we need to
Oscar Salvador369fa222021-05-04 18:35:26 -07002698 * Returns 0 on success, otherwise negated error.
2699 */
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002700static int alloc_and_dissolve_huge_page(struct hstate *h, struct page *old_page,
2701 struct list_head *list)
Oscar Salvador369fa222021-05-04 18:35:26 -07002702{
2703 gfp_t gfp_mask = htlb_alloc_mask(h) | __GFP_THISNODE;
2704 int nid = page_to_nid(old_page);
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002705 bool alloc_retry = false;
Oscar Salvador369fa222021-05-04 18:35:26 -07002706 struct page *new_page;
2707 int ret = 0;
2708
2709 /*
2710 * Before dissolving the page, we need to allocate a new one for the
Muchun Songf41f2ed2021-06-30 18:47:13 -07002711 * pool to remain stable. Here, we allocate the page and 'prep' it
2712 * by doing everything but actually updating counters and adding to
2713 * the pool. This simplifies and let us do most of the processing
2714 * under the lock.
Oscar Salvador369fa222021-05-04 18:35:26 -07002715 */
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002716alloc_retry:
Oscar Salvador369fa222021-05-04 18:35:26 -07002717 new_page = alloc_buddy_huge_page(h, gfp_mask, nid, NULL, NULL);
2718 if (!new_page)
2719 return -ENOMEM;
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002720 /*
2721 * If all goes well, this page will be directly added to the free
2722 * list in the pool. For this the ref count needs to be zero.
2723 * Attempt to drop now, and retry once if needed. It is VERY
2724 * unlikely there is another ref on the page.
2725 *
2726 * If someone else has a reference to the page, it will be freed
2727 * when they drop their ref. Abuse temporary page flag to accomplish
2728 * this. Retry once if there is an inflated ref count.
2729 */
2730 SetHPageTemporary(new_page);
2731 if (!put_page_testzero(new_page)) {
2732 if (alloc_retry)
2733 return -EBUSY;
2734
2735 alloc_retry = true;
2736 goto alloc_retry;
2737 }
2738 ClearHPageTemporary(new_page);
2739
Muchun Songf41f2ed2021-06-30 18:47:13 -07002740 __prep_new_huge_page(h, new_page);
Oscar Salvador369fa222021-05-04 18:35:26 -07002741
2742retry:
2743 spin_lock_irq(&hugetlb_lock);
2744 if (!PageHuge(old_page)) {
2745 /*
2746 * Freed from under us. Drop new_page too.
2747 */
2748 goto free_new;
2749 } else if (page_count(old_page)) {
2750 /*
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002751 * Someone has grabbed the page, try to isolate it here.
2752 * Fail with -EBUSY if not possible.
Oscar Salvador369fa222021-05-04 18:35:26 -07002753 */
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002754 spin_unlock_irq(&hugetlb_lock);
2755 if (!isolate_huge_page(old_page, list))
2756 ret = -EBUSY;
2757 spin_lock_irq(&hugetlb_lock);
Oscar Salvador369fa222021-05-04 18:35:26 -07002758 goto free_new;
2759 } else if (!HPageFreed(old_page)) {
2760 /*
2761 * Page's refcount is 0 but it has not been enqueued in the
2762 * freelist yet. Race window is small, so we can succeed here if
2763 * we retry.
2764 */
2765 spin_unlock_irq(&hugetlb_lock);
2766 cond_resched();
2767 goto retry;
2768 } else {
2769 /*
2770 * Ok, old_page is still a genuine free hugepage. Remove it from
2771 * the freelist and decrease the counters. These will be
2772 * incremented again when calling __prep_account_new_huge_page()
2773 * and enqueue_huge_page() for new_page. The counters will remain
2774 * stable since this happens under the lock.
2775 */
2776 remove_hugetlb_page(h, old_page, false);
2777
2778 /*
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002779 * Ref count on new page is already zero as it was dropped
2780 * earlier. It can be directly added to the pool free list.
Oscar Salvador369fa222021-05-04 18:35:26 -07002781 */
Oscar Salvador369fa222021-05-04 18:35:26 -07002782 __prep_account_new_huge_page(h, nid);
Oscar Salvador369fa222021-05-04 18:35:26 -07002783 enqueue_huge_page(h, new_page);
2784
2785 /*
2786 * Pages have been replaced, we can safely free the old one.
2787 */
2788 spin_unlock_irq(&hugetlb_lock);
Muchun Songb65d4ad2021-06-30 18:47:17 -07002789 update_and_free_page(h, old_page, false);
Oscar Salvador369fa222021-05-04 18:35:26 -07002790 }
2791
2792 return ret;
2793
2794free_new:
2795 spin_unlock_irq(&hugetlb_lock);
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002796 /* Page has a zero ref count, but needs a ref to be freed */
2797 set_page_refcounted(new_page);
Muchun Songb65d4ad2021-06-30 18:47:17 -07002798 update_and_free_page(h, new_page, false);
Oscar Salvador369fa222021-05-04 18:35:26 -07002799
2800 return ret;
2801}
2802
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002803int isolate_or_dissolve_huge_page(struct page *page, struct list_head *list)
Oscar Salvador369fa222021-05-04 18:35:26 -07002804{
2805 struct hstate *h;
2806 struct page *head;
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002807 int ret = -EBUSY;
Oscar Salvador369fa222021-05-04 18:35:26 -07002808
2809 /*
2810 * The page might have been dissolved from under our feet, so make sure
2811 * to carefully check the state under the lock.
2812 * Return success when racing as if we dissolved the page ourselves.
2813 */
2814 spin_lock_irq(&hugetlb_lock);
2815 if (PageHuge(page)) {
2816 head = compound_head(page);
2817 h = page_hstate(head);
2818 } else {
2819 spin_unlock_irq(&hugetlb_lock);
2820 return 0;
2821 }
2822 spin_unlock_irq(&hugetlb_lock);
2823
2824 /*
2825 * Fence off gigantic pages as there is a cyclic dependency between
2826 * alloc_contig_range and them. Return -ENOMEM as this has the effect
2827 * of bailing out right away without further retrying.
2828 */
2829 if (hstate_is_gigantic(h))
2830 return -ENOMEM;
2831
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002832 if (page_count(head) && isolate_huge_page(head, list))
2833 ret = 0;
2834 else if (!page_count(head))
2835 ret = alloc_and_dissolve_huge_page(h, head, list);
2836
2837 return ret;
Oscar Salvador369fa222021-05-04 18:35:26 -07002838}
2839
Mike Kravetz70c35472015-09-08 15:01:54 -07002840struct page *alloc_huge_page(struct vm_area_struct *vma,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002841 unsigned long addr, int avoid_reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842{
David Gibson90481622012-03-21 16:34:12 -07002843 struct hugepage_subpool *spool = subpool_vma(vma);
Andi Kleena5516432008-07-23 21:27:41 -07002844 struct hstate *h = hstate_vma(vma);
Adam Litke348ea202007-11-14 16:59:37 -08002845 struct page *page;
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002846 long map_chg, map_commit;
2847 long gbl_chg;
Aneesh Kumar K.V6d76dcf2012-07-31 16:42:18 -07002848 int ret, idx;
2849 struct hugetlb_cgroup *h_cg;
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002850 bool deferred_reserve;
Adam Litke2fc39ce2007-11-14 16:59:39 -08002851
Aneesh Kumar K.V6d76dcf2012-07-31 16:42:18 -07002852 idx = hstate_index(h);
Mel Gormana1e78772008-07-23 21:27:23 -07002853 /*
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002854 * Examine the region/reserve map to determine if the process
2855 * has a reservation for the page to be allocated. A return
2856 * code of zero indicates a reservation exists (no change).
Mel Gormana1e78772008-07-23 21:27:23 -07002857 */
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002858 map_chg = gbl_chg = vma_needs_reservation(h, vma, addr);
2859 if (map_chg < 0)
Aneesh Kumar K.V76dcee72012-07-31 16:41:57 -07002860 return ERR_PTR(-ENOMEM);
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002861
2862 /*
2863 * Processes that did not create the mapping will have no
2864 * reserves as indicated by the region/reserve map. Check
2865 * that the allocation will not exceed the subpool limit.
2866 * Allocations for MAP_NORESERVE mappings also need to be
2867 * checked against any subpool limit.
2868 */
2869 if (map_chg || avoid_reserve) {
2870 gbl_chg = hugepage_subpool_get_pages(spool, 1);
2871 if (gbl_chg < 0) {
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002872 vma_end_reservation(h, vma, addr);
Aneesh Kumar K.V76dcee72012-07-31 16:41:57 -07002873 return ERR_PTR(-ENOSPC);
Mike Kravetz5e911372015-09-08 15:01:28 -07002874 }
Mel Gormana1e78772008-07-23 21:27:23 -07002875
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002876 /*
2877 * Even though there was no reservation in the region/reserve
2878 * map, there could be reservations associated with the
2879 * subpool that can be used. This would be indicated if the
2880 * return value of hugepage_subpool_get_pages() is zero.
2881 * However, if avoid_reserve is specified we still avoid even
2882 * the subpool reservations.
2883 */
2884 if (avoid_reserve)
2885 gbl_chg = 1;
2886 }
2887
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002888 /* If this allocation is not consuming a reservation, charge it now.
2889 */
Miaohe Lin6501fe52021-05-04 18:33:16 -07002890 deferred_reserve = map_chg || avoid_reserve;
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002891 if (deferred_reserve) {
2892 ret = hugetlb_cgroup_charge_cgroup_rsvd(
2893 idx, pages_per_huge_page(h), &h_cg);
2894 if (ret)
2895 goto out_subpool_put;
2896 }
2897
Aneesh Kumar K.V6d76dcf2012-07-31 16:42:18 -07002898 ret = hugetlb_cgroup_charge_cgroup(idx, pages_per_huge_page(h), &h_cg);
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002899 if (ret)
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002900 goto out_uncharge_cgroup_reservation;
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002901
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002902 spin_lock_irq(&hugetlb_lock);
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002903 /*
2904 * glb_chg is passed to indicate whether or not a page must be taken
2905 * from the global free pool (global change). gbl_chg == 0 indicates
2906 * a reservation exists for the allocation.
2907 */
2908 page = dequeue_huge_page_vma(h, vma, addr, avoid_reserve, gbl_chg);
Joonsoo Kim81a6fca2013-09-11 14:20:58 -07002909 if (!page) {
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002910 spin_unlock_irq(&hugetlb_lock);
Michal Hocko0c397da2018-01-31 16:20:56 -08002911 page = alloc_buddy_huge_page_with_mpol(h, vma, addr);
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002912 if (!page)
2913 goto out_uncharge_cgroup;
Naoya Horiguchia88c7692015-12-11 13:40:24 -08002914 if (!avoid_reserve && vma_has_reserves(vma, gbl_chg)) {
Mike Kravetzd6995da2021-02-24 12:08:51 -08002915 SetHPageRestoreReserve(page);
Naoya Horiguchia88c7692015-12-11 13:40:24 -08002916 h->resv_huge_pages--;
2917 }
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002918 spin_lock_irq(&hugetlb_lock);
Wei Yang15a8d682020-10-13 16:56:33 -07002919 list_add(&page->lru, &h->hugepage_activelist);
Joonsoo Kim81a6fca2013-09-11 14:20:58 -07002920 /* Fall through */
Mel Gormana1e78772008-07-23 21:27:23 -07002921 }
Joonsoo Kim81a6fca2013-09-11 14:20:58 -07002922 hugetlb_cgroup_commit_charge(idx, pages_per_huge_page(h), h_cg, page);
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002923 /* If allocation is not consuming a reservation, also store the
2924 * hugetlb_cgroup pointer on the page.
2925 */
2926 if (deferred_reserve) {
2927 hugetlb_cgroup_commit_charge_rsvd(idx, pages_per_huge_page(h),
2928 h_cg, page);
2929 }
2930
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002931 spin_unlock_irq(&hugetlb_lock);
Mel Gormana1e78772008-07-23 21:27:23 -07002932
Mike Kravetzd6995da2021-02-24 12:08:51 -08002933 hugetlb_set_page_subpool(page, spool);
Mel Gormana1e78772008-07-23 21:27:23 -07002934
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002935 map_commit = vma_commit_reservation(h, vma, addr);
2936 if (unlikely(map_chg > map_commit)) {
Mike Kravetz33039672015-06-24 16:57:58 -07002937 /*
2938 * The page was added to the reservation map between
2939 * vma_needs_reservation and vma_commit_reservation.
2940 * This indicates a race with hugetlb_reserve_pages.
2941 * Adjust for the subpool count incremented above AND
2942 * in hugetlb_reserve_pages for the same page. Also,
2943 * the reservation count added in hugetlb_reserve_pages
2944 * no longer applies.
2945 */
2946 long rsv_adjust;
2947
2948 rsv_adjust = hugepage_subpool_put_pages(spool, 1);
2949 hugetlb_acct_memory(h, -rsv_adjust);
Mike Kravetz79aa9252020-11-01 17:07:27 -08002950 if (deferred_reserve)
2951 hugetlb_cgroup_uncharge_page_rsvd(hstate_index(h),
2952 pages_per_huge_page(h), page);
Mike Kravetz33039672015-06-24 16:57:58 -07002953 }
Adam Litke90d8b7e2007-11-14 16:59:42 -08002954 return page;
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002955
2956out_uncharge_cgroup:
2957 hugetlb_cgroup_uncharge_cgroup(idx, pages_per_huge_page(h), h_cg);
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002958out_uncharge_cgroup_reservation:
2959 if (deferred_reserve)
2960 hugetlb_cgroup_uncharge_cgroup_rsvd(idx, pages_per_huge_page(h),
2961 h_cg);
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002962out_subpool_put:
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002963 if (map_chg || avoid_reserve)
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002964 hugepage_subpool_put_pages(spool, 1);
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002965 vma_end_reservation(h, vma, addr);
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002966 return ERR_PTR(-ENOSPC);
David Gibsonb45b5bd2006-03-22 00:08:55 -08002967}
2968
Aneesh Kumar K.Ve24a1302017-07-28 10:31:25 +05302969int alloc_bootmem_huge_page(struct hstate *h)
2970 __attribute__ ((weak, alias("__alloc_bootmem_huge_page")));
2971int __alloc_bootmem_huge_page(struct hstate *h)
Andi Kleenaa888a72008-07-23 21:27:47 -07002972{
2973 struct huge_bootmem_page *m;
Joonsoo Kimb2261022013-09-11 14:21:00 -07002974 int nr_nodes, node;
Andi Kleenaa888a72008-07-23 21:27:47 -07002975
Joonsoo Kimb2261022013-09-11 14:21:00 -07002976 for_each_node_mask_to_alloc(h, nr_nodes, node, &node_states[N_MEMORY]) {
Andi Kleenaa888a72008-07-23 21:27:47 -07002977 void *addr;
2978
Mike Rapoporteb31d552018-10-30 15:08:04 -07002979 addr = memblock_alloc_try_nid_raw(
Grygorii Strashko8b89a112014-01-21 15:50:36 -08002980 huge_page_size(h), huge_page_size(h),
Mike Rapoport97ad1082018-10-30 15:09:44 -07002981 0, MEMBLOCK_ALLOC_ACCESSIBLE, node);
Andi Kleenaa888a72008-07-23 21:27:47 -07002982 if (addr) {
2983 /*
2984 * Use the beginning of the huge page to store the
2985 * huge_bootmem_page struct (until gather_bootmem
2986 * puts them into the mem_map).
2987 */
2988 m = addr;
Cyrill Gorcunov91f47662009-01-06 14:40:33 -08002989 goto found;
Andi Kleenaa888a72008-07-23 21:27:47 -07002990 }
Andi Kleenaa888a72008-07-23 21:27:47 -07002991 }
2992 return 0;
2993
2994found:
Luiz Capitulinodf994ea2014-12-12 16:55:21 -08002995 BUG_ON(!IS_ALIGNED(virt_to_phys(m), huge_page_size(h)));
Andi Kleenaa888a72008-07-23 21:27:47 -07002996 /* Put them into a private list first because mem_map is not up yet */
Cannon Matthews330d6e42018-08-17 15:49:17 -07002997 INIT_LIST_HEAD(&m->list);
Andi Kleenaa888a72008-07-23 21:27:47 -07002998 list_add(&m->list, &huge_boot_pages);
2999 m->hstate = h;
3000 return 1;
3001}
3002
Mike Kravetz48b8d742021-06-30 18:48:31 -07003003/*
3004 * Put bootmem huge pages into the standard lists after mem_map is up.
3005 * Note: This only applies to gigantic (order > MAX_ORDER) pages.
3006 */
Andi Kleenaa888a72008-07-23 21:27:47 -07003007static void __init gather_bootmem_prealloc(void)
3008{
3009 struct huge_bootmem_page *m;
3010
3011 list_for_each_entry(m, &huge_boot_pages, list) {
Mike Kravetz40d18eb2018-08-17 15:49:07 -07003012 struct page *page = virt_to_page(m);
Andi Kleenaa888a72008-07-23 21:27:47 -07003013 struct hstate *h = m->hstate;
Becky Bruceee8f2482011-07-25 17:11:50 -07003014
Mike Kravetz48b8d742021-06-30 18:48:31 -07003015 VM_BUG_ON(!hstate_is_gigantic(h));
Andi Kleenaa888a72008-07-23 21:27:47 -07003016 WARN_ON(page_count(page) != 1);
Mike Kravetz7118fc22021-06-30 18:48:34 -07003017 if (prep_compound_gigantic_page(page, huge_page_order(h))) {
3018 WARN_ON(PageReserved(page));
3019 prep_new_huge_page(h, page, page_to_nid(page));
3020 put_page(page); /* add to the hugepage allocator */
3021 } else {
Mike Kravetz416d85e2021-09-02 14:58:43 -07003022 /* VERY unlikely inflated ref count on a tail page */
Mike Kravetz7118fc22021-06-30 18:48:34 -07003023 free_gigantic_page(page, huge_page_order(h));
Mike Kravetz7118fc22021-06-30 18:48:34 -07003024 }
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08003025
Rafael Aquinib0320c72011-06-15 15:08:39 -07003026 /*
Mike Kravetz48b8d742021-06-30 18:48:31 -07003027 * We need to restore the 'stolen' pages to totalram_pages
3028 * in order to fix confusing memory reports from free(1) and
3029 * other side-effects, like CommitLimit going negative.
Rafael Aquinib0320c72011-06-15 15:08:39 -07003030 */
Mike Kravetz48b8d742021-06-30 18:48:31 -07003031 adjust_managed_page_count(page, pages_per_huge_page(h));
Cannon Matthews520495f2018-07-03 17:02:43 -07003032 cond_resched();
Andi Kleenaa888a72008-07-23 21:27:47 -07003033 }
3034}
3035
Andi Kleen8faa8b02008-07-23 21:27:48 -07003036static void __init hugetlb_hstate_alloc_pages(struct hstate *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037{
3038 unsigned long i;
Mike Kravetzf60858f2019-09-23 15:37:35 -07003039 nodemask_t *node_alloc_noretry;
3040
3041 if (!hstate_is_gigantic(h)) {
3042 /*
3043 * Bit mask controlling how hard we retry per-node allocations.
3044 * Ignore errors as lower level routines can deal with
3045 * node_alloc_noretry == NULL. If this kmalloc fails at boot
3046 * time, we are likely in bigger trouble.
3047 */
3048 node_alloc_noretry = kmalloc(sizeof(*node_alloc_noretry),
3049 GFP_KERNEL);
3050 } else {
3051 /* allocations done at boot time */
3052 node_alloc_noretry = NULL;
3053 }
3054
3055 /* bit mask controlling how hard we retry per-node allocations */
3056 if (node_alloc_noretry)
3057 nodes_clear(*node_alloc_noretry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Andi Kleene5ff2152008-07-23 21:27:42 -07003059 for (i = 0; i < h->max_huge_pages; ++i) {
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07003060 if (hstate_is_gigantic(h)) {
Barry Songdbda8fe2020-07-23 21:15:30 -07003061 if (hugetlb_cma_size) {
Roman Gushchincf11e852020-04-10 14:32:45 -07003062 pr_warn_once("HugeTLB: hugetlb_cma is enabled, skip boot time allocation\n");
Chen Wandun7ecc9562021-02-24 12:07:58 -08003063 goto free;
Roman Gushchincf11e852020-04-10 14:32:45 -07003064 }
Andi Kleenaa888a72008-07-23 21:27:47 -07003065 if (!alloc_bootmem_huge_page(h))
3066 break;
Michal Hocko0c397da2018-01-31 16:20:56 -08003067 } else if (!alloc_pool_huge_page(h,
Mike Kravetzf60858f2019-09-23 15:37:35 -07003068 &node_states[N_MEMORY],
3069 node_alloc_noretry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 break;
David Rientjes69ed7792017-07-10 15:48:50 -07003071 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 }
Liam R. Howlettd715cf82017-07-10 15:48:15 -07003073 if (i < h->max_huge_pages) {
3074 char buf[32];
3075
Matthew Wilcoxc6247f72017-07-10 15:48:56 -07003076 string_get_size(huge_page_size(h), 1, STRING_UNITS_2, buf, 32);
Liam R. Howlettd715cf82017-07-10 15:48:15 -07003077 pr_warn("HugeTLB: allocating %lu of page size %s failed. Only allocated %lu hugepages.\n",
3078 h->max_huge_pages, buf, i);
3079 h->max_huge_pages = i;
3080 }
Chen Wandun7ecc9562021-02-24 12:07:58 -08003081free:
Mike Kravetzf60858f2019-09-23 15:37:35 -07003082 kfree(node_alloc_noretry);
Andi Kleene5ff2152008-07-23 21:27:42 -07003083}
3084
3085static void __init hugetlb_init_hstates(void)
3086{
Mike Kravetz79dfc692021-11-05 13:41:20 -07003087 struct hstate *h, *h2;
Andi Kleene5ff2152008-07-23 21:27:42 -07003088
3089 for_each_hstate(h) {
Naoya Horiguchi641844f2015-06-24 16:56:59 -07003090 if (minimum_order > huge_page_order(h))
3091 minimum_order = huge_page_order(h);
3092
Andi Kleen8faa8b02008-07-23 21:27:48 -07003093 /* oversize hugepages were init'ed in early boot */
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07003094 if (!hstate_is_gigantic(h))
Andi Kleen8faa8b02008-07-23 21:27:48 -07003095 hugetlb_hstate_alloc_pages(h);
Mike Kravetz79dfc692021-11-05 13:41:20 -07003096
3097 /*
3098 * Set demote order for each hstate. Note that
3099 * h->demote_order is initially 0.
3100 * - We can not demote gigantic pages if runtime freeing
3101 * is not supported, so skip this.
Mike Kravetza01f4392021-11-05 13:41:27 -07003102 * - If CMA allocation is possible, we can not demote
3103 * HUGETLB_PAGE_ORDER or smaller size pages.
Mike Kravetz79dfc692021-11-05 13:41:20 -07003104 */
3105 if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
3106 continue;
Mike Kravetza01f4392021-11-05 13:41:27 -07003107 if (hugetlb_cma_size && h->order <= HUGETLB_PAGE_ORDER)
3108 continue;
Mike Kravetz79dfc692021-11-05 13:41:20 -07003109 for_each_hstate(h2) {
3110 if (h2 == h)
3111 continue;
3112 if (h2->order < h->order &&
3113 h2->order > h->demote_order)
3114 h->demote_order = h2->order;
3115 }
Andi Kleene5ff2152008-07-23 21:27:42 -07003116 }
Naoya Horiguchi641844f2015-06-24 16:56:59 -07003117 VM_BUG_ON(minimum_order == UINT_MAX);
Andi Kleene5ff2152008-07-23 21:27:42 -07003118}
3119
3120static void __init report_hugepages(void)
3121{
3122 struct hstate *h;
3123
3124 for_each_hstate(h) {
Andi Kleen4abd32d2008-07-23 21:27:49 -07003125 char buf[32];
Matthew Wilcoxc6247f72017-07-10 15:48:56 -07003126
3127 string_get_size(huge_page_size(h), 1, STRING_UNITS_2, buf, 32);
Andrew Mortonffb22af2013-02-22 16:32:08 -08003128 pr_info("HugeTLB registered %s page size, pre-allocated %ld pages\n",
Matthew Wilcoxc6247f72017-07-10 15:48:56 -07003129 buf, h->free_huge_pages);
Andi Kleene5ff2152008-07-23 21:27:42 -07003130 }
3131}
3132
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133#ifdef CONFIG_HIGHMEM
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003134static void try_to_free_low(struct hstate *h, unsigned long count,
3135 nodemask_t *nodes_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136{
Christoph Lameter4415cc82006-09-25 23:31:55 -07003137 int i;
Mike Kravetz11218282021-05-04 18:34:59 -07003138 LIST_HEAD(page_list);
Christoph Lameter4415cc82006-09-25 23:31:55 -07003139
Mike Kravetz9487ca62021-05-04 18:35:10 -07003140 lockdep_assert_held(&hugetlb_lock);
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07003141 if (hstate_is_gigantic(h))
Andi Kleenaa888a72008-07-23 21:27:47 -07003142 return;
3143
Mike Kravetz11218282021-05-04 18:34:59 -07003144 /*
3145 * Collect pages to be freed on a list, and free after dropping lock
3146 */
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003147 for_each_node_mask(i, *nodes_allowed) {
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003148 struct page *page, *next;
Andi Kleena5516432008-07-23 21:27:41 -07003149 struct list_head *freel = &h->hugepage_freelists[i];
3150 list_for_each_entry_safe(page, next, freel, lru) {
3151 if (count >= h->nr_huge_pages)
Mike Kravetz11218282021-05-04 18:34:59 -07003152 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 if (PageHighMem(page))
3154 continue;
Mike Kravetz6eb4e882021-05-04 18:34:55 -07003155 remove_hugetlb_page(h, page, false);
Mike Kravetz11218282021-05-04 18:34:59 -07003156 list_add(&page->lru, &page_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 }
3158 }
Mike Kravetz11218282021-05-04 18:34:59 -07003159
3160out:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003161 spin_unlock_irq(&hugetlb_lock);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003162 update_and_free_pages_bulk(h, &page_list);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003163 spin_lock_irq(&hugetlb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164}
3165#else
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003166static inline void try_to_free_low(struct hstate *h, unsigned long count,
3167 nodemask_t *nodes_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168{
3169}
3170#endif
3171
Wu Fengguang20a03072009-06-16 15:32:22 -07003172/*
3173 * Increment or decrement surplus_huge_pages. Keep node-specific counters
3174 * balanced by operating on them in a round-robin fashion.
3175 * Returns 1 if an adjustment was made.
3176 */
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003177static int adjust_pool_surplus(struct hstate *h, nodemask_t *nodes_allowed,
3178 int delta)
Wu Fengguang20a03072009-06-16 15:32:22 -07003179{
Joonsoo Kimb2261022013-09-11 14:21:00 -07003180 int nr_nodes, node;
Wu Fengguang20a03072009-06-16 15:32:22 -07003181
Mike Kravetz9487ca62021-05-04 18:35:10 -07003182 lockdep_assert_held(&hugetlb_lock);
Wu Fengguang20a03072009-06-16 15:32:22 -07003183 VM_BUG_ON(delta != -1 && delta != 1);
Wu Fengguang20a03072009-06-16 15:32:22 -07003184
Joonsoo Kimb2261022013-09-11 14:21:00 -07003185 if (delta < 0) {
3186 for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
3187 if (h->surplus_huge_pages_node[node])
3188 goto found;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07003189 }
Joonsoo Kimb2261022013-09-11 14:21:00 -07003190 } else {
3191 for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
3192 if (h->surplus_huge_pages_node[node] <
3193 h->nr_huge_pages_node[node])
3194 goto found;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07003195 }
Joonsoo Kimb2261022013-09-11 14:21:00 -07003196 }
3197 return 0;
Wu Fengguang20a03072009-06-16 15:32:22 -07003198
Joonsoo Kimb2261022013-09-11 14:21:00 -07003199found:
3200 h->surplus_huge_pages += delta;
3201 h->surplus_huge_pages_node[node] += delta;
3202 return 1;
Wu Fengguang20a03072009-06-16 15:32:22 -07003203}
3204
Andi Kleena5516432008-07-23 21:27:41 -07003205#define persistent_huge_pages(h) (h->nr_huge_pages - h->surplus_huge_pages)
Mike Kravetzfd875dc2019-05-13 17:19:20 -07003206static int set_max_huge_pages(struct hstate *h, unsigned long count, int nid,
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003207 nodemask_t *nodes_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208{
Adam Litke7893d1d2007-10-16 01:26:18 -07003209 unsigned long min_count, ret;
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003210 struct page *page;
3211 LIST_HEAD(page_list);
Mike Kravetzf60858f2019-09-23 15:37:35 -07003212 NODEMASK_ALLOC(nodemask_t, node_alloc_noretry, GFP_KERNEL);
3213
3214 /*
3215 * Bit mask controlling how hard we retry per-node allocations.
3216 * If we can not allocate the bit mask, do not attempt to allocate
3217 * the requested huge pages.
3218 */
3219 if (node_alloc_noretry)
3220 nodes_clear(*node_alloc_noretry);
3221 else
3222 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
Mike Kravetz29383962021-05-04 18:34:52 -07003224 /*
3225 * resize_lock mutex prevents concurrent adjustments to number of
3226 * pages in hstate via the proc/sysfs interfaces.
3227 */
3228 mutex_lock(&h->resize_lock);
Muchun Songb65d4ad2021-06-30 18:47:17 -07003229 flush_free_hpage_work(h);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003230 spin_lock_irq(&hugetlb_lock);
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003231
3232 /*
Mike Kravetzfd875dc2019-05-13 17:19:20 -07003233 * Check for a node specific request.
3234 * Changing node specific huge page count may require a corresponding
3235 * change to the global count. In any case, the passed node mask
3236 * (nodes_allowed) will restrict alloc/free to the specified node.
3237 */
3238 if (nid != NUMA_NO_NODE) {
3239 unsigned long old_count = count;
3240
3241 count += h->nr_huge_pages - h->nr_huge_pages_node[nid];
3242 /*
3243 * User may have specified a large count value which caused the
3244 * above calculation to overflow. In this case, they wanted
3245 * to allocate as many huge pages as possible. Set count to
3246 * largest possible value to align with their intention.
3247 */
3248 if (count < old_count)
3249 count = ULONG_MAX;
3250 }
3251
3252 /*
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003253 * Gigantic pages runtime allocation depend on the capability for large
3254 * page range allocation.
3255 * If the system does not provide this feature, return an error when
3256 * the user tries to allocate gigantic pages but let the user free the
3257 * boottime allocated gigantic pages.
3258 */
3259 if (hstate_is_gigantic(h) && !IS_ENABLED(CONFIG_CONTIG_ALLOC)) {
3260 if (count > persistent_huge_pages(h)) {
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003261 spin_unlock_irq(&hugetlb_lock);
Mike Kravetz29383962021-05-04 18:34:52 -07003262 mutex_unlock(&h->resize_lock);
Mike Kravetzf60858f2019-09-23 15:37:35 -07003263 NODEMASK_FREE(node_alloc_noretry);
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003264 return -EINVAL;
3265 }
3266 /* Fall through to decrease pool */
3267 }
Andi Kleenaa888a72008-07-23 21:27:47 -07003268
Adam Litke7893d1d2007-10-16 01:26:18 -07003269 /*
3270 * Increase the pool size
3271 * First take pages out of surplus state. Then make up the
3272 * remaining difference by allocating fresh huge pages.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08003273 *
Michal Hocko0c397da2018-01-31 16:20:56 -08003274 * We might race with alloc_surplus_huge_page() here and be unable
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08003275 * to convert a surplus huge page to a normal huge page. That is
3276 * not critical, though, it just means the overall size of the
3277 * pool might be one hugepage larger than it needs to be, but
3278 * within all the constraints specified by the sysctls.
Adam Litke7893d1d2007-10-16 01:26:18 -07003279 */
Andi Kleena5516432008-07-23 21:27:41 -07003280 while (h->surplus_huge_pages && count > persistent_huge_pages(h)) {
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003281 if (!adjust_pool_surplus(h, nodes_allowed, -1))
Adam Litke7893d1d2007-10-16 01:26:18 -07003282 break;
3283 }
3284
Andi Kleena5516432008-07-23 21:27:41 -07003285 while (count > persistent_huge_pages(h)) {
Adam Litke7893d1d2007-10-16 01:26:18 -07003286 /*
3287 * If this allocation races such that we no longer need the
3288 * page, free_huge_page will handle it by freeing the page
3289 * and reducing the surplus.
3290 */
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003291 spin_unlock_irq(&hugetlb_lock);
Jia He649920c2016-08-02 14:02:31 -07003292
3293 /* yield cpu to avoid soft lockup */
3294 cond_resched();
3295
Mike Kravetzf60858f2019-09-23 15:37:35 -07003296 ret = alloc_pool_huge_page(h, nodes_allowed,
3297 node_alloc_noretry);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003298 spin_lock_irq(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -07003299 if (!ret)
3300 goto out;
3301
Mel Gorman536240f22009-12-14 17:59:56 -08003302 /* Bail for signals. Probably ctrl-c from user */
3303 if (signal_pending(current))
3304 goto out;
Adam Litke7893d1d2007-10-16 01:26:18 -07003305 }
Adam Litke7893d1d2007-10-16 01:26:18 -07003306
3307 /*
3308 * Decrease the pool size
3309 * First return free pages to the buddy allocator (being careful
3310 * to keep enough around to satisfy reservations). Then place
3311 * pages into surplus state as needed so the pool will shrink
3312 * to the desired size as pages become free.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08003313 *
3314 * By placing pages into the surplus state independent of the
3315 * overcommit value, we are allowing the surplus pool size to
3316 * exceed overcommit. There are few sane options here. Since
Michal Hocko0c397da2018-01-31 16:20:56 -08003317 * alloc_surplus_huge_page() is checking the global counter,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08003318 * though, we'll note that we're not allowed to exceed surplus
3319 * and won't grow the pool anywhere else. Not until one of the
3320 * sysctls are changed, or the surplus pages go out of use.
Adam Litke7893d1d2007-10-16 01:26:18 -07003321 */
Andi Kleena5516432008-07-23 21:27:41 -07003322 min_count = h->resv_huge_pages + h->nr_huge_pages - h->free_huge_pages;
Adam Litke6b0c8802007-10-16 01:26:23 -07003323 min_count = max(count, min_count);
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003324 try_to_free_low(h, min_count, nodes_allowed);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003325
3326 /*
3327 * Collect pages to be removed on list without dropping lock
3328 */
Andi Kleena5516432008-07-23 21:27:41 -07003329 while (min_count < persistent_huge_pages(h)) {
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003330 page = remove_pool_huge_page(h, nodes_allowed, 0);
3331 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 break;
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003333
3334 list_add(&page->lru, &page_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 }
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003336 /* free the pages after dropping lock */
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003337 spin_unlock_irq(&hugetlb_lock);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003338 update_and_free_pages_bulk(h, &page_list);
Muchun Songb65d4ad2021-06-30 18:47:17 -07003339 flush_free_hpage_work(h);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003340 spin_lock_irq(&hugetlb_lock);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003341
Andi Kleena5516432008-07-23 21:27:41 -07003342 while (count < persistent_huge_pages(h)) {
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003343 if (!adjust_pool_surplus(h, nodes_allowed, 1))
Adam Litke7893d1d2007-10-16 01:26:18 -07003344 break;
3345 }
3346out:
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003347 h->max_huge_pages = persistent_huge_pages(h);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003348 spin_unlock_irq(&hugetlb_lock);
Mike Kravetz29383962021-05-04 18:34:52 -07003349 mutex_unlock(&h->resize_lock);
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003350
Mike Kravetzf60858f2019-09-23 15:37:35 -07003351 NODEMASK_FREE(node_alloc_noretry);
3352
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003353 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354}
3355
Mike Kravetz8531fc62021-11-05 13:41:33 -07003356static int demote_free_huge_page(struct hstate *h, struct page *page)
3357{
3358 int i, nid = page_to_nid(page);
3359 struct hstate *target_hstate;
3360 int rc = 0;
3361
3362 target_hstate = size_to_hstate(PAGE_SIZE << h->demote_order);
3363
3364 remove_hugetlb_page_for_demote(h, page, false);
3365 spin_unlock_irq(&hugetlb_lock);
3366
3367 rc = alloc_huge_page_vmemmap(h, page);
3368 if (rc) {
3369 /* Allocation of vmemmmap failed, we can not demote page */
3370 spin_lock_irq(&hugetlb_lock);
3371 set_page_refcounted(page);
3372 add_hugetlb_page(h, page, false);
3373 return rc;
3374 }
3375
3376 /*
3377 * Use destroy_compound_hugetlb_page_for_demote for all huge page
3378 * sizes as it will not ref count pages.
3379 */
3380 destroy_compound_hugetlb_page_for_demote(page, huge_page_order(h));
3381
3382 /*
3383 * Taking target hstate mutex synchronizes with set_max_huge_pages.
3384 * Without the mutex, pages added to target hstate could be marked
3385 * as surplus.
3386 *
3387 * Note that we already hold h->resize_lock. To prevent deadlock,
3388 * use the convention of always taking larger size hstate mutex first.
3389 */
3390 mutex_lock(&target_hstate->resize_lock);
3391 for (i = 0; i < pages_per_huge_page(h);
3392 i += pages_per_huge_page(target_hstate)) {
3393 if (hstate_is_gigantic(target_hstate))
3394 prep_compound_gigantic_page_for_demote(page + i,
3395 target_hstate->order);
3396 else
3397 prep_compound_page(page + i, target_hstate->order);
3398 set_page_private(page + i, 0);
3399 set_page_refcounted(page + i);
3400 prep_new_huge_page(target_hstate, page + i, nid);
3401 put_page(page + i);
3402 }
3403 mutex_unlock(&target_hstate->resize_lock);
3404
3405 spin_lock_irq(&hugetlb_lock);
3406
3407 /*
3408 * Not absolutely necessary, but for consistency update max_huge_pages
3409 * based on pool changes for the demoted page.
3410 */
3411 h->max_huge_pages--;
3412 target_hstate->max_huge_pages += pages_per_huge_page(h);
3413
3414 return rc;
3415}
3416
Mike Kravetz79dfc692021-11-05 13:41:20 -07003417static int demote_pool_huge_page(struct hstate *h, nodemask_t *nodes_allowed)
3418 __must_hold(&hugetlb_lock)
3419{
Mike Kravetz8531fc62021-11-05 13:41:33 -07003420 int nr_nodes, node;
3421 struct page *page;
Mike Kravetz79dfc692021-11-05 13:41:20 -07003422 int rc = 0;
3423
3424 lockdep_assert_held(&hugetlb_lock);
3425
3426 /* We should never get here if no demote order */
3427 if (!h->demote_order) {
3428 pr_warn("HugeTLB: NULL demote order passed to demote_pool_huge_page.\n");
3429 return -EINVAL; /* internal error */
3430 }
3431
Mike Kravetz8531fc62021-11-05 13:41:33 -07003432 for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
3433 if (!list_empty(&h->hugepage_freelists[node])) {
3434 page = list_entry(h->hugepage_freelists[node].next,
3435 struct page, lru);
3436 rc = demote_free_huge_page(h, page);
3437 break;
3438 }
3439 }
3440
Mike Kravetz79dfc692021-11-05 13:41:20 -07003441 return rc;
3442}
3443
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003444#define HSTATE_ATTR_RO(_name) \
3445 static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
3446
Mike Kravetz79dfc692021-11-05 13:41:20 -07003447#define HSTATE_ATTR_WO(_name) \
3448 static struct kobj_attribute _name##_attr = __ATTR_WO(_name)
3449
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003450#define HSTATE_ATTR(_name) \
3451 static struct kobj_attribute _name##_attr = \
3452 __ATTR(_name, 0644, _name##_show, _name##_store)
3453
3454static struct kobject *hugepages_kobj;
3455static struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
3456
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003457static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp);
3458
3459static struct hstate *kobj_to_hstate(struct kobject *kobj, int *nidp)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003460{
3461 int i;
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003462
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003463 for (i = 0; i < HUGE_MAX_HSTATE; i++)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003464 if (hstate_kobjs[i] == kobj) {
3465 if (nidp)
3466 *nidp = NUMA_NO_NODE;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003467 return &hstates[i];
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003468 }
3469
3470 return kobj_to_node_hstate(kobj, nidp);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003471}
3472
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003473static ssize_t nr_hugepages_show_common(struct kobject *kobj,
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003474 struct kobj_attribute *attr, char *buf)
3475{
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003476 struct hstate *h;
3477 unsigned long nr_huge_pages;
3478 int nid;
3479
3480 h = kobj_to_hstate(kobj, &nid);
3481 if (nid == NUMA_NO_NODE)
3482 nr_huge_pages = h->nr_huge_pages;
3483 else
3484 nr_huge_pages = h->nr_huge_pages_node[nid];
3485
Joe Perchesae7a9272020-12-14 19:14:42 -08003486 return sysfs_emit(buf, "%lu\n", nr_huge_pages);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003487}
Eric B Munsonadbe8722011-01-13 15:47:27 -08003488
David Rientjes238d3c12014-08-06 16:06:51 -07003489static ssize_t __nr_hugepages_store_common(bool obey_mempolicy,
3490 struct hstate *h, int nid,
3491 unsigned long count, size_t len)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003492{
3493 int err;
Oscar Salvador2d0adf72019-05-13 17:19:23 -07003494 nodemask_t nodes_allowed, *n_mask;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003495
Oscar Salvador2d0adf72019-05-13 17:19:23 -07003496 if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
3497 return -EINVAL;
Eric B Munsonadbe8722011-01-13 15:47:27 -08003498
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003499 if (nid == NUMA_NO_NODE) {
3500 /*
3501 * global hstate attribute
3502 */
3503 if (!(obey_mempolicy &&
Oscar Salvador2d0adf72019-05-13 17:19:23 -07003504 init_nodemask_of_mempolicy(&nodes_allowed)))
3505 n_mask = &node_states[N_MEMORY];
3506 else
3507 n_mask = &nodes_allowed;
3508 } else {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003509 /*
Mike Kravetzfd875dc2019-05-13 17:19:20 -07003510 * Node specific request. count adjustment happens in
3511 * set_max_huge_pages() after acquiring hugetlb_lock.
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003512 */
Oscar Salvador2d0adf72019-05-13 17:19:23 -07003513 init_nodemask_of_node(&nodes_allowed, nid);
3514 n_mask = &nodes_allowed;
Mike Kravetzfd875dc2019-05-13 17:19:20 -07003515 }
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003516
Oscar Salvador2d0adf72019-05-13 17:19:23 -07003517 err = set_max_huge_pages(h, count, nid, n_mask);
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003518
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003519 return err ? err : len;
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003520}
3521
David Rientjes238d3c12014-08-06 16:06:51 -07003522static ssize_t nr_hugepages_store_common(bool obey_mempolicy,
3523 struct kobject *kobj, const char *buf,
3524 size_t len)
3525{
3526 struct hstate *h;
3527 unsigned long count;
3528 int nid;
3529 int err;
3530
3531 err = kstrtoul(buf, 10, &count);
3532 if (err)
3533 return err;
3534
3535 h = kobj_to_hstate(kobj, &nid);
3536 return __nr_hugepages_store_common(obey_mempolicy, h, nid, count, len);
3537}
3538
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003539static ssize_t nr_hugepages_show(struct kobject *kobj,
3540 struct kobj_attribute *attr, char *buf)
3541{
3542 return nr_hugepages_show_common(kobj, attr, buf);
3543}
3544
3545static ssize_t nr_hugepages_store(struct kobject *kobj,
3546 struct kobj_attribute *attr, const char *buf, size_t len)
3547{
David Rientjes238d3c12014-08-06 16:06:51 -07003548 return nr_hugepages_store_common(false, kobj, buf, len);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003549}
3550HSTATE_ATTR(nr_hugepages);
3551
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003552#ifdef CONFIG_NUMA
3553
3554/*
3555 * hstate attribute for optionally mempolicy-based constraint on persistent
3556 * huge page alloc/free.
3557 */
3558static ssize_t nr_hugepages_mempolicy_show(struct kobject *kobj,
Joe Perchesae7a9272020-12-14 19:14:42 -08003559 struct kobj_attribute *attr,
3560 char *buf)
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003561{
3562 return nr_hugepages_show_common(kobj, attr, buf);
3563}
3564
3565static ssize_t nr_hugepages_mempolicy_store(struct kobject *kobj,
3566 struct kobj_attribute *attr, const char *buf, size_t len)
3567{
David Rientjes238d3c12014-08-06 16:06:51 -07003568 return nr_hugepages_store_common(true, kobj, buf, len);
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003569}
3570HSTATE_ATTR(nr_hugepages_mempolicy);
3571#endif
3572
3573
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003574static ssize_t nr_overcommit_hugepages_show(struct kobject *kobj,
3575 struct kobj_attribute *attr, char *buf)
3576{
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003577 struct hstate *h = kobj_to_hstate(kobj, NULL);
Joe Perchesae7a9272020-12-14 19:14:42 -08003578 return sysfs_emit(buf, "%lu\n", h->nr_overcommit_huge_pages);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003579}
Eric B Munsonadbe8722011-01-13 15:47:27 -08003580
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003581static ssize_t nr_overcommit_hugepages_store(struct kobject *kobj,
3582 struct kobj_attribute *attr, const char *buf, size_t count)
3583{
3584 int err;
3585 unsigned long input;
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003586 struct hstate *h = kobj_to_hstate(kobj, NULL);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003587
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07003588 if (hstate_is_gigantic(h))
Eric B Munsonadbe8722011-01-13 15:47:27 -08003589 return -EINVAL;
3590
Jingoo Han3dbb95f2013-09-11 14:20:25 -07003591 err = kstrtoul(buf, 10, &input);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003592 if (err)
Eric B Munson73ae31e2011-01-13 15:47:28 -08003593 return err;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003594
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003595 spin_lock_irq(&hugetlb_lock);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003596 h->nr_overcommit_huge_pages = input;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003597 spin_unlock_irq(&hugetlb_lock);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003598
3599 return count;
3600}
3601HSTATE_ATTR(nr_overcommit_hugepages);
3602
3603static ssize_t free_hugepages_show(struct kobject *kobj,
3604 struct kobj_attribute *attr, char *buf)
3605{
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003606 struct hstate *h;
3607 unsigned long free_huge_pages;
3608 int nid;
3609
3610 h = kobj_to_hstate(kobj, &nid);
3611 if (nid == NUMA_NO_NODE)
3612 free_huge_pages = h->free_huge_pages;
3613 else
3614 free_huge_pages = h->free_huge_pages_node[nid];
3615
Joe Perchesae7a9272020-12-14 19:14:42 -08003616 return sysfs_emit(buf, "%lu\n", free_huge_pages);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003617}
3618HSTATE_ATTR_RO(free_hugepages);
3619
3620static ssize_t resv_hugepages_show(struct kobject *kobj,
3621 struct kobj_attribute *attr, char *buf)
3622{
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003623 struct hstate *h = kobj_to_hstate(kobj, NULL);
Joe Perchesae7a9272020-12-14 19:14:42 -08003624 return sysfs_emit(buf, "%lu\n", h->resv_huge_pages);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003625}
3626HSTATE_ATTR_RO(resv_hugepages);
3627
3628static ssize_t surplus_hugepages_show(struct kobject *kobj,
3629 struct kobj_attribute *attr, char *buf)
3630{
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003631 struct hstate *h;
3632 unsigned long surplus_huge_pages;
3633 int nid;
3634
3635 h = kobj_to_hstate(kobj, &nid);
3636 if (nid == NUMA_NO_NODE)
3637 surplus_huge_pages = h->surplus_huge_pages;
3638 else
3639 surplus_huge_pages = h->surplus_huge_pages_node[nid];
3640
Joe Perchesae7a9272020-12-14 19:14:42 -08003641 return sysfs_emit(buf, "%lu\n", surplus_huge_pages);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003642}
3643HSTATE_ATTR_RO(surplus_hugepages);
3644
Mike Kravetz79dfc692021-11-05 13:41:20 -07003645static ssize_t demote_store(struct kobject *kobj,
3646 struct kobj_attribute *attr, const char *buf, size_t len)
3647{
3648 unsigned long nr_demote;
3649 unsigned long nr_available;
3650 nodemask_t nodes_allowed, *n_mask;
3651 struct hstate *h;
3652 int err = 0;
3653 int nid;
3654
3655 err = kstrtoul(buf, 10, &nr_demote);
3656 if (err)
3657 return err;
3658 h = kobj_to_hstate(kobj, &nid);
3659
3660 if (nid != NUMA_NO_NODE) {
3661 init_nodemask_of_node(&nodes_allowed, nid);
3662 n_mask = &nodes_allowed;
3663 } else {
3664 n_mask = &node_states[N_MEMORY];
3665 }
3666
3667 /* Synchronize with other sysfs operations modifying huge pages */
3668 mutex_lock(&h->resize_lock);
3669 spin_lock_irq(&hugetlb_lock);
3670
3671 while (nr_demote) {
3672 /*
3673 * Check for available pages to demote each time thorough the
3674 * loop as demote_pool_huge_page will drop hugetlb_lock.
Mike Kravetz79dfc692021-11-05 13:41:20 -07003675 */
3676 if (nid != NUMA_NO_NODE)
3677 nr_available = h->free_huge_pages_node[nid];
3678 else
3679 nr_available = h->free_huge_pages;
3680 nr_available -= h->resv_huge_pages;
3681 if (!nr_available)
3682 break;
3683
3684 err = demote_pool_huge_page(h, n_mask);
3685 if (err)
3686 break;
3687
3688 nr_demote--;
3689 }
3690
3691 spin_unlock_irq(&hugetlb_lock);
3692 mutex_unlock(&h->resize_lock);
3693
3694 if (err)
3695 return err;
3696 return len;
3697}
3698HSTATE_ATTR_WO(demote);
3699
3700static ssize_t demote_size_show(struct kobject *kobj,
3701 struct kobj_attribute *attr, char *buf)
3702{
3703 int nid;
3704 struct hstate *h = kobj_to_hstate(kobj, &nid);
3705 unsigned long demote_size = (PAGE_SIZE << h->demote_order) / SZ_1K;
3706
3707 return sysfs_emit(buf, "%lukB\n", demote_size);
3708}
3709
3710static ssize_t demote_size_store(struct kobject *kobj,
3711 struct kobj_attribute *attr,
3712 const char *buf, size_t count)
3713{
3714 struct hstate *h, *demote_hstate;
3715 unsigned long demote_size;
3716 unsigned int demote_order;
3717 int nid;
3718
3719 demote_size = (unsigned long)memparse(buf, NULL);
3720
3721 demote_hstate = size_to_hstate(demote_size);
3722 if (!demote_hstate)
3723 return -EINVAL;
3724 demote_order = demote_hstate->order;
Mike Kravetza01f4392021-11-05 13:41:27 -07003725 if (demote_order < HUGETLB_PAGE_ORDER)
3726 return -EINVAL;
Mike Kravetz79dfc692021-11-05 13:41:20 -07003727
3728 /* demote order must be smaller than hstate order */
3729 h = kobj_to_hstate(kobj, &nid);
3730 if (demote_order >= h->order)
3731 return -EINVAL;
3732
3733 /* resize_lock synchronizes access to demote size and writes */
3734 mutex_lock(&h->resize_lock);
3735 h->demote_order = demote_order;
3736 mutex_unlock(&h->resize_lock);
3737
3738 return count;
3739}
3740HSTATE_ATTR(demote_size);
3741
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003742static struct attribute *hstate_attrs[] = {
3743 &nr_hugepages_attr.attr,
3744 &nr_overcommit_hugepages_attr.attr,
3745 &free_hugepages_attr.attr,
3746 &resv_hugepages_attr.attr,
3747 &surplus_hugepages_attr.attr,
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003748#ifdef CONFIG_NUMA
3749 &nr_hugepages_mempolicy_attr.attr,
3750#endif
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003751 NULL,
3752};
3753
Arvind Yadav67e5ed92017-09-06 16:22:06 -07003754static const struct attribute_group hstate_attr_group = {
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003755 .attrs = hstate_attrs,
3756};
3757
Mike Kravetz79dfc692021-11-05 13:41:20 -07003758static struct attribute *hstate_demote_attrs[] = {
3759 &demote_size_attr.attr,
3760 &demote_attr.attr,
3761 NULL,
3762};
3763
3764static const struct attribute_group hstate_demote_attr_group = {
3765 .attrs = hstate_demote_attrs,
3766};
3767
Jeff Mahoney094e9532010-02-02 13:44:14 -08003768static int hugetlb_sysfs_add_hstate(struct hstate *h, struct kobject *parent,
3769 struct kobject **hstate_kobjs,
Arvind Yadav67e5ed92017-09-06 16:22:06 -07003770 const struct attribute_group *hstate_attr_group)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003771{
3772 int retval;
Aneesh Kumar K.V972dc4d2012-07-31 16:42:00 -07003773 int hi = hstate_index(h);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003774
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003775 hstate_kobjs[hi] = kobject_create_and_add(h->name, parent);
3776 if (!hstate_kobjs[hi])
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003777 return -ENOMEM;
3778
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003779 retval = sysfs_create_group(hstate_kobjs[hi], hstate_attr_group);
Miaohe Lincc2205a2021-02-24 12:06:50 -08003780 if (retval) {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003781 kobject_put(hstate_kobjs[hi]);
Miaohe Lincc2205a2021-02-24 12:06:50 -08003782 hstate_kobjs[hi] = NULL;
3783 }
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003784
Mike Kravetz79dfc692021-11-05 13:41:20 -07003785 if (h->demote_order) {
3786 if (sysfs_create_group(hstate_kobjs[hi],
3787 &hstate_demote_attr_group))
3788 pr_warn("HugeTLB unable to create demote interfaces for %s\n", h->name);
3789 }
3790
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003791 return retval;
3792}
3793
3794static void __init hugetlb_sysfs_init(void)
3795{
3796 struct hstate *h;
3797 int err;
3798
3799 hugepages_kobj = kobject_create_and_add("hugepages", mm_kobj);
3800 if (!hugepages_kobj)
3801 return;
3802
3803 for_each_hstate(h) {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003804 err = hugetlb_sysfs_add_hstate(h, hugepages_kobj,
3805 hstate_kobjs, &hstate_attr_group);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003806 if (err)
Mike Kravetz282f4212020-06-03 16:00:46 -07003807 pr_err("HugeTLB: Unable to add hstate %s", h->name);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003808 }
3809}
3810
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003811#ifdef CONFIG_NUMA
3812
3813/*
3814 * node_hstate/s - associate per node hstate attributes, via their kobjects,
Kay Sievers10fbcf42011-12-21 14:48:43 -08003815 * with node devices in node_devices[] using a parallel array. The array
3816 * index of a node device or _hstate == node id.
3817 * This is here to avoid any static dependency of the node device driver, in
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003818 * the base kernel, on the hugetlb module.
3819 */
3820struct node_hstate {
3821 struct kobject *hugepages_kobj;
3822 struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
3823};
Alexander Kuleshovb4e289a2015-11-05 18:50:14 -08003824static struct node_hstate node_hstates[MAX_NUMNODES];
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003825
3826/*
Kay Sievers10fbcf42011-12-21 14:48:43 -08003827 * A subset of global hstate attributes for node devices
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003828 */
3829static struct attribute *per_node_hstate_attrs[] = {
3830 &nr_hugepages_attr.attr,
3831 &free_hugepages_attr.attr,
3832 &surplus_hugepages_attr.attr,
3833 NULL,
3834};
3835
Arvind Yadav67e5ed92017-09-06 16:22:06 -07003836static const struct attribute_group per_node_hstate_attr_group = {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003837 .attrs = per_node_hstate_attrs,
3838};
3839
3840/*
Kay Sievers10fbcf42011-12-21 14:48:43 -08003841 * kobj_to_node_hstate - lookup global hstate for node device hstate attr kobj.
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003842 * Returns node id via non-NULL nidp.
3843 */
3844static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp)
3845{
3846 int nid;
3847
3848 for (nid = 0; nid < nr_node_ids; nid++) {
3849 struct node_hstate *nhs = &node_hstates[nid];
3850 int i;
3851 for (i = 0; i < HUGE_MAX_HSTATE; i++)
3852 if (nhs->hstate_kobjs[i] == kobj) {
3853 if (nidp)
3854 *nidp = nid;
3855 return &hstates[i];
3856 }
3857 }
3858
3859 BUG();
3860 return NULL;
3861}
3862
3863/*
Kay Sievers10fbcf42011-12-21 14:48:43 -08003864 * Unregister hstate attributes from a single node device.
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003865 * No-op if no hstate attributes attached.
3866 */
Claudiu Ghioc3cd8b442013-03-04 12:46:15 +02003867static void hugetlb_unregister_node(struct node *node)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003868{
3869 struct hstate *h;
Kay Sievers10fbcf42011-12-21 14:48:43 -08003870 struct node_hstate *nhs = &node_hstates[node->dev.id];
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003871
3872 if (!nhs->hugepages_kobj)
Lee Schermerhorn9b5e5d02009-12-14 17:58:32 -08003873 return; /* no hstate attributes */
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003874
Aneesh Kumar K.V972dc4d2012-07-31 16:42:00 -07003875 for_each_hstate(h) {
3876 int idx = hstate_index(h);
3877 if (nhs->hstate_kobjs[idx]) {
3878 kobject_put(nhs->hstate_kobjs[idx]);
3879 nhs->hstate_kobjs[idx] = NULL;
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003880 }
Aneesh Kumar K.V972dc4d2012-07-31 16:42:00 -07003881 }
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003882
3883 kobject_put(nhs->hugepages_kobj);
3884 nhs->hugepages_kobj = NULL;
3885}
3886
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003887
3888/*
Kay Sievers10fbcf42011-12-21 14:48:43 -08003889 * Register hstate attributes for a single node device.
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003890 * No-op if attributes already registered.
3891 */
Claudiu Ghioc3cd8b442013-03-04 12:46:15 +02003892static void hugetlb_register_node(struct node *node)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003893{
3894 struct hstate *h;
Kay Sievers10fbcf42011-12-21 14:48:43 -08003895 struct node_hstate *nhs = &node_hstates[node->dev.id];
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003896 int err;
3897
3898 if (nhs->hugepages_kobj)
3899 return; /* already allocated */
3900
3901 nhs->hugepages_kobj = kobject_create_and_add("hugepages",
Kay Sievers10fbcf42011-12-21 14:48:43 -08003902 &node->dev.kobj);
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003903 if (!nhs->hugepages_kobj)
3904 return;
3905
3906 for_each_hstate(h) {
3907 err = hugetlb_sysfs_add_hstate(h, nhs->hugepages_kobj,
3908 nhs->hstate_kobjs,
3909 &per_node_hstate_attr_group);
3910 if (err) {
Mike Kravetz282f4212020-06-03 16:00:46 -07003911 pr_err("HugeTLB: Unable to add hstate %s for node %d\n",
Andrew Mortonffb22af2013-02-22 16:32:08 -08003912 h->name, node->dev.id);
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003913 hugetlb_unregister_node(node);
3914 break;
3915 }
3916 }
3917}
3918
3919/*
Lee Schermerhorn9b5e5d02009-12-14 17:58:32 -08003920 * hugetlb init time: register hstate attributes for all registered node
Kay Sievers10fbcf42011-12-21 14:48:43 -08003921 * devices of nodes that have memory. All on-line nodes should have
3922 * registered their associated device by this time.
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003923 */
Luiz Capitulino7d9ca002014-12-12 16:55:24 -08003924static void __init hugetlb_register_all_nodes(void)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003925{
3926 int nid;
3927
Lai Jiangshan8cebfcd2012-12-12 13:51:36 -08003928 for_each_node_state(nid, N_MEMORY) {
Wen Congyang87327942012-12-11 16:00:56 -08003929 struct node *node = node_devices[nid];
Kay Sievers10fbcf42011-12-21 14:48:43 -08003930 if (node->dev.id == nid)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003931 hugetlb_register_node(node);
3932 }
3933
3934 /*
Kay Sievers10fbcf42011-12-21 14:48:43 -08003935 * Let the node device driver know we're here so it can
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003936 * [un]register hstate attributes on node hotplug.
3937 */
3938 register_hugetlbfs_with_node(hugetlb_register_node,
3939 hugetlb_unregister_node);
3940}
3941#else /* !CONFIG_NUMA */
3942
3943static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp)
3944{
3945 BUG();
3946 if (nidp)
3947 *nidp = -1;
3948 return NULL;
3949}
3950
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003951static void hugetlb_register_all_nodes(void) { }
3952
3953#endif
3954
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003955static int __init hugetlb_init(void)
3956{
Davidlohr Bueso8382d912014-04-03 14:47:31 -07003957 int i;
3958
Mike Kravetzd6995da2021-02-24 12:08:51 -08003959 BUILD_BUG_ON(sizeof_field(struct page, private) * BITS_PER_BYTE <
3960 __NR_HPAGEFLAGS);
3961
Mike Kravetzc2833a52020-06-03 16:00:50 -07003962 if (!hugepages_supported()) {
3963 if (hugetlb_max_hstate || default_hstate_max_huge_pages)
3964 pr_warn("HugeTLB: huge pages not supported, ignoring associated command-line parameters\n");
Benjamin Herrenschmidt0ef89d22008-07-31 00:07:30 -07003965 return 0;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003966 }
Vaishali Thakkarf8b74812016-02-17 13:11:26 -08003967
Mike Kravetz282f4212020-06-03 16:00:46 -07003968 /*
3969 * Make sure HPAGE_SIZE (HUGETLB_PAGE_ORDER) hstate exists. Some
3970 * architectures depend on setup being done here.
3971 */
3972 hugetlb_add_hstate(HUGETLB_PAGE_ORDER);
3973 if (!parsed_default_hugepagesz) {
3974 /*
3975 * If we did not parse a default huge page size, set
3976 * default_hstate_idx to HPAGE_SIZE hstate. And, if the
3977 * number of huge pages for this default size was implicitly
3978 * specified, set that here as well.
3979 * Note that the implicit setting will overwrite an explicit
3980 * setting. A warning will be printed in this case.
3981 */
3982 default_hstate_idx = hstate_index(size_to_hstate(HPAGE_SIZE));
3983 if (default_hstate_max_huge_pages) {
3984 if (default_hstate.max_huge_pages) {
3985 char buf[32];
Andi Kleenaa888a72008-07-23 21:27:47 -07003986
Mike Kravetz282f4212020-06-03 16:00:46 -07003987 string_get_size(huge_page_size(&default_hstate),
3988 1, STRING_UNITS_2, buf, 32);
3989 pr_warn("HugeTLB: Ignoring hugepages=%lu associated with %s page size\n",
3990 default_hstate.max_huge_pages, buf);
3991 pr_warn("HugeTLB: Using hugepages=%lu for number of default huge pages\n",
3992 default_hstate_max_huge_pages);
3993 }
3994 default_hstate.max_huge_pages =
3995 default_hstate_max_huge_pages;
3996 }
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003997 }
Andi Kleenaa888a72008-07-23 21:27:47 -07003998
Roman Gushchincf11e852020-04-10 14:32:45 -07003999 hugetlb_cma_check();
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004000 hugetlb_init_hstates();
Andi Kleenaa888a72008-07-23 21:27:47 -07004001 gather_bootmem_prealloc();
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004002 report_hugepages();
4003
4004 hugetlb_sysfs_init();
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08004005 hugetlb_register_all_nodes();
Jianguo Wu7179e7b2012-12-18 14:23:19 -08004006 hugetlb_cgroup_file_init();
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08004007
Davidlohr Bueso8382d912014-04-03 14:47:31 -07004008#ifdef CONFIG_SMP
4009 num_fault_mutexes = roundup_pow_of_two(8 * num_possible_cpus());
4010#else
4011 num_fault_mutexes = 1;
4012#endif
Mike Kravetzc672c7f2015-09-08 15:01:35 -07004013 hugetlb_fault_mutex_table =
Kees Cook6da2ec52018-06-12 13:55:00 -07004014 kmalloc_array(num_fault_mutexes, sizeof(struct mutex),
4015 GFP_KERNEL);
Mike Kravetzc672c7f2015-09-08 15:01:35 -07004016 BUG_ON(!hugetlb_fault_mutex_table);
Davidlohr Bueso8382d912014-04-03 14:47:31 -07004017
4018 for (i = 0; i < num_fault_mutexes; i++)
Mike Kravetzc672c7f2015-09-08 15:01:35 -07004019 mutex_init(&hugetlb_fault_mutex_table[i]);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004020 return 0;
4021}
Paul Gortmaker3e89e1c2016-01-14 15:21:52 -08004022subsys_initcall(hugetlb_init);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004023
Mike Kravetzae94da82020-06-03 16:00:34 -07004024/* Overwritten by architectures with more huge page sizes */
4025bool __init __attribute((weak)) arch_hugetlb_valid_size(unsigned long size)
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07004026{
Mike Kravetzae94da82020-06-03 16:00:34 -07004027 return size == HPAGE_SIZE;
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07004028}
4029
Kirill A. Shutemovd00181b2015-11-06 16:29:57 -08004030void __init hugetlb_add_hstate(unsigned int order)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004031{
4032 struct hstate *h;
Andi Kleen8faa8b02008-07-23 21:27:48 -07004033 unsigned long i;
4034
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004035 if (size_to_hstate(PAGE_SIZE << order)) {
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004036 return;
4037 }
Aneesh Kumar K.V47d38342012-07-31 16:41:54 -07004038 BUG_ON(hugetlb_max_hstate >= HUGE_MAX_HSTATE);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004039 BUG_ON(order == 0);
Aneesh Kumar K.V47d38342012-07-31 16:41:54 -07004040 h = &hstates[hugetlb_max_hstate++];
Mike Kravetz29383962021-05-04 18:34:52 -07004041 mutex_init(&h->resize_lock);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004042 h->order = order;
Miaohe Linaca78302021-02-24 12:07:46 -08004043 h->mask = ~(huge_page_size(h) - 1);
Andi Kleen8faa8b02008-07-23 21:27:48 -07004044 for (i = 0; i < MAX_NUMNODES; ++i)
4045 INIT_LIST_HEAD(&h->hugepage_freelists[i]);
Aneesh Kumar K.V0edaecf2012-07-31 16:42:07 -07004046 INIT_LIST_HEAD(&h->hugepage_activelist);
Andrew Morton54f18d32016-05-19 17:11:40 -07004047 h->next_nid_to_alloc = first_memory_node;
4048 h->next_nid_to_free = first_memory_node;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004049 snprintf(h->name, HSTATE_NAME_LEN, "hugepages-%lukB",
4050 huge_page_size(h)/1024);
Muchun Song77490582021-06-30 18:47:33 -07004051 hugetlb_vmemmap_init(h);
Andi Kleen8faa8b02008-07-23 21:27:48 -07004052
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004053 parsed_hstate = h;
4054}
4055
Mike Kravetz282f4212020-06-03 16:00:46 -07004056/*
4057 * hugepages command line processing
4058 * hugepages normally follows a valid hugepagsz or default_hugepagsz
4059 * specification. If not, ignore the hugepages value. hugepages can also
4060 * be the first huge page command line option in which case it implicitly
4061 * specifies the number of huge pages for the default size.
4062 */
4063static int __init hugepages_setup(char *s)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004064{
4065 unsigned long *mhp;
Andi Kleen8faa8b02008-07-23 21:27:48 -07004066 static unsigned long *last_mhp;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004067
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07004068 if (!parsed_valid_hugepagesz) {
Mike Kravetz282f4212020-06-03 16:00:46 -07004069 pr_warn("HugeTLB: hugepages=%s does not follow a valid hugepagesz, ignoring\n", s);
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07004070 parsed_valid_hugepagesz = true;
Mike Kravetz282f4212020-06-03 16:00:46 -07004071 return 0;
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07004072 }
Mike Kravetz282f4212020-06-03 16:00:46 -07004073
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004074 /*
Mike Kravetz282f4212020-06-03 16:00:46 -07004075 * !hugetlb_max_hstate means we haven't parsed a hugepagesz= parameter
4076 * yet, so this hugepages= parameter goes to the "default hstate".
4077 * Otherwise, it goes with the previously parsed hugepagesz or
4078 * default_hugepagesz.
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004079 */
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07004080 else if (!hugetlb_max_hstate)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004081 mhp = &default_hstate_max_huge_pages;
4082 else
4083 mhp = &parsed_hstate->max_huge_pages;
4084
Andi Kleen8faa8b02008-07-23 21:27:48 -07004085 if (mhp == last_mhp) {
Mike Kravetz282f4212020-06-03 16:00:46 -07004086 pr_warn("HugeTLB: hugepages= specified twice without interleaving hugepagesz=, ignoring hugepages=%s\n", s);
4087 return 0;
Andi Kleen8faa8b02008-07-23 21:27:48 -07004088 }
4089
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004090 if (sscanf(s, "%lu", mhp) <= 0)
4091 *mhp = 0;
4092
Andi Kleen8faa8b02008-07-23 21:27:48 -07004093 /*
4094 * Global state is always initialized later in hugetlb_init.
Miaohe Lin04adbc32021-05-04 18:33:22 -07004095 * But we need to allocate gigantic hstates here early to still
Andi Kleen8faa8b02008-07-23 21:27:48 -07004096 * use the bootmem allocator.
4097 */
Miaohe Lin04adbc32021-05-04 18:33:22 -07004098 if (hugetlb_max_hstate && hstate_is_gigantic(parsed_hstate))
Andi Kleen8faa8b02008-07-23 21:27:48 -07004099 hugetlb_hstate_alloc_pages(parsed_hstate);
4100
4101 last_mhp = mhp;
4102
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004103 return 1;
4104}
Mike Kravetz282f4212020-06-03 16:00:46 -07004105__setup("hugepages=", hugepages_setup);
Nick Piggine11bfbf2008-07-23 21:27:52 -07004106
Mike Kravetz282f4212020-06-03 16:00:46 -07004107/*
4108 * hugepagesz command line processing
4109 * A specific huge page size can only be specified once with hugepagesz.
4110 * hugepagesz is followed by hugepages on the command line. The global
4111 * variable 'parsed_valid_hugepagesz' is used to determine if prior
4112 * hugepagesz argument was valid.
4113 */
Mike Kravetz359f2542020-06-03 16:00:38 -07004114static int __init hugepagesz_setup(char *s)
Nick Piggine11bfbf2008-07-23 21:27:52 -07004115{
Mike Kravetz359f2542020-06-03 16:00:38 -07004116 unsigned long size;
Mike Kravetz282f4212020-06-03 16:00:46 -07004117 struct hstate *h;
4118
4119 parsed_valid_hugepagesz = false;
Mike Kravetz359f2542020-06-03 16:00:38 -07004120 size = (unsigned long)memparse(s, NULL);
4121
4122 if (!arch_hugetlb_valid_size(size)) {
Mike Kravetz282f4212020-06-03 16:00:46 -07004123 pr_err("HugeTLB: unsupported hugepagesz=%s\n", s);
Mike Kravetz359f2542020-06-03 16:00:38 -07004124 return 0;
4125 }
4126
Mike Kravetz282f4212020-06-03 16:00:46 -07004127 h = size_to_hstate(size);
4128 if (h) {
4129 /*
4130 * hstate for this size already exists. This is normally
4131 * an error, but is allowed if the existing hstate is the
4132 * default hstate. More specifically, it is only allowed if
4133 * the number of huge pages for the default hstate was not
4134 * previously specified.
4135 */
4136 if (!parsed_default_hugepagesz || h != &default_hstate ||
4137 default_hstate.max_huge_pages) {
4138 pr_warn("HugeTLB: hugepagesz=%s specified twice, ignoring\n", s);
4139 return 0;
4140 }
4141
4142 /*
4143 * No need to call hugetlb_add_hstate() as hstate already
4144 * exists. But, do set parsed_hstate so that a following
4145 * hugepages= parameter will be applied to this hstate.
4146 */
4147 parsed_hstate = h;
4148 parsed_valid_hugepagesz = true;
4149 return 1;
Mike Kravetz38237832020-06-03 16:00:42 -07004150 }
4151
Mike Kravetz359f2542020-06-03 16:00:38 -07004152 hugetlb_add_hstate(ilog2(size) - PAGE_SHIFT);
Mike Kravetz282f4212020-06-03 16:00:46 -07004153 parsed_valid_hugepagesz = true;
Nick Piggine11bfbf2008-07-23 21:27:52 -07004154 return 1;
4155}
Mike Kravetz359f2542020-06-03 16:00:38 -07004156__setup("hugepagesz=", hugepagesz_setup);
4157
Mike Kravetz282f4212020-06-03 16:00:46 -07004158/*
4159 * default_hugepagesz command line input
4160 * Only one instance of default_hugepagesz allowed on command line.
4161 */
Mike Kravetzae94da82020-06-03 16:00:34 -07004162static int __init default_hugepagesz_setup(char *s)
Nick Piggine11bfbf2008-07-23 21:27:52 -07004163{
Mike Kravetzae94da82020-06-03 16:00:34 -07004164 unsigned long size;
4165
Mike Kravetz282f4212020-06-03 16:00:46 -07004166 parsed_valid_hugepagesz = false;
Mike Kravetz282f4212020-06-03 16:00:46 -07004167 if (parsed_default_hugepagesz) {
4168 pr_err("HugeTLB: default_hugepagesz previously specified, ignoring %s\n", s);
4169 return 0;
4170 }
4171
4172 size = (unsigned long)memparse(s, NULL);
4173
4174 if (!arch_hugetlb_valid_size(size)) {
4175 pr_err("HugeTLB: unsupported default_hugepagesz=%s\n", s);
4176 return 0;
4177 }
4178
4179 hugetlb_add_hstate(ilog2(size) - PAGE_SHIFT);
4180 parsed_valid_hugepagesz = true;
4181 parsed_default_hugepagesz = true;
4182 default_hstate_idx = hstate_index(size_to_hstate(size));
4183
4184 /*
4185 * The number of default huge pages (for this size) could have been
4186 * specified as the first hugetlb parameter: hugepages=X. If so,
4187 * then default_hstate_max_huge_pages is set. If the default huge
4188 * page size is gigantic (>= MAX_ORDER), then the pages must be
4189 * allocated here from bootmem allocator.
4190 */
4191 if (default_hstate_max_huge_pages) {
4192 default_hstate.max_huge_pages = default_hstate_max_huge_pages;
4193 if (hstate_is_gigantic(&default_hstate))
4194 hugetlb_hstate_alloc_pages(&default_hstate);
4195 default_hstate_max_huge_pages = 0;
4196 }
4197
Nick Piggine11bfbf2008-07-23 21:27:52 -07004198 return 1;
4199}
Mike Kravetzae94da82020-06-03 16:00:34 -07004200__setup("default_hugepagesz=", default_hugepagesz_setup);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004201
Muchun Song8ca39e62020-08-11 18:30:32 -07004202static unsigned int allowed_mems_nr(struct hstate *h)
Nishanth Aravamudan8a213462008-07-25 19:44:37 -07004203{
4204 int node;
4205 unsigned int nr = 0;
Muchun Song8ca39e62020-08-11 18:30:32 -07004206 nodemask_t *mpol_allowed;
4207 unsigned int *array = h->free_huge_pages_node;
4208 gfp_t gfp_mask = htlb_alloc_mask(h);
Nishanth Aravamudan8a213462008-07-25 19:44:37 -07004209
Muchun Song8ca39e62020-08-11 18:30:32 -07004210 mpol_allowed = policy_nodemask_current(gfp_mask);
4211
4212 for_each_node_mask(node, cpuset_current_mems_allowed) {
Jiapeng Zhongc93b0a92021-02-24 12:07:09 -08004213 if (!mpol_allowed || node_isset(node, *mpol_allowed))
Muchun Song8ca39e62020-08-11 18:30:32 -07004214 nr += array[node];
4215 }
Nishanth Aravamudan8a213462008-07-25 19:44:37 -07004216
4217 return nr;
4218}
4219
4220#ifdef CONFIG_SYSCTL
Muchun Song17743792020-09-04 16:36:13 -07004221static int proc_hugetlb_doulongvec_minmax(struct ctl_table *table, int write,
4222 void *buffer, size_t *length,
4223 loff_t *ppos, unsigned long *out)
4224{
4225 struct ctl_table dup_table;
4226
4227 /*
4228 * In order to avoid races with __do_proc_doulongvec_minmax(), we
4229 * can duplicate the @table and alter the duplicate of it.
4230 */
4231 dup_table = *table;
4232 dup_table.data = out;
4233
4234 return proc_doulongvec_minmax(&dup_table, write, buffer, length, ppos);
4235}
4236
Lee Schermerhorn06808b02009-12-14 17:58:21 -08004237static int hugetlb_sysctl_handler_common(bool obey_mempolicy,
4238 struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +02004239 void *buffer, size_t *length, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240{
Andi Kleene5ff2152008-07-23 21:27:42 -07004241 struct hstate *h = &default_hstate;
David Rientjes238d3c12014-08-06 16:06:51 -07004242 unsigned long tmp = h->max_huge_pages;
Michal Hocko08d4a242011-01-13 15:47:26 -08004243 int ret;
Andi Kleene5ff2152008-07-23 21:27:42 -07004244
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004245 if (!hugepages_supported())
Jan Stancek86613622016-03-09 14:08:35 -08004246 return -EOPNOTSUPP;
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004247
Muchun Song17743792020-09-04 16:36:13 -07004248 ret = proc_hugetlb_doulongvec_minmax(table, write, buffer, length, ppos,
4249 &tmp);
Michal Hocko08d4a242011-01-13 15:47:26 -08004250 if (ret)
4251 goto out;
Andi Kleene5ff2152008-07-23 21:27:42 -07004252
David Rientjes238d3c12014-08-06 16:06:51 -07004253 if (write)
4254 ret = __nr_hugepages_store_common(obey_mempolicy, h,
4255 NUMA_NO_NODE, tmp, *length);
Michal Hocko08d4a242011-01-13 15:47:26 -08004256out:
4257 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258}
Mel Gorman396faf02007-07-17 04:03:13 -07004259
Lee Schermerhorn06808b02009-12-14 17:58:21 -08004260int hugetlb_sysctl_handler(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +02004261 void *buffer, size_t *length, loff_t *ppos)
Lee Schermerhorn06808b02009-12-14 17:58:21 -08004262{
4263
4264 return hugetlb_sysctl_handler_common(false, table, write,
4265 buffer, length, ppos);
4266}
4267
4268#ifdef CONFIG_NUMA
4269int hugetlb_mempolicy_sysctl_handler(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +02004270 void *buffer, size_t *length, loff_t *ppos)
Lee Schermerhorn06808b02009-12-14 17:58:21 -08004271{
4272 return hugetlb_sysctl_handler_common(true, table, write,
4273 buffer, length, ppos);
4274}
4275#endif /* CONFIG_NUMA */
4276
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08004277int hugetlb_overcommit_handler(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +02004278 void *buffer, size_t *length, loff_t *ppos)
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08004279{
Andi Kleena5516432008-07-23 21:27:41 -07004280 struct hstate *h = &default_hstate;
Andi Kleene5ff2152008-07-23 21:27:42 -07004281 unsigned long tmp;
Michal Hocko08d4a242011-01-13 15:47:26 -08004282 int ret;
Andi Kleene5ff2152008-07-23 21:27:42 -07004283
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004284 if (!hugepages_supported())
Jan Stancek86613622016-03-09 14:08:35 -08004285 return -EOPNOTSUPP;
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004286
Petr Holasekc033a932011-03-22 16:33:05 -07004287 tmp = h->nr_overcommit_huge_pages;
Andi Kleene5ff2152008-07-23 21:27:42 -07004288
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07004289 if (write && hstate_is_gigantic(h))
Eric B Munsonadbe8722011-01-13 15:47:27 -08004290 return -EINVAL;
4291
Muchun Song17743792020-09-04 16:36:13 -07004292 ret = proc_hugetlb_doulongvec_minmax(table, write, buffer, length, ppos,
4293 &tmp);
Michal Hocko08d4a242011-01-13 15:47:26 -08004294 if (ret)
4295 goto out;
Andi Kleene5ff2152008-07-23 21:27:42 -07004296
4297 if (write) {
Mike Kravetzdb71ef72021-05-04 18:35:07 -07004298 spin_lock_irq(&hugetlb_lock);
Andi Kleene5ff2152008-07-23 21:27:42 -07004299 h->nr_overcommit_huge_pages = tmp;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07004300 spin_unlock_irq(&hugetlb_lock);
Andi Kleene5ff2152008-07-23 21:27:42 -07004301 }
Michal Hocko08d4a242011-01-13 15:47:26 -08004302out:
4303 return ret;
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08004304}
4305
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306#endif /* CONFIG_SYSCTL */
4307
Alexey Dobriyane1759c22008-10-15 23:50:22 +04004308void hugetlb_report_meminfo(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309{
Roman Gushchinfcb2b0c2018-01-31 16:16:22 -08004310 struct hstate *h;
4311 unsigned long total = 0;
4312
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004313 if (!hugepages_supported())
4314 return;
Roman Gushchinfcb2b0c2018-01-31 16:16:22 -08004315
4316 for_each_hstate(h) {
4317 unsigned long count = h->nr_huge_pages;
4318
Miaohe Linaca78302021-02-24 12:07:46 -08004319 total += huge_page_size(h) * count;
Roman Gushchinfcb2b0c2018-01-31 16:16:22 -08004320
4321 if (h == &default_hstate)
4322 seq_printf(m,
4323 "HugePages_Total: %5lu\n"
4324 "HugePages_Free: %5lu\n"
4325 "HugePages_Rsvd: %5lu\n"
4326 "HugePages_Surp: %5lu\n"
4327 "Hugepagesize: %8lu kB\n",
4328 count,
4329 h->free_huge_pages,
4330 h->resv_huge_pages,
4331 h->surplus_huge_pages,
Miaohe Linaca78302021-02-24 12:07:46 -08004332 huge_page_size(h) / SZ_1K);
Roman Gushchinfcb2b0c2018-01-31 16:16:22 -08004333 }
4334
Miaohe Linaca78302021-02-24 12:07:46 -08004335 seq_printf(m, "Hugetlb: %8lu kB\n", total / SZ_1K);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336}
4337
Joe Perches79815932020-09-16 13:40:43 -07004338int hugetlb_report_node_meminfo(char *buf, int len, int nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339{
Andi Kleena5516432008-07-23 21:27:41 -07004340 struct hstate *h = &default_hstate;
Joe Perches79815932020-09-16 13:40:43 -07004341
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004342 if (!hugepages_supported())
4343 return 0;
Joe Perches79815932020-09-16 13:40:43 -07004344
4345 return sysfs_emit_at(buf, len,
4346 "Node %d HugePages_Total: %5u\n"
4347 "Node %d HugePages_Free: %5u\n"
4348 "Node %d HugePages_Surp: %5u\n",
4349 nid, h->nr_huge_pages_node[nid],
4350 nid, h->free_huge_pages_node[nid],
4351 nid, h->surplus_huge_pages_node[nid]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352}
4353
David Rientjes949f7ec2013-04-29 15:07:48 -07004354void hugetlb_show_meminfo(void)
4355{
4356 struct hstate *h;
4357 int nid;
4358
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004359 if (!hugepages_supported())
4360 return;
4361
David Rientjes949f7ec2013-04-29 15:07:48 -07004362 for_each_node_state(nid, N_MEMORY)
4363 for_each_hstate(h)
4364 pr_info("Node %d hugepages_total=%u hugepages_free=%u hugepages_surp=%u hugepages_size=%lukB\n",
4365 nid,
4366 h->nr_huge_pages_node[nid],
4367 h->free_huge_pages_node[nid],
4368 h->surplus_huge_pages_node[nid],
Miaohe Linaca78302021-02-24 12:07:46 -08004369 huge_page_size(h) / SZ_1K);
David Rientjes949f7ec2013-04-29 15:07:48 -07004370}
4371
Naoya Horiguchi5d317b22015-11-05 18:47:14 -08004372void hugetlb_report_usage(struct seq_file *m, struct mm_struct *mm)
4373{
4374 seq_printf(m, "HugetlbPages:\t%8lu kB\n",
4375 atomic_long_read(&mm->hugetlb_usage) << (PAGE_SHIFT - 10));
4376}
4377
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378/* Return the number pages of memory we physically have, in PAGE_SIZE units. */
4379unsigned long hugetlb_total_pages(void)
4380{
Wanpeng Lid0028582013-03-22 15:04:40 -07004381 struct hstate *h;
4382 unsigned long nr_total_pages = 0;
4383
4384 for_each_hstate(h)
4385 nr_total_pages += h->nr_huge_pages * pages_per_huge_page(h);
4386 return nr_total_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388
Andi Kleena5516432008-07-23 21:27:41 -07004389static int hugetlb_acct_memory(struct hstate *h, long delta)
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004390{
4391 int ret = -ENOMEM;
4392
Miaohe Lin0aa7f352021-02-24 12:06:57 -08004393 if (!delta)
4394 return 0;
4395
Mike Kravetzdb71ef72021-05-04 18:35:07 -07004396 spin_lock_irq(&hugetlb_lock);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004397 /*
4398 * When cpuset is configured, it breaks the strict hugetlb page
4399 * reservation as the accounting is done on a global variable. Such
4400 * reservation is completely rubbish in the presence of cpuset because
4401 * the reservation is not checked against page availability for the
4402 * current cpuset. Application can still potentially OOM'ed by kernel
4403 * with lack of free htlb page in cpuset that the task is in.
4404 * Attempt to enforce strict accounting with cpuset is almost
4405 * impossible (or too ugly) because cpuset is too fluid that
4406 * task or memory node can be dynamically moved between cpusets.
4407 *
4408 * The change of semantics for shared hugetlb mapping with cpuset is
4409 * undesirable. However, in order to preserve some of the semantics,
4410 * we fall back to check against current free page availability as
4411 * a best attempt and hopefully to minimize the impact of changing
4412 * semantics that cpuset has.
Muchun Song8ca39e62020-08-11 18:30:32 -07004413 *
4414 * Apart from cpuset, we also have memory policy mechanism that
4415 * also determines from which node the kernel will allocate memory
4416 * in a NUMA system. So similar to cpuset, we also should consider
4417 * the memory policy of the current task. Similar to the description
4418 * above.
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004419 */
4420 if (delta > 0) {
Andi Kleena5516432008-07-23 21:27:41 -07004421 if (gather_surplus_pages(h, delta) < 0)
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004422 goto out;
4423
Muchun Song8ca39e62020-08-11 18:30:32 -07004424 if (delta > allowed_mems_nr(h)) {
Andi Kleena5516432008-07-23 21:27:41 -07004425 return_unused_surplus_pages(h, delta);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004426 goto out;
4427 }
4428 }
4429
4430 ret = 0;
4431 if (delta < 0)
Andi Kleena5516432008-07-23 21:27:41 -07004432 return_unused_surplus_pages(h, (unsigned long) -delta);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004433
4434out:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07004435 spin_unlock_irq(&hugetlb_lock);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004436 return ret;
4437}
4438
Andy Whitcroft84afd992008-07-23 21:27:32 -07004439static void hugetlb_vm_op_open(struct vm_area_struct *vma)
4440{
Joonsoo Kimf522c3a2013-09-11 14:21:53 -07004441 struct resv_map *resv = vma_resv_map(vma);
Andy Whitcroft84afd992008-07-23 21:27:32 -07004442
4443 /*
4444 * This new VMA should share its siblings reservation map if present.
4445 * The VMA will only ever have a valid reservation map pointer where
4446 * it is being copied for another still existing VMA. As that VMA
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004447 * has a reference to the reservation map it cannot disappear until
Andy Whitcroft84afd992008-07-23 21:27:32 -07004448 * after this open call completes. It is therefore safe to take a
4449 * new reference here without additional locking.
4450 */
Mike Kravetz09a26e82021-09-02 14:58:53 -07004451 if (resv && is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
4452 resv_map_dup_hugetlb_cgroup_uncharge_info(resv);
Joonsoo Kimf522c3a2013-09-11 14:21:53 -07004453 kref_get(&resv->refs);
Mike Kravetz09a26e82021-09-02 14:58:53 -07004454 }
Andy Whitcroft84afd992008-07-23 21:27:32 -07004455}
4456
Mel Gormana1e78772008-07-23 21:27:23 -07004457static void hugetlb_vm_op_close(struct vm_area_struct *vma)
4458{
Andi Kleena5516432008-07-23 21:27:41 -07004459 struct hstate *h = hstate_vma(vma);
Joonsoo Kimf522c3a2013-09-11 14:21:53 -07004460 struct resv_map *resv = vma_resv_map(vma);
David Gibson90481622012-03-21 16:34:12 -07004461 struct hugepage_subpool *spool = subpool_vma(vma);
Joonsoo Kim4e35f482014-04-03 14:47:30 -07004462 unsigned long reserve, start, end;
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07004463 long gbl_reserve;
Andy Whitcroft84afd992008-07-23 21:27:32 -07004464
Joonsoo Kim4e35f482014-04-03 14:47:30 -07004465 if (!resv || !is_vma_resv_set(vma, HPAGE_RESV_OWNER))
4466 return;
Andy Whitcroft84afd992008-07-23 21:27:32 -07004467
Joonsoo Kim4e35f482014-04-03 14:47:30 -07004468 start = vma_hugecache_offset(h, vma, vma->vm_start);
4469 end = vma_hugecache_offset(h, vma, vma->vm_end);
Andy Whitcroft84afd992008-07-23 21:27:32 -07004470
Joonsoo Kim4e35f482014-04-03 14:47:30 -07004471 reserve = (end - start) - region_count(resv, start, end);
Mina Almasrye9fe92a2020-04-01 21:11:21 -07004472 hugetlb_cgroup_uncharge_counter(resv, start, end);
Joonsoo Kim4e35f482014-04-03 14:47:30 -07004473 if (reserve) {
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07004474 /*
4475 * Decrement reserve counts. The global reserve count may be
4476 * adjusted if the subpool has a minimum size.
4477 */
4478 gbl_reserve = hugepage_subpool_put_pages(spool, reserve);
4479 hugetlb_acct_memory(h, -gbl_reserve);
Andy Whitcroft84afd992008-07-23 21:27:32 -07004480 }
Mina Almasrye9fe92a2020-04-01 21:11:21 -07004481
4482 kref_put(&resv->refs, resv_map_release);
Mel Gormana1e78772008-07-23 21:27:23 -07004483}
4484
Dan Williams31383c62017-11-29 16:10:28 -08004485static int hugetlb_vm_op_split(struct vm_area_struct *vma, unsigned long addr)
4486{
4487 if (addr & ~(huge_page_mask(hstate_vma(vma))))
4488 return -EINVAL;
4489 return 0;
4490}
4491
Dan Williams05ea8862018-04-05 16:24:25 -07004492static unsigned long hugetlb_vm_op_pagesize(struct vm_area_struct *vma)
4493{
Miaohe Linaca78302021-02-24 12:07:46 -08004494 return huge_page_size(hstate_vma(vma));
Dan Williams05ea8862018-04-05 16:24:25 -07004495}
4496
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497/*
4498 * We cannot handle pagefaults against hugetlb pages at all. They cause
4499 * handle_mm_fault() to try to instantiate regular-sized pages in the
Miaohe Lin6c26d312021-02-24 12:07:19 -08004500 * hugepage VMA. do_page_fault() is supposed to trap this, so BUG is we get
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 * this far.
4502 */
Souptick Joarderb3ec9f32018-06-07 17:08:04 -07004503static vm_fault_t hugetlb_vm_op_fault(struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504{
4505 BUG();
Nick Piggind0217ac2007-07-19 01:47:03 -07004506 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507}
4508
Jane Chueec36362018-08-02 15:36:05 -07004509/*
4510 * When a new function is introduced to vm_operations_struct and added
4511 * to hugetlb_vm_ops, please consider adding the function to shm_vm_ops.
4512 * This is because under System V memory model, mappings created via
4513 * shmget/shmat with "huge page" specified are backed by hugetlbfs files,
4514 * their original vm_ops are overwritten with shm_vm_ops.
4515 */
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04004516const struct vm_operations_struct hugetlb_vm_ops = {
Nick Piggind0217ac2007-07-19 01:47:03 -07004517 .fault = hugetlb_vm_op_fault,
Andy Whitcroft84afd992008-07-23 21:27:32 -07004518 .open = hugetlb_vm_op_open,
Mel Gormana1e78772008-07-23 21:27:23 -07004519 .close = hugetlb_vm_op_close,
Dmitry Safonovdd3b6142020-12-14 19:08:17 -08004520 .may_split = hugetlb_vm_op_split,
Dan Williams05ea8862018-04-05 16:24:25 -07004521 .pagesize = hugetlb_vm_op_pagesize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522};
4523
David Gibson1e8f8892006-01-06 00:10:44 -08004524static pte_t make_huge_pte(struct vm_area_struct *vma, struct page *page,
4525 int writable)
David Gibson63551ae2005-06-21 17:14:44 -07004526{
4527 pte_t entry;
Christophe Leroy79c1c592021-06-30 18:48:00 -07004528 unsigned int shift = huge_page_shift(hstate_vma(vma));
David Gibson63551ae2005-06-21 17:14:44 -07004529
David Gibson1e8f8892006-01-06 00:10:44 -08004530 if (writable) {
Gerald Schaefer106c9922013-04-29 15:07:23 -07004531 entry = huge_pte_mkwrite(huge_pte_mkdirty(mk_huge_pte(page,
4532 vma->vm_page_prot)));
David Gibson63551ae2005-06-21 17:14:44 -07004533 } else {
Gerald Schaefer106c9922013-04-29 15:07:23 -07004534 entry = huge_pte_wrprotect(mk_huge_pte(page,
4535 vma->vm_page_prot));
David Gibson63551ae2005-06-21 17:14:44 -07004536 }
4537 entry = pte_mkyoung(entry);
4538 entry = pte_mkhuge(entry);
Christophe Leroy79c1c592021-06-30 18:48:00 -07004539 entry = arch_make_huge_pte(entry, shift, vma->vm_flags);
David Gibson63551ae2005-06-21 17:14:44 -07004540
4541 return entry;
4542}
4543
David Gibson1e8f8892006-01-06 00:10:44 -08004544static void set_huge_ptep_writable(struct vm_area_struct *vma,
4545 unsigned long address, pte_t *ptep)
4546{
4547 pte_t entry;
4548
Gerald Schaefer106c9922013-04-29 15:07:23 -07004549 entry = huge_pte_mkwrite(huge_pte_mkdirty(huge_ptep_get(ptep)));
Chris Forbes32f84522011-07-25 17:12:14 -07004550 if (huge_ptep_set_access_flags(vma, address, ptep, entry, 1))
Russell King4b3073e2009-12-18 16:40:18 +00004551 update_mmu_cache(vma, address, ptep);
David Gibson1e8f8892006-01-06 00:10:44 -08004552}
4553
Aneesh Kumar K.Vd5ed7442017-07-06 15:38:47 -07004554bool is_hugetlb_entry_migration(pte_t pte)
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004555{
4556 swp_entry_t swp;
4557
4558 if (huge_pte_none(pte) || pte_present(pte))
Aneesh Kumar K.Vd5ed7442017-07-06 15:38:47 -07004559 return false;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004560 swp = pte_to_swp_entry(pte);
Baoquan Hed79d1762020-10-13 16:56:14 -07004561 if (is_migration_entry(swp))
Aneesh Kumar K.Vd5ed7442017-07-06 15:38:47 -07004562 return true;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004563 else
Aneesh Kumar K.Vd5ed7442017-07-06 15:38:47 -07004564 return false;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004565}
4566
Baoquan He3e5c3602020-10-13 16:56:10 -07004567static bool is_hugetlb_entry_hwpoisoned(pte_t pte)
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004568{
4569 swp_entry_t swp;
4570
4571 if (huge_pte_none(pte) || pte_present(pte))
Baoquan He3e5c3602020-10-13 16:56:10 -07004572 return false;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004573 swp = pte_to_swp_entry(pte);
Baoquan Hed79d1762020-10-13 16:56:14 -07004574 if (is_hwpoison_entry(swp))
Baoquan He3e5c3602020-10-13 16:56:10 -07004575 return true;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004576 else
Baoquan He3e5c3602020-10-13 16:56:10 -07004577 return false;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004578}
David Gibson1e8f8892006-01-06 00:10:44 -08004579
Peter Xu4eae4ef2021-03-12 21:07:33 -08004580static void
4581hugetlb_install_page(struct vm_area_struct *vma, pte_t *ptep, unsigned long addr,
4582 struct page *new_page)
4583{
4584 __SetPageUptodate(new_page);
4585 set_huge_pte_at(vma->vm_mm, addr, ptep, make_huge_pte(vma, new_page, 1));
4586 hugepage_add_new_anon_rmap(new_page, vma, addr);
4587 hugetlb_count_add(pages_per_huge_page(hstate_vma(vma)), vma->vm_mm);
4588 ClearHPageRestoreReserve(new_page);
4589 SetHPageMigratable(new_page);
4590}
4591
David Gibson63551ae2005-06-21 17:14:44 -07004592int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
4593 struct vm_area_struct *vma)
4594{
Mike Kravetz5e415402018-11-16 15:08:04 -08004595 pte_t *src_pte, *dst_pte, entry, dst_entry;
David Gibson63551ae2005-06-21 17:14:44 -07004596 struct page *ptepage;
Hugh Dickins1c598272005-10-19 21:23:43 -07004597 unsigned long addr;
Peter Xuca6eb142021-03-12 21:07:30 -08004598 bool cow = is_cow_mapping(vma->vm_flags);
Andi Kleena5516432008-07-23 21:27:41 -07004599 struct hstate *h = hstate_vma(vma);
4600 unsigned long sz = huge_page_size(h);
Peter Xu4eae4ef2021-03-12 21:07:33 -08004601 unsigned long npages = pages_per_huge_page(h);
Mike Kravetzc0d03812020-04-01 21:11:05 -07004602 struct address_space *mapping = vma->vm_file->f_mapping;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004603 struct mmu_notifier_range range;
Andreas Sandberge8569dd2014-01-21 15:49:09 -08004604 int ret = 0;
David Gibson1e8f8892006-01-06 00:10:44 -08004605
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004606 if (cow) {
Jérôme Glisse7269f992019-05-13 17:20:53 -07004607 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, src,
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07004608 vma->vm_start,
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004609 vma->vm_end);
4610 mmu_notifier_invalidate_range_start(&range);
Mike Kravetzc0d03812020-04-01 21:11:05 -07004611 } else {
4612 /*
4613 * For shared mappings i_mmap_rwsem must be held to call
4614 * huge_pte_alloc, otherwise the returned ptep could go
4615 * away if part of a shared pmd and another thread calls
4616 * huge_pmd_unshare.
4617 */
4618 i_mmap_lock_read(mapping);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004619 }
Andreas Sandberge8569dd2014-01-21 15:49:09 -08004620
Andi Kleena5516432008-07-23 21:27:41 -07004621 for (addr = vma->vm_start; addr < vma->vm_end; addr += sz) {
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004622 spinlock_t *src_ptl, *dst_ptl;
Punit Agrawal7868a202017-07-06 15:39:42 -07004623 src_pte = huge_pte_offset(src, addr, sz);
Hugh Dickinsc74df322005-10-29 18:16:23 -07004624 if (!src_pte)
4625 continue;
Peter Xuaec44e02021-05-04 18:33:00 -07004626 dst_pte = huge_pte_alloc(dst, vma, addr, sz);
Andreas Sandberge8569dd2014-01-21 15:49:09 -08004627 if (!dst_pte) {
4628 ret = -ENOMEM;
4629 break;
4630 }
Larry Woodmanc5c99422008-01-24 05:49:25 -08004631
Mike Kravetz5e415402018-11-16 15:08:04 -08004632 /*
4633 * If the pagetables are shared don't copy or take references.
4634 * dst_pte == src_pte is the common case of src/dest sharing.
4635 *
4636 * However, src could have 'unshared' and dst shares with
4637 * another vma. If dst_pte !none, this implies sharing.
4638 * Check here before taking page table lock, and once again
4639 * after taking the lock below.
4640 */
4641 dst_entry = huge_ptep_get(dst_pte);
4642 if ((dst_pte == src_pte) || !huge_pte_none(dst_entry))
Larry Woodmanc5c99422008-01-24 05:49:25 -08004643 continue;
4644
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004645 dst_ptl = huge_pte_lock(h, dst, dst_pte);
4646 src_ptl = huge_pte_lockptr(h, src, src_pte);
4647 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004648 entry = huge_ptep_get(src_pte);
Mike Kravetz5e415402018-11-16 15:08:04 -08004649 dst_entry = huge_ptep_get(dst_pte);
Peter Xu4eae4ef2021-03-12 21:07:33 -08004650again:
Mike Kravetz5e415402018-11-16 15:08:04 -08004651 if (huge_pte_none(entry) || !huge_pte_none(dst_entry)) {
4652 /*
4653 * Skip if src entry none. Also, skip in the
4654 * unlikely case dst entry !none as this implies
4655 * sharing with another vma.
4656 */
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004657 ;
4658 } else if (unlikely(is_hugetlb_entry_migration(entry) ||
4659 is_hugetlb_entry_hwpoisoned(entry))) {
4660 swp_entry_t swp_entry = pte_to_swp_entry(entry);
4661
Alistair Popple4dd845b2021-06-30 18:54:09 -07004662 if (is_writable_migration_entry(swp_entry) && cow) {
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004663 /*
4664 * COW mappings require pages in both
4665 * parent and child to be set to read.
4666 */
Alistair Popple4dd845b2021-06-30 18:54:09 -07004667 swp_entry = make_readable_migration_entry(
4668 swp_offset(swp_entry));
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004669 entry = swp_entry_to_pte(swp_entry);
Punit Agrawale5251fd2017-07-06 15:39:50 -07004670 set_huge_swap_pte_at(src, addr, src_pte,
4671 entry, sz);
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004672 }
Punit Agrawale5251fd2017-07-06 15:39:50 -07004673 set_huge_swap_pte_at(dst, addr, dst_pte, entry, sz);
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004674 } else {
Peter Xu4eae4ef2021-03-12 21:07:33 -08004675 entry = huge_ptep_get(src_pte);
4676 ptepage = pte_page(entry);
4677 get_page(ptepage);
4678
4679 /*
4680 * This is a rare case where we see pinned hugetlb
4681 * pages while they're prone to COW. We need to do the
4682 * COW earlier during fork.
4683 *
4684 * When pre-allocating the page or copying data, we
4685 * need to be without the pgtable locks since we could
4686 * sleep during the process.
4687 */
4688 if (unlikely(page_needs_cow_for_dma(vma, ptepage))) {
4689 pte_t src_pte_old = entry;
4690 struct page *new;
4691
4692 spin_unlock(src_ptl);
4693 spin_unlock(dst_ptl);
4694 /* Do not use reserve as it's private owned */
4695 new = alloc_huge_page(vma, addr, 1);
4696 if (IS_ERR(new)) {
4697 put_page(ptepage);
4698 ret = PTR_ERR(new);
4699 break;
4700 }
4701 copy_user_huge_page(new, ptepage, addr, vma,
4702 npages);
4703 put_page(ptepage);
4704
4705 /* Install the new huge page if src pte stable */
4706 dst_ptl = huge_pte_lock(h, dst, dst_pte);
4707 src_ptl = huge_pte_lockptr(h, src, src_pte);
4708 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
4709 entry = huge_ptep_get(src_pte);
4710 if (!pte_same(src_pte_old, entry)) {
Mike Kravetz846be082021-06-15 18:23:29 -07004711 restore_reserve_on_error(h, vma, addr,
4712 new);
Peter Xu4eae4ef2021-03-12 21:07:33 -08004713 put_page(new);
4714 /* dst_entry won't change as in child */
4715 goto again;
4716 }
4717 hugetlb_install_page(vma, dst_pte, addr, new);
4718 spin_unlock(src_ptl);
4719 spin_unlock(dst_ptl);
4720 continue;
4721 }
4722
Joerg Roedel34ee6452014-11-13 13:46:09 +11004723 if (cow) {
Jérôme Glisse0f108512017-11-15 17:34:07 -08004724 /*
4725 * No need to notify as we are downgrading page
4726 * table protection not changing it to point
4727 * to a new page.
4728 *
Mike Rapoportad56b732018-03-21 21:22:47 +02004729 * See Documentation/vm/mmu_notifier.rst
Jérôme Glisse0f108512017-11-15 17:34:07 -08004730 */
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07004731 huge_ptep_set_wrprotect(src, addr, src_pte);
Peter Xu84894e12021-05-14 17:27:07 -07004732 entry = huge_pte_wrprotect(entry);
Joerg Roedel34ee6452014-11-13 13:46:09 +11004733 }
Peter Xu4eae4ef2021-03-12 21:07:33 -08004734
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08004735 page_dup_rmap(ptepage, true);
Hugh Dickins1c598272005-10-19 21:23:43 -07004736 set_huge_pte_at(dst, addr, dst_pte, entry);
Peter Xu4eae4ef2021-03-12 21:07:33 -08004737 hugetlb_count_add(npages, dst);
Hugh Dickins1c598272005-10-19 21:23:43 -07004738 }
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004739 spin_unlock(src_ptl);
4740 spin_unlock(dst_ptl);
David Gibson63551ae2005-06-21 17:14:44 -07004741 }
David Gibson63551ae2005-06-21 17:14:44 -07004742
Andreas Sandberge8569dd2014-01-21 15:49:09 -08004743 if (cow)
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004744 mmu_notifier_invalidate_range_end(&range);
Mike Kravetzc0d03812020-04-01 21:11:05 -07004745 else
4746 i_mmap_unlock_read(mapping);
Andreas Sandberge8569dd2014-01-21 15:49:09 -08004747
4748 return ret;
David Gibson63551ae2005-06-21 17:14:44 -07004749}
4750
Mina Almasry550a7d62021-11-05 13:41:40 -07004751static void move_huge_pte(struct vm_area_struct *vma, unsigned long old_addr,
4752 unsigned long new_addr, pte_t *src_pte)
4753{
4754 struct hstate *h = hstate_vma(vma);
4755 struct mm_struct *mm = vma->vm_mm;
4756 pte_t *dst_pte, pte;
4757 spinlock_t *src_ptl, *dst_ptl;
4758
4759 dst_pte = huge_pte_offset(mm, new_addr, huge_page_size(h));
4760 dst_ptl = huge_pte_lock(h, mm, dst_pte);
4761 src_ptl = huge_pte_lockptr(h, mm, src_pte);
4762
4763 /*
4764 * We don't have to worry about the ordering of src and dst ptlocks
4765 * because exclusive mmap_sem (or the i_mmap_lock) prevents deadlock.
4766 */
4767 if (src_ptl != dst_ptl)
4768 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
4769
4770 pte = huge_ptep_get_and_clear(mm, old_addr, src_pte);
4771 set_huge_pte_at(mm, new_addr, dst_pte, pte);
4772
4773 if (src_ptl != dst_ptl)
4774 spin_unlock(src_ptl);
4775 spin_unlock(dst_ptl);
4776}
4777
4778int move_hugetlb_page_tables(struct vm_area_struct *vma,
4779 struct vm_area_struct *new_vma,
4780 unsigned long old_addr, unsigned long new_addr,
4781 unsigned long len)
4782{
4783 struct hstate *h = hstate_vma(vma);
4784 struct address_space *mapping = vma->vm_file->f_mapping;
4785 unsigned long sz = huge_page_size(h);
4786 struct mm_struct *mm = vma->vm_mm;
4787 unsigned long old_end = old_addr + len;
4788 unsigned long old_addr_copy;
4789 pte_t *src_pte, *dst_pte;
4790 struct mmu_notifier_range range;
4791
4792 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, mm, old_addr,
4793 old_end);
4794 adjust_range_if_pmd_sharing_possible(vma, &range.start, &range.end);
4795 mmu_notifier_invalidate_range_start(&range);
4796 /* Prevent race with file truncation */
4797 i_mmap_lock_write(mapping);
4798 for (; old_addr < old_end; old_addr += sz, new_addr += sz) {
4799 src_pte = huge_pte_offset(mm, old_addr, sz);
4800 if (!src_pte)
4801 continue;
4802 if (huge_pte_none(huge_ptep_get(src_pte)))
4803 continue;
4804
4805 /* old_addr arg to huge_pmd_unshare() is a pointer and so the
4806 * arg may be modified. Pass a copy instead to preserve the
4807 * value in old_addr.
4808 */
4809 old_addr_copy = old_addr;
4810
4811 if (huge_pmd_unshare(mm, vma, &old_addr_copy, src_pte))
4812 continue;
4813
4814 dst_pte = huge_pte_alloc(mm, new_vma, new_addr, sz);
4815 if (!dst_pte)
4816 break;
4817
4818 move_huge_pte(vma, old_addr, new_addr, src_pte);
4819 }
4820 i_mmap_unlock_write(mapping);
4821 flush_tlb_range(vma, old_end - len, old_end);
4822 mmu_notifier_invalidate_range_end(&range);
4823
4824 return len + old_addr - old_end;
4825}
4826
Peter Xu73c54762021-11-05 13:41:17 -07004827static void __unmap_hugepage_range(struct mmu_gather *tlb, struct vm_area_struct *vma,
4828 unsigned long start, unsigned long end,
4829 struct page *ref_page)
David Gibson63551ae2005-06-21 17:14:44 -07004830{
4831 struct mm_struct *mm = vma->vm_mm;
4832 unsigned long address;
David Gibsonc7546f82005-08-05 11:59:35 -07004833 pte_t *ptep;
David Gibson63551ae2005-06-21 17:14:44 -07004834 pte_t pte;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004835 spinlock_t *ptl;
David Gibson63551ae2005-06-21 17:14:44 -07004836 struct page *page;
Andi Kleena5516432008-07-23 21:27:41 -07004837 struct hstate *h = hstate_vma(vma);
4838 unsigned long sz = huge_page_size(h);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004839 struct mmu_notifier_range range;
Andi Kleena5516432008-07-23 21:27:41 -07004840
David Gibson63551ae2005-06-21 17:14:44 -07004841 WARN_ON(!is_vm_hugetlb_page(vma));
Andi Kleena5516432008-07-23 21:27:41 -07004842 BUG_ON(start & ~huge_page_mask(h));
4843 BUG_ON(end & ~huge_page_mask(h));
David Gibson63551ae2005-06-21 17:14:44 -07004844
Aneesh Kumar K.V07e32662016-12-12 16:42:40 -08004845 /*
4846 * This is a hugetlb vma, all the pte entries should point
4847 * to huge page.
4848 */
Peter Zijlstraed6a7932018-08-31 14:46:08 +02004849 tlb_change_page_size(tlb, sz);
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07004850 tlb_start_vma(tlb, vma);
Mike Kravetzdff11ab2018-10-05 15:51:33 -07004851
4852 /*
4853 * If sharing possible, alert mmu notifiers of worst case.
4854 */
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07004855 mmu_notifier_range_init(&range, MMU_NOTIFY_UNMAP, 0, vma, mm, start,
4856 end);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004857 adjust_range_if_pmd_sharing_possible(vma, &range.start, &range.end);
4858 mmu_notifier_invalidate_range_start(&range);
Hillf Danton569f48b82014-12-10 15:44:41 -08004859 address = start;
Hillf Danton569f48b82014-12-10 15:44:41 -08004860 for (; address < end; address += sz) {
Punit Agrawal7868a202017-07-06 15:39:42 -07004861 ptep = huge_pte_offset(mm, address, sz);
Adam Litke4c887262005-10-29 18:16:46 -07004862 if (!ptep)
David Gibsonc7546f82005-08-05 11:59:35 -07004863 continue;
4864
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004865 ptl = huge_pte_lock(h, mm, ptep);
Mike Kravetz34ae2042020-08-11 18:31:38 -07004866 if (huge_pmd_unshare(mm, vma, &address, ptep)) {
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004867 spin_unlock(ptl);
Mike Kravetzdff11ab2018-10-05 15:51:33 -07004868 /*
4869 * We just unmapped a page of PMDs by clearing a PUD.
4870 * The caller's TLB flush range should cover this area.
4871 */
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004872 continue;
4873 }
Chen, Kenneth W39dde652006-12-06 20:32:03 -08004874
Hillf Danton66293262012-03-23 15:01:48 -07004875 pte = huge_ptep_get(ptep);
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004876 if (huge_pte_none(pte)) {
4877 spin_unlock(ptl);
4878 continue;
4879 }
Hillf Danton66293262012-03-23 15:01:48 -07004880
4881 /*
Naoya Horiguchi9fbc1f62015-02-11 15:25:32 -08004882 * Migrating hugepage or HWPoisoned hugepage is already
4883 * unmapped and its refcount is dropped, so just clear pte here.
Hillf Danton66293262012-03-23 15:01:48 -07004884 */
Naoya Horiguchi9fbc1f62015-02-11 15:25:32 -08004885 if (unlikely(!pte_present(pte))) {
Punit Agrawal9386fac2017-07-06 15:39:46 -07004886 huge_pte_clear(mm, address, ptep, sz);
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004887 spin_unlock(ptl);
4888 continue;
Naoya Horiguchi8c4894c2012-12-12 13:52:28 -08004889 }
Hillf Danton66293262012-03-23 15:01:48 -07004890
4891 page = pte_page(pte);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004892 /*
4893 * If a reference page is supplied, it is because a specific
4894 * page is being unmapped, not a range. Ensure the page we
4895 * are about to unmap is the actual page of interest.
4896 */
4897 if (ref_page) {
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004898 if (page != ref_page) {
4899 spin_unlock(ptl);
4900 continue;
4901 }
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004902 /*
4903 * Mark the VMA as having unmapped its page so that
4904 * future faults in this VMA will fail rather than
4905 * looking like data was lost
4906 */
4907 set_vma_resv_flags(vma, HPAGE_RESV_UNMAPPED);
4908 }
4909
David Gibsonc7546f82005-08-05 11:59:35 -07004910 pte = huge_ptep_get_and_clear(mm, address, ptep);
Aneesh Kumar K.Vb528e4b2016-12-12 16:42:37 -08004911 tlb_remove_huge_tlb_entry(h, tlb, ptep, address);
Gerald Schaefer106c9922013-04-29 15:07:23 -07004912 if (huge_pte_dirty(pte))
Ken Chen6649a382007-02-08 14:20:27 -08004913 set_page_dirty(page);
Hillf Danton9e811302012-03-21 16:34:03 -07004914
Naoya Horiguchi5d317b22015-11-05 18:47:14 -08004915 hugetlb_count_sub(pages_per_huge_page(h), mm);
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08004916 page_remove_rmap(page, true);
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004917
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004918 spin_unlock(ptl);
Aneesh Kumar K.Ve77b0852016-07-26 15:24:12 -07004919 tlb_remove_page_size(tlb, page, huge_page_size(h));
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004920 /*
4921 * Bail out after unmapping reference page if supplied
4922 */
4923 if (ref_page)
4924 break;
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07004925 }
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004926 mmu_notifier_invalidate_range_end(&range);
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07004927 tlb_end_vma(tlb, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928}
David Gibson63551ae2005-06-21 17:14:44 -07004929
Mel Gormand8333522012-07-31 16:46:20 -07004930void __unmap_hugepage_range_final(struct mmu_gather *tlb,
4931 struct vm_area_struct *vma, unsigned long start,
4932 unsigned long end, struct page *ref_page)
4933{
4934 __unmap_hugepage_range(tlb, vma, start, end, ref_page);
4935
4936 /*
4937 * Clear this flag so that x86's huge_pmd_share page_table_shareable
4938 * test will fail on a vma being torn down, and not grab a page table
4939 * on its way out. We're lucky that the flag has such an appropriate
4940 * name, and can in fact be safely cleared here. We could clear it
4941 * before the __unmap_hugepage_range above, but all that's necessary
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08004942 * is to clear it before releasing the i_mmap_rwsem. This works
Mel Gormand8333522012-07-31 16:46:20 -07004943 * because in the context this is called, the VMA is about to be
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08004944 * destroyed and the i_mmap_rwsem is held.
Mel Gormand8333522012-07-31 16:46:20 -07004945 */
4946 vma->vm_flags &= ~VM_MAYSHARE;
4947}
4948
Chen, Kenneth W502717f2006-10-11 01:20:46 -07004949void unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004950 unsigned long end, struct page *ref_page)
Chen, Kenneth W502717f2006-10-11 01:20:46 -07004951{
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07004952 struct mmu_gather tlb;
Mike Kravetzdff11ab2018-10-05 15:51:33 -07004953
Will Deacona72afd82021-01-27 23:53:45 +00004954 tlb_gather_mmu(&tlb, vma->vm_mm);
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07004955 __unmap_hugepage_range(&tlb, vma, start, end, ref_page);
Will Deaconae8eba82021-01-27 23:53:43 +00004956 tlb_finish_mmu(&tlb);
Chen, Kenneth W502717f2006-10-11 01:20:46 -07004957}
4958
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004959/*
4960 * This is called when the original mapper is failing to COW a MAP_PRIVATE
Zhiyuan Dai578b7722021-02-24 12:07:26 -08004961 * mapping it owns the reserve page for. The intention is to unmap the page
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004962 * from other VMAs and let the children be SIGKILLed if they are faulting the
4963 * same region.
4964 */
Davidlohr Bueso2f4612a2014-08-06 16:06:45 -07004965static void unmap_ref_private(struct mm_struct *mm, struct vm_area_struct *vma,
4966 struct page *page, unsigned long address)
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004967{
Adam Litke75266742008-11-12 13:24:56 -08004968 struct hstate *h = hstate_vma(vma);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004969 struct vm_area_struct *iter_vma;
4970 struct address_space *mapping;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004971 pgoff_t pgoff;
4972
4973 /*
4974 * vm_pgoff is in PAGE_SIZE units, hence the different calculation
4975 * from page cache lookup which is in HPAGE_SIZE units.
4976 */
Adam Litke75266742008-11-12 13:24:56 -08004977 address = address & huge_page_mask(h);
Michal Hocko36e4f202012-10-08 16:33:31 -07004978 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) +
4979 vma->vm_pgoff;
Al Viro93c76a32015-12-04 23:45:44 -05004980 mapping = vma->vm_file->f_mapping;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004981
Mel Gorman4eb2b1d2009-12-14 17:59:53 -08004982 /*
4983 * Take the mapping lock for the duration of the table walk. As
4984 * this mapping should be shared between all the VMAs,
4985 * __unmap_hugepage_range() is called as the lock is already held
4986 */
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -08004987 i_mmap_lock_write(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07004988 vma_interval_tree_foreach(iter_vma, &mapping->i_mmap, pgoff, pgoff) {
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004989 /* Do not unmap the current VMA */
4990 if (iter_vma == vma)
4991 continue;
4992
4993 /*
Mel Gorman2f84a892015-10-01 15:36:57 -07004994 * Shared VMAs have their own reserves and do not affect
4995 * MAP_PRIVATE accounting but it is possible that a shared
4996 * VMA is using the same page so check and skip such VMAs.
4997 */
4998 if (iter_vma->vm_flags & VM_MAYSHARE)
4999 continue;
5000
5001 /*
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005002 * Unmap the page from other VMAs without their own reserves.
5003 * They get marked to be SIGKILLed if they fault in these
5004 * areas. This is because a future no-page fault on this VMA
5005 * could insert a zeroed page instead of the data existing
5006 * from the time of fork. This would look like data corruption
5007 */
5008 if (!is_vma_resv_set(iter_vma, HPAGE_RESV_OWNER))
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07005009 unmap_hugepage_range(iter_vma, address,
5010 address + huge_page_size(h), page);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005011 }
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -08005012 i_mmap_unlock_write(mapping);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005013}
5014
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005015/*
5016 * Hugetlb_cow() should be called with page lock of the original hugepage held.
Michal Hockoef009b22012-01-10 15:07:21 -08005017 * Called with hugetlb_instantiation_mutex held and pte_page locked so we
5018 * cannot race with other handlers or page migration.
5019 * Keep the pte_same checks anyway to make transition from the mutex easier.
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005020 */
Souptick Joarder2b740302018-08-23 17:01:36 -07005021static vm_fault_t hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma,
Huang Ying974e6d62018-08-17 15:45:57 -07005022 unsigned long address, pte_t *ptep,
Aneesh Kumar K.V3999f522016-12-12 16:41:56 -08005023 struct page *pagecache_page, spinlock_t *ptl)
David Gibson1e8f8892006-01-06 00:10:44 -08005024{
Aneesh Kumar K.V3999f522016-12-12 16:41:56 -08005025 pte_t pte;
Andi Kleena5516432008-07-23 21:27:41 -07005026 struct hstate *h = hstate_vma(vma);
David Gibson1e8f8892006-01-06 00:10:44 -08005027 struct page *old_page, *new_page;
Souptick Joarder2b740302018-08-23 17:01:36 -07005028 int outside_reserve = 0;
5029 vm_fault_t ret = 0;
Huang Ying974e6d62018-08-17 15:45:57 -07005030 unsigned long haddr = address & huge_page_mask(h);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08005031 struct mmu_notifier_range range;
David Gibson1e8f8892006-01-06 00:10:44 -08005032
Aneesh Kumar K.V3999f522016-12-12 16:41:56 -08005033 pte = huge_ptep_get(ptep);
David Gibson1e8f8892006-01-06 00:10:44 -08005034 old_page = pte_page(pte);
5035
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005036retry_avoidcopy:
David Gibson1e8f8892006-01-06 00:10:44 -08005037 /* If no-one else is actually using this page, avoid the copy
5038 * and just make the page writable */
Joonsoo Kim37a21402013-09-11 14:21:04 -07005039 if (page_mapcount(old_page) == 1 && PageAnon(old_page)) {
Hugh Dickins5a499732016-07-14 12:07:38 -07005040 page_move_anon_rmap(old_page, vma);
Huang Ying5b7a1d42018-08-17 15:45:53 -07005041 set_huge_ptep_writable(vma, haddr, ptep);
Nick Piggin83c54072007-07-19 01:47:05 -07005042 return 0;
David Gibson1e8f8892006-01-06 00:10:44 -08005043 }
5044
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005045 /*
5046 * If the process that created a MAP_PRIVATE mapping is about to
5047 * perform a COW due to a shared page count, attempt to satisfy
5048 * the allocation without using the existing reserves. The pagecache
5049 * page is used to determine if the reserve at this address was
5050 * consumed or not. If reserves were used, a partial faulted mapping
5051 * at the time of fork() could consume its reserves on COW instead
5052 * of the full address range.
5053 */
Joonsoo Kim5944d012013-09-11 14:21:55 -07005054 if (is_vma_resv_set(vma, HPAGE_RESV_OWNER) &&
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005055 old_page != pagecache_page)
5056 outside_reserve = 1;
5057
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005058 get_page(old_page);
Larry Woodmanb76c8cf2009-12-14 17:59:37 -08005059
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07005060 /*
5061 * Drop page table lock as buddy allocator may be called. It will
5062 * be acquired again before returning to the caller, as expected.
5063 */
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005064 spin_unlock(ptl);
Huang Ying5b7a1d42018-08-17 15:45:53 -07005065 new_page = alloc_huge_page(vma, haddr, outside_reserve);
David Gibson1e8f8892006-01-06 00:10:44 -08005066
Adam Litke2fc39ce2007-11-14 16:59:39 -08005067 if (IS_ERR(new_page)) {
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005068 /*
5069 * If a process owning a MAP_PRIVATE mapping fails to COW,
5070 * it is due to references held by a child and an insufficient
5071 * huge page pool. To guarantee the original mappers
5072 * reliability, unmap the page from child processes. The child
5073 * may get SIGKILLed if it later faults.
5074 */
5075 if (outside_reserve) {
Mike Kravetze7dd91c2020-12-29 15:14:25 -08005076 struct address_space *mapping = vma->vm_file->f_mapping;
5077 pgoff_t idx;
5078 u32 hash;
5079
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005080 put_page(old_page);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005081 BUG_ON(huge_pte_none(pte));
Mike Kravetze7dd91c2020-12-29 15:14:25 -08005082 /*
5083 * Drop hugetlb_fault_mutex and i_mmap_rwsem before
5084 * unmapping. unmapping needs to hold i_mmap_rwsem
5085 * in write mode. Dropping i_mmap_rwsem in read mode
5086 * here is OK as COW mappings do not interact with
5087 * PMD sharing.
5088 *
5089 * Reacquire both after unmap operation.
5090 */
5091 idx = vma_hugecache_offset(h, vma, haddr);
5092 hash = hugetlb_fault_mutex_hash(mapping, idx);
5093 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
5094 i_mmap_unlock_read(mapping);
5095
Huang Ying5b7a1d42018-08-17 15:45:53 -07005096 unmap_ref_private(mm, vma, old_page, haddr);
Mike Kravetze7dd91c2020-12-29 15:14:25 -08005097
5098 i_mmap_lock_read(mapping);
5099 mutex_lock(&hugetlb_fault_mutex_table[hash]);
Davidlohr Bueso2f4612a2014-08-06 16:06:45 -07005100 spin_lock(ptl);
Huang Ying5b7a1d42018-08-17 15:45:53 -07005101 ptep = huge_pte_offset(mm, haddr, huge_page_size(h));
Davidlohr Bueso2f4612a2014-08-06 16:06:45 -07005102 if (likely(ptep &&
5103 pte_same(huge_ptep_get(ptep), pte)))
5104 goto retry_avoidcopy;
5105 /*
5106 * race occurs while re-acquiring page table
5107 * lock, and our job is done.
5108 */
5109 return 0;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005110 }
5111
Souptick Joarder2b740302018-08-23 17:01:36 -07005112 ret = vmf_error(PTR_ERR(new_page));
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07005113 goto out_release_old;
David Gibson1e8f8892006-01-06 00:10:44 -08005114 }
5115
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005116 /*
5117 * When the original hugepage is shared one, it does not have
5118 * anon_vma prepared.
5119 */
Dean Nelson44e2aa92010-10-26 14:22:08 -07005120 if (unlikely(anon_vma_prepare(vma))) {
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07005121 ret = VM_FAULT_OOM;
5122 goto out_release_all;
Dean Nelson44e2aa92010-10-26 14:22:08 -07005123 }
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005124
Huang Ying974e6d62018-08-17 15:45:57 -07005125 copy_user_huge_page(new_page, old_page, address, vma,
Andrea Arcangeli47ad8472011-01-13 15:46:47 -08005126 pages_per_huge_page(h));
Nick Piggin0ed361d2008-02-04 22:29:34 -08005127 __SetPageUptodate(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -08005128
Jérôme Glisse7269f992019-05-13 17:20:53 -07005129 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, mm, haddr,
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07005130 haddr + huge_page_size(h));
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08005131 mmu_notifier_invalidate_range_start(&range);
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07005132
Larry Woodmanb76c8cf2009-12-14 17:59:37 -08005133 /*
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005134 * Retake the page table lock to check for racing updates
Larry Woodmanb76c8cf2009-12-14 17:59:37 -08005135 * before the page tables are altered
5136 */
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005137 spin_lock(ptl);
Huang Ying5b7a1d42018-08-17 15:45:53 -07005138 ptep = huge_pte_offset(mm, haddr, huge_page_size(h));
Naoya Horiguchia9af0c52014-04-07 15:36:54 -07005139 if (likely(ptep && pte_same(huge_ptep_get(ptep), pte))) {
Mike Kravetzd6995da2021-02-24 12:08:51 -08005140 ClearHPageRestoreReserve(new_page);
Joonsoo Kim07443a82013-09-11 14:21:58 -07005141
David Gibson1e8f8892006-01-06 00:10:44 -08005142 /* Break COW */
Huang Ying5b7a1d42018-08-17 15:45:53 -07005143 huge_ptep_clear_flush(vma, haddr, ptep);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08005144 mmu_notifier_invalidate_range(mm, range.start, range.end);
Huang Ying5b7a1d42018-08-17 15:45:53 -07005145 set_huge_pte_at(mm, haddr, ptep,
David Gibson1e8f8892006-01-06 00:10:44 -08005146 make_huge_pte(vma, new_page, 1));
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08005147 page_remove_rmap(old_page, true);
Huang Ying5b7a1d42018-08-17 15:45:53 -07005148 hugepage_add_new_anon_rmap(new_page, vma, haddr);
Mike Kravetz8f251a32021-02-24 12:08:56 -08005149 SetHPageMigratable(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -08005150 /* Make the old page be freed below */
5151 new_page = old_page;
5152 }
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005153 spin_unlock(ptl);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08005154 mmu_notifier_invalidate_range_end(&range);
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07005155out_release_all:
Mike Kravetzc7b18502021-08-19 19:04:33 -07005156 /* No restore in case of successful pagetable update (Break COW) */
5157 if (new_page != old_page)
5158 restore_reserve_on_error(h, vma, haddr, new_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005159 put_page(new_page);
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07005160out_release_old:
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005161 put_page(old_page);
Joonsoo Kim83120342013-09-11 14:21:57 -07005162
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07005163 spin_lock(ptl); /* Caller expects lock to be held */
5164 return ret;
David Gibson1e8f8892006-01-06 00:10:44 -08005165}
5166
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005167/* Return the pagecache page at a given address within a VMA */
Andi Kleena5516432008-07-23 21:27:41 -07005168static struct page *hugetlbfs_pagecache_page(struct hstate *h,
5169 struct vm_area_struct *vma, unsigned long address)
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005170{
5171 struct address_space *mapping;
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -07005172 pgoff_t idx;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005173
5174 mapping = vma->vm_file->f_mapping;
Andi Kleena5516432008-07-23 21:27:41 -07005175 idx = vma_hugecache_offset(h, vma, address);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005176
5177 return find_lock_page(mapping, idx);
5178}
5179
Hugh Dickins3ae77f42009-09-21 17:03:33 -07005180/*
5181 * Return whether there is a pagecache page to back given address within VMA.
5182 * Caller follow_hugetlb_page() holds page_table_lock so we cannot lock_page.
5183 */
5184static bool hugetlbfs_pagecache_present(struct hstate *h,
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005185 struct vm_area_struct *vma, unsigned long address)
5186{
5187 struct address_space *mapping;
5188 pgoff_t idx;
5189 struct page *page;
5190
5191 mapping = vma->vm_file->f_mapping;
5192 idx = vma_hugecache_offset(h, vma, address);
5193
5194 page = find_get_page(mapping, idx);
5195 if (page)
5196 put_page(page);
5197 return page != NULL;
5198}
5199
Mike Kravetzab76ad52015-09-08 15:01:50 -07005200int huge_add_to_page_cache(struct page *page, struct address_space *mapping,
5201 pgoff_t idx)
5202{
5203 struct inode *inode = mapping->host;
5204 struct hstate *h = hstate_inode(inode);
5205 int err = add_to_page_cache(page, mapping, idx, GFP_KERNEL);
5206
5207 if (err)
5208 return err;
Mike Kravetzd6995da2021-02-24 12:08:51 -08005209 ClearHPageRestoreReserve(page);
Mike Kravetzab76ad52015-09-08 15:01:50 -07005210
Mike Kravetz22146c32018-10-26 15:10:58 -07005211 /*
5212 * set page dirty so that it will not be removed from cache/file
5213 * by non-hugetlbfs specific code paths.
5214 */
5215 set_page_dirty(page);
5216
Mike Kravetzab76ad52015-09-08 15:01:50 -07005217 spin_lock(&inode->i_lock);
5218 inode->i_blocks += blocks_per_huge_page(h);
5219 spin_unlock(&inode->i_lock);
5220 return 0;
5221}
5222
Axel Rasmussen7677f7f2021-05-04 18:35:36 -07005223static inline vm_fault_t hugetlb_handle_userfault(struct vm_area_struct *vma,
5224 struct address_space *mapping,
5225 pgoff_t idx,
5226 unsigned int flags,
5227 unsigned long haddr,
5228 unsigned long reason)
5229{
5230 vm_fault_t ret;
5231 u32 hash;
5232 struct vm_fault vmf = {
5233 .vma = vma,
5234 .address = haddr,
5235 .flags = flags,
5236
5237 /*
5238 * Hard to debug if it ends up being
5239 * used by a callee that assumes
5240 * something about the other
5241 * uninitialized fields... same as in
5242 * memory.c
5243 */
5244 };
5245
5246 /*
5247 * hugetlb_fault_mutex and i_mmap_rwsem must be
5248 * dropped before handling userfault. Reacquire
5249 * after handling fault to make calling code simpler.
5250 */
5251 hash = hugetlb_fault_mutex_hash(mapping, idx);
5252 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
5253 i_mmap_unlock_read(mapping);
5254 ret = handle_userfault(&vmf, reason);
5255 i_mmap_lock_read(mapping);
5256 mutex_lock(&hugetlb_fault_mutex_table[hash]);
5257
5258 return ret;
5259}
5260
Souptick Joarder2b740302018-08-23 17:01:36 -07005261static vm_fault_t hugetlb_no_page(struct mm_struct *mm,
5262 struct vm_area_struct *vma,
5263 struct address_space *mapping, pgoff_t idx,
5264 unsigned long address, pte_t *ptep, unsigned int flags)
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01005265{
Andi Kleena5516432008-07-23 21:27:41 -07005266 struct hstate *h = hstate_vma(vma);
Souptick Joarder2b740302018-08-23 17:01:36 -07005267 vm_fault_t ret = VM_FAULT_SIGBUS;
Hillf Danton409eb8c2012-01-20 14:34:13 -08005268 int anon_rmap = 0;
Adam Litke4c887262005-10-29 18:16:46 -07005269 unsigned long size;
Adam Litke4c887262005-10-29 18:16:46 -07005270 struct page *page;
David Gibson1e8f8892006-01-06 00:10:44 -08005271 pte_t new_pte;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005272 spinlock_t *ptl;
Huang Ying285b8dc2018-06-07 17:08:08 -07005273 unsigned long haddr = address & huge_page_mask(h);
Mike Kravetzc7b18502021-08-19 19:04:33 -07005274 bool new_page, new_pagecache_page = false;
Adam Litke4c887262005-10-29 18:16:46 -07005275
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005276 /*
5277 * Currently, we are forced to kill the process in the event the
5278 * original mapper has unmapped pages from the child due to a failed
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005279 * COW. Warn that such a situation has occurred as it may not be obvious
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005280 */
5281 if (is_vma_resv_set(vma, HPAGE_RESV_UNMAPPED)) {
Geoffrey Thomas910154d2016-03-09 14:08:04 -08005282 pr_warn_ratelimited("PID %d killed due to inadequate hugepage pool\n",
Andrew Mortonffb22af2013-02-22 16:32:08 -08005283 current->pid);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005284 return ret;
5285 }
5286
Adam Litke4c887262005-10-29 18:16:46 -07005287 /*
Mike Kravetz87bf91d2020-04-01 21:11:08 -07005288 * We can not race with truncation due to holding i_mmap_rwsem.
5289 * i_size is modified when holding i_mmap_rwsem, so check here
5290 * once for faults beyond end of file.
Adam Litke4c887262005-10-29 18:16:46 -07005291 */
Mike Kravetz87bf91d2020-04-01 21:11:08 -07005292 size = i_size_read(mapping->host) >> huge_page_shift(h);
5293 if (idx >= size)
5294 goto out;
5295
Christoph Lameter6bda6662006-01-06 00:10:49 -08005296retry:
Mike Kravetzc7b18502021-08-19 19:04:33 -07005297 new_page = false;
Christoph Lameter6bda6662006-01-06 00:10:49 -08005298 page = find_lock_page(mapping, idx);
5299 if (!page) {
Axel Rasmussen7677f7f2021-05-04 18:35:36 -07005300 /* Check for page in userfault range */
Mike Kravetz1a1aad82017-02-22 15:43:01 -08005301 if (userfaultfd_missing(vma)) {
Axel Rasmussen7677f7f2021-05-04 18:35:36 -07005302 ret = hugetlb_handle_userfault(vma, mapping, idx,
5303 flags, haddr,
5304 VM_UFFD_MISSING);
Mike Kravetz1a1aad82017-02-22 15:43:01 -08005305 goto out;
5306 }
5307
Huang Ying285b8dc2018-06-07 17:08:08 -07005308 page = alloc_huge_page(vma, haddr, 0);
Adam Litke2fc39ce2007-11-14 16:59:39 -08005309 if (IS_ERR(page)) {
Mike Kravetz4643d672019-08-13 15:38:00 -07005310 /*
5311 * Returning error will result in faulting task being
5312 * sent SIGBUS. The hugetlb fault mutex prevents two
5313 * tasks from racing to fault in the same page which
5314 * could result in false unable to allocate errors.
5315 * Page migration does not take the fault mutex, but
5316 * does a clear then write of pte's under page table
5317 * lock. Page fault code could race with migration,
5318 * notice the clear pte and try to allocate a page
5319 * here. Before returning error, get ptl and make
5320 * sure there really is no pte entry.
5321 */
5322 ptl = huge_pte_lock(h, mm, ptep);
Miaohe Lind83e6c8a2021-05-04 18:33:31 -07005323 ret = 0;
5324 if (huge_pte_none(huge_ptep_get(ptep)))
5325 ret = vmf_error(PTR_ERR(page));
Mike Kravetz4643d672019-08-13 15:38:00 -07005326 spin_unlock(ptl);
Christoph Lameter6bda6662006-01-06 00:10:49 -08005327 goto out;
5328 }
Andrea Arcangeli47ad8472011-01-13 15:46:47 -08005329 clear_huge_page(page, address, pages_per_huge_page(h));
Nick Piggin0ed361d2008-02-04 22:29:34 -08005330 __SetPageUptodate(page);
Mike Kravetzcb6acd02019-02-28 16:22:02 -08005331 new_page = true;
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01005332
Mel Gormanf83a2752009-05-28 14:34:40 -07005333 if (vma->vm_flags & VM_MAYSHARE) {
Mike Kravetzab76ad52015-09-08 15:01:50 -07005334 int err = huge_add_to_page_cache(page, mapping, idx);
Christoph Lameter6bda6662006-01-06 00:10:49 -08005335 if (err) {
5336 put_page(page);
Christoph Lameter6bda6662006-01-06 00:10:49 -08005337 if (err == -EEXIST)
5338 goto retry;
5339 goto out;
5340 }
Mike Kravetzc7b18502021-08-19 19:04:33 -07005341 new_pagecache_page = true;
Mel Gorman23be7462010-04-23 13:17:56 -04005342 } else {
Christoph Lameter6bda6662006-01-06 00:10:49 -08005343 lock_page(page);
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005344 if (unlikely(anon_vma_prepare(vma))) {
5345 ret = VM_FAULT_OOM;
5346 goto backout_unlocked;
5347 }
Hillf Danton409eb8c2012-01-20 14:34:13 -08005348 anon_rmap = 1;
Mel Gorman23be7462010-04-23 13:17:56 -04005349 }
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005350 } else {
Naoya Horiguchi998b4382010-09-08 10:19:32 +09005351 /*
5352 * If memory error occurs between mmap() and fault, some process
5353 * don't have hwpoisoned swap entry for errored virtual address.
5354 * So we need to block hugepage fault by PG_hwpoison bit check.
5355 */
5356 if (unlikely(PageHWPoison(page))) {
Miaohe Lin0eb98f12021-01-12 15:49:24 -08005357 ret = VM_FAULT_HWPOISON_LARGE |
Aneesh Kumar K.V972dc4d2012-07-31 16:42:00 -07005358 VM_FAULT_SET_HINDEX(hstate_index(h));
Naoya Horiguchi998b4382010-09-08 10:19:32 +09005359 goto backout_unlocked;
5360 }
Axel Rasmussen7677f7f2021-05-04 18:35:36 -07005361
5362 /* Check for page in userfault range. */
5363 if (userfaultfd_minor(vma)) {
5364 unlock_page(page);
5365 put_page(page);
5366 ret = hugetlb_handle_userfault(vma, mapping, idx,
5367 flags, haddr,
5368 VM_UFFD_MINOR);
5369 goto out;
5370 }
Christoph Lameter6bda6662006-01-06 00:10:49 -08005371 }
David Gibson1e8f8892006-01-06 00:10:44 -08005372
Andy Whitcroft57303d82008-08-12 15:08:47 -07005373 /*
5374 * If we are going to COW a private mapping later, we examine the
5375 * pending reservations for this page now. This will ensure that
5376 * any allocations necessary to record that reservation occur outside
5377 * the spinlock.
5378 */
Mike Kravetz5e911372015-09-08 15:01:28 -07005379 if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
Huang Ying285b8dc2018-06-07 17:08:08 -07005380 if (vma_needs_reservation(h, vma, haddr) < 0) {
Andy Whitcroft2b267362008-08-12 15:08:49 -07005381 ret = VM_FAULT_OOM;
5382 goto backout_unlocked;
5383 }
Mike Kravetz5e911372015-09-08 15:01:28 -07005384 /* Just decrements count, does not deallocate */
Huang Ying285b8dc2018-06-07 17:08:08 -07005385 vma_end_reservation(h, vma, haddr);
Mike Kravetz5e911372015-09-08 15:01:28 -07005386 }
Andy Whitcroft57303d82008-08-12 15:08:47 -07005387
Aneesh Kumar K.V8bea8052016-12-12 16:41:59 -08005388 ptl = huge_pte_lock(h, mm, ptep);
Nick Piggin83c54072007-07-19 01:47:05 -07005389 ret = 0;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07005390 if (!huge_pte_none(huge_ptep_get(ptep)))
Adam Litke4c887262005-10-29 18:16:46 -07005391 goto backout;
5392
Joonsoo Kim07443a82013-09-11 14:21:58 -07005393 if (anon_rmap) {
Mike Kravetzd6995da2021-02-24 12:08:51 -08005394 ClearHPageRestoreReserve(page);
Huang Ying285b8dc2018-06-07 17:08:08 -07005395 hugepage_add_new_anon_rmap(page, vma, haddr);
Choi Gi-yongac714902014-04-07 15:37:36 -07005396 } else
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08005397 page_dup_rmap(page, true);
David Gibson1e8f8892006-01-06 00:10:44 -08005398 new_pte = make_huge_pte(vma, page, ((vma->vm_flags & VM_WRITE)
5399 && (vma->vm_flags & VM_SHARED)));
Huang Ying285b8dc2018-06-07 17:08:08 -07005400 set_huge_pte_at(mm, haddr, ptep, new_pte);
David Gibson1e8f8892006-01-06 00:10:44 -08005401
Naoya Horiguchi5d317b22015-11-05 18:47:14 -08005402 hugetlb_count_add(pages_per_huge_page(h), mm);
Hugh Dickins788c7df2009-06-23 13:49:05 +01005403 if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
David Gibson1e8f8892006-01-06 00:10:44 -08005404 /* Optimization, do the COW without a second fault */
Huang Ying974e6d62018-08-17 15:45:57 -07005405 ret = hugetlb_cow(mm, vma, address, ptep, page, ptl);
David Gibson1e8f8892006-01-06 00:10:44 -08005406 }
5407
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005408 spin_unlock(ptl);
Mike Kravetzcb6acd02019-02-28 16:22:02 -08005409
5410 /*
Mike Kravetz8f251a32021-02-24 12:08:56 -08005411 * Only set HPageMigratable in newly allocated pages. Existing pages
5412 * found in the pagecache may not have HPageMigratableset if they have
5413 * been isolated for migration.
Mike Kravetzcb6acd02019-02-28 16:22:02 -08005414 */
5415 if (new_page)
Mike Kravetz8f251a32021-02-24 12:08:56 -08005416 SetHPageMigratable(page);
Mike Kravetzcb6acd02019-02-28 16:22:02 -08005417
Adam Litke4c887262005-10-29 18:16:46 -07005418 unlock_page(page);
5419out:
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01005420 return ret;
Adam Litke4c887262005-10-29 18:16:46 -07005421
5422backout:
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005423 spin_unlock(ptl);
Andy Whitcroft2b267362008-08-12 15:08:49 -07005424backout_unlocked:
Adam Litke4c887262005-10-29 18:16:46 -07005425 unlock_page(page);
Mike Kravetzc7b18502021-08-19 19:04:33 -07005426 /* restore reserve for newly allocated pages not in page cache */
5427 if (new_page && !new_pagecache_page)
5428 restore_reserve_on_error(h, vma, haddr, page);
Adam Litke4c887262005-10-29 18:16:46 -07005429 put_page(page);
5430 goto out;
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01005431}
5432
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005433#ifdef CONFIG_SMP
Wei Yang188b04a2019-11-30 17:57:02 -08005434u32 hugetlb_fault_mutex_hash(struct address_space *mapping, pgoff_t idx)
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005435{
5436 unsigned long key[2];
5437 u32 hash;
5438
Mike Kravetz1b426ba2019-05-13 17:19:41 -07005439 key[0] = (unsigned long) mapping;
5440 key[1] = idx;
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005441
Mike Kravetz55254632019-11-30 17:56:30 -08005442 hash = jhash2((u32 *)&key, sizeof(key)/(sizeof(u32)), 0);
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005443
5444 return hash & (num_fault_mutexes - 1);
5445}
5446#else
5447/*
Miaohe Lin6c26d312021-02-24 12:07:19 -08005448 * For uniprocessor systems we always use a single mutex, so just
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005449 * return 0 and avoid the hashing overhead.
5450 */
Wei Yang188b04a2019-11-30 17:57:02 -08005451u32 hugetlb_fault_mutex_hash(struct address_space *mapping, pgoff_t idx)
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005452{
5453 return 0;
5454}
5455#endif
5456
Souptick Joarder2b740302018-08-23 17:01:36 -07005457vm_fault_t hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
Hugh Dickins788c7df2009-06-23 13:49:05 +01005458 unsigned long address, unsigned int flags)
Adam Litke86e52162006-01-06 00:10:43 -08005459{
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005460 pte_t *ptep, entry;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005461 spinlock_t *ptl;
Souptick Joarder2b740302018-08-23 17:01:36 -07005462 vm_fault_t ret;
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005463 u32 hash;
5464 pgoff_t idx;
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005465 struct page *page = NULL;
Andy Whitcroft57303d82008-08-12 15:08:47 -07005466 struct page *pagecache_page = NULL;
Andi Kleena5516432008-07-23 21:27:41 -07005467 struct hstate *h = hstate_vma(vma);
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005468 struct address_space *mapping;
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005469 int need_wait_lock = 0;
Huang Ying285b8dc2018-06-07 17:08:08 -07005470 unsigned long haddr = address & huge_page_mask(h);
Adam Litke86e52162006-01-06 00:10:43 -08005471
Huang Ying285b8dc2018-06-07 17:08:08 -07005472 ptep = huge_pte_offset(mm, haddr, huge_page_size(h));
Naoya Horiguchifd6a03e2010-05-28 09:29:21 +09005473 if (ptep) {
Mike Kravetzc0d03812020-04-01 21:11:05 -07005474 /*
5475 * Since we hold no locks, ptep could be stale. That is
5476 * OK as we are only making decisions based on content and
5477 * not actually modifying content here.
5478 */
Naoya Horiguchifd6a03e2010-05-28 09:29:21 +09005479 entry = huge_ptep_get(ptep);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09005480 if (unlikely(is_hugetlb_entry_migration(entry))) {
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005481 migration_entry_wait_huge(vma, mm, ptep);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09005482 return 0;
5483 } else if (unlikely(is_hugetlb_entry_hwpoisoned(entry)))
Chris Forbes32f84522011-07-25 17:12:14 -07005484 return VM_FAULT_HWPOISON_LARGE |
Aneesh Kumar K.V972dc4d2012-07-31 16:42:00 -07005485 VM_FAULT_SET_HINDEX(hstate_index(h));
Naoya Horiguchifd6a03e2010-05-28 09:29:21 +09005486 }
5487
Mike Kravetzc0d03812020-04-01 21:11:05 -07005488 /*
5489 * Acquire i_mmap_rwsem before calling huge_pte_alloc and hold
Mike Kravetz87bf91d2020-04-01 21:11:08 -07005490 * until finished with ptep. This serves two purposes:
5491 * 1) It prevents huge_pmd_unshare from being called elsewhere
5492 * and making the ptep no longer valid.
5493 * 2) It synchronizes us with i_size modifications during truncation.
Mike Kravetzc0d03812020-04-01 21:11:05 -07005494 *
5495 * ptep could have already be assigned via huge_pte_offset. That
5496 * is OK, as huge_pte_alloc will return the same value unless
5497 * something has changed.
5498 */
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005499 mapping = vma->vm_file->f_mapping;
Mike Kravetzc0d03812020-04-01 21:11:05 -07005500 i_mmap_lock_read(mapping);
Peter Xuaec44e02021-05-04 18:33:00 -07005501 ptep = huge_pte_alloc(mm, vma, haddr, huge_page_size(h));
Mike Kravetzc0d03812020-04-01 21:11:05 -07005502 if (!ptep) {
5503 i_mmap_unlock_read(mapping);
5504 return VM_FAULT_OOM;
5505 }
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005506
David Gibson3935baa2006-03-22 00:08:53 -08005507 /*
5508 * Serialize hugepage allocation and instantiation, so that we don't
5509 * get spurious allocation failures if two CPUs race to instantiate
5510 * the same page in the page cache.
5511 */
Mike Kravetzc0d03812020-04-01 21:11:05 -07005512 idx = vma_hugecache_offset(h, vma, haddr);
Wei Yang188b04a2019-11-30 17:57:02 -08005513 hash = hugetlb_fault_mutex_hash(mapping, idx);
Mike Kravetzc672c7f2015-09-08 15:01:35 -07005514 mutex_lock(&hugetlb_fault_mutex_table[hash]);
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005515
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07005516 entry = huge_ptep_get(ptep);
5517 if (huge_pte_none(entry)) {
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005518 ret = hugetlb_no_page(mm, vma, mapping, idx, address, ptep, flags);
David Gibsonb4d1d992008-10-15 22:01:11 -07005519 goto out_mutex;
David Gibson3935baa2006-03-22 00:08:53 -08005520 }
Adam Litke86e52162006-01-06 00:10:43 -08005521
Nick Piggin83c54072007-07-19 01:47:05 -07005522 ret = 0;
David Gibson1e8f8892006-01-06 00:10:44 -08005523
Andy Whitcroft57303d82008-08-12 15:08:47 -07005524 /*
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005525 * entry could be a migration/hwpoison entry at this point, so this
5526 * check prevents the kernel from going below assuming that we have
Ethon Paul7c8de352020-06-04 16:49:07 -07005527 * an active hugepage in pagecache. This goto expects the 2nd page
5528 * fault, and is_hugetlb_entry_(migration|hwpoisoned) check will
5529 * properly handle it.
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005530 */
5531 if (!pte_present(entry))
5532 goto out_mutex;
5533
5534 /*
Andy Whitcroft57303d82008-08-12 15:08:47 -07005535 * If we are going to COW the mapping later, we examine the pending
5536 * reservations for this page now. This will ensure that any
5537 * allocations necessary to record that reservation occur outside the
5538 * spinlock. For private mappings, we also lookup the pagecache
5539 * page now as it is used to determine if a reservation has been
5540 * consumed.
5541 */
Gerald Schaefer106c9922013-04-29 15:07:23 -07005542 if ((flags & FAULT_FLAG_WRITE) && !huge_pte_write(entry)) {
Huang Ying285b8dc2018-06-07 17:08:08 -07005543 if (vma_needs_reservation(h, vma, haddr) < 0) {
Andy Whitcroft2b267362008-08-12 15:08:49 -07005544 ret = VM_FAULT_OOM;
David Gibsonb4d1d992008-10-15 22:01:11 -07005545 goto out_mutex;
Andy Whitcroft2b267362008-08-12 15:08:49 -07005546 }
Mike Kravetz5e911372015-09-08 15:01:28 -07005547 /* Just decrements count, does not deallocate */
Huang Ying285b8dc2018-06-07 17:08:08 -07005548 vma_end_reservation(h, vma, haddr);
Andy Whitcroft57303d82008-08-12 15:08:47 -07005549
Mel Gormanf83a2752009-05-28 14:34:40 -07005550 if (!(vma->vm_flags & VM_MAYSHARE))
Andy Whitcroft57303d82008-08-12 15:08:47 -07005551 pagecache_page = hugetlbfs_pagecache_page(h,
Huang Ying285b8dc2018-06-07 17:08:08 -07005552 vma, haddr);
Andy Whitcroft57303d82008-08-12 15:08:47 -07005553 }
5554
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005555 ptl = huge_pte_lock(h, mm, ptep);
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005556
David Gibson1e8f8892006-01-06 00:10:44 -08005557 /* Check for a racing update before calling hugetlb_cow */
David Gibsonb4d1d992008-10-15 22:01:11 -07005558 if (unlikely(!pte_same(entry, huge_ptep_get(ptep))))
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005559 goto out_ptl;
David Gibsonb4d1d992008-10-15 22:01:11 -07005560
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005561 /*
5562 * hugetlb_cow() requires page locks of pte_page(entry) and
5563 * pagecache_page, so here we need take the former one
5564 * when page != pagecache_page or !pagecache_page.
5565 */
5566 page = pte_page(entry);
5567 if (page != pagecache_page)
5568 if (!trylock_page(page)) {
5569 need_wait_lock = 1;
5570 goto out_ptl;
5571 }
5572
5573 get_page(page);
David Gibsonb4d1d992008-10-15 22:01:11 -07005574
Hugh Dickins788c7df2009-06-23 13:49:05 +01005575 if (flags & FAULT_FLAG_WRITE) {
Gerald Schaefer106c9922013-04-29 15:07:23 -07005576 if (!huge_pte_write(entry)) {
Huang Ying974e6d62018-08-17 15:45:57 -07005577 ret = hugetlb_cow(mm, vma, address, ptep,
Aneesh Kumar K.V3999f522016-12-12 16:41:56 -08005578 pagecache_page, ptl);
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005579 goto out_put_page;
David Gibsonb4d1d992008-10-15 22:01:11 -07005580 }
Gerald Schaefer106c9922013-04-29 15:07:23 -07005581 entry = huge_pte_mkdirty(entry);
David Gibsonb4d1d992008-10-15 22:01:11 -07005582 }
5583 entry = pte_mkyoung(entry);
Huang Ying285b8dc2018-06-07 17:08:08 -07005584 if (huge_ptep_set_access_flags(vma, haddr, ptep, entry,
Hugh Dickins788c7df2009-06-23 13:49:05 +01005585 flags & FAULT_FLAG_WRITE))
Huang Ying285b8dc2018-06-07 17:08:08 -07005586 update_mmu_cache(vma, haddr, ptep);
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005587out_put_page:
5588 if (page != pagecache_page)
5589 unlock_page(page);
5590 put_page(page);
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005591out_ptl:
5592 spin_unlock(ptl);
Andy Whitcroft57303d82008-08-12 15:08:47 -07005593
5594 if (pagecache_page) {
5595 unlock_page(pagecache_page);
5596 put_page(pagecache_page);
5597 }
David Gibsonb4d1d992008-10-15 22:01:11 -07005598out_mutex:
Mike Kravetzc672c7f2015-09-08 15:01:35 -07005599 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
Mike Kravetzc0d03812020-04-01 21:11:05 -07005600 i_mmap_unlock_read(mapping);
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005601 /*
5602 * Generally it's safe to hold refcount during waiting page lock. But
5603 * here we just wait to defer the next page fault to avoid busy loop and
5604 * the page is not used after unlocked before returning from the current
5605 * page fault. So we are safe from accessing freed page, even if we wait
5606 * here without taking refcount.
5607 */
5608 if (need_wait_lock)
5609 wait_on_page_locked(page);
David Gibson1e8f8892006-01-06 00:10:44 -08005610 return ret;
Adam Litke86e52162006-01-06 00:10:43 -08005611}
5612
Axel Rasmussen714c1892021-05-04 18:35:45 -07005613#ifdef CONFIG_USERFAULTFD
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005614/*
5615 * Used by userfaultfd UFFDIO_COPY. Based on mcopy_atomic_pte with
5616 * modifications for huge pages.
5617 */
5618int hugetlb_mcopy_atomic_pte(struct mm_struct *dst_mm,
5619 pte_t *dst_pte,
5620 struct vm_area_struct *dst_vma,
5621 unsigned long dst_addr,
5622 unsigned long src_addr,
Axel Rasmussenf6191472021-05-04 18:35:49 -07005623 enum mcopy_atomic_mode mode,
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005624 struct page **pagep)
5625{
Axel Rasmussenf6191472021-05-04 18:35:49 -07005626 bool is_continue = (mode == MCOPY_ATOMIC_CONTINUE);
Mina Almasry8cc5fcb2021-06-30 18:48:19 -07005627 struct hstate *h = hstate_vma(dst_vma);
5628 struct address_space *mapping = dst_vma->vm_file->f_mapping;
5629 pgoff_t idx = vma_hugecache_offset(h, dst_vma, dst_addr);
Andrea Arcangeli1e3921472017-11-02 15:59:29 -07005630 unsigned long size;
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005631 int vm_shared = dst_vma->vm_flags & VM_SHARED;
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005632 pte_t _dst_pte;
5633 spinlock_t *ptl;
Mina Almasry8cc5fcb2021-06-30 18:48:19 -07005634 int ret = -ENOMEM;
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005635 struct page *page;
Axel Rasmussenf6191472021-05-04 18:35:49 -07005636 int writable;
Mike Kravetzc7b18502021-08-19 19:04:33 -07005637 bool new_pagecache_page = false;
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005638
Axel Rasmussenf6191472021-05-04 18:35:49 -07005639 if (is_continue) {
5640 ret = -EFAULT;
5641 page = find_lock_page(mapping, idx);
5642 if (!page)
5643 goto out;
5644 } else if (!*pagep) {
Mina Almasryd84cf062021-06-04 20:01:36 -07005645 /* If a page already exists, then it's UFFDIO_COPY for
5646 * a non-missing case. Return -EEXIST.
5647 */
5648 if (vm_shared &&
5649 hugetlbfs_pagecache_present(h, dst_vma, dst_addr)) {
5650 ret = -EEXIST;
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005651 goto out;
Mina Almasryd84cf062021-06-04 20:01:36 -07005652 }
5653
5654 page = alloc_huge_page(dst_vma, dst_addr, 0);
5655 if (IS_ERR(page)) {
5656 ret = -ENOMEM;
5657 goto out;
5658 }
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005659
5660 ret = copy_huge_page_from_user(page,
5661 (const void __user *) src_addr,
Mike Kravetz810a56b2017-02-22 15:42:58 -08005662 pages_per_huge_page(h), false);
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005663
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07005664 /* fallback to copy_from_user outside mmap_lock */
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005665 if (unlikely(ret)) {
Andrea Arcangeli9e368252018-11-30 14:09:25 -08005666 ret = -ENOENT;
Mina Almasry8cc5fcb2021-06-30 18:48:19 -07005667 /* Free the allocated page which may have
5668 * consumed a reservation.
5669 */
5670 restore_reserve_on_error(h, dst_vma, dst_addr, page);
5671 put_page(page);
5672
5673 /* Allocate a temporary page to hold the copied
5674 * contents.
5675 */
5676 page = alloc_huge_page_vma(h, dst_vma, dst_addr);
5677 if (!page) {
5678 ret = -ENOMEM;
5679 goto out;
5680 }
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005681 *pagep = page;
Mina Almasry8cc5fcb2021-06-30 18:48:19 -07005682 /* Set the outparam pagep and return to the caller to
5683 * copy the contents outside the lock. Don't free the
5684 * page.
5685 */
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005686 goto out;
5687 }
5688 } else {
Mina Almasry8cc5fcb2021-06-30 18:48:19 -07005689 if (vm_shared &&
5690 hugetlbfs_pagecache_present(h, dst_vma, dst_addr)) {
5691 put_page(*pagep);
5692 ret = -EEXIST;
5693 *pagep = NULL;
5694 goto out;
5695 }
5696
5697 page = alloc_huge_page(dst_vma, dst_addr, 0);
5698 if (IS_ERR(page)) {
5699 ret = -ENOMEM;
5700 *pagep = NULL;
5701 goto out;
5702 }
5703 copy_huge_page(page, *pagep);
5704 put_page(*pagep);
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005705 *pagep = NULL;
5706 }
5707
5708 /*
5709 * The memory barrier inside __SetPageUptodate makes sure that
5710 * preceding stores to the page contents become visible before
5711 * the set_pte_at() write.
5712 */
5713 __SetPageUptodate(page);
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005714
Axel Rasmussenf6191472021-05-04 18:35:49 -07005715 /* Add shared, newly allocated pages to the page cache. */
5716 if (vm_shared && !is_continue) {
Andrea Arcangeli1e3921472017-11-02 15:59:29 -07005717 size = i_size_read(mapping->host) >> huge_page_shift(h);
5718 ret = -EFAULT;
5719 if (idx >= size)
5720 goto out_release_nounlock;
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005721
Andrea Arcangeli1e3921472017-11-02 15:59:29 -07005722 /*
5723 * Serialization between remove_inode_hugepages() and
5724 * huge_add_to_page_cache() below happens through the
5725 * hugetlb_fault_mutex_table that here must be hold by
5726 * the caller.
5727 */
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005728 ret = huge_add_to_page_cache(page, mapping, idx);
5729 if (ret)
5730 goto out_release_nounlock;
Mike Kravetzc7b18502021-08-19 19:04:33 -07005731 new_pagecache_page = true;
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005732 }
5733
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005734 ptl = huge_pte_lockptr(h, dst_mm, dst_pte);
5735 spin_lock(ptl);
5736
Andrea Arcangeli1e3921472017-11-02 15:59:29 -07005737 /*
5738 * Recheck the i_size after holding PT lock to make sure not
5739 * to leave any page mapped (as page_mapped()) beyond the end
5740 * of the i_size (remove_inode_hugepages() is strict about
5741 * enforcing that). If we bail out here, we'll also leave a
5742 * page in the radix tree in the vm_shared case beyond the end
5743 * of the i_size, but remove_inode_hugepages() will take care
5744 * of it as soon as we drop the hugetlb_fault_mutex_table.
5745 */
5746 size = i_size_read(mapping->host) >> huge_page_shift(h);
5747 ret = -EFAULT;
5748 if (idx >= size)
5749 goto out_release_unlock;
5750
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005751 ret = -EEXIST;
5752 if (!huge_pte_none(huge_ptep_get(dst_pte)))
5753 goto out_release_unlock;
5754
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005755 if (vm_shared) {
5756 page_dup_rmap(page, true);
5757 } else {
Mike Kravetzd6995da2021-02-24 12:08:51 -08005758 ClearHPageRestoreReserve(page);
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005759 hugepage_add_new_anon_rmap(page, dst_vma, dst_addr);
5760 }
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005761
Axel Rasmussenf6191472021-05-04 18:35:49 -07005762 /* For CONTINUE on a non-shared VMA, don't set VM_WRITE for CoW. */
5763 if (is_continue && !vm_shared)
5764 writable = 0;
5765 else
5766 writable = dst_vma->vm_flags & VM_WRITE;
5767
5768 _dst_pte = make_huge_pte(dst_vma, page, writable);
5769 if (writable)
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005770 _dst_pte = huge_pte_mkdirty(_dst_pte);
5771 _dst_pte = pte_mkyoung(_dst_pte);
5772
5773 set_huge_pte_at(dst_mm, dst_addr, dst_pte, _dst_pte);
5774
5775 (void)huge_ptep_set_access_flags(dst_vma, dst_addr, dst_pte, _dst_pte,
5776 dst_vma->vm_flags & VM_WRITE);
5777 hugetlb_count_add(pages_per_huge_page(h), dst_mm);
5778
5779 /* No need to invalidate - it was non-present before */
5780 update_mmu_cache(dst_vma, dst_addr, dst_pte);
5781
5782 spin_unlock(ptl);
Axel Rasmussenf6191472021-05-04 18:35:49 -07005783 if (!is_continue)
5784 SetHPageMigratable(page);
5785 if (vm_shared || is_continue)
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005786 unlock_page(page);
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005787 ret = 0;
5788out:
5789 return ret;
5790out_release_unlock:
5791 spin_unlock(ptl);
Axel Rasmussenf6191472021-05-04 18:35:49 -07005792 if (vm_shared || is_continue)
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005793 unlock_page(page);
Andrea Arcangeli5af10df2017-08-10 15:23:38 -07005794out_release_nounlock:
Mike Kravetzc7b18502021-08-19 19:04:33 -07005795 if (!new_pagecache_page)
5796 restore_reserve_on_error(h, dst_vma, dst_addr, page);
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005797 put_page(page);
5798 goto out;
5799}
Axel Rasmussen714c1892021-05-04 18:35:45 -07005800#endif /* CONFIG_USERFAULTFD */
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005801
Joao Martins82e5d372021-02-24 12:07:16 -08005802static void record_subpages_vmas(struct page *page, struct vm_area_struct *vma,
5803 int refs, struct page **pages,
5804 struct vm_area_struct **vmas)
5805{
5806 int nr;
5807
5808 for (nr = 0; nr < refs; nr++) {
5809 if (likely(pages))
5810 pages[nr] = mem_map_offset(page, nr);
5811 if (vmas)
5812 vmas[nr] = vma;
5813 }
5814}
5815
Michel Lespinasse28a35712013-02-22 16:35:55 -08005816long follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma,
5817 struct page **pages, struct vm_area_struct **vmas,
5818 unsigned long *position, unsigned long *nr_pages,
Peter Xu4f6da932020-04-01 21:07:58 -07005819 long i, unsigned int flags, int *locked)
David Gibson63551ae2005-06-21 17:14:44 -07005820{
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08005821 unsigned long pfn_offset;
5822 unsigned long vaddr = *position;
Michel Lespinasse28a35712013-02-22 16:35:55 -08005823 unsigned long remainder = *nr_pages;
Andi Kleena5516432008-07-23 21:27:41 -07005824 struct hstate *h = hstate_vma(vma);
Joao Martins0fa5bc42021-02-24 12:07:12 -08005825 int err = -EFAULT, refs;
David Gibson63551ae2005-06-21 17:14:44 -07005826
David Gibson63551ae2005-06-21 17:14:44 -07005827 while (vaddr < vma->vm_end && remainder) {
Adam Litke4c887262005-10-29 18:16:46 -07005828 pte_t *pte;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005829 spinlock_t *ptl = NULL;
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005830 int absent;
Adam Litke4c887262005-10-29 18:16:46 -07005831 struct page *page;
5832
5833 /*
David Rientjes02057962015-04-14 15:48:24 -07005834 * If we have a pending SIGKILL, don't keep faulting pages and
5835 * potentially allocating memory.
5836 */
Davidlohr Buesofa45f112019-01-03 15:28:55 -08005837 if (fatal_signal_pending(current)) {
David Rientjes02057962015-04-14 15:48:24 -07005838 remainder = 0;
5839 break;
5840 }
5841
5842 /*
Adam Litke4c887262005-10-29 18:16:46 -07005843 * Some archs (sparc64, sh*) have multiple pte_ts to
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005844 * each hugepage. We have to make sure we get the
Adam Litke4c887262005-10-29 18:16:46 -07005845 * first, for the page indexing below to work.
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005846 *
5847 * Note that page table lock is not held when pte is null.
Adam Litke4c887262005-10-29 18:16:46 -07005848 */
Punit Agrawal7868a202017-07-06 15:39:42 -07005849 pte = huge_pte_offset(mm, vaddr & huge_page_mask(h),
5850 huge_page_size(h));
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005851 if (pte)
5852 ptl = huge_pte_lock(h, mm, pte);
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005853 absent = !pte || huge_pte_none(huge_ptep_get(pte));
Adam Litke4c887262005-10-29 18:16:46 -07005854
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005855 /*
5856 * When coredumping, it suits get_dump_page if we just return
Hugh Dickins3ae77f42009-09-21 17:03:33 -07005857 * an error where there's an empty slot with no huge pagecache
5858 * to back it. This way, we avoid allocating a hugepage, and
5859 * the sparse dumpfile avoids allocating disk blocks, but its
5860 * huge holes still show up with zeroes where they need to be.
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005861 */
Hugh Dickins3ae77f42009-09-21 17:03:33 -07005862 if (absent && (flags & FOLL_DUMP) &&
5863 !hugetlbfs_pagecache_present(h, vma, vaddr)) {
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005864 if (pte)
5865 spin_unlock(ptl);
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005866 remainder = 0;
5867 break;
5868 }
5869
Naoya Horiguchi9cc3a5b2013-04-17 15:58:30 -07005870 /*
5871 * We need call hugetlb_fault for both hugepages under migration
5872 * (in which case hugetlb_fault waits for the migration,) and
5873 * hwpoisoned hugepages (in which case we need to prevent the
5874 * caller from accessing to them.) In order to do this, we use
5875 * here is_swap_pte instead of is_hugetlb_entry_migration and
5876 * is_hugetlb_entry_hwpoisoned. This is because it simply covers
5877 * both cases, and because we can't follow correct pages
5878 * directly from any kind of swap entries.
5879 */
5880 if (absent || is_swap_pte(huge_ptep_get(pte)) ||
Gerald Schaefer106c9922013-04-29 15:07:23 -07005881 ((flags & FOLL_WRITE) &&
5882 !huge_pte_write(huge_ptep_get(pte)))) {
Souptick Joarder2b740302018-08-23 17:01:36 -07005883 vm_fault_t ret;
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005884 unsigned int fault_flags = 0;
Adam Litke4c887262005-10-29 18:16:46 -07005885
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005886 if (pte)
5887 spin_unlock(ptl);
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005888 if (flags & FOLL_WRITE)
5889 fault_flags |= FAULT_FLAG_WRITE;
Peter Xu4f6da932020-04-01 21:07:58 -07005890 if (locked)
Peter Xu71335f32020-04-01 21:08:53 -07005891 fault_flags |= FAULT_FLAG_ALLOW_RETRY |
5892 FAULT_FLAG_KILLABLE;
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005893 if (flags & FOLL_NOWAIT)
5894 fault_flags |= FAULT_FLAG_ALLOW_RETRY |
5895 FAULT_FLAG_RETRY_NOWAIT;
5896 if (flags & FOLL_TRIED) {
Peter Xu4426e942020-04-01 21:08:49 -07005897 /*
5898 * Note: FAULT_FLAG_ALLOW_RETRY and
5899 * FAULT_FLAG_TRIED can co-exist
5900 */
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005901 fault_flags |= FAULT_FLAG_TRIED;
5902 }
5903 ret = hugetlb_fault(mm, vma, vaddr, fault_flags);
5904 if (ret & VM_FAULT_ERROR) {
Daniel Jordan2be7cfe2017-08-02 13:31:47 -07005905 err = vm_fault_to_errno(ret, flags);
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005906 remainder = 0;
5907 break;
5908 }
5909 if (ret & VM_FAULT_RETRY) {
Peter Xu4f6da932020-04-01 21:07:58 -07005910 if (locked &&
Andrea Arcangeli1ac25012019-02-01 14:20:16 -08005911 !(fault_flags & FAULT_FLAG_RETRY_NOWAIT))
Peter Xu4f6da932020-04-01 21:07:58 -07005912 *locked = 0;
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005913 *nr_pages = 0;
5914 /*
5915 * VM_FAULT_RETRY must not return an
5916 * error, it will return zero
5917 * instead.
5918 *
5919 * No need to update "position" as the
5920 * caller will not check it after
5921 * *nr_pages is set to 0.
5922 */
5923 return i;
5924 }
5925 continue;
Adam Litke4c887262005-10-29 18:16:46 -07005926 }
David Gibson63551ae2005-06-21 17:14:44 -07005927
Andi Kleena5516432008-07-23 21:27:41 -07005928 pfn_offset = (vaddr & ~huge_page_mask(h)) >> PAGE_SHIFT;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07005929 page = pte_page(huge_ptep_get(pte));
Linus Torvalds8fde12c2019-04-11 10:49:19 -07005930
5931 /*
Zhigang Luacbfb082019-11-30 17:57:06 -08005932 * If subpage information not requested, update counters
5933 * and skip the same_page loop below.
5934 */
5935 if (!pages && !vmas && !pfn_offset &&
5936 (vaddr + huge_page_size(h) < vma->vm_end) &&
5937 (remainder >= pages_per_huge_page(h))) {
5938 vaddr += huge_page_size(h);
5939 remainder -= pages_per_huge_page(h);
5940 i += pages_per_huge_page(h);
5941 spin_unlock(ptl);
5942 continue;
5943 }
5944
Joao Martinsd08af0a2021-07-14 21:27:11 -07005945 /* vaddr may not be aligned to PAGE_SIZE */
5946 refs = min3(pages_per_huge_page(h) - pfn_offset, remainder,
5947 (vma->vm_end - ALIGN_DOWN(vaddr, PAGE_SIZE)) >> PAGE_SHIFT);
Joao Martins0fa5bc42021-02-24 12:07:12 -08005948
Joao Martins82e5d372021-02-24 12:07:16 -08005949 if (pages || vmas)
5950 record_subpages_vmas(mem_map_offset(page, pfn_offset),
5951 vma, refs,
5952 likely(pages) ? pages + i : NULL,
5953 vmas ? vmas + i : NULL);
David Gibson63551ae2005-06-21 17:14:44 -07005954
Joao Martins82e5d372021-02-24 12:07:16 -08005955 if (pages) {
Joao Martins0fa5bc42021-02-24 12:07:12 -08005956 /*
5957 * try_grab_compound_head() should always succeed here,
5958 * because: a) we hold the ptl lock, and b) we've just
5959 * checked that the huge page is present in the page
5960 * tables. If the huge page is present, then the tail
5961 * pages must also be present. The ptl prevents the
5962 * head page and tail pages from being rearranged in
5963 * any way. So this page must be available at this
5964 * point, unless the page refcount overflowed:
5965 */
Joao Martins82e5d372021-02-24 12:07:16 -08005966 if (WARN_ON_ONCE(!try_grab_compound_head(pages[i],
Joao Martins0fa5bc42021-02-24 12:07:12 -08005967 refs,
5968 flags))) {
5969 spin_unlock(ptl);
5970 remainder = 0;
5971 err = -ENOMEM;
5972 break;
5973 }
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08005974 }
Joao Martins82e5d372021-02-24 12:07:16 -08005975
5976 vaddr += (refs << PAGE_SHIFT);
5977 remainder -= refs;
5978 i += refs;
5979
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005980 spin_unlock(ptl);
David Gibson63551ae2005-06-21 17:14:44 -07005981 }
Michel Lespinasse28a35712013-02-22 16:35:55 -08005982 *nr_pages = remainder;
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005983 /*
5984 * setting position is actually required only if remainder is
5985 * not zero but it's faster not to add a "if (remainder)"
5986 * branch.
5987 */
David Gibson63551ae2005-06-21 17:14:44 -07005988 *position = vaddr;
5989
Daniel Jordan2be7cfe2017-08-02 13:31:47 -07005990 return i ? i : err;
David Gibson63551ae2005-06-21 17:14:44 -07005991}
Zhang, Yanmin8f860592006-03-22 00:08:50 -08005992
Peter Zijlstra7da4d642012-11-19 03:14:23 +01005993unsigned long hugetlb_change_protection(struct vm_area_struct *vma,
Zhang, Yanmin8f860592006-03-22 00:08:50 -08005994 unsigned long address, unsigned long end, pgprot_t newprot)
5995{
5996 struct mm_struct *mm = vma->vm_mm;
5997 unsigned long start = address;
5998 pte_t *ptep;
5999 pte_t pte;
Andi Kleena5516432008-07-23 21:27:41 -07006000 struct hstate *h = hstate_vma(vma);
Peter Zijlstra7da4d642012-11-19 03:14:23 +01006001 unsigned long pages = 0;
Mike Kravetzdff11ab2018-10-05 15:51:33 -07006002 bool shared_pmd = false;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08006003 struct mmu_notifier_range range;
Mike Kravetzdff11ab2018-10-05 15:51:33 -07006004
6005 /*
6006 * In the case of shared PMDs, the area to flush could be beyond
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08006007 * start/end. Set range.start/range.end to cover the maximum possible
Mike Kravetzdff11ab2018-10-05 15:51:33 -07006008 * range if PMD sharing is possible.
6009 */
Jérôme Glisse7269f992019-05-13 17:20:53 -07006010 mmu_notifier_range_init(&range, MMU_NOTIFY_PROTECTION_VMA,
6011 0, vma, mm, start, end);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08006012 adjust_range_if_pmd_sharing_possible(vma, &range.start, &range.end);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08006013
6014 BUG_ON(address >= end);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08006015 flush_cache_range(vma, range.start, range.end);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08006016
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08006017 mmu_notifier_invalidate_range_start(&range);
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -08006018 i_mmap_lock_write(vma->vm_file->f_mapping);
Andi Kleena5516432008-07-23 21:27:41 -07006019 for (; address < end; address += huge_page_size(h)) {
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08006020 spinlock_t *ptl;
Punit Agrawal7868a202017-07-06 15:39:42 -07006021 ptep = huge_pte_offset(mm, address, huge_page_size(h));
Zhang, Yanmin8f860592006-03-22 00:08:50 -08006022 if (!ptep)
6023 continue;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08006024 ptl = huge_pte_lock(h, mm, ptep);
Mike Kravetz34ae2042020-08-11 18:31:38 -07006025 if (huge_pmd_unshare(mm, vma, &address, ptep)) {
Peter Zijlstra7da4d642012-11-19 03:14:23 +01006026 pages++;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08006027 spin_unlock(ptl);
Mike Kravetzdff11ab2018-10-05 15:51:33 -07006028 shared_pmd = true;
Chen, Kenneth W39dde652006-12-06 20:32:03 -08006029 continue;
Peter Zijlstra7da4d642012-11-19 03:14:23 +01006030 }
Naoya Horiguchia8bda282015-02-11 15:25:28 -08006031 pte = huge_ptep_get(ptep);
6032 if (unlikely(is_hugetlb_entry_hwpoisoned(pte))) {
6033 spin_unlock(ptl);
6034 continue;
6035 }
6036 if (unlikely(is_hugetlb_entry_migration(pte))) {
6037 swp_entry_t entry = pte_to_swp_entry(pte);
6038
Alistair Popple4dd845b2021-06-30 18:54:09 -07006039 if (is_writable_migration_entry(entry)) {
Naoya Horiguchia8bda282015-02-11 15:25:28 -08006040 pte_t newpte;
6041
Alistair Popple4dd845b2021-06-30 18:54:09 -07006042 entry = make_readable_migration_entry(
6043 swp_offset(entry));
Naoya Horiguchia8bda282015-02-11 15:25:28 -08006044 newpte = swp_entry_to_pte(entry);
Punit Agrawale5251fd2017-07-06 15:39:50 -07006045 set_huge_swap_pte_at(mm, address, ptep,
6046 newpte, huge_page_size(h));
Naoya Horiguchia8bda282015-02-11 15:25:28 -08006047 pages++;
6048 }
6049 spin_unlock(ptl);
6050 continue;
6051 }
6052 if (!huge_pte_none(pte)) {
Aneesh Kumar K.V023bdd02019-03-05 15:46:37 -08006053 pte_t old_pte;
Christophe Leroy79c1c592021-06-30 18:48:00 -07006054 unsigned int shift = huge_page_shift(hstate_vma(vma));
Aneesh Kumar K.V023bdd02019-03-05 15:46:37 -08006055
6056 old_pte = huge_ptep_modify_prot_start(vma, address, ptep);
6057 pte = pte_mkhuge(huge_pte_modify(old_pte, newprot));
Christophe Leroy79c1c592021-06-30 18:48:00 -07006058 pte = arch_make_huge_pte(pte, shift, vma->vm_flags);
Aneesh Kumar K.V023bdd02019-03-05 15:46:37 -08006059 huge_ptep_modify_prot_commit(vma, address, ptep, old_pte, pte);
Peter Zijlstra7da4d642012-11-19 03:14:23 +01006060 pages++;
Zhang, Yanmin8f860592006-03-22 00:08:50 -08006061 }
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08006062 spin_unlock(ptl);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08006063 }
Mel Gormand8333522012-07-31 16:46:20 -07006064 /*
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08006065 * Must flush TLB before releasing i_mmap_rwsem: x86's huge_pmd_unshare
Mel Gormand8333522012-07-31 16:46:20 -07006066 * may have cleared our pud entry and done put_page on the page table:
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08006067 * once we release i_mmap_rwsem, another task can do the final put_page
Mike Kravetzdff11ab2018-10-05 15:51:33 -07006068 * and that page table be reused and filled with junk. If we actually
6069 * did unshare a page of pmds, flush the range corresponding to the pud.
Mel Gormand8333522012-07-31 16:46:20 -07006070 */
Mike Kravetzdff11ab2018-10-05 15:51:33 -07006071 if (shared_pmd)
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08006072 flush_hugetlb_tlb_range(vma, range.start, range.end);
Mike Kravetzdff11ab2018-10-05 15:51:33 -07006073 else
6074 flush_hugetlb_tlb_range(vma, start, end);
Jérôme Glisse0f108512017-11-15 17:34:07 -08006075 /*
6076 * No need to call mmu_notifier_invalidate_range() we are downgrading
6077 * page table protection not changing it to point to a new page.
6078 *
Mike Rapoportad56b732018-03-21 21:22:47 +02006079 * See Documentation/vm/mmu_notifier.rst
Jérôme Glisse0f108512017-11-15 17:34:07 -08006080 */
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -08006081 i_mmap_unlock_write(vma->vm_file->f_mapping);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08006082 mmu_notifier_invalidate_range_end(&range);
Peter Zijlstra7da4d642012-11-19 03:14:23 +01006083
6084 return pages << h->order;
Zhang, Yanmin8f860592006-03-22 00:08:50 -08006085}
6086
Mike Kravetz33b8f842021-02-24 12:09:54 -08006087/* Return true if reservation was successful, false otherwise. */
6088bool hugetlb_reserve_pages(struct inode *inode,
Mel Gormana1e78772008-07-23 21:27:23 -07006089 long from, long to,
Mel Gorman5a6fe122009-02-10 14:02:27 +00006090 struct vm_area_struct *vma,
KOSAKI Motohiroca16d142011-05-26 19:16:19 +09006091 vm_flags_t vm_flags)
Adam Litkee4e574b2007-10-16 01:26:19 -07006092{
Mike Kravetz33b8f842021-02-24 12:09:54 -08006093 long chg, add = -1;
Andi Kleena5516432008-07-23 21:27:41 -07006094 struct hstate *h = hstate_inode(inode);
David Gibson90481622012-03-21 16:34:12 -07006095 struct hugepage_subpool *spool = subpool_inode(inode);
Joonsoo Kim9119a412014-04-03 14:47:25 -07006096 struct resv_map *resv_map;
Mina Almasry075a61d2020-04-01 21:11:28 -07006097 struct hugetlb_cgroup *h_cg = NULL;
Mina Almasry0db9d742020-04-01 21:11:25 -07006098 long gbl_reserve, regions_needed = 0;
Adam Litkee4e574b2007-10-16 01:26:19 -07006099
Mike Kravetz63489f82018-03-22 16:17:13 -07006100 /* This should never happen */
6101 if (from > to) {
6102 VM_WARN(1, "%s called with a negative range\n", __func__);
Mike Kravetz33b8f842021-02-24 12:09:54 -08006103 return false;
Mike Kravetz63489f82018-03-22 16:17:13 -07006104 }
6105
Mel Gormana1e78772008-07-23 21:27:23 -07006106 /*
Mel Gorman17c9d122009-02-11 16:34:16 +00006107 * Only apply hugepage reservation if asked. At fault time, an
6108 * attempt will be made for VM_NORESERVE to allocate a page
David Gibson90481622012-03-21 16:34:12 -07006109 * without using reserves
Mel Gorman17c9d122009-02-11 16:34:16 +00006110 */
KOSAKI Motohiroca16d142011-05-26 19:16:19 +09006111 if (vm_flags & VM_NORESERVE)
Mike Kravetz33b8f842021-02-24 12:09:54 -08006112 return true;
Mel Gorman17c9d122009-02-11 16:34:16 +00006113
6114 /*
Mel Gormana1e78772008-07-23 21:27:23 -07006115 * Shared mappings base their reservation on the number of pages that
6116 * are already allocated on behalf of the file. Private mappings need
6117 * to reserve the full area even if read-only as mprotect() may be
6118 * called to make the mapping read-write. Assume !vma is a shm mapping
6119 */
Joonsoo Kim9119a412014-04-03 14:47:25 -07006120 if (!vma || vma->vm_flags & VM_MAYSHARE) {
Mike Kravetzf27a5132019-05-13 17:22:55 -07006121 /*
6122 * resv_map can not be NULL as hugetlb_reserve_pages is only
6123 * called for inodes for which resv_maps were created (see
6124 * hugetlbfs_get_inode).
6125 */
Joonsoo Kim4e35f482014-04-03 14:47:30 -07006126 resv_map = inode_resv_map(inode);
Joonsoo Kim9119a412014-04-03 14:47:25 -07006127
Mina Almasry0db9d742020-04-01 21:11:25 -07006128 chg = region_chg(resv_map, from, to, &regions_needed);
Joonsoo Kim9119a412014-04-03 14:47:25 -07006129
6130 } else {
Mina Almasrye9fe92a2020-04-01 21:11:21 -07006131 /* Private mapping. */
Joonsoo Kim9119a412014-04-03 14:47:25 -07006132 resv_map = resv_map_alloc();
Mel Gorman5a6fe122009-02-10 14:02:27 +00006133 if (!resv_map)
Mike Kravetz33b8f842021-02-24 12:09:54 -08006134 return false;
Mel Gorman5a6fe122009-02-10 14:02:27 +00006135
Mel Gorman17c9d122009-02-11 16:34:16 +00006136 chg = to - from;
6137
Mel Gorman5a6fe122009-02-10 14:02:27 +00006138 set_vma_resv_map(vma, resv_map);
6139 set_vma_resv_flags(vma, HPAGE_RESV_OWNER);
6140 }
6141
Mike Kravetz33b8f842021-02-24 12:09:54 -08006142 if (chg < 0)
Dave Hansenc50ac052012-05-29 15:06:46 -07006143 goto out_err;
Mel Gorman17c9d122009-02-11 16:34:16 +00006144
Mike Kravetz33b8f842021-02-24 12:09:54 -08006145 if (hugetlb_cgroup_charge_cgroup_rsvd(hstate_index(h),
6146 chg * pages_per_huge_page(h), &h_cg) < 0)
Mina Almasry075a61d2020-04-01 21:11:28 -07006147 goto out_err;
Mina Almasry075a61d2020-04-01 21:11:28 -07006148
6149 if (vma && !(vma->vm_flags & VM_MAYSHARE) && h_cg) {
6150 /* For private mappings, the hugetlb_cgroup uncharge info hangs
6151 * of the resv_map.
6152 */
6153 resv_map_set_hugetlb_cgroup_uncharge_info(resv_map, h_cg, h);
6154 }
6155
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07006156 /*
6157 * There must be enough pages in the subpool for the mapping. If
6158 * the subpool has a minimum size, there may be some global
6159 * reservations already in place (gbl_reserve).
6160 */
6161 gbl_reserve = hugepage_subpool_get_pages(spool, chg);
Mike Kravetz33b8f842021-02-24 12:09:54 -08006162 if (gbl_reserve < 0)
Mina Almasry075a61d2020-04-01 21:11:28 -07006163 goto out_uncharge_cgroup;
Mel Gorman17c9d122009-02-11 16:34:16 +00006164
6165 /*
6166 * Check enough hugepages are available for the reservation.
David Gibson90481622012-03-21 16:34:12 -07006167 * Hand the pages back to the subpool if there are not
Mel Gorman17c9d122009-02-11 16:34:16 +00006168 */
Mike Kravetz33b8f842021-02-24 12:09:54 -08006169 if (hugetlb_acct_memory(h, gbl_reserve) < 0)
Mina Almasry075a61d2020-04-01 21:11:28 -07006170 goto out_put_pages;
Mel Gorman17c9d122009-02-11 16:34:16 +00006171
6172 /*
6173 * Account for the reservations made. Shared mappings record regions
6174 * that have reservations as they are shared by multiple VMAs.
6175 * When the last VMA disappears, the region map says how much
6176 * the reservation was and the page cache tells how much of
6177 * the reservation was consumed. Private mappings are per-VMA and
6178 * only the consumed reservations are tracked. When the VMA
6179 * disappears, the original reservation is the VMA size and the
6180 * consumed reservations are stored in the map. Hence, nothing
6181 * else has to be done for private mappings here
6182 */
Mike Kravetz33039672015-06-24 16:57:58 -07006183 if (!vma || vma->vm_flags & VM_MAYSHARE) {
Mina Almasry075a61d2020-04-01 21:11:28 -07006184 add = region_add(resv_map, from, to, regions_needed, h, h_cg);
Mike Kravetz33039672015-06-24 16:57:58 -07006185
Mina Almasry0db9d742020-04-01 21:11:25 -07006186 if (unlikely(add < 0)) {
6187 hugetlb_acct_memory(h, -gbl_reserve);
Mina Almasry075a61d2020-04-01 21:11:28 -07006188 goto out_put_pages;
Mina Almasry0db9d742020-04-01 21:11:25 -07006189 } else if (unlikely(chg > add)) {
Mike Kravetz33039672015-06-24 16:57:58 -07006190 /*
6191 * pages in this range were added to the reserve
6192 * map between region_chg and region_add. This
6193 * indicates a race with alloc_huge_page. Adjust
6194 * the subpool and reserve counts modified above
6195 * based on the difference.
6196 */
6197 long rsv_adjust;
6198
Miaohe Lind85aecf2021-03-24 21:37:17 -07006199 /*
6200 * hugetlb_cgroup_uncharge_cgroup_rsvd() will put the
6201 * reference to h_cg->css. See comment below for detail.
6202 */
Mina Almasry075a61d2020-04-01 21:11:28 -07006203 hugetlb_cgroup_uncharge_cgroup_rsvd(
6204 hstate_index(h),
6205 (chg - add) * pages_per_huge_page(h), h_cg);
6206
Mike Kravetz33039672015-06-24 16:57:58 -07006207 rsv_adjust = hugepage_subpool_put_pages(spool,
6208 chg - add);
6209 hugetlb_acct_memory(h, -rsv_adjust);
Miaohe Lind85aecf2021-03-24 21:37:17 -07006210 } else if (h_cg) {
6211 /*
6212 * The file_regions will hold their own reference to
6213 * h_cg->css. So we should release the reference held
6214 * via hugetlb_cgroup_charge_cgroup_rsvd() when we are
6215 * done.
6216 */
6217 hugetlb_cgroup_put_rsvd_cgroup(h_cg);
Mike Kravetz33039672015-06-24 16:57:58 -07006218 }
6219 }
Mike Kravetz33b8f842021-02-24 12:09:54 -08006220 return true;
6221
Mina Almasry075a61d2020-04-01 21:11:28 -07006222out_put_pages:
6223 /* put back original number of pages, chg */
6224 (void)hugepage_subpool_put_pages(spool, chg);
6225out_uncharge_cgroup:
6226 hugetlb_cgroup_uncharge_cgroup_rsvd(hstate_index(h),
6227 chg * pages_per_huge_page(h), h_cg);
Dave Hansenc50ac052012-05-29 15:06:46 -07006228out_err:
Mike Kravetz5e911372015-09-08 15:01:28 -07006229 if (!vma || vma->vm_flags & VM_MAYSHARE)
Mina Almasry0db9d742020-04-01 21:11:25 -07006230 /* Only call region_abort if the region_chg succeeded but the
6231 * region_add failed or didn't run.
6232 */
6233 if (chg >= 0 && add < 0)
6234 region_abort(resv_map, from, to, regions_needed);
Joonsoo Kimf031dd22014-04-03 14:47:28 -07006235 if (vma && is_vma_resv_set(vma, HPAGE_RESV_OWNER))
6236 kref_put(&resv_map->refs, resv_map_release);
Mike Kravetz33b8f842021-02-24 12:09:54 -08006237 return false;
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07006238}
6239
Mike Kravetzb5cec282015-09-08 15:01:41 -07006240long hugetlb_unreserve_pages(struct inode *inode, long start, long end,
6241 long freed)
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07006242{
Andi Kleena5516432008-07-23 21:27:41 -07006243 struct hstate *h = hstate_inode(inode);
Joonsoo Kim4e35f482014-04-03 14:47:30 -07006244 struct resv_map *resv_map = inode_resv_map(inode);
Joonsoo Kim9119a412014-04-03 14:47:25 -07006245 long chg = 0;
David Gibson90481622012-03-21 16:34:12 -07006246 struct hugepage_subpool *spool = subpool_inode(inode);
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07006247 long gbl_reserve;
Ken Chen45c682a2007-11-14 16:59:44 -08006248
Mike Kravetzf27a5132019-05-13 17:22:55 -07006249 /*
6250 * Since this routine can be called in the evict inode path for all
6251 * hugetlbfs inodes, resv_map could be NULL.
6252 */
Mike Kravetzb5cec282015-09-08 15:01:41 -07006253 if (resv_map) {
6254 chg = region_del(resv_map, start, end);
6255 /*
6256 * region_del() can fail in the rare case where a region
6257 * must be split and another region descriptor can not be
6258 * allocated. If end == LONG_MAX, it will not fail.
6259 */
6260 if (chg < 0)
6261 return chg;
6262 }
6263
Ken Chen45c682a2007-11-14 16:59:44 -08006264 spin_lock(&inode->i_lock);
Eric Sandeene4c6f8b2009-07-29 15:02:16 -07006265 inode->i_blocks -= (blocks_per_huge_page(h) * freed);
Ken Chen45c682a2007-11-14 16:59:44 -08006266 spin_unlock(&inode->i_lock);
6267
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07006268 /*
6269 * If the subpool has a minimum size, the number of global
6270 * reservations to be released may be adjusted.
Miaohe Lindddf31a2021-05-04 18:34:35 -07006271 *
6272 * Note that !resv_map implies freed == 0. So (chg - freed)
6273 * won't go negative.
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07006274 */
6275 gbl_reserve = hugepage_subpool_put_pages(spool, (chg - freed));
6276 hugetlb_acct_memory(h, -gbl_reserve);
Mike Kravetzb5cec282015-09-08 15:01:41 -07006277
6278 return 0;
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07006279}
Naoya Horiguchi93f70f92010-05-28 09:29:20 +09006280
Steve Capper3212b532013-04-23 12:35:02 +01006281#ifdef CONFIG_ARCH_WANT_HUGE_PMD_SHARE
6282static unsigned long page_table_shareable(struct vm_area_struct *svma,
6283 struct vm_area_struct *vma,
6284 unsigned long addr, pgoff_t idx)
6285{
6286 unsigned long saddr = ((idx - svma->vm_pgoff) << PAGE_SHIFT) +
6287 svma->vm_start;
6288 unsigned long sbase = saddr & PUD_MASK;
6289 unsigned long s_end = sbase + PUD_SIZE;
6290
6291 /* Allow segments to share if only one is marked locked */
Eric B Munsonde60f5f2015-11-05 18:51:36 -08006292 unsigned long vm_flags = vma->vm_flags & VM_LOCKED_CLEAR_MASK;
6293 unsigned long svm_flags = svma->vm_flags & VM_LOCKED_CLEAR_MASK;
Steve Capper3212b532013-04-23 12:35:02 +01006294
6295 /*
6296 * match the virtual addresses, permission and the alignment of the
6297 * page table page.
6298 */
6299 if (pmd_index(addr) != pmd_index(saddr) ||
6300 vm_flags != svm_flags ||
Miaohe Lin07e51ed2021-02-24 12:07:39 -08006301 !range_in_vma(svma, sbase, s_end))
Steve Capper3212b532013-04-23 12:35:02 +01006302 return 0;
6303
6304 return saddr;
6305}
6306
Nicholas Krause31aafb42015-09-04 15:47:58 -07006307static bool vma_shareable(struct vm_area_struct *vma, unsigned long addr)
Steve Capper3212b532013-04-23 12:35:02 +01006308{
6309 unsigned long base = addr & PUD_MASK;
6310 unsigned long end = base + PUD_SIZE;
6311
6312 /*
6313 * check on proper vm_flags and page table alignment
6314 */
Mike Kravetz017b1662018-10-05 15:51:29 -07006315 if (vma->vm_flags & VM_MAYSHARE && range_in_vma(vma, base, end))
Nicholas Krause31aafb42015-09-04 15:47:58 -07006316 return true;
6317 return false;
Steve Capper3212b532013-04-23 12:35:02 +01006318}
6319
Peter Xuc1991e02021-05-04 18:33:04 -07006320bool want_pmd_share(struct vm_area_struct *vma, unsigned long addr)
6321{
6322#ifdef CONFIG_USERFAULTFD
6323 if (uffd_disable_huge_pmd_share(vma))
6324 return false;
6325#endif
6326 return vma_shareable(vma, addr);
6327}
6328
Steve Capper3212b532013-04-23 12:35:02 +01006329/*
Mike Kravetz017b1662018-10-05 15:51:29 -07006330 * Determine if start,end range within vma could be mapped by shared pmd.
6331 * If yes, adjust start and end to cover range associated with possible
6332 * shared pmd mappings.
6333 */
6334void adjust_range_if_pmd_sharing_possible(struct vm_area_struct *vma,
6335 unsigned long *start, unsigned long *end)
6336{
Li Xinhaia1ba9da2021-02-24 12:06:54 -08006337 unsigned long v_start = ALIGN(vma->vm_start, PUD_SIZE),
6338 v_end = ALIGN_DOWN(vma->vm_end, PUD_SIZE);
Mike Kravetz017b1662018-10-05 15:51:29 -07006339
Li Xinhaia1ba9da2021-02-24 12:06:54 -08006340 /*
Ingo Molnarf0953a12021-05-06 18:06:47 -07006341 * vma needs to span at least one aligned PUD size, and the range
6342 * must be at least partially within in.
Li Xinhaia1ba9da2021-02-24 12:06:54 -08006343 */
6344 if (!(vma->vm_flags & VM_MAYSHARE) || !(v_end > v_start) ||
6345 (*end <= v_start) || (*start >= v_end))
Mike Kravetz017b1662018-10-05 15:51:29 -07006346 return;
6347
Peter Xu75802ca62020-08-06 23:26:11 -07006348 /* Extend the range to be PUD aligned for a worst case scenario */
Li Xinhaia1ba9da2021-02-24 12:06:54 -08006349 if (*start > v_start)
6350 *start = ALIGN_DOWN(*start, PUD_SIZE);
Mike Kravetz017b1662018-10-05 15:51:29 -07006351
Li Xinhaia1ba9da2021-02-24 12:06:54 -08006352 if (*end < v_end)
6353 *end = ALIGN(*end, PUD_SIZE);
Mike Kravetz017b1662018-10-05 15:51:29 -07006354}
6355
6356/*
Steve Capper3212b532013-04-23 12:35:02 +01006357 * Search for a shareable pmd page for hugetlb. In any case calls pmd_alloc()
6358 * and returns the corresponding pte. While this is not necessary for the
6359 * !shared pmd case because we can allocate the pmd later as well, it makes the
Mike Kravetzc0d03812020-04-01 21:11:05 -07006360 * code much cleaner.
6361 *
Mike Kravetz0bf7b642020-10-13 16:56:42 -07006362 * This routine must be called with i_mmap_rwsem held in at least read mode if
6363 * sharing is possible. For hugetlbfs, this prevents removal of any page
6364 * table entries associated with the address space. This is important as we
6365 * are setting up sharing based on existing page table entries (mappings).
Steve Capper3212b532013-04-23 12:35:02 +01006366 */
Peter Xuaec44e02021-05-04 18:33:00 -07006367pte_t *huge_pmd_share(struct mm_struct *mm, struct vm_area_struct *vma,
6368 unsigned long addr, pud_t *pud)
Steve Capper3212b532013-04-23 12:35:02 +01006369{
Steve Capper3212b532013-04-23 12:35:02 +01006370 struct address_space *mapping = vma->vm_file->f_mapping;
6371 pgoff_t idx = ((addr - vma->vm_start) >> PAGE_SHIFT) +
6372 vma->vm_pgoff;
6373 struct vm_area_struct *svma;
6374 unsigned long saddr;
6375 pte_t *spte = NULL;
6376 pte_t *pte;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08006377 spinlock_t *ptl;
Steve Capper3212b532013-04-23 12:35:02 +01006378
Mike Kravetz0bf7b642020-10-13 16:56:42 -07006379 i_mmap_assert_locked(mapping);
Steve Capper3212b532013-04-23 12:35:02 +01006380 vma_interval_tree_foreach(svma, &mapping->i_mmap, idx, idx) {
6381 if (svma == vma)
6382 continue;
6383
6384 saddr = page_table_shareable(svma, vma, addr, idx);
6385 if (saddr) {
Punit Agrawal7868a202017-07-06 15:39:42 -07006386 spte = huge_pte_offset(svma->vm_mm, saddr,
6387 vma_mmu_pagesize(svma));
Steve Capper3212b532013-04-23 12:35:02 +01006388 if (spte) {
6389 get_page(virt_to_page(spte));
6390 break;
6391 }
6392 }
6393 }
6394
6395 if (!spte)
6396 goto out;
6397
Aneesh Kumar K.V8bea8052016-12-12 16:41:59 -08006398 ptl = huge_pte_lock(hstate_vma(vma), mm, spte);
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -08006399 if (pud_none(*pud)) {
Steve Capper3212b532013-04-23 12:35:02 +01006400 pud_populate(mm, pud,
6401 (pmd_t *)((unsigned long)spte & PAGE_MASK));
Kirill A. Shutemovc17b1f42016-06-24 14:49:51 -07006402 mm_inc_nr_pmds(mm);
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -08006403 } else {
Steve Capper3212b532013-04-23 12:35:02 +01006404 put_page(virt_to_page(spte));
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -08006405 }
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08006406 spin_unlock(ptl);
Steve Capper3212b532013-04-23 12:35:02 +01006407out:
6408 pte = (pte_t *)pmd_alloc(mm, pud, addr);
Steve Capper3212b532013-04-23 12:35:02 +01006409 return pte;
6410}
6411
6412/*
6413 * unmap huge page backed by shared pte.
6414 *
6415 * Hugetlb pte page is ref counted at the time of mapping. If pte is shared
6416 * indicated by page_count > 1, unmap is achieved by clearing pud and
6417 * decrementing the ref count. If count == 1, the pte page is not shared.
6418 *
Mike Kravetzc0d03812020-04-01 21:11:05 -07006419 * Called with page table lock held and i_mmap_rwsem held in write mode.
Steve Capper3212b532013-04-23 12:35:02 +01006420 *
6421 * returns: 1 successfully unmapped a shared pte page
6422 * 0 the underlying pte page is not shared, or it is the last user
6423 */
Mike Kravetz34ae2042020-08-11 18:31:38 -07006424int huge_pmd_unshare(struct mm_struct *mm, struct vm_area_struct *vma,
6425 unsigned long *addr, pte_t *ptep)
Steve Capper3212b532013-04-23 12:35:02 +01006426{
6427 pgd_t *pgd = pgd_offset(mm, *addr);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006428 p4d_t *p4d = p4d_offset(pgd, *addr);
6429 pud_t *pud = pud_offset(p4d, *addr);
Steve Capper3212b532013-04-23 12:35:02 +01006430
Mike Kravetz34ae2042020-08-11 18:31:38 -07006431 i_mmap_assert_write_locked(vma->vm_file->f_mapping);
Steve Capper3212b532013-04-23 12:35:02 +01006432 BUG_ON(page_count(virt_to_page(ptep)) == 0);
6433 if (page_count(virt_to_page(ptep)) == 1)
6434 return 0;
6435
6436 pud_clear(pud);
6437 put_page(virt_to_page(ptep));
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -08006438 mm_dec_nr_pmds(mm);
Steve Capper3212b532013-04-23 12:35:02 +01006439 *addr = ALIGN(*addr, HPAGE_SIZE * PTRS_PER_PTE) - HPAGE_SIZE;
6440 return 1;
6441}
Peter Xuc1991e02021-05-04 18:33:04 -07006442
Steve Capper9e5fc742013-04-30 08:02:03 +01006443#else /* !CONFIG_ARCH_WANT_HUGE_PMD_SHARE */
Peter Xuaec44e02021-05-04 18:33:00 -07006444pte_t *huge_pmd_share(struct mm_struct *mm, struct vm_area_struct *vma,
6445 unsigned long addr, pud_t *pud)
Steve Capper9e5fc742013-04-30 08:02:03 +01006446{
6447 return NULL;
6448}
Zhang Zhene81f2d22015-06-24 16:56:13 -07006449
Mike Kravetz34ae2042020-08-11 18:31:38 -07006450int huge_pmd_unshare(struct mm_struct *mm, struct vm_area_struct *vma,
6451 unsigned long *addr, pte_t *ptep)
Zhang Zhene81f2d22015-06-24 16:56:13 -07006452{
6453 return 0;
6454}
Mike Kravetz017b1662018-10-05 15:51:29 -07006455
6456void adjust_range_if_pmd_sharing_possible(struct vm_area_struct *vma,
6457 unsigned long *start, unsigned long *end)
6458{
6459}
Peter Xuc1991e02021-05-04 18:33:04 -07006460
6461bool want_pmd_share(struct vm_area_struct *vma, unsigned long addr)
6462{
6463 return false;
6464}
Steve Capper3212b532013-04-23 12:35:02 +01006465#endif /* CONFIG_ARCH_WANT_HUGE_PMD_SHARE */
6466
Steve Capper9e5fc742013-04-30 08:02:03 +01006467#ifdef CONFIG_ARCH_WANT_GENERAL_HUGETLB
Peter Xuaec44e02021-05-04 18:33:00 -07006468pte_t *huge_pte_alloc(struct mm_struct *mm, struct vm_area_struct *vma,
Steve Capper9e5fc742013-04-30 08:02:03 +01006469 unsigned long addr, unsigned long sz)
6470{
6471 pgd_t *pgd;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006472 p4d_t *p4d;
Steve Capper9e5fc742013-04-30 08:02:03 +01006473 pud_t *pud;
6474 pte_t *pte = NULL;
6475
6476 pgd = pgd_offset(mm, addr);
Kirill A. Shutemovf4f0a3d2017-11-29 16:11:30 -08006477 p4d = p4d_alloc(mm, pgd, addr);
6478 if (!p4d)
6479 return NULL;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006480 pud = pud_alloc(mm, p4d, addr);
Steve Capper9e5fc742013-04-30 08:02:03 +01006481 if (pud) {
6482 if (sz == PUD_SIZE) {
6483 pte = (pte_t *)pud;
6484 } else {
6485 BUG_ON(sz != PMD_SIZE);
Peter Xuc1991e02021-05-04 18:33:04 -07006486 if (want_pmd_share(vma, addr) && pud_none(*pud))
Peter Xuaec44e02021-05-04 18:33:00 -07006487 pte = huge_pmd_share(mm, vma, addr, pud);
Steve Capper9e5fc742013-04-30 08:02:03 +01006488 else
6489 pte = (pte_t *)pmd_alloc(mm, pud, addr);
6490 }
6491 }
Michal Hocko4e666312016-08-02 14:02:34 -07006492 BUG_ON(pte && pte_present(*pte) && !pte_huge(*pte));
Steve Capper9e5fc742013-04-30 08:02:03 +01006493
6494 return pte;
6495}
6496
Punit Agrawal9b19df22017-09-06 16:21:01 -07006497/*
6498 * huge_pte_offset() - Walk the page table to resolve the hugepage
6499 * entry at address @addr
6500 *
Li Xinhai8ac0b812020-06-03 16:00:53 -07006501 * Return: Pointer to page table entry (PUD or PMD) for
6502 * address @addr, or NULL if a !p*d_present() entry is encountered and the
Punit Agrawal9b19df22017-09-06 16:21:01 -07006503 * size @sz doesn't match the hugepage size at this level of the page
6504 * table.
6505 */
Punit Agrawal7868a202017-07-06 15:39:42 -07006506pte_t *huge_pte_offset(struct mm_struct *mm,
6507 unsigned long addr, unsigned long sz)
Steve Capper9e5fc742013-04-30 08:02:03 +01006508{
6509 pgd_t *pgd;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006510 p4d_t *p4d;
Li Xinhai8ac0b812020-06-03 16:00:53 -07006511 pud_t *pud;
6512 pmd_t *pmd;
Steve Capper9e5fc742013-04-30 08:02:03 +01006513
6514 pgd = pgd_offset(mm, addr);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006515 if (!pgd_present(*pgd))
6516 return NULL;
6517 p4d = p4d_offset(pgd, addr);
6518 if (!p4d_present(*p4d))
6519 return NULL;
Punit Agrawal9b19df22017-09-06 16:21:01 -07006520
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006521 pud = pud_offset(p4d, addr);
Li Xinhai8ac0b812020-06-03 16:00:53 -07006522 if (sz == PUD_SIZE)
6523 /* must be pud huge, non-present or none */
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006524 return (pte_t *)pud;
Li Xinhai8ac0b812020-06-03 16:00:53 -07006525 if (!pud_present(*pud))
6526 return NULL;
6527 /* must have a valid entry and size to go further */
Punit Agrawal9b19df22017-09-06 16:21:01 -07006528
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006529 pmd = pmd_offset(pud, addr);
Li Xinhai8ac0b812020-06-03 16:00:53 -07006530 /* must be pmd huge, non-present or none */
6531 return (pte_t *)pmd;
Steve Capper9e5fc742013-04-30 08:02:03 +01006532}
6533
Naoya Horiguchi61f77ed2015-02-11 15:25:15 -08006534#endif /* CONFIG_ARCH_WANT_GENERAL_HUGETLB */
6535
6536/*
6537 * These functions are overwritable if your architecture needs its own
6538 * behavior.
6539 */
6540struct page * __weak
6541follow_huge_addr(struct mm_struct *mm, unsigned long address,
6542 int write)
6543{
6544 return ERR_PTR(-EINVAL);
6545}
6546
6547struct page * __weak
Aneesh Kumar K.V4dc71452017-07-06 15:38:56 -07006548follow_huge_pd(struct vm_area_struct *vma,
6549 unsigned long address, hugepd_t hpd, int flags, int pdshift)
6550{
6551 WARN(1, "hugepd follow called with no support for hugepage directory format\n");
6552 return NULL;
6553}
6554
6555struct page * __weak
Steve Capper9e5fc742013-04-30 08:02:03 +01006556follow_huge_pmd(struct mm_struct *mm, unsigned long address,
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006557 pmd_t *pmd, int flags)
Steve Capper9e5fc742013-04-30 08:02:03 +01006558{
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006559 struct page *page = NULL;
6560 spinlock_t *ptl;
Naoya Horiguchic9d398f2017-03-31 15:11:55 -07006561 pte_t pte;
John Hubbard3faa52c2020-04-01 21:05:29 -07006562
6563 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
6564 if (WARN_ON_ONCE((flags & (FOLL_PIN | FOLL_GET)) ==
6565 (FOLL_PIN | FOLL_GET)))
6566 return NULL;
6567
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006568retry:
6569 ptl = pmd_lockptr(mm, pmd);
6570 spin_lock(ptl);
6571 /*
6572 * make sure that the address range covered by this pmd is not
6573 * unmapped from other threads.
6574 */
6575 if (!pmd_huge(*pmd))
6576 goto out;
Naoya Horiguchic9d398f2017-03-31 15:11:55 -07006577 pte = huge_ptep_get((pte_t *)pmd);
6578 if (pte_present(pte)) {
Gerald Schaefer97534122015-04-14 15:42:30 -07006579 page = pmd_page(*pmd) + ((address & ~PMD_MASK) >> PAGE_SHIFT);
John Hubbard3faa52c2020-04-01 21:05:29 -07006580 /*
6581 * try_grab_page() should always succeed here, because: a) we
6582 * hold the pmd (ptl) lock, and b) we've just checked that the
6583 * huge pmd (head) page is present in the page tables. The ptl
6584 * prevents the head page and tail pages from being rearranged
6585 * in any way. So this page must be available at this point,
6586 * unless the page refcount overflowed:
6587 */
6588 if (WARN_ON_ONCE(!try_grab_page(page, flags))) {
6589 page = NULL;
6590 goto out;
6591 }
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006592 } else {
Naoya Horiguchic9d398f2017-03-31 15:11:55 -07006593 if (is_hugetlb_entry_migration(pte)) {
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006594 spin_unlock(ptl);
6595 __migration_entry_wait(mm, (pte_t *)pmd, ptl);
6596 goto retry;
6597 }
6598 /*
6599 * hwpoisoned entry is treated as no_page_table in
6600 * follow_page_mask().
6601 */
6602 }
6603out:
6604 spin_unlock(ptl);
Steve Capper9e5fc742013-04-30 08:02:03 +01006605 return page;
6606}
6607
Naoya Horiguchi61f77ed2015-02-11 15:25:15 -08006608struct page * __weak
Steve Capper9e5fc742013-04-30 08:02:03 +01006609follow_huge_pud(struct mm_struct *mm, unsigned long address,
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006610 pud_t *pud, int flags)
Steve Capper9e5fc742013-04-30 08:02:03 +01006611{
John Hubbard3faa52c2020-04-01 21:05:29 -07006612 if (flags & (FOLL_GET | FOLL_PIN))
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006613 return NULL;
Steve Capper9e5fc742013-04-30 08:02:03 +01006614
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006615 return pte_page(*(pte_t *)pud) + ((address & ~PUD_MASK) >> PAGE_SHIFT);
Steve Capper9e5fc742013-04-30 08:02:03 +01006616}
6617
Anshuman Khandualfaaa5b62017-07-06 15:38:50 -07006618struct page * __weak
6619follow_huge_pgd(struct mm_struct *mm, unsigned long address, pgd_t *pgd, int flags)
6620{
John Hubbard3faa52c2020-04-01 21:05:29 -07006621 if (flags & (FOLL_GET | FOLL_PIN))
Anshuman Khandualfaaa5b62017-07-06 15:38:50 -07006622 return NULL;
6623
6624 return pte_page(*(pte_t *)pgd) + ((address & ~PGDIR_MASK) >> PAGE_SHIFT);
6625}
6626
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006627bool isolate_huge_page(struct page *page, struct list_head *list)
6628{
Naoya Horiguchibcc54222015-04-15 16:14:38 -07006629 bool ret = true;
6630
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006631 spin_lock_irq(&hugetlb_lock);
Mike Kravetz8f251a32021-02-24 12:08:56 -08006632 if (!PageHeadHuge(page) ||
6633 !HPageMigratable(page) ||
Muchun Song0eb2df22021-02-04 18:32:10 -08006634 !get_page_unless_zero(page)) {
Naoya Horiguchibcc54222015-04-15 16:14:38 -07006635 ret = false;
6636 goto unlock;
6637 }
Mike Kravetz8f251a32021-02-24 12:08:56 -08006638 ClearHPageMigratable(page);
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006639 list_move_tail(&page->lru, list);
Naoya Horiguchibcc54222015-04-15 16:14:38 -07006640unlock:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006641 spin_unlock_irq(&hugetlb_lock);
Naoya Horiguchibcc54222015-04-15 16:14:38 -07006642 return ret;
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006643}
6644
Naoya Horiguchi25182f02021-06-15 18:23:13 -07006645int get_hwpoison_huge_page(struct page *page, bool *hugetlb)
6646{
6647 int ret = 0;
6648
6649 *hugetlb = false;
6650 spin_lock_irq(&hugetlb_lock);
6651 if (PageHeadHuge(page)) {
6652 *hugetlb = true;
6653 if (HPageFreed(page) || HPageMigratable(page))
6654 ret = get_page_unless_zero(page);
Naoya Horiguchi0ed950d2021-06-28 19:43:17 -07006655 else
6656 ret = -EBUSY;
Naoya Horiguchi25182f02021-06-15 18:23:13 -07006657 }
6658 spin_unlock_irq(&hugetlb_lock);
6659 return ret;
6660}
6661
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006662void putback_active_hugepage(struct page *page)
6663{
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006664 spin_lock_irq(&hugetlb_lock);
Mike Kravetz8f251a32021-02-24 12:08:56 -08006665 SetHPageMigratable(page);
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006666 list_move_tail(&page->lru, &(page_hstate(page))->hugepage_activelist);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006667 spin_unlock_irq(&hugetlb_lock);
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006668 put_page(page);
6669}
Michal Hockoab5ac902018-01-31 16:20:48 -08006670
6671void move_hugetlb_state(struct page *oldpage, struct page *newpage, int reason)
6672{
6673 struct hstate *h = page_hstate(oldpage);
6674
6675 hugetlb_cgroup_migrate(oldpage, newpage);
6676 set_page_owner_migrate_reason(newpage, reason);
6677
6678 /*
6679 * transfer temporary state of the new huge page. This is
6680 * reverse to other transitions because the newpage is going to
6681 * be final while the old one will be freed so it takes over
6682 * the temporary status.
6683 *
6684 * Also note that we have to transfer the per-node surplus state
6685 * here as well otherwise the global surplus count will not match
6686 * the per-node's.
6687 */
Mike Kravetz9157c3112021-02-24 12:09:00 -08006688 if (HPageTemporary(newpage)) {
Michal Hockoab5ac902018-01-31 16:20:48 -08006689 int old_nid = page_to_nid(oldpage);
6690 int new_nid = page_to_nid(newpage);
6691
Mike Kravetz9157c3112021-02-24 12:09:00 -08006692 SetHPageTemporary(oldpage);
6693 ClearHPageTemporary(newpage);
Michal Hockoab5ac902018-01-31 16:20:48 -08006694
Miaohe Lin5af1ab12021-05-04 18:33:25 -07006695 /*
6696 * There is no need to transfer the per-node surplus state
6697 * when we do not cross the node.
6698 */
6699 if (new_nid == old_nid)
6700 return;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006701 spin_lock_irq(&hugetlb_lock);
Michal Hockoab5ac902018-01-31 16:20:48 -08006702 if (h->surplus_huge_pages_node[old_nid]) {
6703 h->surplus_huge_pages_node[old_nid]--;
6704 h->surplus_huge_pages_node[new_nid]++;
6705 }
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006706 spin_unlock_irq(&hugetlb_lock);
Michal Hockoab5ac902018-01-31 16:20:48 -08006707 }
6708}
Roman Gushchincf11e852020-04-10 14:32:45 -07006709
Peter Xu6dfeaff2021-05-04 18:33:13 -07006710/*
6711 * This function will unconditionally remove all the shared pmd pgtable entries
6712 * within the specific vma for a hugetlbfs memory range.
6713 */
6714void hugetlb_unshare_all_pmds(struct vm_area_struct *vma)
6715{
6716 struct hstate *h = hstate_vma(vma);
6717 unsigned long sz = huge_page_size(h);
6718 struct mm_struct *mm = vma->vm_mm;
6719 struct mmu_notifier_range range;
6720 unsigned long address, start, end;
6721 spinlock_t *ptl;
6722 pte_t *ptep;
6723
6724 if (!(vma->vm_flags & VM_MAYSHARE))
6725 return;
6726
6727 start = ALIGN(vma->vm_start, PUD_SIZE);
6728 end = ALIGN_DOWN(vma->vm_end, PUD_SIZE);
6729
6730 if (start >= end)
6731 return;
6732
6733 /*
6734 * No need to call adjust_range_if_pmd_sharing_possible(), because
6735 * we have already done the PUD_SIZE alignment.
6736 */
6737 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, mm,
6738 start, end);
6739 mmu_notifier_invalidate_range_start(&range);
6740 i_mmap_lock_write(vma->vm_file->f_mapping);
6741 for (address = start; address < end; address += PUD_SIZE) {
6742 unsigned long tmp = address;
6743
6744 ptep = huge_pte_offset(mm, address, sz);
6745 if (!ptep)
6746 continue;
6747 ptl = huge_pte_lock(h, mm, ptep);
6748 /* We don't want 'address' to be changed */
6749 huge_pmd_unshare(mm, vma, &tmp, ptep);
6750 spin_unlock(ptl);
6751 }
6752 flush_hugetlb_tlb_range(vma, start, end);
6753 i_mmap_unlock_write(vma->vm_file->f_mapping);
6754 /*
6755 * No need to call mmu_notifier_invalidate_range(), see
6756 * Documentation/vm/mmu_notifier.rst.
6757 */
6758 mmu_notifier_invalidate_range_end(&range);
6759}
6760
Roman Gushchincf11e852020-04-10 14:32:45 -07006761#ifdef CONFIG_CMA
Roman Gushchincf11e852020-04-10 14:32:45 -07006762static bool cma_reserve_called __initdata;
6763
6764static int __init cmdline_parse_hugetlb_cma(char *p)
6765{
Baolin Wang38e719a2021-11-05 13:41:46 -07006766 int nid, count = 0;
6767 unsigned long tmp;
6768 char *s = p;
6769
6770 while (*s) {
6771 if (sscanf(s, "%lu%n", &tmp, &count) != 1)
6772 break;
6773
6774 if (s[count] == ':') {
6775 nid = tmp;
6776 if (nid < 0 || nid >= MAX_NUMNODES)
6777 break;
6778
6779 s += count + 1;
6780 tmp = memparse(s, &s);
6781 hugetlb_cma_size_in_node[nid] = tmp;
6782 hugetlb_cma_size += tmp;
6783
6784 /*
6785 * Skip the separator if have one, otherwise
6786 * break the parsing.
6787 */
6788 if (*s == ',')
6789 s++;
6790 else
6791 break;
6792 } else {
6793 hugetlb_cma_size = memparse(p, &p);
6794 break;
6795 }
6796 }
6797
Roman Gushchincf11e852020-04-10 14:32:45 -07006798 return 0;
6799}
6800
6801early_param("hugetlb_cma", cmdline_parse_hugetlb_cma);
6802
6803void __init hugetlb_cma_reserve(int order)
6804{
6805 unsigned long size, reserved, per_node;
Baolin Wang38e719a2021-11-05 13:41:46 -07006806 bool node_specific_cma_alloc = false;
Roman Gushchincf11e852020-04-10 14:32:45 -07006807 int nid;
6808
6809 cma_reserve_called = true;
6810
6811 if (!hugetlb_cma_size)
6812 return;
6813
Baolin Wang38e719a2021-11-05 13:41:46 -07006814 for (nid = 0; nid < MAX_NUMNODES; nid++) {
6815 if (hugetlb_cma_size_in_node[nid] == 0)
6816 continue;
6817
6818 if (!node_state(nid, N_ONLINE)) {
6819 pr_warn("hugetlb_cma: invalid node %d specified\n", nid);
6820 hugetlb_cma_size -= hugetlb_cma_size_in_node[nid];
6821 hugetlb_cma_size_in_node[nid] = 0;
6822 continue;
6823 }
6824
6825 if (hugetlb_cma_size_in_node[nid] < (PAGE_SIZE << order)) {
6826 pr_warn("hugetlb_cma: cma area of node %d should be at least %lu MiB\n",
6827 nid, (PAGE_SIZE << order) / SZ_1M);
6828 hugetlb_cma_size -= hugetlb_cma_size_in_node[nid];
6829 hugetlb_cma_size_in_node[nid] = 0;
6830 } else {
6831 node_specific_cma_alloc = true;
6832 }
6833 }
6834
6835 /* Validate the CMA size again in case some invalid nodes specified. */
6836 if (!hugetlb_cma_size)
6837 return;
6838
Roman Gushchincf11e852020-04-10 14:32:45 -07006839 if (hugetlb_cma_size < (PAGE_SIZE << order)) {
6840 pr_warn("hugetlb_cma: cma area should be at least %lu MiB\n",
6841 (PAGE_SIZE << order) / SZ_1M);
Mike Kravetza01f4392021-11-05 13:41:27 -07006842 hugetlb_cma_size = 0;
Roman Gushchincf11e852020-04-10 14:32:45 -07006843 return;
6844 }
6845
Baolin Wang38e719a2021-11-05 13:41:46 -07006846 if (!node_specific_cma_alloc) {
6847 /*
6848 * If 3 GB area is requested on a machine with 4 numa nodes,
6849 * let's allocate 1 GB on first three nodes and ignore the last one.
6850 */
6851 per_node = DIV_ROUND_UP(hugetlb_cma_size, nr_online_nodes);
6852 pr_info("hugetlb_cma: reserve %lu MiB, up to %lu MiB per node\n",
6853 hugetlb_cma_size / SZ_1M, per_node / SZ_1M);
6854 }
Roman Gushchincf11e852020-04-10 14:32:45 -07006855
6856 reserved = 0;
6857 for_each_node_state(nid, N_ONLINE) {
6858 int res;
Barry Song2281f792020-08-24 11:03:09 +12006859 char name[CMA_MAX_NAME];
Roman Gushchincf11e852020-04-10 14:32:45 -07006860
Baolin Wang38e719a2021-11-05 13:41:46 -07006861 if (node_specific_cma_alloc) {
6862 if (hugetlb_cma_size_in_node[nid] == 0)
6863 continue;
6864
6865 size = hugetlb_cma_size_in_node[nid];
6866 } else {
6867 size = min(per_node, hugetlb_cma_size - reserved);
6868 }
6869
Roman Gushchincf11e852020-04-10 14:32:45 -07006870 size = round_up(size, PAGE_SIZE << order);
6871
Barry Song2281f792020-08-24 11:03:09 +12006872 snprintf(name, sizeof(name), "hugetlb%d", nid);
Mike Kravetza01f4392021-11-05 13:41:27 -07006873 /*
6874 * Note that 'order per bit' is based on smallest size that
6875 * may be returned to CMA allocator in the case of
6876 * huge page demotion.
6877 */
6878 res = cma_declare_contiguous_nid(0, size, 0,
6879 PAGE_SIZE << HUGETLB_PAGE_ORDER,
Barry Song29d0f412020-08-11 18:32:00 -07006880 0, false, name,
Roman Gushchincf11e852020-04-10 14:32:45 -07006881 &hugetlb_cma[nid], nid);
6882 if (res) {
6883 pr_warn("hugetlb_cma: reservation failed: err %d, node %d",
6884 res, nid);
6885 continue;
6886 }
6887
6888 reserved += size;
6889 pr_info("hugetlb_cma: reserved %lu MiB on node %d\n",
6890 size / SZ_1M, nid);
6891
6892 if (reserved >= hugetlb_cma_size)
6893 break;
6894 }
Mike Kravetza01f4392021-11-05 13:41:27 -07006895
6896 if (!reserved)
6897 /*
6898 * hugetlb_cma_size is used to determine if allocations from
6899 * cma are possible. Set to zero if no cma regions are set up.
6900 */
6901 hugetlb_cma_size = 0;
Roman Gushchincf11e852020-04-10 14:32:45 -07006902}
6903
6904void __init hugetlb_cma_check(void)
6905{
6906 if (!hugetlb_cma_size || cma_reserve_called)
6907 return;
6908
6909 pr_warn("hugetlb_cma: the option isn't supported by current arch\n");
6910}
6911
6912#endif /* CONFIG_CMA */