blob: 24543dab9c4b6a4b50692ec377fc8fdfbb9d0ca5 [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;
Zhenguo Yaob5389082021-11-05 13:43:28 -070080static unsigned int default_hugepages_in_node[MAX_NUMNODES] __initdata;
Andi Kleene5ff2152008-07-23 21:27:42 -070081
David Gibson3935baa2006-03-22 00:08:53 -080082/*
Naoya Horiguchi31caf662013-09-11 14:21:59 -070083 * Protects updates to hugepage_freelists, hugepage_activelist, nr_huge_pages,
84 * free_huge_pages, and surplus_huge_pages.
David Gibson3935baa2006-03-22 00:08:53 -080085 */
Aneesh Kumar K.Vc3f38a32012-07-31 16:42:10 -070086DEFINE_SPINLOCK(hugetlb_lock);
Eric Paris0bd0f9f2005-11-21 21:32:28 -080087
Davidlohr Bueso8382d912014-04-03 14:47:31 -070088/*
89 * Serializes faults on the same logical page. This is used to
90 * prevent spurious OOMs when the hugepage pool is fully utilized.
91 */
92static int num_fault_mutexes;
Mike Kravetzc672c7f2015-09-08 15:01:35 -070093struct mutex *hugetlb_fault_mutex_table ____cacheline_aligned_in_smp;
Davidlohr Bueso8382d912014-04-03 14:47:31 -070094
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -070095/* Forward declaration */
96static int hugetlb_acct_memory(struct hstate *h, long delta);
97
Miaohe Lin1d884332021-02-24 12:07:05 -080098static inline bool subpool_is_free(struct hugepage_subpool *spool)
99{
100 if (spool->count)
101 return false;
102 if (spool->max_hpages != -1)
103 return spool->used_hpages == 0;
104 if (spool->min_hpages != -1)
105 return spool->rsv_hpages == spool->min_hpages;
106
107 return true;
108}
109
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700110static inline void unlock_or_release_subpool(struct hugepage_subpool *spool,
111 unsigned long irq_flags)
David Gibson90481622012-03-21 16:34:12 -0700112{
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700113 spin_unlock_irqrestore(&spool->lock, irq_flags);
David Gibson90481622012-03-21 16:34:12 -0700114
115 /* If no pages are used, and no other handles to the subpool
Ethon Paul7c8de352020-06-04 16:49:07 -0700116 * remain, give up any reservations based on minimum size and
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -0700117 * free the subpool */
Miaohe Lin1d884332021-02-24 12:07:05 -0800118 if (subpool_is_free(spool)) {
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -0700119 if (spool->min_hpages != -1)
120 hugetlb_acct_memory(spool->hstate,
121 -spool->min_hpages);
David Gibson90481622012-03-21 16:34:12 -0700122 kfree(spool);
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -0700123 }
David Gibson90481622012-03-21 16:34:12 -0700124}
125
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -0700126struct hugepage_subpool *hugepage_new_subpool(struct hstate *h, long max_hpages,
127 long min_hpages)
David Gibson90481622012-03-21 16:34:12 -0700128{
129 struct hugepage_subpool *spool;
130
Mike Kravetzc6a91822015-04-15 16:13:36 -0700131 spool = kzalloc(sizeof(*spool), GFP_KERNEL);
David Gibson90481622012-03-21 16:34:12 -0700132 if (!spool)
133 return NULL;
134
135 spin_lock_init(&spool->lock);
136 spool->count = 1;
Mike Kravetz7ca02d0a2015-04-15 16:13:42 -0700137 spool->max_hpages = max_hpages;
138 spool->hstate = h;
139 spool->min_hpages = min_hpages;
140
141 if (min_hpages != -1 && hugetlb_acct_memory(h, min_hpages)) {
142 kfree(spool);
143 return NULL;
144 }
145 spool->rsv_hpages = min_hpages;
David Gibson90481622012-03-21 16:34:12 -0700146
147 return spool;
148}
149
150void hugepage_put_subpool(struct hugepage_subpool *spool)
151{
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700152 unsigned long flags;
153
154 spin_lock_irqsave(&spool->lock, flags);
David Gibson90481622012-03-21 16:34:12 -0700155 BUG_ON(!spool->count);
156 spool->count--;
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700157 unlock_or_release_subpool(spool, flags);
David Gibson90481622012-03-21 16:34:12 -0700158}
159
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700160/*
161 * Subpool accounting for allocating and reserving pages.
162 * Return -ENOMEM if there are not enough resources to satisfy the
Randy Dunlap9e7ee402020-08-11 18:32:59 -0700163 * request. Otherwise, return the number of pages by which the
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700164 * global pools must be adjusted (upward). The returned value may
165 * only be different than the passed value (delta) in the case where
Ethon Paul7c8de352020-06-04 16:49:07 -0700166 * a subpool minimum size must be maintained.
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700167 */
168static long hugepage_subpool_get_pages(struct hugepage_subpool *spool,
David Gibson90481622012-03-21 16:34:12 -0700169 long delta)
170{
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700171 long ret = delta;
David Gibson90481622012-03-21 16:34:12 -0700172
173 if (!spool)
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700174 return ret;
David Gibson90481622012-03-21 16:34:12 -0700175
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700176 spin_lock_irq(&spool->lock);
David Gibson90481622012-03-21 16:34:12 -0700177
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700178 if (spool->max_hpages != -1) { /* maximum size accounting */
179 if ((spool->used_hpages + delta) <= spool->max_hpages)
180 spool->used_hpages += delta;
181 else {
182 ret = -ENOMEM;
183 goto unlock_ret;
184 }
185 }
186
Mike Kravetz09a95e22016-05-19 17:11:01 -0700187 /* minimum size accounting */
188 if (spool->min_hpages != -1 && spool->rsv_hpages) {
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700189 if (delta > spool->rsv_hpages) {
190 /*
191 * Asking for more reserves than those already taken on
192 * behalf of subpool. Return difference.
193 */
194 ret = delta - spool->rsv_hpages;
195 spool->rsv_hpages = 0;
196 } else {
197 ret = 0; /* reserves already accounted for */
198 spool->rsv_hpages -= delta;
199 }
200 }
201
202unlock_ret:
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700203 spin_unlock_irq(&spool->lock);
David Gibson90481622012-03-21 16:34:12 -0700204 return ret;
205}
206
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700207/*
208 * Subpool accounting for freeing and unreserving pages.
209 * Return the number of global page reservations that must be dropped.
210 * The return value may only be different than the passed value (delta)
211 * in the case where a subpool minimum size must be maintained.
212 */
213static long hugepage_subpool_put_pages(struct hugepage_subpool *spool,
David Gibson90481622012-03-21 16:34:12 -0700214 long delta)
215{
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700216 long ret = delta;
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700217 unsigned long flags;
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700218
David Gibson90481622012-03-21 16:34:12 -0700219 if (!spool)
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700220 return delta;
David Gibson90481622012-03-21 16:34:12 -0700221
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700222 spin_lock_irqsave(&spool->lock, flags);
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700223
224 if (spool->max_hpages != -1) /* maximum size accounting */
225 spool->used_hpages -= delta;
226
Mike Kravetz09a95e22016-05-19 17:11:01 -0700227 /* minimum size accounting */
228 if (spool->min_hpages != -1 && spool->used_hpages < spool->min_hpages) {
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700229 if (spool->rsv_hpages + delta <= spool->min_hpages)
230 ret = 0;
231 else
232 ret = spool->rsv_hpages + delta - spool->min_hpages;
233
234 spool->rsv_hpages += delta;
235 if (spool->rsv_hpages > spool->min_hpages)
236 spool->rsv_hpages = spool->min_hpages;
237 }
238
239 /*
240 * If hugetlbfs_put_super couldn't free spool due to an outstanding
241 * quota reference, free it now.
242 */
Mike Kravetzdb71ef72021-05-04 18:35:07 -0700243 unlock_or_release_subpool(spool, flags);
Mike Kravetz1c5ecae2015-04-15 16:13:39 -0700244
245 return ret;
David Gibson90481622012-03-21 16:34:12 -0700246}
247
248static inline struct hugepage_subpool *subpool_inode(struct inode *inode)
249{
250 return HUGETLBFS_SB(inode->i_sb)->spool;
251}
252
253static inline struct hugepage_subpool *subpool_vma(struct vm_area_struct *vma)
254{
Al Viro496ad9a2013-01-23 17:07:38 -0500255 return subpool_inode(file_inode(vma->vm_file));
David Gibson90481622012-03-21 16:34:12 -0700256}
257
Mina Almasry0db9d742020-04-01 21:11:25 -0700258/* Helper that removes a struct file_region from the resv_map cache and returns
259 * it for use.
260 */
261static struct file_region *
262get_file_region_entry_from_cache(struct resv_map *resv, long from, long to)
263{
264 struct file_region *nrg = NULL;
265
266 VM_BUG_ON(resv->region_cache_count <= 0);
267
268 resv->region_cache_count--;
269 nrg = list_first_entry(&resv->region_cache, struct file_region, link);
Mina Almasry0db9d742020-04-01 21:11:25 -0700270 list_del(&nrg->link);
271
272 nrg->from = from;
273 nrg->to = to;
274
275 return nrg;
276}
277
Mina Almasry075a61d2020-04-01 21:11:28 -0700278static void copy_hugetlb_cgroup_uncharge_info(struct file_region *nrg,
279 struct file_region *rg)
280{
281#ifdef CONFIG_CGROUP_HUGETLB
282 nrg->reservation_counter = rg->reservation_counter;
283 nrg->css = rg->css;
284 if (rg->css)
285 css_get(rg->css);
286#endif
287}
288
289/* Helper that records hugetlb_cgroup uncharge info. */
290static void record_hugetlb_cgroup_uncharge_info(struct hugetlb_cgroup *h_cg,
291 struct hstate *h,
292 struct resv_map *resv,
293 struct file_region *nrg)
294{
295#ifdef CONFIG_CGROUP_HUGETLB
296 if (h_cg) {
297 nrg->reservation_counter =
298 &h_cg->rsvd_hugepage[hstate_index(h)];
299 nrg->css = &h_cg->css;
Miaohe Lind85aecf2021-03-24 21:37:17 -0700300 /*
301 * The caller will hold exactly one h_cg->css reference for the
302 * whole contiguous reservation region. But this area might be
303 * scattered when there are already some file_regions reside in
304 * it. As a result, many file_regions may share only one css
305 * reference. In order to ensure that one file_region must hold
306 * exactly one h_cg->css reference, we should do css_get for
307 * each file_region and leave the reference held by caller
308 * untouched.
309 */
310 css_get(&h_cg->css);
Mina Almasry075a61d2020-04-01 21:11:28 -0700311 if (!resv->pages_per_hpage)
312 resv->pages_per_hpage = pages_per_huge_page(h);
313 /* pages_per_hpage should be the same for all entries in
314 * a resv_map.
315 */
316 VM_BUG_ON(resv->pages_per_hpage != pages_per_huge_page(h));
317 } else {
318 nrg->reservation_counter = NULL;
319 nrg->css = NULL;
320 }
321#endif
322}
323
Miaohe Lind85aecf2021-03-24 21:37:17 -0700324static void put_uncharge_info(struct file_region *rg)
325{
326#ifdef CONFIG_CGROUP_HUGETLB
327 if (rg->css)
328 css_put(rg->css);
329#endif
330}
331
Mina Almasrya9b3f862020-04-01 21:11:35 -0700332static bool has_same_uncharge_info(struct file_region *rg,
333 struct file_region *org)
334{
335#ifdef CONFIG_CGROUP_HUGETLB
Baolin Wang0739eb42021-11-05 13:41:58 -0700336 return rg->reservation_counter == org->reservation_counter &&
Mina Almasrya9b3f862020-04-01 21:11:35 -0700337 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
Mina Almasry0db9d742020-04-01 21:11:25 -0700449 return add;
450}
451
452/* Must be called with resv->lock acquired. Will drop lock to allocate entries.
453 */
454static int allocate_file_region_entries(struct resv_map *resv,
455 int regions_needed)
456 __must_hold(&resv->lock)
457{
458 struct list_head allocated_regions;
459 int to_allocate = 0, i = 0;
460 struct file_region *trg = NULL, *rg = NULL;
461
462 VM_BUG_ON(regions_needed < 0);
463
464 INIT_LIST_HEAD(&allocated_regions);
465
466 /*
467 * Check for sufficient descriptors in the cache to accommodate
468 * the number of in progress add operations plus regions_needed.
469 *
470 * This is a while loop because when we drop the lock, some other call
471 * to region_add or region_del may have consumed some region_entries,
472 * so we keep looping here until we finally have enough entries for
473 * (adds_in_progress + regions_needed).
474 */
475 while (resv->region_cache_count <
476 (resv->adds_in_progress + regions_needed)) {
477 to_allocate = resv->adds_in_progress + regions_needed -
478 resv->region_cache_count;
479
480 /* At this point, we should have enough entries in the cache
Ingo Molnarf0953a12021-05-06 18:06:47 -0700481 * for all the existing adds_in_progress. We should only be
Mina Almasry0db9d742020-04-01 21:11:25 -0700482 * needing to allocate for regions_needed.
483 */
484 VM_BUG_ON(resv->region_cache_count < resv->adds_in_progress);
485
486 spin_unlock(&resv->lock);
487 for (i = 0; i < to_allocate; i++) {
488 trg = kmalloc(sizeof(*trg), GFP_KERNEL);
489 if (!trg)
490 goto out_of_memory;
491 list_add(&trg->link, &allocated_regions);
492 }
493
494 spin_lock(&resv->lock);
495
Wei Yangd3ec7b62020-10-13 16:56:27 -0700496 list_splice(&allocated_regions, &resv->region_cache);
497 resv->region_cache_count += to_allocate;
Mina Almasryd75c6af2019-11-30 17:56:59 -0800498 }
499
Mina Almasry0db9d742020-04-01 21:11:25 -0700500 return 0;
Mina Almasryd75c6af2019-11-30 17:56:59 -0800501
Mina Almasry0db9d742020-04-01 21:11:25 -0700502out_of_memory:
503 list_for_each_entry_safe(rg, trg, &allocated_regions, link) {
504 list_del(&rg->link);
505 kfree(rg);
506 }
507 return -ENOMEM;
Mina Almasryd75c6af2019-11-30 17:56:59 -0800508}
509
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700510/*
511 * Add the huge page range represented by [f, t) to the reserve
Mina Almasry0db9d742020-04-01 21:11:25 -0700512 * map. Regions will be taken from the cache to fill in this range.
513 * Sufficient regions should exist in the cache due to the previous
514 * call to region_chg with the same range, but in some cases the cache will not
515 * have sufficient entries due to races with other code doing region_add or
516 * region_del. The extra needed entries will be allocated.
Mike Kravetzcf3ad202015-06-24 16:57:55 -0700517 *
Mina Almasry0db9d742020-04-01 21:11:25 -0700518 * regions_needed is the out value provided by a previous call to region_chg.
519 *
520 * Return the number of new huge pages added to the map. This number is greater
521 * than or equal to zero. If file_region entries needed to be allocated for
Ethon Paul7c8de352020-06-04 16:49:07 -0700522 * this operation and we were not able to allocate, it returns -ENOMEM.
Mina Almasry0db9d742020-04-01 21:11:25 -0700523 * region_add of regions of length 1 never allocate file_regions and cannot
524 * fail; region_chg will always allocate at least 1 entry and a region_add for
525 * 1 page will only require at most 1 entry.
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700526 */
Mina Almasry0db9d742020-04-01 21:11:25 -0700527static long region_add(struct resv_map *resv, long f, long t,
Mina Almasry075a61d2020-04-01 21:11:28 -0700528 long in_regions_needed, struct hstate *h,
529 struct hugetlb_cgroup *h_cg)
Andy Whitcroft96822902008-07-23 21:27:29 -0700530{
Mina Almasry0db9d742020-04-01 21:11:25 -0700531 long add = 0, actual_regions_needed = 0;
Andy Whitcroft96822902008-07-23 21:27:29 -0700532
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700533 spin_lock(&resv->lock);
Mina Almasry0db9d742020-04-01 21:11:25 -0700534retry:
535
536 /* Count how many regions are actually needed to execute this add. */
Wei Yang972a3da32020-10-13 16:56:30 -0700537 add_reservation_in_range(resv, f, t, NULL, NULL,
538 &actual_regions_needed);
Andy Whitcroft96822902008-07-23 21:27:29 -0700539
Mike Kravetz5e911372015-09-08 15:01:28 -0700540 /*
Mina Almasry0db9d742020-04-01 21:11:25 -0700541 * Check for sufficient descriptors in the cache to accommodate
542 * this add operation. Note that actual_regions_needed may be greater
543 * than in_regions_needed, as the resv_map may have been modified since
544 * the region_chg call. In this case, we need to make sure that we
545 * allocate extra entries, such that we have enough for all the
546 * existing adds_in_progress, plus the excess needed for this
547 * operation.
Mike Kravetz5e911372015-09-08 15:01:28 -0700548 */
Mina Almasry0db9d742020-04-01 21:11:25 -0700549 if (actual_regions_needed > in_regions_needed &&
550 resv->region_cache_count <
551 resv->adds_in_progress +
552 (actual_regions_needed - in_regions_needed)) {
553 /* region_add operation of range 1 should never need to
554 * allocate file_region entries.
555 */
556 VM_BUG_ON(t - f <= 1);
Mike Kravetz5e911372015-09-08 15:01:28 -0700557
Mina Almasry0db9d742020-04-01 21:11:25 -0700558 if (allocate_file_region_entries(
559 resv, actual_regions_needed - in_regions_needed)) {
560 return -ENOMEM;
561 }
Mike Kravetz5e911372015-09-08 15:01:28 -0700562
Mina Almasry0db9d742020-04-01 21:11:25 -0700563 goto retry;
Mike Kravetz5e911372015-09-08 15:01:28 -0700564 }
565
Wei Yang972a3da32020-10-13 16:56:30 -0700566 add = add_reservation_in_range(resv, f, t, h_cg, h, NULL);
Mike Kravetzcf3ad202015-06-24 16:57:55 -0700567
Mina Almasry0db9d742020-04-01 21:11:25 -0700568 resv->adds_in_progress -= in_regions_needed;
569
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700570 spin_unlock(&resv->lock);
Mike Kravetzcf3ad202015-06-24 16:57:55 -0700571 return add;
Andy Whitcroft96822902008-07-23 21:27:29 -0700572}
573
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700574/*
575 * Examine the existing reserve map and determine how many
576 * huge pages in the specified range [f, t) are NOT currently
577 * represented. This routine is called before a subsequent
578 * call to region_add that will actually modify the reserve
579 * map to add the specified range [f, t). region_chg does
580 * not change the number of huge pages represented by the
Mina Almasry0db9d742020-04-01 21:11:25 -0700581 * map. A number of new file_region structures is added to the cache as a
582 * placeholder, for the subsequent region_add call to use. At least 1
583 * file_region structure is added.
584 *
585 * out_regions_needed is the number of regions added to the
586 * resv->adds_in_progress. This value needs to be provided to a follow up call
587 * to region_add or region_abort for proper accounting.
Mike Kravetz5e911372015-09-08 15:01:28 -0700588 *
589 * Returns the number of huge pages that need to be added to the existing
590 * reservation map for the range [f, t). This number is greater or equal to
591 * zero. -ENOMEM is returned if a new file_region structure or cache entry
592 * is needed and can not be allocated.
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700593 */
Mina Almasry0db9d742020-04-01 21:11:25 -0700594static long region_chg(struct resv_map *resv, long f, long t,
595 long *out_regions_needed)
Andy Whitcroft96822902008-07-23 21:27:29 -0700596{
Andy Whitcroft96822902008-07-23 21:27:29 -0700597 long chg = 0;
598
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700599 spin_lock(&resv->lock);
Mike Kravetz5e911372015-09-08 15:01:28 -0700600
Wei Yang972a3da32020-10-13 16:56:30 -0700601 /* Count how many hugepages in this range are NOT represented. */
Mina Almasry075a61d2020-04-01 21:11:28 -0700602 chg = add_reservation_in_range(resv, f, t, NULL, NULL,
Wei Yang972a3da32020-10-13 16:56:30 -0700603 out_regions_needed);
Mike Kravetz5e911372015-09-08 15:01:28 -0700604
Mina Almasry0db9d742020-04-01 21:11:25 -0700605 if (*out_regions_needed == 0)
606 *out_regions_needed = 1;
Mike Kravetz5e911372015-09-08 15:01:28 -0700607
Mina Almasry0db9d742020-04-01 21:11:25 -0700608 if (allocate_file_region_entries(resv, *out_regions_needed))
609 return -ENOMEM;
Mike Kravetz5e911372015-09-08 15:01:28 -0700610
Mina Almasry0db9d742020-04-01 21:11:25 -0700611 resv->adds_in_progress += *out_regions_needed;
Andy Whitcroft96822902008-07-23 21:27:29 -0700612
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700613 spin_unlock(&resv->lock);
Andy Whitcroft96822902008-07-23 21:27:29 -0700614 return chg;
615}
616
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700617/*
Mike Kravetz5e911372015-09-08 15:01:28 -0700618 * Abort the in progress add operation. The adds_in_progress field
619 * of the resv_map keeps track of the operations in progress between
620 * calls to region_chg and region_add. Operations are sometimes
621 * aborted after the call to region_chg. In such cases, region_abort
Mina Almasry0db9d742020-04-01 21:11:25 -0700622 * is called to decrement the adds_in_progress counter. regions_needed
623 * is the value returned by the region_chg call, it is used to decrement
624 * the adds_in_progress counter.
Mike Kravetz5e911372015-09-08 15:01:28 -0700625 *
626 * NOTE: The range arguments [f, t) are not needed or used in this
627 * routine. They are kept to make reading the calling code easier as
628 * arguments will match the associated region_chg call.
629 */
Mina Almasry0db9d742020-04-01 21:11:25 -0700630static void region_abort(struct resv_map *resv, long f, long t,
631 long regions_needed)
Mike Kravetz5e911372015-09-08 15:01:28 -0700632{
633 spin_lock(&resv->lock);
634 VM_BUG_ON(!resv->region_cache_count);
Mina Almasry0db9d742020-04-01 21:11:25 -0700635 resv->adds_in_progress -= regions_needed;
Mike Kravetz5e911372015-09-08 15:01:28 -0700636 spin_unlock(&resv->lock);
637}
638
639/*
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700640 * Delete the specified range [f, t) from the reserve map. If the
641 * t parameter is LONG_MAX, this indicates that ALL regions after f
642 * should be deleted. Locate the regions which intersect [f, t)
643 * and either trim, delete or split the existing regions.
644 *
645 * Returns the number of huge pages deleted from the reserve map.
646 * In the normal case, the return value is zero or more. In the
647 * case where a region must be split, a new region descriptor must
648 * be allocated. If the allocation fails, -ENOMEM will be returned.
649 * NOTE: If the parameter t == LONG_MAX, then we will never split
650 * a region and possibly return -ENOMEM. Callers specifying
651 * t == LONG_MAX do not need to check for -ENOMEM error.
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700652 */
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700653static long region_del(struct resv_map *resv, long f, long t)
Andy Whitcroft96822902008-07-23 21:27:29 -0700654{
Joonsoo Kim1406ec92014-04-03 14:47:26 -0700655 struct list_head *head = &resv->regions;
Andy Whitcroft96822902008-07-23 21:27:29 -0700656 struct file_region *rg, *trg;
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700657 struct file_region *nrg = NULL;
658 long del = 0;
Andy Whitcroft96822902008-07-23 21:27:29 -0700659
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700660retry:
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700661 spin_lock(&resv->lock);
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700662 list_for_each_entry_safe(rg, trg, head, link) {
Mike Kravetzdbe409e2015-12-11 13:40:52 -0800663 /*
664 * Skip regions before the range to be deleted. file_region
665 * ranges are normally of the form [from, to). However, there
666 * may be a "placeholder" entry in the map which is of the form
667 * (from, to) with from == to. Check for placeholder entries
668 * at the beginning of the range to be deleted.
669 */
670 if (rg->to <= f && (rg->to != rg->from || rg->to != f))
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700671 continue;
Mike Kravetzdbe409e2015-12-11 13:40:52 -0800672
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700673 if (rg->from >= t)
Andy Whitcroft96822902008-07-23 21:27:29 -0700674 break;
Andy Whitcroft96822902008-07-23 21:27:29 -0700675
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700676 if (f > rg->from && t < rg->to) { /* Must split region */
677 /*
678 * Check for an entry in the cache before dropping
679 * lock and attempting allocation.
680 */
681 if (!nrg &&
682 resv->region_cache_count > resv->adds_in_progress) {
683 nrg = list_first_entry(&resv->region_cache,
684 struct file_region,
685 link);
686 list_del(&nrg->link);
687 resv->region_cache_count--;
688 }
689
690 if (!nrg) {
691 spin_unlock(&resv->lock);
692 nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
693 if (!nrg)
694 return -ENOMEM;
695 goto retry;
696 }
697
698 del += t - f;
Mike Kravetz79aa9252020-11-01 17:07:27 -0800699 hugetlb_cgroup_uncharge_file_region(
Miaohe Lind85aecf2021-03-24 21:37:17 -0700700 resv, rg, t - f, false);
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700701
702 /* New entry for end of split region */
703 nrg->from = t;
704 nrg->to = rg->to;
Mina Almasry075a61d2020-04-01 21:11:28 -0700705
706 copy_hugetlb_cgroup_uncharge_info(nrg, rg);
707
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700708 INIT_LIST_HEAD(&nrg->link);
709
710 /* Original entry is trimmed */
711 rg->to = f;
712
713 list_add(&nrg->link, &rg->link);
714 nrg = NULL;
715 break;
716 }
717
718 if (f <= rg->from && t >= rg->to) { /* Remove entire region */
719 del += rg->to - rg->from;
Mina Almasry075a61d2020-04-01 21:11:28 -0700720 hugetlb_cgroup_uncharge_file_region(resv, rg,
Miaohe Lind85aecf2021-03-24 21:37:17 -0700721 rg->to - rg->from, true);
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700722 list_del(&rg->link);
723 kfree(rg);
724 continue;
725 }
726
727 if (f <= rg->from) { /* Trim beginning of region */
Mina Almasry075a61d2020-04-01 21:11:28 -0700728 hugetlb_cgroup_uncharge_file_region(resv, rg,
Miaohe Lind85aecf2021-03-24 21:37:17 -0700729 t - rg->from, false);
Mina Almasry075a61d2020-04-01 21:11:28 -0700730
Mike Kravetz79aa9252020-11-01 17:07:27 -0800731 del += t - rg->from;
732 rg->from = t;
733 } else { /* Trim end of region */
Mina Almasry075a61d2020-04-01 21:11:28 -0700734 hugetlb_cgroup_uncharge_file_region(resv, rg,
Miaohe Lind85aecf2021-03-24 21:37:17 -0700735 rg->to - f, false);
Mike Kravetz79aa9252020-11-01 17:07:27 -0800736
737 del += rg->to - f;
738 rg->to = f;
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700739 }
Andy Whitcroft96822902008-07-23 21:27:29 -0700740 }
741
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700742 spin_unlock(&resv->lock);
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700743 kfree(nrg);
744 return del;
Andy Whitcroft96822902008-07-23 21:27:29 -0700745}
746
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700747/*
Mike Kravetzb5cec282015-09-08 15:01:41 -0700748 * A rare out of memory error was encountered which prevented removal of
749 * the reserve map region for a page. The huge page itself was free'ed
750 * and removed from the page cache. This routine will adjust the subpool
751 * usage count, and the global reserve count if needed. By incrementing
752 * these counts, the reserve map entry which could not be deleted will
753 * appear as a "reserved" entry instead of simply dangling with incorrect
754 * counts.
755 */
zhong jiang72e29362016-10-07 17:02:01 -0700756void hugetlb_fix_reserve_counts(struct inode *inode)
Mike Kravetzb5cec282015-09-08 15:01:41 -0700757{
758 struct hugepage_subpool *spool = subpool_inode(inode);
759 long rsv_adjust;
Miaohe Linda563882021-05-04 18:34:38 -0700760 bool reserved = false;
Mike Kravetzb5cec282015-09-08 15:01:41 -0700761
762 rsv_adjust = hugepage_subpool_get_pages(spool, 1);
Miaohe Linda563882021-05-04 18:34:38 -0700763 if (rsv_adjust > 0) {
Mike Kravetzb5cec282015-09-08 15:01:41 -0700764 struct hstate *h = hstate_inode(inode);
765
Miaohe Linda563882021-05-04 18:34:38 -0700766 if (!hugetlb_acct_memory(h, 1))
767 reserved = true;
768 } else if (!rsv_adjust) {
769 reserved = true;
Mike Kravetzb5cec282015-09-08 15:01:41 -0700770 }
Miaohe Linda563882021-05-04 18:34:38 -0700771
772 if (!reserved)
773 pr_warn("hugetlb: Huge Page Reserved count may go negative.\n");
Mike Kravetzb5cec282015-09-08 15:01:41 -0700774}
775
776/*
Mike Kravetz1dd308a2015-06-24 16:57:52 -0700777 * Count and return the number of huge pages in the reserve map
778 * that intersect with the range [f, t).
779 */
Joonsoo Kim1406ec92014-04-03 14:47:26 -0700780static long region_count(struct resv_map *resv, long f, long t)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700781{
Joonsoo Kim1406ec92014-04-03 14:47:26 -0700782 struct list_head *head = &resv->regions;
Andy Whitcroft84afd992008-07-23 21:27:32 -0700783 struct file_region *rg;
784 long chg = 0;
785
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700786 spin_lock(&resv->lock);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700787 /* Locate each segment we overlap with, and count that overlap. */
788 list_for_each_entry(rg, head, link) {
Wang Sheng-Huif2135a42012-05-29 15:06:17 -0700789 long seg_from;
790 long seg_to;
Andy Whitcroft84afd992008-07-23 21:27:32 -0700791
792 if (rg->to <= f)
793 continue;
794 if (rg->from >= t)
795 break;
796
797 seg_from = max(rg->from, f);
798 seg_to = min(rg->to, t);
799
800 chg += seg_to - seg_from;
801 }
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700802 spin_unlock(&resv->lock);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700803
804 return chg;
805}
806
Andy Whitcroft96822902008-07-23 21:27:29 -0700807/*
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700808 * Convert the address within this vma to the page offset within
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700809 * the mapping, in pagecache page units; huge pages here.
810 */
Andi Kleena5516432008-07-23 21:27:41 -0700811static pgoff_t vma_hugecache_offset(struct hstate *h,
812 struct vm_area_struct *vma, unsigned long address)
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700813{
Andi Kleena5516432008-07-23 21:27:41 -0700814 return ((address - vma->vm_start) >> huge_page_shift(h)) +
815 (vma->vm_pgoff >> huge_page_order(h));
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700816}
817
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +0900818pgoff_t linear_hugepage_index(struct vm_area_struct *vma,
819 unsigned long address)
820{
821 return vma_hugecache_offset(hstate_vma(vma), vma, address);
822}
Dan Williamsdee41072016-05-14 12:20:44 -0700823EXPORT_SYMBOL_GPL(linear_hugepage_index);
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +0900824
Andy Whitcroft84afd992008-07-23 21:27:32 -0700825/*
Mel Gorman08fba692009-01-06 14:38:53 -0800826 * Return the size of the pages allocated when backing a VMA. In the majority
827 * cases this will be same size as used by the page table entries.
828 */
829unsigned long vma_kernel_pagesize(struct vm_area_struct *vma)
830{
Dan Williams05ea8862018-04-05 16:24:25 -0700831 if (vma->vm_ops && vma->vm_ops->pagesize)
832 return vma->vm_ops->pagesize(vma);
833 return PAGE_SIZE;
Mel Gorman08fba692009-01-06 14:38:53 -0800834}
Joerg Roedelf340ca02009-06-19 15:16:22 +0200835EXPORT_SYMBOL_GPL(vma_kernel_pagesize);
Mel Gorman08fba692009-01-06 14:38:53 -0800836
837/*
Mel Gorman33402892009-01-06 14:38:54 -0800838 * Return the page size being used by the MMU to back a VMA. In the majority
839 * of cases, the page size used by the kernel matches the MMU size. On
Dan Williams09135cc2018-04-05 16:24:21 -0700840 * architectures where it differs, an architecture-specific 'strong'
841 * version of this symbol is required.
Mel Gorman33402892009-01-06 14:38:54 -0800842 */
Dan Williams09135cc2018-04-05 16:24:21 -0700843__weak unsigned long vma_mmu_pagesize(struct vm_area_struct *vma)
Mel Gorman33402892009-01-06 14:38:54 -0800844{
845 return vma_kernel_pagesize(vma);
846}
Mel Gorman33402892009-01-06 14:38:54 -0800847
848/*
Andy Whitcroft84afd992008-07-23 21:27:32 -0700849 * Flags for MAP_PRIVATE reservations. These are stored in the bottom
850 * bits of the reservation map pointer, which are always clear due to
851 * alignment.
852 */
853#define HPAGE_RESV_OWNER (1UL << 0)
854#define HPAGE_RESV_UNMAPPED (1UL << 1)
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700855#define HPAGE_RESV_MASK (HPAGE_RESV_OWNER | HPAGE_RESV_UNMAPPED)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700856
Mel Gormana1e78772008-07-23 21:27:23 -0700857/*
858 * These helpers are used to track how many pages are reserved for
859 * faults in a MAP_PRIVATE mapping. Only the process that called mmap()
860 * is guaranteed to have their future faults succeed.
861 *
862 * With the exception of reset_vma_resv_huge_pages() which is called at fork(),
863 * the reserve counters are updated with the hugetlb_lock held. It is safe
864 * to reset the VMA at fork() time as it is not in use yet and there is no
865 * chance of the global counters getting corrupted as a result of the values.
Andy Whitcroft84afd992008-07-23 21:27:32 -0700866 *
867 * The private mapping reservation is represented in a subtly different
868 * manner to a shared mapping. A shared mapping has a region map associated
869 * with the underlying file, this region map represents the backing file
870 * pages which have ever had a reservation assigned which this persists even
871 * after the page is instantiated. A private mapping has a region map
872 * associated with the original mmap which is attached to all VMAs which
873 * reference it, this region map represents those offsets which have consumed
874 * reservation ie. where pages have been instantiated.
Mel Gormana1e78772008-07-23 21:27:23 -0700875 */
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700876static unsigned long get_vma_private_data(struct vm_area_struct *vma)
877{
878 return (unsigned long)vma->vm_private_data;
879}
880
881static void set_vma_private_data(struct vm_area_struct *vma,
882 unsigned long value)
883{
884 vma->vm_private_data = (void *)value;
885}
886
Mina Almasrye9fe92a2020-04-01 21:11:21 -0700887static void
888resv_map_set_hugetlb_cgroup_uncharge_info(struct resv_map *resv_map,
889 struct hugetlb_cgroup *h_cg,
890 struct hstate *h)
891{
892#ifdef CONFIG_CGROUP_HUGETLB
893 if (!h_cg || !h) {
894 resv_map->reservation_counter = NULL;
895 resv_map->pages_per_hpage = 0;
896 resv_map->css = NULL;
897 } else {
898 resv_map->reservation_counter =
899 &h_cg->rsvd_hugepage[hstate_index(h)];
900 resv_map->pages_per_hpage = pages_per_huge_page(h);
901 resv_map->css = &h_cg->css;
902 }
903#endif
904}
905
Joonsoo Kim9119a412014-04-03 14:47:25 -0700906struct resv_map *resv_map_alloc(void)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700907{
908 struct resv_map *resv_map = kmalloc(sizeof(*resv_map), GFP_KERNEL);
Mike Kravetz5e911372015-09-08 15:01:28 -0700909 struct file_region *rg = kmalloc(sizeof(*rg), GFP_KERNEL);
910
911 if (!resv_map || !rg) {
912 kfree(resv_map);
913 kfree(rg);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700914 return NULL;
Mike Kravetz5e911372015-09-08 15:01:28 -0700915 }
Andy Whitcroft84afd992008-07-23 21:27:32 -0700916
917 kref_init(&resv_map->refs);
Davidlohr Bueso7b24d862014-04-03 14:47:27 -0700918 spin_lock_init(&resv_map->lock);
Andy Whitcroft84afd992008-07-23 21:27:32 -0700919 INIT_LIST_HEAD(&resv_map->regions);
920
Mike Kravetz5e911372015-09-08 15:01:28 -0700921 resv_map->adds_in_progress = 0;
Mina Almasrye9fe92a2020-04-01 21:11:21 -0700922 /*
923 * Initialize these to 0. On shared mappings, 0's here indicate these
924 * fields don't do cgroup accounting. On private mappings, these will be
925 * re-initialized to the proper values, to indicate that hugetlb cgroup
926 * reservations are to be un-charged from here.
927 */
928 resv_map_set_hugetlb_cgroup_uncharge_info(resv_map, NULL, NULL);
Mike Kravetz5e911372015-09-08 15:01:28 -0700929
930 INIT_LIST_HEAD(&resv_map->region_cache);
931 list_add(&rg->link, &resv_map->region_cache);
932 resv_map->region_cache_count = 1;
933
Andy Whitcroft84afd992008-07-23 21:27:32 -0700934 return resv_map;
935}
936
Joonsoo Kim9119a412014-04-03 14:47:25 -0700937void resv_map_release(struct kref *ref)
Andy Whitcroft84afd992008-07-23 21:27:32 -0700938{
939 struct resv_map *resv_map = container_of(ref, struct resv_map, refs);
Mike Kravetz5e911372015-09-08 15:01:28 -0700940 struct list_head *head = &resv_map->region_cache;
941 struct file_region *rg, *trg;
Andy Whitcroft84afd992008-07-23 21:27:32 -0700942
943 /* Clear out any active regions before we release the map. */
Mike Kravetzfeba16e2015-09-08 15:01:31 -0700944 region_del(resv_map, 0, LONG_MAX);
Mike Kravetz5e911372015-09-08 15:01:28 -0700945
946 /* ... and any entries left in the cache */
947 list_for_each_entry_safe(rg, trg, head, link) {
948 list_del(&rg->link);
949 kfree(rg);
950 }
951
952 VM_BUG_ON(resv_map->adds_in_progress);
953
Andy Whitcroft84afd992008-07-23 21:27:32 -0700954 kfree(resv_map);
955}
956
Joonsoo Kim4e35f482014-04-03 14:47:30 -0700957static inline struct resv_map *inode_resv_map(struct inode *inode)
958{
Mike Kravetzf27a5132019-05-13 17:22:55 -0700959 /*
960 * At inode evict time, i_mapping may not point to the original
961 * address space within the inode. This original address space
962 * contains the pointer to the resv_map. So, always use the
963 * address space embedded within the inode.
964 * The VERY common case is inode->mapping == &inode->i_data but,
965 * this may not be true for device special inodes.
966 */
967 return (struct resv_map *)(&inode->i_data)->private_data;
Joonsoo Kim4e35f482014-04-03 14:47:30 -0700968}
969
Andy Whitcroft84afd992008-07-23 21:27:32 -0700970static struct resv_map *vma_resv_map(struct vm_area_struct *vma)
Mel Gormana1e78772008-07-23 21:27:23 -0700971{
Sasha Levin81d1b092014-10-09 15:28:10 -0700972 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
Joonsoo Kim4e35f482014-04-03 14:47:30 -0700973 if (vma->vm_flags & VM_MAYSHARE) {
974 struct address_space *mapping = vma->vm_file->f_mapping;
975 struct inode *inode = mapping->host;
976
977 return inode_resv_map(inode);
978
979 } else {
Andy Whitcroft84afd992008-07-23 21:27:32 -0700980 return (struct resv_map *)(get_vma_private_data(vma) &
981 ~HPAGE_RESV_MASK);
Joonsoo Kim4e35f482014-04-03 14:47:30 -0700982 }
Mel Gormana1e78772008-07-23 21:27:23 -0700983}
984
Andy Whitcroft84afd992008-07-23 21:27:32 -0700985static void set_vma_resv_map(struct vm_area_struct *vma, struct resv_map *map)
Mel Gormana1e78772008-07-23 21:27:23 -0700986{
Sasha Levin81d1b092014-10-09 15:28:10 -0700987 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
988 VM_BUG_ON_VMA(vma->vm_flags & VM_MAYSHARE, vma);
Mel Gormana1e78772008-07-23 21:27:23 -0700989
Andy Whitcroft84afd992008-07-23 21:27:32 -0700990 set_vma_private_data(vma, (get_vma_private_data(vma) &
991 HPAGE_RESV_MASK) | (unsigned long)map);
Mel Gorman04f2cbe2008-07-23 21:27:25 -0700992}
993
994static void set_vma_resv_flags(struct vm_area_struct *vma, unsigned long flags)
995{
Sasha Levin81d1b092014-10-09 15:28:10 -0700996 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
997 VM_BUG_ON_VMA(vma->vm_flags & VM_MAYSHARE, vma);
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -0700998
999 set_vma_private_data(vma, get_vma_private_data(vma) | flags);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001000}
1001
1002static int is_vma_resv_set(struct vm_area_struct *vma, unsigned long flag)
1003{
Sasha Levin81d1b092014-10-09 15:28:10 -07001004 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -07001005
1006 return (get_vma_private_data(vma) & flag) != 0;
Mel Gormana1e78772008-07-23 21:27:23 -07001007}
1008
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001009/* Reset counters to 0 and clear all HPAGE_RESV_* flags */
Mel Gormana1e78772008-07-23 21:27:23 -07001010void reset_vma_resv_huge_pages(struct vm_area_struct *vma)
1011{
Sasha Levin81d1b092014-10-09 15:28:10 -07001012 VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
Mel Gormanf83a2752009-05-28 14:34:40 -07001013 if (!(vma->vm_flags & VM_MAYSHARE))
Mel Gormana1e78772008-07-23 21:27:23 -07001014 vma->vm_private_data = (void *)0;
1015}
1016
Mina Almasry550a7d62021-11-05 13:41:40 -07001017/*
1018 * Reset and decrement one ref on hugepage private reservation.
1019 * Called with mm->mmap_sem writer semaphore held.
1020 * This function should be only used by move_vma() and operate on
1021 * same sized vma. It should never come here with last ref on the
1022 * reservation.
1023 */
1024void clear_vma_resv_huge_pages(struct vm_area_struct *vma)
1025{
1026 /*
1027 * Clear the old hugetlb private page reservation.
1028 * It has already been transferred to new_vma.
1029 *
1030 * During a mremap() operation of a hugetlb vma we call move_vma()
1031 * which copies vma into new_vma and unmaps vma. After the copy
1032 * operation both new_vma and vma share a reference to the resv_map
1033 * struct, and at that point vma is about to be unmapped. We don't
1034 * want to return the reservation to the pool at unmap of vma because
1035 * the reservation still lives on in new_vma, so simply decrement the
1036 * ref here and remove the resv_map reference from this vma.
1037 */
1038 struct resv_map *reservations = vma_resv_map(vma);
1039
1040 if (reservations && is_vma_resv_set(vma, HPAGE_RESV_OWNER))
1041 kref_put(&reservations->refs, resv_map_release);
1042
1043 reset_vma_resv_huge_pages(vma);
1044}
1045
Mel Gormana1e78772008-07-23 21:27:23 -07001046/* Returns true if the VMA has associated reserve pages */
Nicholas Krause559ec2f2015-09-04 15:48:27 -07001047static bool vma_has_reserves(struct vm_area_struct *vma, long chg)
Mel Gormana1e78772008-07-23 21:27:23 -07001048{
Joonsoo Kimaf0ed732013-09-11 14:21:18 -07001049 if (vma->vm_flags & VM_NORESERVE) {
1050 /*
1051 * This address is already reserved by other process(chg == 0),
1052 * so, we should decrement reserved count. Without decrementing,
1053 * reserve count remains after releasing inode, because this
1054 * allocated page will go into page cache and is regarded as
1055 * coming from reserved pool in releasing step. Currently, we
1056 * don't have any other solution to deal with this situation
1057 * properly, so add work-around here.
1058 */
1059 if (vma->vm_flags & VM_MAYSHARE && chg == 0)
Nicholas Krause559ec2f2015-09-04 15:48:27 -07001060 return true;
Joonsoo Kimaf0ed732013-09-11 14:21:18 -07001061 else
Nicholas Krause559ec2f2015-09-04 15:48:27 -07001062 return false;
Joonsoo Kimaf0ed732013-09-11 14:21:18 -07001063 }
Joonsoo Kima63884e2013-09-11 14:21:07 -07001064
1065 /* Shared mappings always use reserves */
Mike Kravetz1fb1b0e2015-09-08 15:01:44 -07001066 if (vma->vm_flags & VM_MAYSHARE) {
1067 /*
1068 * We know VM_NORESERVE is not set. Therefore, there SHOULD
1069 * be a region map for all pages. The only situation where
1070 * there is no region map is if a hole was punched via
Ethon Paul7c8de352020-06-04 16:49:07 -07001071 * fallocate. In this case, there really are no reserves to
Mike Kravetz1fb1b0e2015-09-08 15:01:44 -07001072 * use. This situation is indicated if chg != 0.
1073 */
1074 if (chg)
1075 return false;
1076 else
1077 return true;
1078 }
Joonsoo Kima63884e2013-09-11 14:21:07 -07001079
1080 /*
1081 * Only the process that called mmap() has reserves for
1082 * private mappings.
1083 */
Mike Kravetz67961f92016-06-08 15:33:42 -07001084 if (is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
1085 /*
1086 * Like the shared case above, a hole punch or truncate
1087 * could have been performed on the private mapping.
1088 * Examine the value of chg to determine if reserves
1089 * actually exist or were previously consumed.
1090 * Very Subtle - The value of chg comes from a previous
1091 * call to vma_needs_reserves(). The reserve map for
1092 * private mappings has different (opposite) semantics
1093 * than that of shared mappings. vma_needs_reserves()
1094 * has already taken this difference in semantics into
1095 * account. Therefore, the meaning of chg is the same
1096 * as in the shared case above. Code could easily be
1097 * combined, but keeping it separate draws attention to
1098 * subtle differences.
1099 */
1100 if (chg)
1101 return false;
1102 else
1103 return true;
1104 }
Joonsoo Kima63884e2013-09-11 14:21:07 -07001105
Nicholas Krause559ec2f2015-09-04 15:48:27 -07001106 return false;
Mel Gormana1e78772008-07-23 21:27:23 -07001107}
1108
Andi Kleena5516432008-07-23 21:27:41 -07001109static void enqueue_huge_page(struct hstate *h, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
1111 int nid = page_to_nid(page);
Mike Kravetz9487ca62021-05-04 18:35:10 -07001112
1113 lockdep_assert_held(&hugetlb_lock);
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07001114 VM_BUG_ON_PAGE(page_count(page), page);
1115
Aneesh Kumar K.V0edaecf2012-07-31 16:42:07 -07001116 list_move(&page->lru, &h->hugepage_freelists[nid]);
Andi Kleena5516432008-07-23 21:27:41 -07001117 h->free_huge_pages++;
1118 h->free_huge_pages_node[nid]++;
Mike Kravetz6c037142021-02-24 12:09:04 -08001119 SetHPageFreed(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120}
1121
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001122static struct page *dequeue_huge_page_node_exact(struct hstate *h, int nid)
Naoya Horiguchibf50bab2010-09-08 10:19:33 +09001123{
1124 struct page *page;
Pavel Tatashin1a08ae32021-05-04 18:38:53 -07001125 bool pin = !!(current->flags & PF_MEMALLOC_PIN);
Naoya Horiguchibf50bab2010-09-08 10:19:33 +09001126
Mike Kravetz9487ca62021-05-04 18:35:10 -07001127 lockdep_assert_held(&hugetlb_lock);
Joonsoo Kimbbe88752020-08-11 18:37:38 -07001128 list_for_each_entry(page, &h->hugepage_freelists[nid], lru) {
Pavel Tatashin8e3560d2021-05-04 18:39:00 -07001129 if (pin && !is_pinnable_page(page))
Joonsoo Kimbbe88752020-08-11 18:37:38 -07001130 continue;
1131
Wei Yang6664bfc2020-10-13 16:56:39 -07001132 if (PageHWPoison(page))
1133 continue;
1134
1135 list_move(&page->lru, &h->hugepage_activelist);
1136 set_page_refcounted(page);
Mike Kravetz6c037142021-02-24 12:09:04 -08001137 ClearHPageFreed(page);
Wei Yang6664bfc2020-10-13 16:56:39 -07001138 h->free_huge_pages--;
1139 h->free_huge_pages_node[nid]--;
1140 return page;
Joonsoo Kimbbe88752020-08-11 18:37:38 -07001141 }
1142
Wei Yang6664bfc2020-10-13 16:56:39 -07001143 return NULL;
Naoya Horiguchibf50bab2010-09-08 10:19:33 +09001144}
1145
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001146static struct page *dequeue_huge_page_nodemask(struct hstate *h, gfp_t gfp_mask, int nid,
1147 nodemask_t *nmask)
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001148{
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001149 unsigned int cpuset_mems_cookie;
1150 struct zonelist *zonelist;
1151 struct zone *zone;
1152 struct zoneref *z;
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08001153 int node = NUMA_NO_NODE;
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001154
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001155 zonelist = node_zonelist(nid, gfp_mask);
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001156
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001157retry_cpuset:
1158 cpuset_mems_cookie = read_mems_allowed_begin();
1159 for_each_zone_zonelist_nodemask(zone, z, zonelist, gfp_zone(gfp_mask), nmask) {
1160 struct page *page;
1161
1162 if (!cpuset_zone_allowed(zone, gfp_mask))
1163 continue;
1164 /*
1165 * no need to ask again on the same node. Pool is node rather than
1166 * zone aware
1167 */
1168 if (zone_to_nid(zone) == node)
1169 continue;
1170 node = zone_to_nid(zone);
1171
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001172 page = dequeue_huge_page_node_exact(h, node);
1173 if (page)
1174 return page;
1175 }
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001176 if (unlikely(read_mems_allowed_retry(cpuset_mems_cookie)))
1177 goto retry_cpuset;
1178
Anshuman Khandual94310cb2017-07-06 15:38:38 -07001179 return NULL;
1180}
1181
Andi Kleena5516432008-07-23 21:27:41 -07001182static struct page *dequeue_huge_page_vma(struct hstate *h,
1183 struct vm_area_struct *vma,
Joonsoo Kimaf0ed732013-09-11 14:21:18 -07001184 unsigned long address, int avoid_reserve,
1185 long chg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
Ben Widawskycfcaa662021-09-02 15:00:13 -07001187 struct page *page = NULL;
Lee Schermerhorn480eccf2007-09-18 22:46:47 -07001188 struct mempolicy *mpol;
Vlastimil Babka04ec6262017-07-06 15:40:03 -07001189 gfp_t gfp_mask;
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001190 nodemask_t *nodemask;
Vlastimil Babka04ec6262017-07-06 15:40:03 -07001191 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Mel Gormana1e78772008-07-23 21:27:23 -07001193 /*
1194 * A child process with MAP_PRIVATE mappings created by their parent
1195 * have no page reserves. This check ensures that reservations are
1196 * not "stolen". The child may still get SIGKILLed
1197 */
Joonsoo Kimaf0ed732013-09-11 14:21:18 -07001198 if (!vma_has_reserves(vma, chg) &&
Andi Kleena5516432008-07-23 21:27:41 -07001199 h->free_huge_pages - h->resv_huge_pages == 0)
Miao Xiec0ff7452010-05-24 14:32:08 -07001200 goto err;
Mel Gormana1e78772008-07-23 21:27:23 -07001201
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001202 /* If reserves cannot be used, ensure enough pages are in the pool */
Andi Kleena5516432008-07-23 21:27:41 -07001203 if (avoid_reserve && h->free_huge_pages - h->resv_huge_pages == 0)
Justin P. Mattock6eab04a2011-04-08 19:49:08 -07001204 goto err;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07001205
Vlastimil Babka04ec6262017-07-06 15:40:03 -07001206 gfp_mask = htlb_alloc_mask(h);
1207 nid = huge_node(vma, address, gfp_mask, &mpol, &nodemask);
Ben Widawskycfcaa662021-09-02 15:00:13 -07001208
1209 if (mpol_is_preferred_many(mpol)) {
1210 page = dequeue_huge_page_nodemask(h, gfp_mask, nid, nodemask);
1211
1212 /* Fallback to all nodes if page==NULL */
1213 nodemask = NULL;
1214 }
1215
1216 if (!page)
1217 page = dequeue_huge_page_nodemask(h, gfp_mask, nid, nodemask);
1218
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001219 if (page && !avoid_reserve && vma_has_reserves(vma, chg)) {
Mike Kravetzd6995da2021-02-24 12:08:51 -08001220 SetHPageRestoreReserve(page);
Michal Hocko3e59fcb2017-07-10 15:49:11 -07001221 h->resv_huge_pages--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07001223
1224 mpol_cond_put(mpol);
Mel Gormancc9a6c82012-03-21 16:34:11 -07001225 return page;
1226
Miao Xiec0ff7452010-05-24 14:32:08 -07001227err:
Mel Gormancc9a6c82012-03-21 16:34:11 -07001228 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
Luiz Capitulino1cac6f22014-06-04 16:07:11 -07001231/*
1232 * common helper functions for hstate_next_node_to_{alloc|free}.
1233 * We may have allocated or freed a huge page based on a different
1234 * nodes_allowed previously, so h->next_node_to_{alloc|free} might
1235 * be outside of *nodes_allowed. Ensure that we use an allowed
1236 * node for alloc or free.
1237 */
1238static int next_node_allowed(int nid, nodemask_t *nodes_allowed)
1239{
Andrew Morton0edaf862016-05-19 17:10:58 -07001240 nid = next_node_in(nid, *nodes_allowed);
Luiz Capitulino1cac6f22014-06-04 16:07:11 -07001241 VM_BUG_ON(nid >= MAX_NUMNODES);
1242
1243 return nid;
1244}
1245
1246static int get_valid_node_allowed(int nid, nodemask_t *nodes_allowed)
1247{
1248 if (!node_isset(nid, *nodes_allowed))
1249 nid = next_node_allowed(nid, nodes_allowed);
1250 return nid;
1251}
1252
1253/*
1254 * returns the previously saved node ["this node"] from which to
1255 * allocate a persistent huge page for the pool and advance the
1256 * next node from which to allocate, handling wrap at end of node
1257 * mask.
1258 */
1259static int hstate_next_node_to_alloc(struct hstate *h,
1260 nodemask_t *nodes_allowed)
1261{
1262 int nid;
1263
1264 VM_BUG_ON(!nodes_allowed);
1265
1266 nid = get_valid_node_allowed(h->next_nid_to_alloc, nodes_allowed);
1267 h->next_nid_to_alloc = next_node_allowed(nid, nodes_allowed);
1268
1269 return nid;
1270}
1271
1272/*
Mike Kravetz10c6ec42021-05-04 18:35:03 -07001273 * helper for remove_pool_huge_page() - return the previously saved
Luiz Capitulino1cac6f22014-06-04 16:07:11 -07001274 * node ["this node"] from which to free a huge page. Advance the
1275 * next node id whether or not we find a free huge page to free so
1276 * that the next attempt to free addresses the next node.
1277 */
1278static int hstate_next_node_to_free(struct hstate *h, nodemask_t *nodes_allowed)
1279{
1280 int nid;
1281
1282 VM_BUG_ON(!nodes_allowed);
1283
1284 nid = get_valid_node_allowed(h->next_nid_to_free, nodes_allowed);
1285 h->next_nid_to_free = next_node_allowed(nid, nodes_allowed);
1286
1287 return nid;
1288}
1289
1290#define for_each_node_mask_to_alloc(hs, nr_nodes, node, mask) \
1291 for (nr_nodes = nodes_weight(*mask); \
1292 nr_nodes > 0 && \
1293 ((node = hstate_next_node_to_alloc(hs, mask)) || 1); \
1294 nr_nodes--)
1295
1296#define for_each_node_mask_to_free(hs, nr_nodes, node, mask) \
1297 for (nr_nodes = nodes_weight(*mask); \
1298 nr_nodes > 0 && \
1299 ((node = hstate_next_node_to_free(hs, mask)) || 1); \
1300 nr_nodes--)
1301
Mike Kravetz8531fc62021-11-05 13:41:33 -07001302/* used to demote non-gigantic_huge pages as well */
Mike Kravetz34d9e352021-11-05 13:41:30 -07001303static void __destroy_compound_gigantic_page(struct page *page,
1304 unsigned int order, bool demote)
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001305{
1306 int i;
1307 int nr_pages = 1 << order;
1308 struct page *p = page + 1;
1309
Gerald Schaeferc8cc7082016-06-24 14:50:04 -07001310 atomic_set(compound_mapcount_ptr(page), 0);
Yanfei Xu5291c092021-02-24 12:07:22 -08001311 atomic_set(compound_pincount_ptr(page), 0);
John Hubbard47e29d32020-04-01 21:05:33 -07001312
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001313 for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
Mike Kravetza01f4392021-11-05 13:41:27 -07001314 p->mapping = NULL;
Kirill A. Shutemov1d798ca2015-11-06 16:29:54 -08001315 clear_compound_head(p);
Mike Kravetz34d9e352021-11-05 13:41:30 -07001316 if (!demote)
1317 set_page_refcounted(p);
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001318 }
1319
1320 set_compound_order(page, 0);
Gerald Schaeferba9c1202020-12-11 13:36:53 -08001321 page[1].compound_nr = 0;
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001322 __ClearPageHead(page);
1323}
1324
Mike Kravetz8531fc62021-11-05 13:41:33 -07001325static void destroy_compound_hugetlb_page_for_demote(struct page *page,
1326 unsigned int order)
1327{
1328 __destroy_compound_gigantic_page(page, order, true);
1329}
1330
1331#ifdef CONFIG_ARCH_HAS_GIGANTIC_PAGE
Mike Kravetz34d9e352021-11-05 13:41:30 -07001332static void destroy_compound_gigantic_page(struct page *page,
1333 unsigned int order)
1334{
1335 __destroy_compound_gigantic_page(page, order, false);
1336}
1337
Kirill A. Shutemovd00181b2015-11-06 16:29:57 -08001338static void free_gigantic_page(struct page *page, unsigned int order)
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001339{
Roman Gushchincf11e852020-04-10 14:32:45 -07001340 /*
1341 * If the page isn't allocated using the cma allocator,
1342 * cma_release() returns false.
1343 */
Barry Songdbda8fe2020-07-23 21:15:30 -07001344#ifdef CONFIG_CMA
1345 if (cma_release(hugetlb_cma[page_to_nid(page)], page, 1 << order))
Roman Gushchincf11e852020-04-10 14:32:45 -07001346 return;
Barry Songdbda8fe2020-07-23 21:15:30 -07001347#endif
Roman Gushchincf11e852020-04-10 14:32:45 -07001348
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001349 free_contig_range(page_to_pfn(page), 1 << order);
1350}
1351
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07001352#ifdef CONFIG_CONTIG_ALLOC
Michal Hockod9cc948f2018-01-31 16:20:44 -08001353static struct page *alloc_gigantic_page(struct hstate *h, gfp_t gfp_mask,
1354 int nid, nodemask_t *nodemask)
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001355{
Miaohe Lin04adbc32021-05-04 18:33:22 -07001356 unsigned long nr_pages = pages_per_huge_page(h);
Li Xinhai953f0642020-09-04 16:36:10 -07001357 if (nid == NUMA_NO_NODE)
1358 nid = numa_mem_id();
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001359
Barry Songdbda8fe2020-07-23 21:15:30 -07001360#ifdef CONFIG_CMA
1361 {
Roman Gushchincf11e852020-04-10 14:32:45 -07001362 struct page *page;
1363 int node;
1364
Li Xinhai953f0642020-09-04 16:36:10 -07001365 if (hugetlb_cma[nid]) {
1366 page = cma_alloc(hugetlb_cma[nid], nr_pages,
1367 huge_page_order(h), true);
Roman Gushchincf11e852020-04-10 14:32:45 -07001368 if (page)
1369 return page;
1370 }
Li Xinhai953f0642020-09-04 16:36:10 -07001371
1372 if (!(gfp_mask & __GFP_THISNODE)) {
1373 for_each_node_mask(node, *nodemask) {
1374 if (node == nid || !hugetlb_cma[node])
1375 continue;
1376
1377 page = cma_alloc(hugetlb_cma[node], nr_pages,
1378 huge_page_order(h), true);
1379 if (page)
1380 return page;
1381 }
1382 }
Roman Gushchincf11e852020-04-10 14:32:45 -07001383 }
Barry Songdbda8fe2020-07-23 21:15:30 -07001384#endif
Roman Gushchincf11e852020-04-10 14:32:45 -07001385
Anshuman Khandual5e27a2d2019-11-30 17:55:06 -08001386 return alloc_contig_pages(nr_pages, gfp_mask, nid, nodemask);
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001387}
1388
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07001389#else /* !CONFIG_CONTIG_ALLOC */
1390static struct page *alloc_gigantic_page(struct hstate *h, gfp_t gfp_mask,
1391 int nid, nodemask_t *nodemask)
1392{
1393 return NULL;
1394}
1395#endif /* CONFIG_CONTIG_ALLOC */
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001396
Aneesh Kumar K.Ve1073d12017-07-06 15:39:17 -07001397#else /* !CONFIG_ARCH_HAS_GIGANTIC_PAGE */
Michal Hockod9cc948f2018-01-31 16:20:44 -08001398static struct page *alloc_gigantic_page(struct hstate *h, gfp_t gfp_mask,
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07001399 int nid, nodemask_t *nodemask)
1400{
1401 return NULL;
1402}
Kirill A. Shutemovd00181b2015-11-06 16:29:57 -08001403static inline void free_gigantic_page(struct page *page, unsigned int order) { }
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001404static inline void destroy_compound_gigantic_page(struct page *page,
Kirill A. Shutemovd00181b2015-11-06 16:29:57 -08001405 unsigned int order) { }
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001406#endif
1407
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001408/*
1409 * Remove hugetlb page from lists, and update dtor so that page appears
Mike Kravetz34d9e352021-11-05 13:41:30 -07001410 * as just a compound page.
1411 *
1412 * A reference is held on the page, except in the case of demote.
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001413 *
1414 * Must be called with hugetlb lock held.
1415 */
Mike Kravetz34d9e352021-11-05 13:41:30 -07001416static void __remove_hugetlb_page(struct hstate *h, struct page *page,
1417 bool adjust_surplus,
1418 bool demote)
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001419{
1420 int nid = page_to_nid(page);
1421
1422 VM_BUG_ON_PAGE(hugetlb_cgroup_from_page(page), page);
1423 VM_BUG_ON_PAGE(hugetlb_cgroup_from_page_rsvd(page), page);
1424
Mike Kravetz9487ca62021-05-04 18:35:10 -07001425 lockdep_assert_held(&hugetlb_lock);
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001426 if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
1427 return;
1428
1429 list_del(&page->lru);
1430
1431 if (HPageFreed(page)) {
1432 h->free_huge_pages--;
1433 h->free_huge_pages_node[nid]--;
1434 }
1435 if (adjust_surplus) {
1436 h->surplus_huge_pages--;
1437 h->surplus_huge_pages_node[nid]--;
1438 }
1439
Mike Kravetze32d20c2021-09-02 14:58:50 -07001440 /*
1441 * Very subtle
1442 *
1443 * For non-gigantic pages set the destructor to the normal compound
1444 * page dtor. This is needed in case someone takes an additional
1445 * temporary ref to the page, and freeing is delayed until they drop
1446 * their reference.
1447 *
1448 * For gigantic pages set the destructor to the null dtor. This
1449 * destructor will never be called. Before freeing the gigantic
1450 * page destroy_compound_gigantic_page will turn the compound page
1451 * into a simple group of pages. After this the destructor does not
1452 * apply.
1453 *
1454 * This handles the case where more than one ref is held when and
1455 * after update_and_free_page is called.
Mike Kravetz34d9e352021-11-05 13:41:30 -07001456 *
1457 * In the case of demote we do not ref count the page as it will soon
1458 * be turned into a page of smaller size.
Mike Kravetze32d20c2021-09-02 14:58:50 -07001459 */
Mike Kravetz34d9e352021-11-05 13:41:30 -07001460 if (!demote)
1461 set_page_refcounted(page);
Mike Kravetze32d20c2021-09-02 14:58:50 -07001462 if (hstate_is_gigantic(h))
1463 set_compound_page_dtor(page, NULL_COMPOUND_DTOR);
1464 else
1465 set_compound_page_dtor(page, COMPOUND_PAGE_DTOR);
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001466
1467 h->nr_huge_pages--;
1468 h->nr_huge_pages_node[nid]--;
1469}
1470
Mike Kravetz34d9e352021-11-05 13:41:30 -07001471static void remove_hugetlb_page(struct hstate *h, struct page *page,
1472 bool adjust_surplus)
1473{
1474 __remove_hugetlb_page(h, page, adjust_surplus, false);
1475}
1476
Mike Kravetz8531fc62021-11-05 13:41:33 -07001477static void remove_hugetlb_page_for_demote(struct hstate *h, struct page *page,
1478 bool adjust_surplus)
1479{
1480 __remove_hugetlb_page(h, page, adjust_surplus, true);
1481}
1482
Muchun Songad2fa372021-06-30 18:47:21 -07001483static void add_hugetlb_page(struct hstate *h, struct page *page,
1484 bool adjust_surplus)
1485{
1486 int zeroed;
1487 int nid = page_to_nid(page);
1488
1489 VM_BUG_ON_PAGE(!HPageVmemmapOptimized(page), page);
1490
1491 lockdep_assert_held(&hugetlb_lock);
1492
1493 INIT_LIST_HEAD(&page->lru);
1494 h->nr_huge_pages++;
1495 h->nr_huge_pages_node[nid]++;
1496
1497 if (adjust_surplus) {
1498 h->surplus_huge_pages++;
1499 h->surplus_huge_pages_node[nid]++;
1500 }
1501
1502 set_compound_page_dtor(page, HUGETLB_PAGE_DTOR);
1503 set_page_private(page, 0);
1504 SetHPageVmemmapOptimized(page);
1505
1506 /*
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07001507 * This page is about to be managed by the hugetlb allocator and
1508 * should have no users. Drop our reference, and check for others
1509 * just in case.
Muchun Songad2fa372021-06-30 18:47:21 -07001510 */
1511 zeroed = put_page_testzero(page);
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07001512 if (!zeroed)
1513 /*
1514 * It is VERY unlikely soneone else has taken a ref on
1515 * the page. In this case, we simply return as the
1516 * hugetlb destructor (free_huge_page) will be called
1517 * when this other ref is dropped.
1518 */
1519 return;
1520
Muchun Songad2fa372021-06-30 18:47:21 -07001521 arch_clear_hugepage_flags(page);
1522 enqueue_huge_page(h, page);
1523}
1524
Muchun Songb65d4ad2021-06-30 18:47:17 -07001525static void __update_and_free_page(struct hstate *h, struct page *page)
Adam Litke6af2acb2007-10-16 01:26:16 -07001526{
1527 int i;
Mike Kravetzdbfee5a2021-02-24 12:07:50 -08001528 struct page *subpage = page;
Andi Kleena5516432008-07-23 21:27:41 -07001529
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07001530 if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001531 return;
Andy Whitcroft18229df2008-11-06 12:53:27 -08001532
Muchun Songad2fa372021-06-30 18:47:21 -07001533 if (alloc_huge_page_vmemmap(h, page)) {
1534 spin_lock_irq(&hugetlb_lock);
1535 /*
1536 * If we cannot allocate vmemmap pages, just refuse to free the
1537 * page and put the page back on the hugetlb free list and treat
1538 * as a surplus page.
1539 */
1540 add_hugetlb_page(h, page, true);
1541 spin_unlock_irq(&hugetlb_lock);
1542 return;
1543 }
1544
Mike Kravetzdbfee5a2021-02-24 12:07:50 -08001545 for (i = 0; i < pages_per_huge_page(h);
1546 i++, subpage = mem_map_next(subpage, page, i)) {
1547 subpage->flags &= ~(1 << PG_locked | 1 << PG_error |
Chris Forbes32f84522011-07-25 17:12:14 -07001548 1 << PG_referenced | 1 << PG_dirty |
Luiz Capitulinoa7407a22014-06-04 16:07:09 -07001549 1 << PG_active | 1 << PG_private |
1550 1 << PG_writeback);
Adam Litke6af2acb2007-10-16 01:26:16 -07001551 }
Mike Kravetza01f4392021-11-05 13:41:27 -07001552
1553 /*
1554 * Non-gigantic pages demoted from CMA allocated gigantic pages
1555 * need to be given back to CMA in free_gigantic_page.
1556 */
1557 if (hstate_is_gigantic(h) ||
1558 hugetlb_cma_page(page, huge_page_order(h))) {
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001559 destroy_compound_gigantic_page(page, huge_page_order(h));
1560 free_gigantic_page(page, huge_page_order(h));
1561 } else {
Luiz Capitulino944d9fe2014-06-04 16:07:13 -07001562 __free_pages(page, huge_page_order(h));
1563 }
Adam Litke6af2acb2007-10-16 01:26:16 -07001564}
1565
Muchun Songb65d4ad2021-06-30 18:47:17 -07001566/*
1567 * As update_and_free_page() can be called under any context, so we cannot
1568 * use GFP_KERNEL to allocate vmemmap pages. However, we can defer the
1569 * actual freeing in a workqueue to prevent from using GFP_ATOMIC to allocate
1570 * the vmemmap pages.
1571 *
1572 * free_hpage_workfn() locklessly retrieves the linked list of pages to be
1573 * freed and frees them one-by-one. As the page->mapping pointer is going
1574 * to be cleared in free_hpage_workfn() anyway, it is reused as the llist_node
1575 * structure of a lockless linked list of huge pages to be freed.
1576 */
1577static LLIST_HEAD(hpage_freelist);
1578
1579static void free_hpage_workfn(struct work_struct *work)
1580{
1581 struct llist_node *node;
1582
1583 node = llist_del_all(&hpage_freelist);
1584
1585 while (node) {
1586 struct page *page;
1587 struct hstate *h;
1588
1589 page = container_of((struct address_space **)node,
1590 struct page, mapping);
1591 node = node->next;
1592 page->mapping = NULL;
1593 /*
1594 * The VM_BUG_ON_PAGE(!PageHuge(page), page) in page_hstate()
1595 * is going to trigger because a previous call to
1596 * remove_hugetlb_page() will set_compound_page_dtor(page,
1597 * NULL_COMPOUND_DTOR), so do not use page_hstate() directly.
1598 */
1599 h = size_to_hstate(page_size(page));
1600
1601 __update_and_free_page(h, page);
1602
1603 cond_resched();
1604 }
1605}
1606static DECLARE_WORK(free_hpage_work, free_hpage_workfn);
1607
1608static inline void flush_free_hpage_work(struct hstate *h)
1609{
1610 if (free_vmemmap_pages_per_hpage(h))
1611 flush_work(&free_hpage_work);
1612}
1613
1614static void update_and_free_page(struct hstate *h, struct page *page,
1615 bool atomic)
1616{
Muchun Songad2fa372021-06-30 18:47:21 -07001617 if (!HPageVmemmapOptimized(page) || !atomic) {
Muchun Songb65d4ad2021-06-30 18:47:17 -07001618 __update_and_free_page(h, page);
1619 return;
1620 }
1621
1622 /*
1623 * Defer freeing to avoid using GFP_ATOMIC to allocate vmemmap pages.
1624 *
1625 * Only call schedule_work() if hpage_freelist is previously
1626 * empty. Otherwise, schedule_work() had been called but the workfn
1627 * hasn't retrieved the list yet.
1628 */
1629 if (llist_add((struct llist_node *)&page->mapping, &hpage_freelist))
1630 schedule_work(&free_hpage_work);
1631}
1632
Mike Kravetz10c6ec42021-05-04 18:35:03 -07001633static void update_and_free_pages_bulk(struct hstate *h, struct list_head *list)
1634{
1635 struct page *page, *t_page;
1636
1637 list_for_each_entry_safe(page, t_page, list, lru) {
Muchun Songb65d4ad2021-06-30 18:47:17 -07001638 update_and_free_page(h, page, false);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07001639 cond_resched();
1640 }
1641}
1642
Andi Kleene5ff2152008-07-23 21:27:42 -07001643struct hstate *size_to_hstate(unsigned long size)
1644{
1645 struct hstate *h;
1646
1647 for_each_hstate(h) {
1648 if (huge_page_size(h) == size)
1649 return h;
1650 }
1651 return NULL;
1652}
1653
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001654void free_huge_page(struct page *page)
David Gibson27a85ef2006-03-22 00:08:56 -08001655{
Andi Kleena5516432008-07-23 21:27:41 -07001656 /*
1657 * Can't pass hstate in here because it is called from the
1658 * compound page destructor.
1659 */
Andi Kleene5ff2152008-07-23 21:27:42 -07001660 struct hstate *h = page_hstate(page);
Adam Litke7893d1d2007-10-16 01:26:18 -07001661 int nid = page_to_nid(page);
Mike Kravetzd6995da2021-02-24 12:08:51 -08001662 struct hugepage_subpool *spool = hugetlb_page_subpool(page);
Joonsoo Kim07443a82013-09-11 14:21:58 -07001663 bool restore_reserve;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001664 unsigned long flags;
David Gibson27a85ef2006-03-22 00:08:56 -08001665
Mike Kravetzb4330af2016-02-05 15:36:38 -08001666 VM_BUG_ON_PAGE(page_count(page), page);
1667 VM_BUG_ON_PAGE(page_mapcount(page), page);
Yongkai Wu8ace22b2018-12-14 14:17:10 -08001668
Mike Kravetzd6995da2021-02-24 12:08:51 -08001669 hugetlb_set_page_subpool(page, NULL);
Yongkai Wu8ace22b2018-12-14 14:17:10 -08001670 page->mapping = NULL;
Mike Kravetzd6995da2021-02-24 12:08:51 -08001671 restore_reserve = HPageRestoreReserve(page);
1672 ClearHPageRestoreReserve(page);
David Gibson27a85ef2006-03-22 00:08:56 -08001673
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07001674 /*
Mike Kravetzd6995da2021-02-24 12:08:51 -08001675 * If HPageRestoreReserve was set on page, page allocation consumed a
Mike Kravetz0919e1b2019-05-13 17:19:38 -07001676 * reservation. If the page was associated with a subpool, there
1677 * would have been a page reserved in the subpool before allocation
1678 * via hugepage_subpool_get_pages(). Since we are 'restoring' the
Miaohe Lin6c26d312021-02-24 12:07:19 -08001679 * reservation, do not call hugepage_subpool_put_pages() as this will
Mike Kravetz0919e1b2019-05-13 17:19:38 -07001680 * remove the reserved page from the subpool.
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07001681 */
Mike Kravetz0919e1b2019-05-13 17:19:38 -07001682 if (!restore_reserve) {
1683 /*
1684 * A return code of zero implies that the subpool will be
1685 * under its minimum size if the reservation is not restored
1686 * after page is free. Therefore, force restore_reserve
1687 * operation.
1688 */
1689 if (hugepage_subpool_put_pages(spool, 1) == 0)
1690 restore_reserve = true;
1691 }
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07001692
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001693 spin_lock_irqsave(&hugetlb_lock, flags);
Mike Kravetz8f251a32021-02-24 12:08:56 -08001694 ClearHPageMigratable(page);
Aneesh Kumar K.V6d76dcf2012-07-31 16:42:18 -07001695 hugetlb_cgroup_uncharge_page(hstate_index(h),
1696 pages_per_huge_page(h), page);
Mina Almasry08cf9fa2020-04-01 21:11:31 -07001697 hugetlb_cgroup_uncharge_page_rsvd(hstate_index(h),
1698 pages_per_huge_page(h), page);
Joonsoo Kim07443a82013-09-11 14:21:58 -07001699 if (restore_reserve)
1700 h->resv_huge_pages++;
1701
Mike Kravetz9157c3112021-02-24 12:09:00 -08001702 if (HPageTemporary(page)) {
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001703 remove_hugetlb_page(h, page, false);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001704 spin_unlock_irqrestore(&hugetlb_lock, flags);
Muchun Songb65d4ad2021-06-30 18:47:17 -07001705 update_and_free_page(h, page, true);
Michal Hockoab5ac902018-01-31 16:20:48 -08001706 } else if (h->surplus_huge_pages_node[nid]) {
Aneesh Kumar K.V0edaecf2012-07-31 16:42:07 -07001707 /* remove the page from active list */
Mike Kravetz6eb4e882021-05-04 18:34:55 -07001708 remove_hugetlb_page(h, page, true);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001709 spin_unlock_irqrestore(&hugetlb_lock, flags);
Muchun Songb65d4ad2021-06-30 18:47:17 -07001710 update_and_free_page(h, page, true);
Adam Litke7893d1d2007-10-16 01:26:18 -07001711 } else {
Will Deacon5d3a5512012-10-08 16:29:32 -07001712 arch_clear_hugepage_flags(page);
Andi Kleena5516432008-07-23 21:27:41 -07001713 enqueue_huge_page(h, page);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001714 spin_unlock_irqrestore(&hugetlb_lock, flags);
Adam Litke7893d1d2007-10-16 01:26:18 -07001715 }
David Gibson27a85ef2006-03-22 00:08:56 -08001716}
1717
Oscar Salvadord3d99fc2021-05-04 18:35:23 -07001718/*
1719 * Must be called with the hugetlb lock held
1720 */
1721static void __prep_account_new_huge_page(struct hstate *h, int nid)
1722{
1723 lockdep_assert_held(&hugetlb_lock);
1724 h->nr_huge_pages++;
1725 h->nr_huge_pages_node[nid]++;
1726}
1727
Muchun Songf41f2ed2021-06-30 18:47:13 -07001728static void __prep_new_huge_page(struct hstate *h, struct page *page)
Andi Kleenb7ba30c2008-07-23 21:27:40 -07001729{
Muchun Songf41f2ed2021-06-30 18:47:13 -07001730 free_huge_page_vmemmap(h, page);
Aneesh Kumar K.V0edaecf2012-07-31 16:42:07 -07001731 INIT_LIST_HEAD(&page->lru);
Kirill A. Shutemovf1e61552015-11-06 16:29:50 -08001732 set_compound_page_dtor(page, HUGETLB_PAGE_DTOR);
Mike Kravetzff546112021-02-24 12:09:11 -08001733 hugetlb_set_page_subpool(page, NULL);
Aneesh Kumar K.V9dd540e2012-07-31 16:42:15 -07001734 set_hugetlb_cgroup(page, NULL);
Mina Almasry1adc4d42020-04-01 21:11:15 -07001735 set_hugetlb_cgroup_rsvd(page, NULL);
Oscar Salvadord3d99fc2021-05-04 18:35:23 -07001736}
1737
1738static void prep_new_huge_page(struct hstate *h, struct page *page, int nid)
1739{
Muchun Songf41f2ed2021-06-30 18:47:13 -07001740 __prep_new_huge_page(h, page);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001741 spin_lock_irq(&hugetlb_lock);
Oscar Salvadord3d99fc2021-05-04 18:35:23 -07001742 __prep_account_new_huge_page(h, nid);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07001743 spin_unlock_irq(&hugetlb_lock);
Andi Kleenb7ba30c2008-07-23 21:27:40 -07001744}
1745
Mike Kravetz34d9e352021-11-05 13:41:30 -07001746static bool __prep_compound_gigantic_page(struct page *page, unsigned int order,
1747 bool demote)
Wu Fengguang20a03072009-06-16 15:32:22 -07001748{
Mike Kravetz7118fc22021-06-30 18:48:34 -07001749 int i, j;
Wu Fengguang20a03072009-06-16 15:32:22 -07001750 int nr_pages = 1 << order;
1751 struct page *p = page + 1;
1752
1753 /* we rely on prep_new_huge_page to set the destructor */
1754 set_compound_order(page, order);
Andrea Arcangelief5a22b2013-10-16 13:46:56 -07001755 __ClearPageReserved(page);
Kirill A. Shutemovde09d312016-01-15 16:51:42 -08001756 __SetPageHead(page);
Wu Fengguang20a03072009-06-16 15:32:22 -07001757 for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
Andrea Arcangelief5a22b2013-10-16 13:46:56 -07001758 /*
1759 * For gigantic hugepages allocated through bootmem at
1760 * boot, it's safer to be consistent with the not-gigantic
1761 * hugepages and clear the PG_reserved bit from all tail pages
Ethon Paul7c8de352020-06-04 16:49:07 -07001762 * too. Otherwise drivers using get_user_pages() to access tail
Andrea Arcangelief5a22b2013-10-16 13:46:56 -07001763 * pages may get the reference counting wrong if they see
1764 * PG_reserved set on a tail page (despite the head page not
1765 * having PG_reserved set). Enforcing this consistency between
1766 * head and tail pages allows drivers to optimize away a check
1767 * on the head page when they need know if put_page() is needed
1768 * after get_user_pages().
1769 */
1770 __ClearPageReserved(p);
Mike Kravetz7118fc22021-06-30 18:48:34 -07001771 /*
1772 * Subtle and very unlikely
1773 *
1774 * Gigantic 'page allocators' such as memblock or cma will
1775 * return a set of pages with each page ref counted. We need
1776 * to turn this set of pages into a compound page with tail
1777 * page ref counts set to zero. Code such as speculative page
1778 * cache adding could take a ref on a 'to be' tail page.
1779 * We need to respect any increased ref count, and only set
1780 * the ref count to zero if count is currently 1. If count
Mike Kravetz416d85e2021-09-02 14:58:43 -07001781 * is not 1, we return an error. An error return indicates
1782 * the set of pages can not be converted to a gigantic page.
1783 * The caller who allocated the pages should then discard the
1784 * pages using the appropriate free interface.
Mike Kravetz34d9e352021-11-05 13:41:30 -07001785 *
1786 * In the case of demote, the ref count will be zero.
Mike Kravetz7118fc22021-06-30 18:48:34 -07001787 */
Mike Kravetz34d9e352021-11-05 13:41:30 -07001788 if (!demote) {
1789 if (!page_ref_freeze(p, 1)) {
1790 pr_warn("HugeTLB page can not be used due to unexpected inflated ref count\n");
1791 goto out_error;
1792 }
1793 } else {
1794 VM_BUG_ON_PAGE(page_count(p), p);
Mike Kravetz7118fc22021-06-30 18:48:34 -07001795 }
Kirill A. Shutemov1d798ca2015-11-06 16:29:54 -08001796 set_compound_head(p, page);
Wu Fengguang20a03072009-06-16 15:32:22 -07001797 }
Mike Kravetzb4330af2016-02-05 15:36:38 -08001798 atomic_set(compound_mapcount_ptr(page), -1);
Yanfei Xu5291c092021-02-24 12:07:22 -08001799 atomic_set(compound_pincount_ptr(page), 0);
Mike Kravetz7118fc22021-06-30 18:48:34 -07001800 return true;
1801
1802out_error:
1803 /* undo tail page modifications made above */
1804 p = page + 1;
1805 for (j = 1; j < i; j++, p = mem_map_next(p, page, j)) {
1806 clear_compound_head(p);
1807 set_page_refcounted(p);
1808 }
1809 /* need to clear PG_reserved on remaining tail pages */
1810 for (; j < nr_pages; j++, p = mem_map_next(p, page, j))
1811 __ClearPageReserved(p);
1812 set_compound_order(page, 0);
1813 page[1].compound_nr = 0;
1814 __ClearPageHead(page);
1815 return false;
Wu Fengguang20a03072009-06-16 15:32:22 -07001816}
1817
Mike Kravetz34d9e352021-11-05 13:41:30 -07001818static bool prep_compound_gigantic_page(struct page *page, unsigned int order)
1819{
1820 return __prep_compound_gigantic_page(page, order, false);
1821}
1822
Mike Kravetz8531fc62021-11-05 13:41:33 -07001823static bool prep_compound_gigantic_page_for_demote(struct page *page,
1824 unsigned int order)
1825{
1826 return __prep_compound_gigantic_page(page, order, true);
1827}
1828
Andrew Morton77959122012-10-08 16:34:11 -07001829/*
1830 * PageHuge() only returns true for hugetlbfs pages, but not for normal or
1831 * transparent huge pages. See the PageTransHuge() documentation for more
1832 * details.
1833 */
Wu Fengguang20a03072009-06-16 15:32:22 -07001834int PageHuge(struct page *page)
1835{
Wu Fengguang20a03072009-06-16 15:32:22 -07001836 if (!PageCompound(page))
1837 return 0;
1838
1839 page = compound_head(page);
Kirill A. Shutemovf1e61552015-11-06 16:29:50 -08001840 return page[1].compound_dtor == HUGETLB_PAGE_DTOR;
Wu Fengguang20a03072009-06-16 15:32:22 -07001841}
Naoya Horiguchi43131e12010-05-28 09:29:22 +09001842EXPORT_SYMBOL_GPL(PageHuge);
1843
Andrea Arcangeli27c73ae2013-11-21 14:32:02 -08001844/*
1845 * PageHeadHuge() only returns true for hugetlbfs head page, but not for
1846 * normal or transparent huge pages.
1847 */
1848int PageHeadHuge(struct page *page_head)
1849{
Andrea Arcangeli27c73ae2013-11-21 14:32:02 -08001850 if (!PageHead(page_head))
1851 return 0;
1852
Vlastimil Babkad4af73e2020-04-01 21:11:48 -07001853 return page_head[1].compound_dtor == HUGETLB_PAGE_DTOR;
Andrea Arcangeli27c73ae2013-11-21 14:32:02 -08001854}
Andrea Arcangeli27c73ae2013-11-21 14:32:02 -08001855
Mike Kravetzc0d03812020-04-01 21:11:05 -07001856/*
Mike Kravetzc0d03812020-04-01 21:11:05 -07001857 * Find and lock address space (mapping) in write mode.
1858 *
Mike Kravetz336bf302020-11-13 22:52:16 -08001859 * Upon entry, the page is locked which means that page_mapping() is
1860 * stable. Due to locking order, we can only trylock_write. If we can
1861 * not get the lock, simply return NULL to caller.
Mike Kravetzc0d03812020-04-01 21:11:05 -07001862 */
1863struct address_space *hugetlb_page_mapping_lock_write(struct page *hpage)
1864{
Mike Kravetz336bf302020-11-13 22:52:16 -08001865 struct address_space *mapping = page_mapping(hpage);
Mike Kravetzc0d03812020-04-01 21:11:05 -07001866
Mike Kravetzc0d03812020-04-01 21:11:05 -07001867 if (!mapping)
1868 return mapping;
1869
Mike Kravetzc0d03812020-04-01 21:11:05 -07001870 if (i_mmap_trylock_write(mapping))
1871 return mapping;
1872
Mike Kravetz336bf302020-11-13 22:52:16 -08001873 return NULL;
Mike Kravetzc0d03812020-04-01 21:11:05 -07001874}
1875
Hugh Dickinsfe19bd32021-06-24 18:39:52 -07001876pgoff_t hugetlb_basepage_index(struct page *page)
Zhang Yi13d60f42013-06-25 21:19:31 +08001877{
1878 struct page *page_head = compound_head(page);
1879 pgoff_t index = page_index(page_head);
1880 unsigned long compound_idx;
1881
Zhang Yi13d60f42013-06-25 21:19:31 +08001882 if (compound_order(page_head) >= MAX_ORDER)
1883 compound_idx = page_to_pfn(page) - page_to_pfn(page_head);
1884 else
1885 compound_idx = page - page_head;
1886
1887 return (index << compound_order(page_head)) + compound_idx;
1888}
1889
Michal Hocko0c397da2018-01-31 16:20:56 -08001890static struct page *alloc_buddy_huge_page(struct hstate *h,
Mike Kravetzf60858f2019-09-23 15:37:35 -07001891 gfp_t gfp_mask, int nid, nodemask_t *nmask,
1892 nodemask_t *node_alloc_noretry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893{
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001894 int order = huge_page_order(h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 struct page *page;
Mike Kravetzf60858f2019-09-23 15:37:35 -07001896 bool alloc_try_hard = true;
Joe Jinf96efd52007-07-15 23:38:12 -07001897
Mike Kravetzf60858f2019-09-23 15:37:35 -07001898 /*
1899 * By default we always try hard to allocate the page with
1900 * __GFP_RETRY_MAYFAIL flag. However, if we are allocating pages in
1901 * a loop (to adjust global huge page counts) and previous allocation
1902 * failed, do not continue to try hard on the same node. Use the
1903 * node_alloc_noretry bitmap to manage this state information.
1904 */
1905 if (node_alloc_noretry && node_isset(nid, *node_alloc_noretry))
1906 alloc_try_hard = false;
1907 gfp_mask |= __GFP_COMP|__GFP_NOWARN;
1908 if (alloc_try_hard)
1909 gfp_mask |= __GFP_RETRY_MAYFAIL;
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001910 if (nid == NUMA_NO_NODE)
1911 nid = numa_mem_id();
Matthew Wilcox (Oracle)84172f42021-04-29 23:01:15 -07001912 page = __alloc_pages(gfp_mask, order, nid, nmask);
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001913 if (page)
1914 __count_vm_event(HTLB_BUDDY_PGALLOC);
1915 else
1916 __count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
Nishanth Aravamudan63b46132007-10-16 01:26:24 -07001917
Mike Kravetzf60858f2019-09-23 15:37:35 -07001918 /*
1919 * If we did not specify __GFP_RETRY_MAYFAIL, but still got a page this
1920 * indicates an overall state change. Clear bit so that we resume
1921 * normal 'try hard' allocations.
1922 */
1923 if (node_alloc_noretry && page && !alloc_try_hard)
1924 node_clear(nid, *node_alloc_noretry);
1925
1926 /*
1927 * If we tried hard to get a page but failed, set bit so that
1928 * subsequent attempts will not try as hard until there is an
1929 * overall state change.
1930 */
1931 if (node_alloc_noretry && !page && alloc_try_hard)
1932 node_set(nid, *node_alloc_noretry);
1933
Nishanth Aravamudan63b46132007-10-16 01:26:24 -07001934 return page;
1935}
1936
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001937/*
Michal Hocko0c397da2018-01-31 16:20:56 -08001938 * Common helper to allocate a fresh hugetlb page. All specific allocators
1939 * should use this function to get new hugetlb pages
1940 */
1941static struct page *alloc_fresh_huge_page(struct hstate *h,
Mike Kravetzf60858f2019-09-23 15:37:35 -07001942 gfp_t gfp_mask, int nid, nodemask_t *nmask,
1943 nodemask_t *node_alloc_noretry)
Michal Hocko0c397da2018-01-31 16:20:56 -08001944{
1945 struct page *page;
Mike Kravetz7118fc22021-06-30 18:48:34 -07001946 bool retry = false;
Michal Hocko0c397da2018-01-31 16:20:56 -08001947
Mike Kravetz7118fc22021-06-30 18:48:34 -07001948retry:
Michal Hocko0c397da2018-01-31 16:20:56 -08001949 if (hstate_is_gigantic(h))
1950 page = alloc_gigantic_page(h, gfp_mask, nid, nmask);
1951 else
1952 page = alloc_buddy_huge_page(h, gfp_mask,
Mike Kravetzf60858f2019-09-23 15:37:35 -07001953 nid, nmask, node_alloc_noretry);
Michal Hocko0c397da2018-01-31 16:20:56 -08001954 if (!page)
1955 return NULL;
1956
Mike Kravetz7118fc22021-06-30 18:48:34 -07001957 if (hstate_is_gigantic(h)) {
1958 if (!prep_compound_gigantic_page(page, huge_page_order(h))) {
1959 /*
1960 * Rare failure to convert pages to compound page.
1961 * Free pages and try again - ONCE!
1962 */
1963 free_gigantic_page(page, huge_page_order(h));
1964 if (!retry) {
1965 retry = true;
1966 goto retry;
1967 }
Mike Kravetz7118fc22021-06-30 18:48:34 -07001968 return NULL;
1969 }
1970 }
Michal Hocko0c397da2018-01-31 16:20:56 -08001971 prep_new_huge_page(h, page, page_to_nid(page));
1972
1973 return page;
1974}
1975
1976/*
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001977 * Allocates a fresh page to the hugetlb allocator pool in the node interleaved
1978 * manner.
1979 */
Mike Kravetzf60858f2019-09-23 15:37:35 -07001980static int alloc_pool_huge_page(struct hstate *h, nodemask_t *nodes_allowed,
1981 nodemask_t *node_alloc_noretry)
Joonsoo Kimb2261022013-09-11 14:21:00 -07001982{
1983 struct page *page;
1984 int nr_nodes, node;
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001985 gfp_t gfp_mask = htlb_alloc_mask(h) | __GFP_THISNODE;
Joonsoo Kimb2261022013-09-11 14:21:00 -07001986
1987 for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
Mike Kravetzf60858f2019-09-23 15:37:35 -07001988 page = alloc_fresh_huge_page(h, gfp_mask, node, nodes_allowed,
1989 node_alloc_noretry);
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001990 if (page)
Joonsoo Kimb2261022013-09-11 14:21:00 -07001991 break;
Joonsoo Kimb2261022013-09-11 14:21:00 -07001992 }
1993
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001994 if (!page)
1995 return 0;
Joonsoo Kimb2261022013-09-11 14:21:00 -07001996
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08001997 put_page(page); /* free it into the hugepage allocator */
1998
1999 return 1;
Joonsoo Kimb2261022013-09-11 14:21:00 -07002000}
2001
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07002002/*
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002003 * Remove huge page from pool from next node to free. Attempt to keep
2004 * persistent huge pages more or less balanced over allowed nodes.
2005 * This routine only 'removes' the hugetlb page. The caller must make
2006 * an additional call to free the page to low level allocators.
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07002007 * Called with hugetlb_lock locked.
2008 */
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002009static struct page *remove_pool_huge_page(struct hstate *h,
2010 nodemask_t *nodes_allowed,
2011 bool acct_surplus)
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07002012{
Joonsoo Kimb2261022013-09-11 14:21:00 -07002013 int nr_nodes, node;
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002014 struct page *page = NULL;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07002015
Mike Kravetz9487ca62021-05-04 18:35:10 -07002016 lockdep_assert_held(&hugetlb_lock);
Joonsoo Kimb2261022013-09-11 14:21:00 -07002017 for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
Lee Schermerhorn685f3452009-09-21 17:01:23 -07002018 /*
2019 * If we're returning unused surplus pages, only examine
2020 * nodes with surplus pages.
2021 */
Joonsoo Kimb2261022013-09-11 14:21:00 -07002022 if ((!acct_surplus || h->surplus_huge_pages_node[node]) &&
2023 !list_empty(&h->hugepage_freelists[node])) {
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002024 page = list_entry(h->hugepage_freelists[node].next,
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07002025 struct page, lru);
Mike Kravetz6eb4e882021-05-04 18:34:55 -07002026 remove_hugetlb_page(h, page, acct_surplus);
Lee Schermerhorn9a76db02009-12-14 17:58:15 -08002027 break;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07002028 }
Joonsoo Kimb2261022013-09-11 14:21:00 -07002029 }
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07002030
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002031 return page;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07002032}
2033
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002034/*
2035 * Dissolve a given free hugepage into free buddy pages. This function does
Naoya Horiguchifaf53de2019-06-28 12:06:56 -07002036 * nothing for in-use hugepages and non-hugepages.
2037 * This function returns values like below:
2038 *
Muchun Songad2fa372021-06-30 18:47:21 -07002039 * -ENOMEM: failed to allocate vmemmap pages to free the freed hugepages
2040 * when the system is under memory pressure and the feature of
2041 * freeing unused vmemmap pages associated with each hugetlb page
2042 * is enabled.
2043 * -EBUSY: failed to dissolved free hugepages or the hugepage is in-use
2044 * (allocated or reserved.)
2045 * 0: successfully dissolved free hugepages or the page is not a
2046 * hugepage (considered as already dissolved)
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002047 */
Anshuman Khandualc3114a82017-07-10 15:47:41 -07002048int dissolve_free_huge_page(struct page *page)
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002049{
Naoya Horiguchi6bc9b562018-08-23 17:00:38 -07002050 int rc = -EBUSY;
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002051
Muchun Song7ffddd42021-02-04 18:32:06 -08002052retry:
Naoya Horiguchifaf53de2019-06-28 12:06:56 -07002053 /* Not to disrupt normal path by vainly holding hugetlb_lock */
2054 if (!PageHuge(page))
2055 return 0;
2056
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002057 spin_lock_irq(&hugetlb_lock);
Naoya Horiguchifaf53de2019-06-28 12:06:56 -07002058 if (!PageHuge(page)) {
2059 rc = 0;
2060 goto out;
2061 }
2062
2063 if (!page_count(page)) {
Gerald Schaefer2247bb32016-10-07 17:01:07 -07002064 struct page *head = compound_head(page);
2065 struct hstate *h = page_hstate(head);
Naoya Horiguchi6bc9b562018-08-23 17:00:38 -07002066 if (h->free_huge_pages - h->resv_huge_pages == 0)
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002067 goto out;
Muchun Song7ffddd42021-02-04 18:32:06 -08002068
2069 /*
2070 * We should make sure that the page is already on the free list
2071 * when it is dissolved.
2072 */
Mike Kravetz6c037142021-02-24 12:09:04 -08002073 if (unlikely(!HPageFreed(head))) {
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002074 spin_unlock_irq(&hugetlb_lock);
Muchun Song7ffddd42021-02-04 18:32:06 -08002075 cond_resched();
2076
2077 /*
2078 * Theoretically, we should return -EBUSY when we
2079 * encounter this race. In fact, we have a chance
2080 * to successfully dissolve the page if we do a
2081 * retry. Because the race window is quite small.
2082 * If we seize this opportunity, it is an optimization
2083 * for increasing the success rate of dissolving page.
2084 */
2085 goto retry;
2086 }
2087
Naoya Horiguchi0c5da352021-06-04 20:01:27 -07002088 remove_hugetlb_page(h, head, false);
zhong jiangc1470b32016-08-11 15:32:55 -07002089 h->max_huge_pages--;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002090 spin_unlock_irq(&hugetlb_lock);
Muchun Songad2fa372021-06-30 18:47:21 -07002091
2092 /*
2093 * Normally update_and_free_page will allocate required vmemmmap
2094 * before freeing the page. update_and_free_page will fail to
2095 * free the page if it can not allocate required vmemmap. We
2096 * need to adjust max_huge_pages if the page is not freed.
2097 * Attempt to allocate vmemmmap here so that we can take
2098 * appropriate action on failure.
2099 */
2100 rc = alloc_huge_page_vmemmap(h, head);
2101 if (!rc) {
2102 /*
2103 * Move PageHWPoison flag from head page to the raw
2104 * error page, which makes any subpages rather than
2105 * the error page reusable.
2106 */
2107 if (PageHWPoison(head) && page != head) {
2108 SetPageHWPoison(page);
2109 ClearPageHWPoison(head);
2110 }
2111 update_and_free_page(h, head, false);
2112 } else {
2113 spin_lock_irq(&hugetlb_lock);
2114 add_hugetlb_page(h, head, false);
2115 h->max_huge_pages++;
2116 spin_unlock_irq(&hugetlb_lock);
2117 }
2118
2119 return rc;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002120 }
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002121out:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002122 spin_unlock_irq(&hugetlb_lock);
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002123 return rc;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002124}
2125
2126/*
2127 * Dissolve free hugepages in a given pfn range. Used by memory hotplug to
2128 * make specified memory blocks removable from the system.
Gerald Schaefer2247bb32016-10-07 17:01:07 -07002129 * Note that this will dissolve a free gigantic hugepage completely, if any
2130 * part of it lies within the given range.
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002131 * Also note that if dissolve_free_huge_page() returns with an error, all
2132 * free hugepages that were dissolved before that error are lost.
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002133 */
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002134int dissolve_free_huge_pages(unsigned long start_pfn, unsigned long end_pfn)
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002135{
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002136 unsigned long pfn;
Gerald Schaefereb03aa02016-10-07 17:01:13 -07002137 struct page *page;
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002138 int rc = 0;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002139
Li Zhongd0177632014-08-06 16:07:56 -07002140 if (!hugepages_supported())
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002141 return rc;
Li Zhongd0177632014-08-06 16:07:56 -07002142
Gerald Schaefereb03aa02016-10-07 17:01:13 -07002143 for (pfn = start_pfn; pfn < end_pfn; pfn += 1 << minimum_order) {
2144 page = pfn_to_page(pfn);
Naoya Horiguchifaf53de2019-06-28 12:06:56 -07002145 rc = dissolve_free_huge_page(page);
2146 if (rc)
2147 break;
Gerald Schaefereb03aa02016-10-07 17:01:13 -07002148 }
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002149
2150 return rc;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002151}
2152
Michal Hockoab5ac902018-01-31 16:20:48 -08002153/*
2154 * Allocates a fresh surplus page from the page allocator.
2155 */
Michal Hocko0c397da2018-01-31 16:20:56 -08002156static struct page *alloc_surplus_huge_page(struct hstate *h, gfp_t gfp_mask,
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002157 int nid, nodemask_t *nmask, bool zero_ref)
Adam Litke7893d1d2007-10-16 01:26:18 -07002158{
Michal Hocko9980d742018-01-31 16:20:52 -08002159 struct page *page = NULL;
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002160 bool retry = false;
Adam Litke7893d1d2007-10-16 01:26:18 -07002161
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07002162 if (hstate_is_gigantic(h))
Andi Kleenaa888a72008-07-23 21:27:47 -07002163 return NULL;
2164
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002165 spin_lock_irq(&hugetlb_lock);
Michal Hocko9980d742018-01-31 16:20:52 -08002166 if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages)
2167 goto out_unlock;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002168 spin_unlock_irq(&hugetlb_lock);
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08002169
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002170retry:
Mike Kravetzf60858f2019-09-23 15:37:35 -07002171 page = alloc_fresh_huge_page(h, gfp_mask, nid, nmask, NULL);
Michal Hocko9980d742018-01-31 16:20:52 -08002172 if (!page)
Michal Hocko0c397da2018-01-31 16:20:56 -08002173 return NULL;
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08002174
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002175 spin_lock_irq(&hugetlb_lock);
Michal Hocko9980d742018-01-31 16:20:52 -08002176 /*
2177 * We could have raced with the pool size change.
2178 * Double check that and simply deallocate the new page
2179 * if we would end up overcommiting the surpluses. Abuse
2180 * temporary page to workaround the nasty free_huge_page
2181 * codeflow
2182 */
2183 if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages) {
Mike Kravetz9157c3112021-02-24 12:09:00 -08002184 SetHPageTemporary(page);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002185 spin_unlock_irq(&hugetlb_lock);
Michal Hocko9980d742018-01-31 16:20:52 -08002186 put_page(page);
Kai Shen2bf753e2019-05-13 17:15:37 -07002187 return NULL;
Adam Litke7893d1d2007-10-16 01:26:18 -07002188 }
Michal Hocko9980d742018-01-31 16:20:52 -08002189
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002190 if (zero_ref) {
2191 /*
2192 * Caller requires a page with zero ref count.
2193 * We will drop ref count here. If someone else is holding
2194 * a ref, the page will be freed when they drop it. Abuse
2195 * temporary page flag to accomplish this.
2196 */
2197 SetHPageTemporary(page);
2198 if (!put_page_testzero(page)) {
2199 /*
2200 * Unexpected inflated ref count on freshly allocated
2201 * huge. Retry once.
2202 */
2203 pr_info("HugeTLB unexpected inflated ref count on freshly allocated page\n");
2204 spin_unlock_irq(&hugetlb_lock);
2205 if (retry)
2206 return NULL;
2207
2208 retry = true;
2209 goto retry;
2210 }
2211 ClearHPageTemporary(page);
2212 }
2213
2214 h->surplus_huge_pages++;
2215 h->surplus_huge_pages_node[page_to_nid(page)]++;
2216
Michal Hocko9980d742018-01-31 16:20:52 -08002217out_unlock:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002218 spin_unlock_irq(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -07002219
2220 return page;
2221}
2222
Joonsoo Kimbbe88752020-08-11 18:37:38 -07002223static struct page *alloc_migrate_huge_page(struct hstate *h, gfp_t gfp_mask,
Aneesh Kumar K.V9a4e9f32019-03-05 15:47:44 -08002224 int nid, nodemask_t *nmask)
Michal Hockoab5ac902018-01-31 16:20:48 -08002225{
2226 struct page *page;
2227
2228 if (hstate_is_gigantic(h))
2229 return NULL;
2230
Mike Kravetzf60858f2019-09-23 15:37:35 -07002231 page = alloc_fresh_huge_page(h, gfp_mask, nid, nmask, NULL);
Michal Hockoab5ac902018-01-31 16:20:48 -08002232 if (!page)
2233 return NULL;
2234
2235 /*
2236 * We do not account these pages as surplus because they are only
2237 * temporary and will be released properly on the last reference
2238 */
Mike Kravetz9157c3112021-02-24 12:09:00 -08002239 SetHPageTemporary(page);
Michal Hockoab5ac902018-01-31 16:20:48 -08002240
2241 return page;
2242}
2243
Adam Litkee4e574b2007-10-16 01:26:19 -07002244/*
Dave Hansen099730d2015-11-05 18:50:17 -08002245 * Use the VMA's mpolicy to allocate a huge page from the buddy.
2246 */
Dave Hansene0ec90e2015-11-05 18:50:20 -08002247static
Michal Hocko0c397da2018-01-31 16:20:56 -08002248struct page *alloc_buddy_huge_page_with_mpol(struct hstate *h,
Dave Hansen099730d2015-11-05 18:50:17 -08002249 struct vm_area_struct *vma, unsigned long addr)
2250{
Ben Widawskycfcaa662021-09-02 15:00:13 -07002251 struct page *page = NULL;
Michal Hockoaaf14e42017-07-10 15:49:08 -07002252 struct mempolicy *mpol;
2253 gfp_t gfp_mask = htlb_alloc_mask(h);
2254 int nid;
2255 nodemask_t *nodemask;
2256
2257 nid = huge_node(vma, addr, gfp_mask, &mpol, &nodemask);
Ben Widawskycfcaa662021-09-02 15:00:13 -07002258 if (mpol_is_preferred_many(mpol)) {
2259 gfp_t gfp = gfp_mask | __GFP_NOWARN;
Michal Hockoaaf14e42017-07-10 15:49:08 -07002260
Ben Widawskycfcaa662021-09-02 15:00:13 -07002261 gfp &= ~(__GFP_DIRECT_RECLAIM | __GFP_NOFAIL);
2262 page = alloc_surplus_huge_page(h, gfp, nid, nodemask, false);
2263
2264 /* Fallback to all nodes if page==NULL */
2265 nodemask = NULL;
2266 }
2267
2268 if (!page)
2269 page = alloc_surplus_huge_page(h, gfp_mask, nid, nodemask, false);
2270 mpol_cond_put(mpol);
Michal Hockoaaf14e42017-07-10 15:49:08 -07002271 return page;
Dave Hansen099730d2015-11-05 18:50:17 -08002272}
2273
Michal Hockoab5ac902018-01-31 16:20:48 -08002274/* page migration callback function */
Michal Hocko3e59fcb2017-07-10 15:49:11 -07002275struct page *alloc_huge_page_nodemask(struct hstate *h, int preferred_nid,
Joonsoo Kimd92bbc22020-08-11 18:37:17 -07002276 nodemask_t *nmask, gfp_t gfp_mask)
Michal Hocko4db9b2e2017-07-10 15:48:44 -07002277{
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002278 spin_lock_irq(&hugetlb_lock);
Michal Hocko4db9b2e2017-07-10 15:48:44 -07002279 if (h->free_huge_pages - h->resv_huge_pages > 0) {
Michal Hocko3e59fcb2017-07-10 15:49:11 -07002280 struct page *page;
2281
2282 page = dequeue_huge_page_nodemask(h, gfp_mask, preferred_nid, nmask);
2283 if (page) {
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002284 spin_unlock_irq(&hugetlb_lock);
Michal Hocko3e59fcb2017-07-10 15:49:11 -07002285 return page;
Michal Hocko4db9b2e2017-07-10 15:48:44 -07002286 }
2287 }
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002288 spin_unlock_irq(&hugetlb_lock);
Michal Hocko4db9b2e2017-07-10 15:48:44 -07002289
Michal Hocko0c397da2018-01-31 16:20:56 -08002290 return alloc_migrate_huge_page(h, gfp_mask, preferred_nid, nmask);
Michal Hocko4db9b2e2017-07-10 15:48:44 -07002291}
2292
Michal Hockoebd63722018-01-31 16:21:00 -08002293/* mempolicy aware migration callback */
Michal Hocko389c8172018-01-31 16:21:03 -08002294struct page *alloc_huge_page_vma(struct hstate *h, struct vm_area_struct *vma,
2295 unsigned long address)
Michal Hockoebd63722018-01-31 16:21:00 -08002296{
2297 struct mempolicy *mpol;
2298 nodemask_t *nodemask;
2299 struct page *page;
Michal Hockoebd63722018-01-31 16:21:00 -08002300 gfp_t gfp_mask;
2301 int node;
2302
Michal Hockoebd63722018-01-31 16:21:00 -08002303 gfp_mask = htlb_alloc_mask(h);
2304 node = huge_node(vma, address, gfp_mask, &mpol, &nodemask);
Joonsoo Kimd92bbc22020-08-11 18:37:17 -07002305 page = alloc_huge_page_nodemask(h, node, nodemask, gfp_mask);
Michal Hockoebd63722018-01-31 16:21:00 -08002306 mpol_cond_put(mpol);
2307
2308 return page;
2309}
2310
Naoya Horiguchibf50bab2010-09-08 10:19:33 +09002311/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002312 * Increase the hugetlb pool such that it can accommodate a reservation
Adam Litkee4e574b2007-10-16 01:26:19 -07002313 * of size 'delta'.
2314 */
Liu Xiang0a4f3d12020-12-14 19:12:05 -08002315static int gather_surplus_pages(struct hstate *h, long delta)
Jules Irenge1b2a1e72020-04-06 20:08:09 -07002316 __must_hold(&hugetlb_lock)
Adam Litkee4e574b2007-10-16 01:26:19 -07002317{
2318 struct list_head surplus_list;
2319 struct page *page, *tmp;
Liu Xiang0a4f3d12020-12-14 19:12:05 -08002320 int ret;
2321 long i;
2322 long needed, allocated;
Hillf Danton28073b02012-03-21 16:34:00 -07002323 bool alloc_ok = true;
Adam Litkee4e574b2007-10-16 01:26:19 -07002324
Mike Kravetz9487ca62021-05-04 18:35:10 -07002325 lockdep_assert_held(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -07002326 needed = (h->resv_huge_pages + delta) - h->free_huge_pages;
Adam Litkeac09b3a2008-03-04 14:29:38 -08002327 if (needed <= 0) {
Andi Kleena5516432008-07-23 21:27:41 -07002328 h->resv_huge_pages += delta;
Adam Litkee4e574b2007-10-16 01:26:19 -07002329 return 0;
Adam Litkeac09b3a2008-03-04 14:29:38 -08002330 }
Adam Litkee4e574b2007-10-16 01:26:19 -07002331
2332 allocated = 0;
2333 INIT_LIST_HEAD(&surplus_list);
2334
2335 ret = -ENOMEM;
2336retry:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002337 spin_unlock_irq(&hugetlb_lock);
Adam Litkee4e574b2007-10-16 01:26:19 -07002338 for (i = 0; i < needed; i++) {
Michal Hocko0c397da2018-01-31 16:20:56 -08002339 page = alloc_surplus_huge_page(h, htlb_alloc_mask(h),
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002340 NUMA_NO_NODE, NULL, true);
Hillf Danton28073b02012-03-21 16:34:00 -07002341 if (!page) {
2342 alloc_ok = false;
2343 break;
2344 }
Adam Litkee4e574b2007-10-16 01:26:19 -07002345 list_add(&page->lru, &surplus_list);
David Rientjes69ed7792017-07-10 15:48:50 -07002346 cond_resched();
Adam Litkee4e574b2007-10-16 01:26:19 -07002347 }
Hillf Danton28073b02012-03-21 16:34:00 -07002348 allocated += i;
Adam Litkee4e574b2007-10-16 01:26:19 -07002349
2350 /*
2351 * After retaking hugetlb_lock, we need to recalculate 'needed'
2352 * because either resv_huge_pages or free_huge_pages may have changed.
2353 */
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002354 spin_lock_irq(&hugetlb_lock);
Andi Kleena5516432008-07-23 21:27:41 -07002355 needed = (h->resv_huge_pages + delta) -
2356 (h->free_huge_pages + allocated);
Hillf Danton28073b02012-03-21 16:34:00 -07002357 if (needed > 0) {
2358 if (alloc_ok)
2359 goto retry;
2360 /*
2361 * We were not able to allocate enough pages to
2362 * satisfy the entire reservation so we free what
2363 * we've allocated so far.
2364 */
2365 goto free;
2366 }
Adam Litkee4e574b2007-10-16 01:26:19 -07002367 /*
2368 * The surplus_list now contains _at_least_ the number of extra pages
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002369 * needed to accommodate the reservation. Add the appropriate number
Adam Litkee4e574b2007-10-16 01:26:19 -07002370 * of pages to the hugetlb pool and free the extras back to the buddy
Adam Litkeac09b3a2008-03-04 14:29:38 -08002371 * allocator. Commit the entire reservation here to prevent another
2372 * process from stealing the pages as they are added to the pool but
2373 * before they are reserved.
Adam Litkee4e574b2007-10-16 01:26:19 -07002374 */
2375 needed += allocated;
Andi Kleena5516432008-07-23 21:27:41 -07002376 h->resv_huge_pages += delta;
Adam Litkee4e574b2007-10-16 01:26:19 -07002377 ret = 0;
Naoya Horiguchia9869b82010-09-08 10:19:37 +09002378
Adam Litke19fc3f02008-04-28 02:12:20 -07002379 /* Free the needed pages to the hugetlb pool */
Adam Litkee4e574b2007-10-16 01:26:19 -07002380 list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
Adam Litke19fc3f02008-04-28 02:12:20 -07002381 if ((--needed) < 0)
2382 break;
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002383 /* Add the page to the hugetlb allocator */
Andi Kleena5516432008-07-23 21:27:41 -07002384 enqueue_huge_page(h, page);
Adam Litke19fc3f02008-04-28 02:12:20 -07002385 }
Hillf Danton28073b02012-03-21 16:34:00 -07002386free:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002387 spin_unlock_irq(&hugetlb_lock);
Adam Litke19fc3f02008-04-28 02:12:20 -07002388
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002389 /*
2390 * Free unnecessary surplus pages to the buddy allocator.
2391 * Pages have no ref count, call free_huge_page directly.
2392 */
Joonsoo Kimc0d934b2013-09-11 14:21:02 -07002393 list_for_each_entry_safe(page, tmp, &surplus_list, lru)
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002394 free_huge_page(page);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002395 spin_lock_irq(&hugetlb_lock);
Adam Litkee4e574b2007-10-16 01:26:19 -07002396
2397 return ret;
2398}
2399
2400/*
Mike Kravetze5bbc8a2017-01-10 16:58:27 -08002401 * This routine has two main purposes:
2402 * 1) Decrement the reservation count (resv_huge_pages) by the value passed
2403 * in unused_resv_pages. This corresponds to the prior adjustments made
2404 * to the associated reservation map.
2405 * 2) Free any unused surplus pages that may have been allocated to satisfy
2406 * the reservation. As many as unused_resv_pages may be freed.
Adam Litkee4e574b2007-10-16 01:26:19 -07002407 */
Andi Kleena5516432008-07-23 21:27:41 -07002408static void return_unused_surplus_pages(struct hstate *h,
2409 unsigned long unused_resv_pages)
Adam Litkee4e574b2007-10-16 01:26:19 -07002410{
Adam Litkee4e574b2007-10-16 01:26:19 -07002411 unsigned long nr_pages;
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002412 struct page *page;
2413 LIST_HEAD(page_list);
2414
Mike Kravetz9487ca62021-05-04 18:35:10 -07002415 lockdep_assert_held(&hugetlb_lock);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002416 /* Uncommit the reservation */
2417 h->resv_huge_pages -= unused_resv_pages;
Adam Litkee4e574b2007-10-16 01:26:19 -07002418
Andi Kleenaa888a72008-07-23 21:27:47 -07002419 /* Cannot return gigantic pages currently */
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07002420 if (hstate_is_gigantic(h))
Mike Kravetze5bbc8a2017-01-10 16:58:27 -08002421 goto out;
Andi Kleenaa888a72008-07-23 21:27:47 -07002422
Mike Kravetze5bbc8a2017-01-10 16:58:27 -08002423 /*
2424 * Part (or even all) of the reservation could have been backed
2425 * by pre-allocated pages. Only free surplus pages.
2426 */
Andi Kleena5516432008-07-23 21:27:41 -07002427 nr_pages = min(unused_resv_pages, h->surplus_huge_pages);
Adam Litkee4e574b2007-10-16 01:26:19 -07002428
Lee Schermerhorn685f3452009-09-21 17:01:23 -07002429 /*
2430 * We want to release as many surplus pages as possible, spread
Lee Schermerhorn9b5e5d02009-12-14 17:58:32 -08002431 * evenly across all nodes with memory. Iterate across these nodes
2432 * until we can no longer free unreserved surplus pages. This occurs
2433 * when the nodes with surplus pages have no free pages.
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002434 * remove_pool_huge_page() will balance the freed pages across the
Lee Schermerhorn9b5e5d02009-12-14 17:58:32 -08002435 * on-line nodes with memory and will handle the hstate accounting.
Lee Schermerhorn685f3452009-09-21 17:01:23 -07002436 */
2437 while (nr_pages--) {
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002438 page = remove_pool_huge_page(h, &node_states[N_MEMORY], 1);
2439 if (!page)
Mike Kravetze5bbc8a2017-01-10 16:58:27 -08002440 goto out;
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002441
2442 list_add(&page->lru, &page_list);
Adam Litkee4e574b2007-10-16 01:26:19 -07002443 }
Mike Kravetze5bbc8a2017-01-10 16:58:27 -08002444
2445out:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002446 spin_unlock_irq(&hugetlb_lock);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07002447 update_and_free_pages_bulk(h, &page_list);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002448 spin_lock_irq(&hugetlb_lock);
Adam Litkee4e574b2007-10-16 01:26:19 -07002449}
2450
Mike Kravetz5e911372015-09-08 15:01:28 -07002451
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002452/*
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002453 * vma_needs_reservation, vma_commit_reservation and vma_end_reservation
Mike Kravetz5e911372015-09-08 15:01:28 -07002454 * are used by the huge page allocation routines to manage reservations.
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002455 *
2456 * vma_needs_reservation is called to determine if the huge page at addr
2457 * within the vma has an associated reservation. If a reservation is
2458 * needed, the value 1 is returned. The caller is then responsible for
2459 * managing the global reservation and subpool usage counts. After
2460 * the huge page has been allocated, vma_commit_reservation is called
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002461 * to add the page to the reservation map. If the page allocation fails,
2462 * the reservation must be ended instead of committed. vma_end_reservation
2463 * is called in such cases.
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002464 *
2465 * In the normal case, vma_commit_reservation returns the same value
2466 * as the preceding vma_needs_reservation call. The only time this
2467 * is not the case is if a reserve map was changed between calls. It
2468 * is the responsibility of the caller to notice the difference and
2469 * take appropriate action.
Mike Kravetz96b96a92016-11-10 10:46:32 -08002470 *
2471 * vma_add_reservation is used in error paths where a reservation must
2472 * be restored when a newly allocated huge page must be freed. It is
2473 * to be called after calling vma_needs_reservation to determine if a
2474 * reservation exists.
Mike Kravetz846be082021-06-15 18:23:29 -07002475 *
2476 * vma_del_reservation is used in error paths where an entry in the reserve
2477 * map was created during huge page allocation and must be removed. It is to
2478 * be called after calling vma_needs_reservation to determine if a reservation
2479 * exists.
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002480 */
Mike Kravetz5e911372015-09-08 15:01:28 -07002481enum vma_resv_mode {
2482 VMA_NEEDS_RESV,
2483 VMA_COMMIT_RESV,
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002484 VMA_END_RESV,
Mike Kravetz96b96a92016-11-10 10:46:32 -08002485 VMA_ADD_RESV,
Mike Kravetz846be082021-06-15 18:23:29 -07002486 VMA_DEL_RESV,
Mike Kravetz5e911372015-09-08 15:01:28 -07002487};
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002488static long __vma_reservation_common(struct hstate *h,
2489 struct vm_area_struct *vma, unsigned long addr,
Mike Kravetz5e911372015-09-08 15:01:28 -07002490 enum vma_resv_mode mode)
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002491{
Joonsoo Kim4e35f482014-04-03 14:47:30 -07002492 struct resv_map *resv;
2493 pgoff_t idx;
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002494 long ret;
Mina Almasry0db9d742020-04-01 21:11:25 -07002495 long dummy_out_regions_needed;
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002496
Joonsoo Kim4e35f482014-04-03 14:47:30 -07002497 resv = vma_resv_map(vma);
2498 if (!resv)
Andy Whitcroft84afd992008-07-23 21:27:32 -07002499 return 1;
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002500
Joonsoo Kim4e35f482014-04-03 14:47:30 -07002501 idx = vma_hugecache_offset(h, vma, addr);
Mike Kravetz5e911372015-09-08 15:01:28 -07002502 switch (mode) {
2503 case VMA_NEEDS_RESV:
Mina Almasry0db9d742020-04-01 21:11:25 -07002504 ret = region_chg(resv, idx, idx + 1, &dummy_out_regions_needed);
2505 /* We assume that vma_reservation_* routines always operate on
2506 * 1 page, and that adding to resv map a 1 page entry can only
2507 * ever require 1 region.
2508 */
2509 VM_BUG_ON(dummy_out_regions_needed != 1);
Mike Kravetz5e911372015-09-08 15:01:28 -07002510 break;
2511 case VMA_COMMIT_RESV:
Mina Almasry075a61d2020-04-01 21:11:28 -07002512 ret = region_add(resv, idx, idx + 1, 1, NULL, NULL);
Mina Almasry0db9d742020-04-01 21:11:25 -07002513 /* region_add calls of range 1 should never fail. */
2514 VM_BUG_ON(ret < 0);
Mike Kravetz5e911372015-09-08 15:01:28 -07002515 break;
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002516 case VMA_END_RESV:
Mina Almasry0db9d742020-04-01 21:11:25 -07002517 region_abort(resv, idx, idx + 1, 1);
Mike Kravetz5e911372015-09-08 15:01:28 -07002518 ret = 0;
2519 break;
Mike Kravetz96b96a92016-11-10 10:46:32 -08002520 case VMA_ADD_RESV:
Mina Almasry0db9d742020-04-01 21:11:25 -07002521 if (vma->vm_flags & VM_MAYSHARE) {
Mina Almasry075a61d2020-04-01 21:11:28 -07002522 ret = region_add(resv, idx, idx + 1, 1, NULL, NULL);
Mina Almasry0db9d742020-04-01 21:11:25 -07002523 /* region_add calls of range 1 should never fail. */
2524 VM_BUG_ON(ret < 0);
2525 } else {
2526 region_abort(resv, idx, idx + 1, 1);
Mike Kravetz96b96a92016-11-10 10:46:32 -08002527 ret = region_del(resv, idx, idx + 1);
2528 }
2529 break;
Mike Kravetz846be082021-06-15 18:23:29 -07002530 case VMA_DEL_RESV:
2531 if (vma->vm_flags & VM_MAYSHARE) {
2532 region_abort(resv, idx, idx + 1, 1);
2533 ret = region_del(resv, idx, idx + 1);
2534 } else {
2535 ret = region_add(resv, idx, idx + 1, 1, NULL, NULL);
2536 /* region_add calls of range 1 should never fail. */
2537 VM_BUG_ON(ret < 0);
2538 }
2539 break;
Mike Kravetz5e911372015-09-08 15:01:28 -07002540 default:
2541 BUG();
2542 }
Andy Whitcroft84afd992008-07-23 21:27:32 -07002543
Mike Kravetz846be082021-06-15 18:23:29 -07002544 if (vma->vm_flags & VM_MAYSHARE || mode == VMA_DEL_RESV)
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002545 return ret;
Miaohe Linbf3d12b2021-05-04 18:34:32 -07002546 /*
2547 * We know private mapping must have HPAGE_RESV_OWNER set.
2548 *
2549 * In most cases, reserves always exist for private mappings.
2550 * However, a file associated with mapping could have been
2551 * hole punched or truncated after reserves were consumed.
2552 * As subsequent fault on such a range will not use reserves.
2553 * Subtle - The reserve map for private mappings has the
2554 * opposite meaning than that of shared mappings. If NO
2555 * entry is in the reserve map, it means a reservation exists.
2556 * If an entry exists in the reserve map, it means the
2557 * reservation has already been consumed. As a result, the
2558 * return value of this routine is the opposite of the
2559 * value returned from reserve map manipulation routines above.
2560 */
2561 if (ret > 0)
2562 return 0;
2563 if (ret == 0)
2564 return 1;
2565 return ret;
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002566}
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002567
2568static long vma_needs_reservation(struct hstate *h,
Andi Kleena5516432008-07-23 21:27:41 -07002569 struct vm_area_struct *vma, unsigned long addr)
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002570{
Mike Kravetz5e911372015-09-08 15:01:28 -07002571 return __vma_reservation_common(h, vma, addr, VMA_NEEDS_RESV);
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002572}
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002573
Mike Kravetzcf3ad202015-06-24 16:57:55 -07002574static long vma_commit_reservation(struct hstate *h,
2575 struct vm_area_struct *vma, unsigned long addr)
2576{
Mike Kravetz5e911372015-09-08 15:01:28 -07002577 return __vma_reservation_common(h, vma, addr, VMA_COMMIT_RESV);
2578}
2579
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002580static void vma_end_reservation(struct hstate *h,
Mike Kravetz5e911372015-09-08 15:01:28 -07002581 struct vm_area_struct *vma, unsigned long addr)
2582{
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002583 (void)__vma_reservation_common(h, vma, addr, VMA_END_RESV);
Andy Whitcroftc37f9fb2008-07-23 21:27:30 -07002584}
2585
Mike Kravetz96b96a92016-11-10 10:46:32 -08002586static long vma_add_reservation(struct hstate *h,
2587 struct vm_area_struct *vma, unsigned long addr)
2588{
2589 return __vma_reservation_common(h, vma, addr, VMA_ADD_RESV);
2590}
2591
Mike Kravetz846be082021-06-15 18:23:29 -07002592static long vma_del_reservation(struct hstate *h,
2593 struct vm_area_struct *vma, unsigned long addr)
Mike Kravetz96b96a92016-11-10 10:46:32 -08002594{
Mike Kravetz846be082021-06-15 18:23:29 -07002595 return __vma_reservation_common(h, vma, addr, VMA_DEL_RESV);
2596}
Mike Kravetz96b96a92016-11-10 10:46:32 -08002597
Mike Kravetz846be082021-06-15 18:23:29 -07002598/*
2599 * This routine is called to restore reservation information on error paths.
2600 * It should ONLY be called for pages allocated via alloc_huge_page(), and
2601 * the hugetlb mutex should remain held when calling this routine.
2602 *
2603 * It handles two specific cases:
2604 * 1) A reservation was in place and the page consumed the reservation.
2605 * HPageRestoreReserve is set in the page.
2606 * 2) No reservation was in place for the page, so HPageRestoreReserve is
2607 * not set. However, alloc_huge_page always updates the reserve map.
2608 *
2609 * In case 1, free_huge_page later in the error path will increment the
2610 * global reserve count. But, free_huge_page does not have enough context
2611 * to adjust the reservation map. This case deals primarily with private
2612 * mappings. Adjust the reserve map here to be consistent with global
2613 * reserve count adjustments to be made by free_huge_page. Make sure the
2614 * reserve map indicates there is a reservation present.
2615 *
2616 * In case 2, simply undo reserve map modifications done by alloc_huge_page.
2617 */
2618void restore_reserve_on_error(struct hstate *h, struct vm_area_struct *vma,
2619 unsigned long address, struct page *page)
2620{
2621 long rc = vma_needs_reservation(h, vma, address);
2622
2623 if (HPageRestoreReserve(page)) {
2624 if (unlikely(rc < 0))
Mike Kravetz96b96a92016-11-10 10:46:32 -08002625 /*
2626 * Rare out of memory condition in reserve map
Mike Kravetzd6995da2021-02-24 12:08:51 -08002627 * manipulation. Clear HPageRestoreReserve so that
Mike Kravetz96b96a92016-11-10 10:46:32 -08002628 * global reserve count will not be incremented
2629 * by free_huge_page. This will make it appear
2630 * as though the reservation for this page was
2631 * consumed. This may prevent the task from
2632 * faulting in the page at a later time. This
2633 * is better than inconsistent global huge page
2634 * accounting of reserve counts.
2635 */
Mike Kravetzd6995da2021-02-24 12:08:51 -08002636 ClearHPageRestoreReserve(page);
Mike Kravetz846be082021-06-15 18:23:29 -07002637 else if (rc)
2638 (void)vma_add_reservation(h, vma, address);
2639 else
Mike Kravetz96b96a92016-11-10 10:46:32 -08002640 vma_end_reservation(h, vma, address);
Mike Kravetz846be082021-06-15 18:23:29 -07002641 } else {
2642 if (!rc) {
2643 /*
2644 * This indicates there is an entry in the reserve map
Mike Kravetzc7b18502021-08-19 19:04:33 -07002645 * not added by alloc_huge_page. We know it was added
Mike Kravetz846be082021-06-15 18:23:29 -07002646 * before the alloc_huge_page call, otherwise
2647 * HPageRestoreReserve would be set on the page.
2648 * Remove the entry so that a subsequent allocation
2649 * does not consume a reservation.
2650 */
2651 rc = vma_del_reservation(h, vma, address);
2652 if (rc < 0)
2653 /*
2654 * VERY rare out of memory condition. Since
2655 * we can not delete the entry, set
2656 * HPageRestoreReserve so that the reserve
2657 * count will be incremented when the page
2658 * is freed. This reserve will be consumed
2659 * on a subsequent allocation.
2660 */
2661 SetHPageRestoreReserve(page);
2662 } else if (rc < 0) {
2663 /*
2664 * Rare out of memory condition from
2665 * vma_needs_reservation call. Memory allocation is
2666 * only attempted if a new entry is needed. Therefore,
2667 * this implies there is not an entry in the
2668 * reserve map.
2669 *
2670 * For shared mappings, no entry in the map indicates
2671 * no reservation. We are done.
2672 */
2673 if (!(vma->vm_flags & VM_MAYSHARE))
2674 /*
2675 * For private mappings, no entry indicates
2676 * a reservation is present. Since we can
2677 * not add an entry, set SetHPageRestoreReserve
2678 * on the page so reserve count will be
2679 * incremented when freed. This reserve will
2680 * be consumed on a subsequent allocation.
2681 */
2682 SetHPageRestoreReserve(page);
2683 } else
2684 /*
2685 * No reservation present, do nothing
2686 */
2687 vma_end_reservation(h, vma, address);
Mike Kravetz96b96a92016-11-10 10:46:32 -08002688 }
2689}
2690
Oscar Salvador369fa222021-05-04 18:35:26 -07002691/*
2692 * alloc_and_dissolve_huge_page - Allocate a new page and dissolve the old one
2693 * @h: struct hstate old page belongs to
2694 * @old_page: Old page to dissolve
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002695 * @list: List to isolate the page in case we need to
Oscar Salvador369fa222021-05-04 18:35:26 -07002696 * Returns 0 on success, otherwise negated error.
2697 */
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002698static int alloc_and_dissolve_huge_page(struct hstate *h, struct page *old_page,
2699 struct list_head *list)
Oscar Salvador369fa222021-05-04 18:35:26 -07002700{
2701 gfp_t gfp_mask = htlb_alloc_mask(h) | __GFP_THISNODE;
2702 int nid = page_to_nid(old_page);
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002703 bool alloc_retry = false;
Oscar Salvador369fa222021-05-04 18:35:26 -07002704 struct page *new_page;
2705 int ret = 0;
2706
2707 /*
2708 * Before dissolving the page, we need to allocate a new one for the
Muchun Songf41f2ed2021-06-30 18:47:13 -07002709 * pool to remain stable. Here, we allocate the page and 'prep' it
2710 * by doing everything but actually updating counters and adding to
2711 * the pool. This simplifies and let us do most of the processing
2712 * under the lock.
Oscar Salvador369fa222021-05-04 18:35:26 -07002713 */
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002714alloc_retry:
Oscar Salvador369fa222021-05-04 18:35:26 -07002715 new_page = alloc_buddy_huge_page(h, gfp_mask, nid, NULL, NULL);
2716 if (!new_page)
2717 return -ENOMEM;
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002718 /*
2719 * If all goes well, this page will be directly added to the free
2720 * list in the pool. For this the ref count needs to be zero.
2721 * Attempt to drop now, and retry once if needed. It is VERY
2722 * unlikely there is another ref on the page.
2723 *
2724 * If someone else has a reference to the page, it will be freed
2725 * when they drop their ref. Abuse temporary page flag to accomplish
2726 * this. Retry once if there is an inflated ref count.
2727 */
2728 SetHPageTemporary(new_page);
2729 if (!put_page_testzero(new_page)) {
2730 if (alloc_retry)
2731 return -EBUSY;
2732
2733 alloc_retry = true;
2734 goto alloc_retry;
2735 }
2736 ClearHPageTemporary(new_page);
2737
Muchun Songf41f2ed2021-06-30 18:47:13 -07002738 __prep_new_huge_page(h, new_page);
Oscar Salvador369fa222021-05-04 18:35:26 -07002739
2740retry:
2741 spin_lock_irq(&hugetlb_lock);
2742 if (!PageHuge(old_page)) {
2743 /*
2744 * Freed from under us. Drop new_page too.
2745 */
2746 goto free_new;
2747 } else if (page_count(old_page)) {
2748 /*
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002749 * Someone has grabbed the page, try to isolate it here.
2750 * Fail with -EBUSY if not possible.
Oscar Salvador369fa222021-05-04 18:35:26 -07002751 */
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002752 spin_unlock_irq(&hugetlb_lock);
2753 if (!isolate_huge_page(old_page, list))
2754 ret = -EBUSY;
2755 spin_lock_irq(&hugetlb_lock);
Oscar Salvador369fa222021-05-04 18:35:26 -07002756 goto free_new;
2757 } else if (!HPageFreed(old_page)) {
2758 /*
2759 * Page's refcount is 0 but it has not been enqueued in the
2760 * freelist yet. Race window is small, so we can succeed here if
2761 * we retry.
2762 */
2763 spin_unlock_irq(&hugetlb_lock);
2764 cond_resched();
2765 goto retry;
2766 } else {
2767 /*
2768 * Ok, old_page is still a genuine free hugepage. Remove it from
2769 * the freelist and decrease the counters. These will be
2770 * incremented again when calling __prep_account_new_huge_page()
2771 * and enqueue_huge_page() for new_page. The counters will remain
2772 * stable since this happens under the lock.
2773 */
2774 remove_hugetlb_page(h, old_page, false);
2775
2776 /*
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002777 * Ref count on new page is already zero as it was dropped
2778 * earlier. It can be directly added to the pool free list.
Oscar Salvador369fa222021-05-04 18:35:26 -07002779 */
Oscar Salvador369fa222021-05-04 18:35:26 -07002780 __prep_account_new_huge_page(h, nid);
Oscar Salvador369fa222021-05-04 18:35:26 -07002781 enqueue_huge_page(h, new_page);
2782
2783 /*
2784 * Pages have been replaced, we can safely free the old one.
2785 */
2786 spin_unlock_irq(&hugetlb_lock);
Muchun Songb65d4ad2021-06-30 18:47:17 -07002787 update_and_free_page(h, old_page, false);
Oscar Salvador369fa222021-05-04 18:35:26 -07002788 }
2789
2790 return ret;
2791
2792free_new:
2793 spin_unlock_irq(&hugetlb_lock);
Mike Kravetzb65a4ed2021-09-02 14:58:47 -07002794 /* Page has a zero ref count, but needs a ref to be freed */
2795 set_page_refcounted(new_page);
Muchun Songb65d4ad2021-06-30 18:47:17 -07002796 update_and_free_page(h, new_page, false);
Oscar Salvador369fa222021-05-04 18:35:26 -07002797
2798 return ret;
2799}
2800
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002801int isolate_or_dissolve_huge_page(struct page *page, struct list_head *list)
Oscar Salvador369fa222021-05-04 18:35:26 -07002802{
2803 struct hstate *h;
2804 struct page *head;
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002805 int ret = -EBUSY;
Oscar Salvador369fa222021-05-04 18:35:26 -07002806
2807 /*
2808 * The page might have been dissolved from under our feet, so make sure
2809 * to carefully check the state under the lock.
2810 * Return success when racing as if we dissolved the page ourselves.
2811 */
2812 spin_lock_irq(&hugetlb_lock);
2813 if (PageHuge(page)) {
2814 head = compound_head(page);
2815 h = page_hstate(head);
2816 } else {
2817 spin_unlock_irq(&hugetlb_lock);
2818 return 0;
2819 }
2820 spin_unlock_irq(&hugetlb_lock);
2821
2822 /*
2823 * Fence off gigantic pages as there is a cyclic dependency between
2824 * alloc_contig_range and them. Return -ENOMEM as this has the effect
2825 * of bailing out right away without further retrying.
2826 */
2827 if (hstate_is_gigantic(h))
2828 return -ENOMEM;
2829
Oscar Salvadorae37c7f2021-05-04 18:35:29 -07002830 if (page_count(head) && isolate_huge_page(head, list))
2831 ret = 0;
2832 else if (!page_count(head))
2833 ret = alloc_and_dissolve_huge_page(h, head, list);
2834
2835 return ret;
Oscar Salvador369fa222021-05-04 18:35:26 -07002836}
2837
Mike Kravetz70c35472015-09-08 15:01:54 -07002838struct page *alloc_huge_page(struct vm_area_struct *vma,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07002839 unsigned long addr, int avoid_reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840{
David Gibson90481622012-03-21 16:34:12 -07002841 struct hugepage_subpool *spool = subpool_vma(vma);
Andi Kleena5516432008-07-23 21:27:41 -07002842 struct hstate *h = hstate_vma(vma);
Adam Litke348ea202007-11-14 16:59:37 -08002843 struct page *page;
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002844 long map_chg, map_commit;
2845 long gbl_chg;
Aneesh Kumar K.V6d76dcf2012-07-31 16:42:18 -07002846 int ret, idx;
2847 struct hugetlb_cgroup *h_cg;
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002848 bool deferred_reserve;
Adam Litke2fc39ce2007-11-14 16:59:39 -08002849
Aneesh Kumar K.V6d76dcf2012-07-31 16:42:18 -07002850 idx = hstate_index(h);
Mel Gormana1e78772008-07-23 21:27:23 -07002851 /*
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002852 * Examine the region/reserve map to determine if the process
2853 * has a reservation for the page to be allocated. A return
2854 * code of zero indicates a reservation exists (no change).
Mel Gormana1e78772008-07-23 21:27:23 -07002855 */
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002856 map_chg = gbl_chg = vma_needs_reservation(h, vma, addr);
2857 if (map_chg < 0)
Aneesh Kumar K.V76dcee72012-07-31 16:41:57 -07002858 return ERR_PTR(-ENOMEM);
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002859
2860 /*
2861 * Processes that did not create the mapping will have no
2862 * reserves as indicated by the region/reserve map. Check
2863 * that the allocation will not exceed the subpool limit.
2864 * Allocations for MAP_NORESERVE mappings also need to be
2865 * checked against any subpool limit.
2866 */
2867 if (map_chg || avoid_reserve) {
2868 gbl_chg = hugepage_subpool_get_pages(spool, 1);
2869 if (gbl_chg < 0) {
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002870 vma_end_reservation(h, vma, addr);
Aneesh Kumar K.V76dcee72012-07-31 16:41:57 -07002871 return ERR_PTR(-ENOSPC);
Mike Kravetz5e911372015-09-08 15:01:28 -07002872 }
Mel Gormana1e78772008-07-23 21:27:23 -07002873
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002874 /*
2875 * Even though there was no reservation in the region/reserve
2876 * map, there could be reservations associated with the
2877 * subpool that can be used. This would be indicated if the
2878 * return value of hugepage_subpool_get_pages() is zero.
2879 * However, if avoid_reserve is specified we still avoid even
2880 * the subpool reservations.
2881 */
2882 if (avoid_reserve)
2883 gbl_chg = 1;
2884 }
2885
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002886 /* If this allocation is not consuming a reservation, charge it now.
2887 */
Miaohe Lin6501fe52021-05-04 18:33:16 -07002888 deferred_reserve = map_chg || avoid_reserve;
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002889 if (deferred_reserve) {
2890 ret = hugetlb_cgroup_charge_cgroup_rsvd(
2891 idx, pages_per_huge_page(h), &h_cg);
2892 if (ret)
2893 goto out_subpool_put;
2894 }
2895
Aneesh Kumar K.V6d76dcf2012-07-31 16:42:18 -07002896 ret = hugetlb_cgroup_charge_cgroup(idx, pages_per_huge_page(h), &h_cg);
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002897 if (ret)
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002898 goto out_uncharge_cgroup_reservation;
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002899
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002900 spin_lock_irq(&hugetlb_lock);
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002901 /*
2902 * glb_chg is passed to indicate whether or not a page must be taken
2903 * from the global free pool (global change). gbl_chg == 0 indicates
2904 * a reservation exists for the allocation.
2905 */
2906 page = dequeue_huge_page_vma(h, vma, addr, avoid_reserve, gbl_chg);
Joonsoo Kim81a6fca2013-09-11 14:20:58 -07002907 if (!page) {
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002908 spin_unlock_irq(&hugetlb_lock);
Michal Hocko0c397da2018-01-31 16:20:56 -08002909 page = alloc_buddy_huge_page_with_mpol(h, vma, addr);
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002910 if (!page)
2911 goto out_uncharge_cgroup;
Naoya Horiguchia88c7692015-12-11 13:40:24 -08002912 if (!avoid_reserve && vma_has_reserves(vma, gbl_chg)) {
Mike Kravetzd6995da2021-02-24 12:08:51 -08002913 SetHPageRestoreReserve(page);
Naoya Horiguchia88c7692015-12-11 13:40:24 -08002914 h->resv_huge_pages--;
2915 }
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002916 spin_lock_irq(&hugetlb_lock);
Wei Yang15a8d682020-10-13 16:56:33 -07002917 list_add(&page->lru, &h->hugepage_activelist);
Joonsoo Kim81a6fca2013-09-11 14:20:58 -07002918 /* Fall through */
Mel Gormana1e78772008-07-23 21:27:23 -07002919 }
Joonsoo Kim81a6fca2013-09-11 14:20:58 -07002920 hugetlb_cgroup_commit_charge(idx, pages_per_huge_page(h), h_cg, page);
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002921 /* If allocation is not consuming a reservation, also store the
2922 * hugetlb_cgroup pointer on the page.
2923 */
2924 if (deferred_reserve) {
2925 hugetlb_cgroup_commit_charge_rsvd(idx, pages_per_huge_page(h),
2926 h_cg, page);
2927 }
2928
Mike Kravetzdb71ef72021-05-04 18:35:07 -07002929 spin_unlock_irq(&hugetlb_lock);
Mel Gormana1e78772008-07-23 21:27:23 -07002930
Mike Kravetzd6995da2021-02-24 12:08:51 -08002931 hugetlb_set_page_subpool(page, spool);
Mel Gormana1e78772008-07-23 21:27:23 -07002932
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002933 map_commit = vma_commit_reservation(h, vma, addr);
2934 if (unlikely(map_chg > map_commit)) {
Mike Kravetz33039672015-06-24 16:57:58 -07002935 /*
2936 * The page was added to the reservation map between
2937 * vma_needs_reservation and vma_commit_reservation.
2938 * This indicates a race with hugetlb_reserve_pages.
2939 * Adjust for the subpool count incremented above AND
2940 * in hugetlb_reserve_pages for the same page. Also,
2941 * the reservation count added in hugetlb_reserve_pages
2942 * no longer applies.
2943 */
2944 long rsv_adjust;
2945
2946 rsv_adjust = hugepage_subpool_put_pages(spool, 1);
2947 hugetlb_acct_memory(h, -rsv_adjust);
Mike Kravetz79aa9252020-11-01 17:07:27 -08002948 if (deferred_reserve)
2949 hugetlb_cgroup_uncharge_page_rsvd(hstate_index(h),
2950 pages_per_huge_page(h), page);
Mike Kravetz33039672015-06-24 16:57:58 -07002951 }
Adam Litke90d8b7e2007-11-14 16:59:42 -08002952 return page;
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002953
2954out_uncharge_cgroup:
2955 hugetlb_cgroup_uncharge_cgroup(idx, pages_per_huge_page(h), h_cg);
Mina Almasry08cf9fa2020-04-01 21:11:31 -07002956out_uncharge_cgroup_reservation:
2957 if (deferred_reserve)
2958 hugetlb_cgroup_uncharge_cgroup_rsvd(idx, pages_per_huge_page(h),
2959 h_cg);
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002960out_subpool_put:
Mike Kravetzd85f69b2015-09-08 15:01:47 -07002961 if (map_chg || avoid_reserve)
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002962 hugepage_subpool_put_pages(spool, 1);
Mike Kravetzfeba16e2015-09-08 15:01:31 -07002963 vma_end_reservation(h, vma, addr);
Jianyu Zhan8f34af62014-06-04 16:10:36 -07002964 return ERR_PTR(-ENOSPC);
David Gibsonb45b5bd2006-03-22 00:08:55 -08002965}
2966
Zhenguo Yaob5389082021-11-05 13:43:28 -07002967int alloc_bootmem_huge_page(struct hstate *h, int nid)
Aneesh Kumar K.Ve24a1302017-07-28 10:31:25 +05302968 __attribute__ ((weak, alias("__alloc_bootmem_huge_page")));
Zhenguo Yaob5389082021-11-05 13:43:28 -07002969int __alloc_bootmem_huge_page(struct hstate *h, int nid)
Andi Kleenaa888a72008-07-23 21:27:47 -07002970{
Zhenguo Yaob5389082021-11-05 13:43:28 -07002971 struct huge_bootmem_page *m = NULL; /* initialize for clang */
Joonsoo Kimb2261022013-09-11 14:21:00 -07002972 int nr_nodes, node;
Andi Kleenaa888a72008-07-23 21:27:47 -07002973
Zhenguo Yaob5389082021-11-05 13:43:28 -07002974 if (nid >= nr_online_nodes)
2975 return 0;
2976 /* do node specific alloc */
2977 if (nid != NUMA_NO_NODE) {
2978 m = memblock_alloc_try_nid_raw(huge_page_size(h), huge_page_size(h),
2979 0, MEMBLOCK_ALLOC_ACCESSIBLE, nid);
2980 if (!m)
2981 return 0;
2982 goto found;
2983 }
2984 /* allocate from next node when distributing huge pages */
Joonsoo Kimb2261022013-09-11 14:21:00 -07002985 for_each_node_mask_to_alloc(h, nr_nodes, node, &node_states[N_MEMORY]) {
Zhenguo Yaob5389082021-11-05 13:43:28 -07002986 m = memblock_alloc_try_nid_raw(
Grygorii Strashko8b89a112014-01-21 15:50:36 -08002987 huge_page_size(h), huge_page_size(h),
Mike Rapoport97ad1082018-10-30 15:09:44 -07002988 0, MEMBLOCK_ALLOC_ACCESSIBLE, node);
Zhenguo Yaob5389082021-11-05 13:43:28 -07002989 /*
2990 * Use the beginning of the huge page to store the
2991 * huge_bootmem_page struct (until gather_bootmem
2992 * puts them into the mem_map).
2993 */
2994 if (!m)
2995 return 0;
2996 goto found;
Andi Kleenaa888a72008-07-23 21:27:47 -07002997 }
Andi Kleenaa888a72008-07-23 21:27:47 -07002998
2999found:
Andi Kleenaa888a72008-07-23 21:27:47 -07003000 /* Put them into a private list first because mem_map is not up yet */
Cannon Matthews330d6e42018-08-17 15:49:17 -07003001 INIT_LIST_HEAD(&m->list);
Andi Kleenaa888a72008-07-23 21:27:47 -07003002 list_add(&m->list, &huge_boot_pages);
3003 m->hstate = h;
3004 return 1;
3005}
3006
Mike Kravetz48b8d742021-06-30 18:48:31 -07003007/*
3008 * Put bootmem huge pages into the standard lists after mem_map is up.
3009 * Note: This only applies to gigantic (order > MAX_ORDER) pages.
3010 */
Andi Kleenaa888a72008-07-23 21:27:47 -07003011static void __init gather_bootmem_prealloc(void)
3012{
3013 struct huge_bootmem_page *m;
3014
3015 list_for_each_entry(m, &huge_boot_pages, list) {
Mike Kravetz40d18eb2018-08-17 15:49:07 -07003016 struct page *page = virt_to_page(m);
Andi Kleenaa888a72008-07-23 21:27:47 -07003017 struct hstate *h = m->hstate;
Becky Bruceee8f2482011-07-25 17:11:50 -07003018
Mike Kravetz48b8d742021-06-30 18:48:31 -07003019 VM_BUG_ON(!hstate_is_gigantic(h));
Andi Kleenaa888a72008-07-23 21:27:47 -07003020 WARN_ON(page_count(page) != 1);
Mike Kravetz7118fc22021-06-30 18:48:34 -07003021 if (prep_compound_gigantic_page(page, huge_page_order(h))) {
3022 WARN_ON(PageReserved(page));
3023 prep_new_huge_page(h, page, page_to_nid(page));
3024 put_page(page); /* add to the hugepage allocator */
3025 } else {
Mike Kravetz416d85e2021-09-02 14:58:43 -07003026 /* VERY unlikely inflated ref count on a tail page */
Mike Kravetz7118fc22021-06-30 18:48:34 -07003027 free_gigantic_page(page, huge_page_order(h));
Mike Kravetz7118fc22021-06-30 18:48:34 -07003028 }
Michal Hockoaf0fb9d2018-01-31 16:20:41 -08003029
Rafael Aquinib0320c72011-06-15 15:08:39 -07003030 /*
Mike Kravetz48b8d742021-06-30 18:48:31 -07003031 * We need to restore the 'stolen' pages to totalram_pages
3032 * in order to fix confusing memory reports from free(1) and
3033 * other side-effects, like CommitLimit going negative.
Rafael Aquinib0320c72011-06-15 15:08:39 -07003034 */
Mike Kravetz48b8d742021-06-30 18:48:31 -07003035 adjust_managed_page_count(page, pages_per_huge_page(h));
Cannon Matthews520495f2018-07-03 17:02:43 -07003036 cond_resched();
Andi Kleenaa888a72008-07-23 21:27:47 -07003037 }
3038}
Zhenguo Yaob5389082021-11-05 13:43:28 -07003039static void __init hugetlb_hstate_alloc_pages_onenode(struct hstate *h, int nid)
3040{
3041 unsigned long i;
3042 char buf[32];
3043
3044 for (i = 0; i < h->max_huge_pages_node[nid]; ++i) {
3045 if (hstate_is_gigantic(h)) {
3046 if (!alloc_bootmem_huge_page(h, nid))
3047 break;
3048 } else {
3049 struct page *page;
3050 gfp_t gfp_mask = htlb_alloc_mask(h) | __GFP_THISNODE;
3051
3052 page = alloc_fresh_huge_page(h, gfp_mask, nid,
3053 &node_states[N_MEMORY], NULL);
3054 if (!page)
3055 break;
3056 put_page(page); /* free it into the hugepage allocator */
3057 }
3058 cond_resched();
3059 }
3060 if (i == h->max_huge_pages_node[nid])
3061 return;
3062
3063 string_get_size(huge_page_size(h), 1, STRING_UNITS_2, buf, 32);
3064 pr_warn("HugeTLB: allocating %u of page size %s failed node%d. Only allocated %lu hugepages.\n",
3065 h->max_huge_pages_node[nid], buf, nid, i);
3066 h->max_huge_pages -= (h->max_huge_pages_node[nid] - i);
3067 h->max_huge_pages_node[nid] = i;
3068}
Andi Kleenaa888a72008-07-23 21:27:47 -07003069
Andi Kleen8faa8b02008-07-23 21:27:48 -07003070static void __init hugetlb_hstate_alloc_pages(struct hstate *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071{
3072 unsigned long i;
Mike Kravetzf60858f2019-09-23 15:37:35 -07003073 nodemask_t *node_alloc_noretry;
Zhenguo Yaob5389082021-11-05 13:43:28 -07003074 bool node_specific_alloc = false;
Mike Kravetzf60858f2019-09-23 15:37:35 -07003075
Zhenguo Yaob5389082021-11-05 13:43:28 -07003076 /* skip gigantic hugepages allocation if hugetlb_cma enabled */
3077 if (hstate_is_gigantic(h) && hugetlb_cma_size) {
3078 pr_warn_once("HugeTLB: hugetlb_cma is enabled, skip boot time allocation\n");
3079 return;
3080 }
3081
3082 /* do node specific alloc */
3083 for (i = 0; i < nr_online_nodes; i++) {
3084 if (h->max_huge_pages_node[i] > 0) {
3085 hugetlb_hstate_alloc_pages_onenode(h, i);
3086 node_specific_alloc = true;
3087 }
3088 }
3089
3090 if (node_specific_alloc)
3091 return;
3092
3093 /* below will do all node balanced alloc */
Mike Kravetzf60858f2019-09-23 15:37:35 -07003094 if (!hstate_is_gigantic(h)) {
3095 /*
3096 * Bit mask controlling how hard we retry per-node allocations.
3097 * Ignore errors as lower level routines can deal with
3098 * node_alloc_noretry == NULL. If this kmalloc fails at boot
3099 * time, we are likely in bigger trouble.
3100 */
3101 node_alloc_noretry = kmalloc(sizeof(*node_alloc_noretry),
3102 GFP_KERNEL);
3103 } else {
3104 /* allocations done at boot time */
3105 node_alloc_noretry = NULL;
3106 }
3107
3108 /* bit mask controlling how hard we retry per-node allocations */
3109 if (node_alloc_noretry)
3110 nodes_clear(*node_alloc_noretry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
Andi Kleene5ff2152008-07-23 21:27:42 -07003112 for (i = 0; i < h->max_huge_pages; ++i) {
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07003113 if (hstate_is_gigantic(h)) {
Zhenguo Yaob5389082021-11-05 13:43:28 -07003114 if (!alloc_bootmem_huge_page(h, NUMA_NO_NODE))
Andi Kleenaa888a72008-07-23 21:27:47 -07003115 break;
Michal Hocko0c397da2018-01-31 16:20:56 -08003116 } else if (!alloc_pool_huge_page(h,
Mike Kravetzf60858f2019-09-23 15:37:35 -07003117 &node_states[N_MEMORY],
3118 node_alloc_noretry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 break;
David Rientjes69ed7792017-07-10 15:48:50 -07003120 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 }
Liam R. Howlettd715cf82017-07-10 15:48:15 -07003122 if (i < h->max_huge_pages) {
3123 char buf[32];
3124
Matthew Wilcoxc6247f72017-07-10 15:48:56 -07003125 string_get_size(huge_page_size(h), 1, STRING_UNITS_2, buf, 32);
Liam R. Howlettd715cf82017-07-10 15:48:15 -07003126 pr_warn("HugeTLB: allocating %lu of page size %s failed. Only allocated %lu hugepages.\n",
3127 h->max_huge_pages, buf, i);
3128 h->max_huge_pages = i;
3129 }
Mike Kravetzf60858f2019-09-23 15:37:35 -07003130 kfree(node_alloc_noretry);
Andi Kleene5ff2152008-07-23 21:27:42 -07003131}
3132
3133static void __init hugetlb_init_hstates(void)
3134{
Mike Kravetz79dfc692021-11-05 13:41:20 -07003135 struct hstate *h, *h2;
Andi Kleene5ff2152008-07-23 21:27:42 -07003136
3137 for_each_hstate(h) {
Naoya Horiguchi641844f2015-06-24 16:56:59 -07003138 if (minimum_order > huge_page_order(h))
3139 minimum_order = huge_page_order(h);
3140
Andi Kleen8faa8b02008-07-23 21:27:48 -07003141 /* oversize hugepages were init'ed in early boot */
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07003142 if (!hstate_is_gigantic(h))
Andi Kleen8faa8b02008-07-23 21:27:48 -07003143 hugetlb_hstate_alloc_pages(h);
Mike Kravetz79dfc692021-11-05 13:41:20 -07003144
3145 /*
3146 * Set demote order for each hstate. Note that
3147 * h->demote_order is initially 0.
3148 * - We can not demote gigantic pages if runtime freeing
3149 * is not supported, so skip this.
Mike Kravetza01f4392021-11-05 13:41:27 -07003150 * - If CMA allocation is possible, we can not demote
3151 * HUGETLB_PAGE_ORDER or smaller size pages.
Mike Kravetz79dfc692021-11-05 13:41:20 -07003152 */
3153 if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
3154 continue;
Mike Kravetza01f4392021-11-05 13:41:27 -07003155 if (hugetlb_cma_size && h->order <= HUGETLB_PAGE_ORDER)
3156 continue;
Mike Kravetz79dfc692021-11-05 13:41:20 -07003157 for_each_hstate(h2) {
3158 if (h2 == h)
3159 continue;
3160 if (h2->order < h->order &&
3161 h2->order > h->demote_order)
3162 h->demote_order = h2->order;
3163 }
Andi Kleene5ff2152008-07-23 21:27:42 -07003164 }
Naoya Horiguchi641844f2015-06-24 16:56:59 -07003165 VM_BUG_ON(minimum_order == UINT_MAX);
Andi Kleene5ff2152008-07-23 21:27:42 -07003166}
3167
3168static void __init report_hugepages(void)
3169{
3170 struct hstate *h;
3171
3172 for_each_hstate(h) {
Andi Kleen4abd32d2008-07-23 21:27:49 -07003173 char buf[32];
Matthew Wilcoxc6247f72017-07-10 15:48:56 -07003174
3175 string_get_size(huge_page_size(h), 1, STRING_UNITS_2, buf, 32);
Andrew Mortonffb22af2013-02-22 16:32:08 -08003176 pr_info("HugeTLB registered %s page size, pre-allocated %ld pages\n",
Matthew Wilcoxc6247f72017-07-10 15:48:56 -07003177 buf, h->free_huge_pages);
Andi Kleene5ff2152008-07-23 21:27:42 -07003178 }
3179}
3180
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181#ifdef CONFIG_HIGHMEM
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003182static void try_to_free_low(struct hstate *h, unsigned long count,
3183 nodemask_t *nodes_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184{
Christoph Lameter4415cc82006-09-25 23:31:55 -07003185 int i;
Mike Kravetz11218282021-05-04 18:34:59 -07003186 LIST_HEAD(page_list);
Christoph Lameter4415cc82006-09-25 23:31:55 -07003187
Mike Kravetz9487ca62021-05-04 18:35:10 -07003188 lockdep_assert_held(&hugetlb_lock);
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07003189 if (hstate_is_gigantic(h))
Andi Kleenaa888a72008-07-23 21:27:47 -07003190 return;
3191
Mike Kravetz11218282021-05-04 18:34:59 -07003192 /*
3193 * Collect pages to be freed on a list, and free after dropping lock
3194 */
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003195 for_each_node_mask(i, *nodes_allowed) {
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003196 struct page *page, *next;
Andi Kleena5516432008-07-23 21:27:41 -07003197 struct list_head *freel = &h->hugepage_freelists[i];
3198 list_for_each_entry_safe(page, next, freel, lru) {
3199 if (count >= h->nr_huge_pages)
Mike Kravetz11218282021-05-04 18:34:59 -07003200 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 if (PageHighMem(page))
3202 continue;
Mike Kravetz6eb4e882021-05-04 18:34:55 -07003203 remove_hugetlb_page(h, page, false);
Mike Kravetz11218282021-05-04 18:34:59 -07003204 list_add(&page->lru, &page_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 }
3206 }
Mike Kravetz11218282021-05-04 18:34:59 -07003207
3208out:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003209 spin_unlock_irq(&hugetlb_lock);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003210 update_and_free_pages_bulk(h, &page_list);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003211 spin_lock_irq(&hugetlb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212}
3213#else
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003214static inline void try_to_free_low(struct hstate *h, unsigned long count,
3215 nodemask_t *nodes_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216{
3217}
3218#endif
3219
Wu Fengguang20a03072009-06-16 15:32:22 -07003220/*
3221 * Increment or decrement surplus_huge_pages. Keep node-specific counters
3222 * balanced by operating on them in a round-robin fashion.
3223 * Returns 1 if an adjustment was made.
3224 */
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003225static int adjust_pool_surplus(struct hstate *h, nodemask_t *nodes_allowed,
3226 int delta)
Wu Fengguang20a03072009-06-16 15:32:22 -07003227{
Joonsoo Kimb2261022013-09-11 14:21:00 -07003228 int nr_nodes, node;
Wu Fengguang20a03072009-06-16 15:32:22 -07003229
Mike Kravetz9487ca62021-05-04 18:35:10 -07003230 lockdep_assert_held(&hugetlb_lock);
Wu Fengguang20a03072009-06-16 15:32:22 -07003231 VM_BUG_ON(delta != -1 && delta != 1);
Wu Fengguang20a03072009-06-16 15:32:22 -07003232
Joonsoo Kimb2261022013-09-11 14:21:00 -07003233 if (delta < 0) {
3234 for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
3235 if (h->surplus_huge_pages_node[node])
3236 goto found;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07003237 }
Joonsoo Kimb2261022013-09-11 14:21:00 -07003238 } else {
3239 for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
3240 if (h->surplus_huge_pages_node[node] <
3241 h->nr_huge_pages_node[node])
3242 goto found;
Lee Schermerhorne8c5c822009-09-21 17:01:22 -07003243 }
Joonsoo Kimb2261022013-09-11 14:21:00 -07003244 }
3245 return 0;
Wu Fengguang20a03072009-06-16 15:32:22 -07003246
Joonsoo Kimb2261022013-09-11 14:21:00 -07003247found:
3248 h->surplus_huge_pages += delta;
3249 h->surplus_huge_pages_node[node] += delta;
3250 return 1;
Wu Fengguang20a03072009-06-16 15:32:22 -07003251}
3252
Andi Kleena5516432008-07-23 21:27:41 -07003253#define persistent_huge_pages(h) (h->nr_huge_pages - h->surplus_huge_pages)
Mike Kravetzfd875dc2019-05-13 17:19:20 -07003254static int set_max_huge_pages(struct hstate *h, unsigned long count, int nid,
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003255 nodemask_t *nodes_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256{
Adam Litke7893d1d2007-10-16 01:26:18 -07003257 unsigned long min_count, ret;
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003258 struct page *page;
3259 LIST_HEAD(page_list);
Mike Kravetzf60858f2019-09-23 15:37:35 -07003260 NODEMASK_ALLOC(nodemask_t, node_alloc_noretry, GFP_KERNEL);
3261
3262 /*
3263 * Bit mask controlling how hard we retry per-node allocations.
3264 * If we can not allocate the bit mask, do not attempt to allocate
3265 * the requested huge pages.
3266 */
3267 if (node_alloc_noretry)
3268 nodes_clear(*node_alloc_noretry);
3269 else
3270 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271
Mike Kravetz29383962021-05-04 18:34:52 -07003272 /*
3273 * resize_lock mutex prevents concurrent adjustments to number of
3274 * pages in hstate via the proc/sysfs interfaces.
3275 */
3276 mutex_lock(&h->resize_lock);
Muchun Songb65d4ad2021-06-30 18:47:17 -07003277 flush_free_hpage_work(h);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003278 spin_lock_irq(&hugetlb_lock);
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003279
3280 /*
Mike Kravetzfd875dc2019-05-13 17:19:20 -07003281 * Check for a node specific request.
3282 * Changing node specific huge page count may require a corresponding
3283 * change to the global count. In any case, the passed node mask
3284 * (nodes_allowed) will restrict alloc/free to the specified node.
3285 */
3286 if (nid != NUMA_NO_NODE) {
3287 unsigned long old_count = count;
3288
3289 count += h->nr_huge_pages - h->nr_huge_pages_node[nid];
3290 /*
3291 * User may have specified a large count value which caused the
3292 * above calculation to overflow. In this case, they wanted
3293 * to allocate as many huge pages as possible. Set count to
3294 * largest possible value to align with their intention.
3295 */
3296 if (count < old_count)
3297 count = ULONG_MAX;
3298 }
3299
3300 /*
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003301 * Gigantic pages runtime allocation depend on the capability for large
3302 * page range allocation.
3303 * If the system does not provide this feature, return an error when
3304 * the user tries to allocate gigantic pages but let the user free the
3305 * boottime allocated gigantic pages.
3306 */
3307 if (hstate_is_gigantic(h) && !IS_ENABLED(CONFIG_CONTIG_ALLOC)) {
3308 if (count > persistent_huge_pages(h)) {
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003309 spin_unlock_irq(&hugetlb_lock);
Mike Kravetz29383962021-05-04 18:34:52 -07003310 mutex_unlock(&h->resize_lock);
Mike Kravetzf60858f2019-09-23 15:37:35 -07003311 NODEMASK_FREE(node_alloc_noretry);
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003312 return -EINVAL;
3313 }
3314 /* Fall through to decrease pool */
3315 }
Andi Kleenaa888a72008-07-23 21:27:47 -07003316
Adam Litke7893d1d2007-10-16 01:26:18 -07003317 /*
3318 * Increase the pool size
3319 * First take pages out of surplus state. Then make up the
3320 * remaining difference by allocating fresh huge pages.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08003321 *
Michal Hocko0c397da2018-01-31 16:20:56 -08003322 * We might race with alloc_surplus_huge_page() here and be unable
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08003323 * to convert a surplus huge page to a normal huge page. That is
3324 * not critical, though, it just means the overall size of the
3325 * pool might be one hugepage larger than it needs to be, but
3326 * within all the constraints specified by the sysctls.
Adam Litke7893d1d2007-10-16 01:26:18 -07003327 */
Andi Kleena5516432008-07-23 21:27:41 -07003328 while (h->surplus_huge_pages && count > persistent_huge_pages(h)) {
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003329 if (!adjust_pool_surplus(h, nodes_allowed, -1))
Adam Litke7893d1d2007-10-16 01:26:18 -07003330 break;
3331 }
3332
Andi Kleena5516432008-07-23 21:27:41 -07003333 while (count > persistent_huge_pages(h)) {
Adam Litke7893d1d2007-10-16 01:26:18 -07003334 /*
3335 * If this allocation races such that we no longer need the
3336 * page, free_huge_page will handle it by freeing the page
3337 * and reducing the surplus.
3338 */
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003339 spin_unlock_irq(&hugetlb_lock);
Jia He649920c2016-08-02 14:02:31 -07003340
3341 /* yield cpu to avoid soft lockup */
3342 cond_resched();
3343
Mike Kravetzf60858f2019-09-23 15:37:35 -07003344 ret = alloc_pool_huge_page(h, nodes_allowed,
3345 node_alloc_noretry);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003346 spin_lock_irq(&hugetlb_lock);
Adam Litke7893d1d2007-10-16 01:26:18 -07003347 if (!ret)
3348 goto out;
3349
Mel Gorman536240f22009-12-14 17:59:56 -08003350 /* Bail for signals. Probably ctrl-c from user */
3351 if (signal_pending(current))
3352 goto out;
Adam Litke7893d1d2007-10-16 01:26:18 -07003353 }
Adam Litke7893d1d2007-10-16 01:26:18 -07003354
3355 /*
3356 * Decrease the pool size
3357 * First return free pages to the buddy allocator (being careful
3358 * to keep enough around to satisfy reservations). Then place
3359 * pages into surplus state as needed so the pool will shrink
3360 * to the desired size as pages become free.
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08003361 *
3362 * By placing pages into the surplus state independent of the
3363 * overcommit value, we are allowing the surplus pool size to
3364 * exceed overcommit. There are few sane options here. Since
Michal Hocko0c397da2018-01-31 16:20:56 -08003365 * alloc_surplus_huge_page() is checking the global counter,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08003366 * though, we'll note that we're not allowed to exceed surplus
3367 * and won't grow the pool anywhere else. Not until one of the
3368 * sysctls are changed, or the surplus pages go out of use.
Adam Litke7893d1d2007-10-16 01:26:18 -07003369 */
Andi Kleena5516432008-07-23 21:27:41 -07003370 min_count = h->resv_huge_pages + h->nr_huge_pages - h->free_huge_pages;
Adam Litke6b0c8802007-10-16 01:26:23 -07003371 min_count = max(count, min_count);
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003372 try_to_free_low(h, min_count, nodes_allowed);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003373
3374 /*
3375 * Collect pages to be removed on list without dropping lock
3376 */
Andi Kleena5516432008-07-23 21:27:41 -07003377 while (min_count < persistent_huge_pages(h)) {
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003378 page = remove_pool_huge_page(h, nodes_allowed, 0);
3379 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 break;
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003381
3382 list_add(&page->lru, &page_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 }
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003384 /* free the pages after dropping lock */
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003385 spin_unlock_irq(&hugetlb_lock);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003386 update_and_free_pages_bulk(h, &page_list);
Muchun Songb65d4ad2021-06-30 18:47:17 -07003387 flush_free_hpage_work(h);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003388 spin_lock_irq(&hugetlb_lock);
Mike Kravetz10c6ec42021-05-04 18:35:03 -07003389
Andi Kleena5516432008-07-23 21:27:41 -07003390 while (count < persistent_huge_pages(h)) {
Lee Schermerhorn6ae11b22009-12-14 17:58:16 -08003391 if (!adjust_pool_surplus(h, nodes_allowed, 1))
Adam Litke7893d1d2007-10-16 01:26:18 -07003392 break;
3393 }
3394out:
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003395 h->max_huge_pages = persistent_huge_pages(h);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003396 spin_unlock_irq(&hugetlb_lock);
Mike Kravetz29383962021-05-04 18:34:52 -07003397 mutex_unlock(&h->resize_lock);
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003398
Mike Kravetzf60858f2019-09-23 15:37:35 -07003399 NODEMASK_FREE(node_alloc_noretry);
3400
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003401 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402}
3403
Mike Kravetz8531fc62021-11-05 13:41:33 -07003404static int demote_free_huge_page(struct hstate *h, struct page *page)
3405{
3406 int i, nid = page_to_nid(page);
3407 struct hstate *target_hstate;
3408 int rc = 0;
3409
3410 target_hstate = size_to_hstate(PAGE_SIZE << h->demote_order);
3411
3412 remove_hugetlb_page_for_demote(h, page, false);
3413 spin_unlock_irq(&hugetlb_lock);
3414
3415 rc = alloc_huge_page_vmemmap(h, page);
3416 if (rc) {
3417 /* Allocation of vmemmmap failed, we can not demote page */
3418 spin_lock_irq(&hugetlb_lock);
3419 set_page_refcounted(page);
3420 add_hugetlb_page(h, page, false);
3421 return rc;
3422 }
3423
3424 /*
3425 * Use destroy_compound_hugetlb_page_for_demote for all huge page
3426 * sizes as it will not ref count pages.
3427 */
3428 destroy_compound_hugetlb_page_for_demote(page, huge_page_order(h));
3429
3430 /*
3431 * Taking target hstate mutex synchronizes with set_max_huge_pages.
3432 * Without the mutex, pages added to target hstate could be marked
3433 * as surplus.
3434 *
3435 * Note that we already hold h->resize_lock. To prevent deadlock,
3436 * use the convention of always taking larger size hstate mutex first.
3437 */
3438 mutex_lock(&target_hstate->resize_lock);
3439 for (i = 0; i < pages_per_huge_page(h);
3440 i += pages_per_huge_page(target_hstate)) {
3441 if (hstate_is_gigantic(target_hstate))
3442 prep_compound_gigantic_page_for_demote(page + i,
3443 target_hstate->order);
3444 else
3445 prep_compound_page(page + i, target_hstate->order);
3446 set_page_private(page + i, 0);
3447 set_page_refcounted(page + i);
3448 prep_new_huge_page(target_hstate, page + i, nid);
3449 put_page(page + i);
3450 }
3451 mutex_unlock(&target_hstate->resize_lock);
3452
3453 spin_lock_irq(&hugetlb_lock);
3454
3455 /*
3456 * Not absolutely necessary, but for consistency update max_huge_pages
3457 * based on pool changes for the demoted page.
3458 */
3459 h->max_huge_pages--;
3460 target_hstate->max_huge_pages += pages_per_huge_page(h);
3461
3462 return rc;
3463}
3464
Mike Kravetz79dfc692021-11-05 13:41:20 -07003465static int demote_pool_huge_page(struct hstate *h, nodemask_t *nodes_allowed)
3466 __must_hold(&hugetlb_lock)
3467{
Mike Kravetz8531fc62021-11-05 13:41:33 -07003468 int nr_nodes, node;
3469 struct page *page;
Mike Kravetz79dfc692021-11-05 13:41:20 -07003470 int rc = 0;
3471
3472 lockdep_assert_held(&hugetlb_lock);
3473
3474 /* We should never get here if no demote order */
3475 if (!h->demote_order) {
3476 pr_warn("HugeTLB: NULL demote order passed to demote_pool_huge_page.\n");
3477 return -EINVAL; /* internal error */
3478 }
3479
Mike Kravetz8531fc62021-11-05 13:41:33 -07003480 for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
3481 if (!list_empty(&h->hugepage_freelists[node])) {
3482 page = list_entry(h->hugepage_freelists[node].next,
3483 struct page, lru);
3484 rc = demote_free_huge_page(h, page);
3485 break;
3486 }
3487 }
3488
Mike Kravetz79dfc692021-11-05 13:41:20 -07003489 return rc;
3490}
3491
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003492#define HSTATE_ATTR_RO(_name) \
3493 static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
3494
Mike Kravetz79dfc692021-11-05 13:41:20 -07003495#define HSTATE_ATTR_WO(_name) \
3496 static struct kobj_attribute _name##_attr = __ATTR_WO(_name)
3497
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003498#define HSTATE_ATTR(_name) \
3499 static struct kobj_attribute _name##_attr = \
3500 __ATTR(_name, 0644, _name##_show, _name##_store)
3501
3502static struct kobject *hugepages_kobj;
3503static struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
3504
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003505static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp);
3506
3507static struct hstate *kobj_to_hstate(struct kobject *kobj, int *nidp)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003508{
3509 int i;
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003510
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003511 for (i = 0; i < HUGE_MAX_HSTATE; i++)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003512 if (hstate_kobjs[i] == kobj) {
3513 if (nidp)
3514 *nidp = NUMA_NO_NODE;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003515 return &hstates[i];
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003516 }
3517
3518 return kobj_to_node_hstate(kobj, nidp);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003519}
3520
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003521static ssize_t nr_hugepages_show_common(struct kobject *kobj,
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003522 struct kobj_attribute *attr, char *buf)
3523{
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003524 struct hstate *h;
3525 unsigned long nr_huge_pages;
3526 int nid;
3527
3528 h = kobj_to_hstate(kobj, &nid);
3529 if (nid == NUMA_NO_NODE)
3530 nr_huge_pages = h->nr_huge_pages;
3531 else
3532 nr_huge_pages = h->nr_huge_pages_node[nid];
3533
Joe Perchesae7a9272020-12-14 19:14:42 -08003534 return sysfs_emit(buf, "%lu\n", nr_huge_pages);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003535}
Eric B Munsonadbe8722011-01-13 15:47:27 -08003536
David Rientjes238d3c12014-08-06 16:06:51 -07003537static ssize_t __nr_hugepages_store_common(bool obey_mempolicy,
3538 struct hstate *h, int nid,
3539 unsigned long count, size_t len)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003540{
3541 int err;
Oscar Salvador2d0adf72019-05-13 17:19:23 -07003542 nodemask_t nodes_allowed, *n_mask;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003543
Oscar Salvador2d0adf72019-05-13 17:19:23 -07003544 if (hstate_is_gigantic(h) && !gigantic_page_runtime_supported())
3545 return -EINVAL;
Eric B Munsonadbe8722011-01-13 15:47:27 -08003546
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003547 if (nid == NUMA_NO_NODE) {
3548 /*
3549 * global hstate attribute
3550 */
3551 if (!(obey_mempolicy &&
Oscar Salvador2d0adf72019-05-13 17:19:23 -07003552 init_nodemask_of_mempolicy(&nodes_allowed)))
3553 n_mask = &node_states[N_MEMORY];
3554 else
3555 n_mask = &nodes_allowed;
3556 } else {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003557 /*
Mike Kravetzfd875dc2019-05-13 17:19:20 -07003558 * Node specific request. count adjustment happens in
3559 * set_max_huge_pages() after acquiring hugetlb_lock.
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003560 */
Oscar Salvador2d0adf72019-05-13 17:19:23 -07003561 init_nodemask_of_node(&nodes_allowed, nid);
3562 n_mask = &nodes_allowed;
Mike Kravetzfd875dc2019-05-13 17:19:20 -07003563 }
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003564
Oscar Salvador2d0adf72019-05-13 17:19:23 -07003565 err = set_max_huge_pages(h, count, nid, n_mask);
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003566
Alexandre Ghiti4eb07162019-05-13 17:19:04 -07003567 return err ? err : len;
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003568}
3569
David Rientjes238d3c12014-08-06 16:06:51 -07003570static ssize_t nr_hugepages_store_common(bool obey_mempolicy,
3571 struct kobject *kobj, const char *buf,
3572 size_t len)
3573{
3574 struct hstate *h;
3575 unsigned long count;
3576 int nid;
3577 int err;
3578
3579 err = kstrtoul(buf, 10, &count);
3580 if (err)
3581 return err;
3582
3583 h = kobj_to_hstate(kobj, &nid);
3584 return __nr_hugepages_store_common(obey_mempolicy, h, nid, count, len);
3585}
3586
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003587static ssize_t nr_hugepages_show(struct kobject *kobj,
3588 struct kobj_attribute *attr, char *buf)
3589{
3590 return nr_hugepages_show_common(kobj, attr, buf);
3591}
3592
3593static ssize_t nr_hugepages_store(struct kobject *kobj,
3594 struct kobj_attribute *attr, const char *buf, size_t len)
3595{
David Rientjes238d3c12014-08-06 16:06:51 -07003596 return nr_hugepages_store_common(false, kobj, buf, len);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003597}
3598HSTATE_ATTR(nr_hugepages);
3599
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003600#ifdef CONFIG_NUMA
3601
3602/*
3603 * hstate attribute for optionally mempolicy-based constraint on persistent
3604 * huge page alloc/free.
3605 */
3606static ssize_t nr_hugepages_mempolicy_show(struct kobject *kobj,
Joe Perchesae7a9272020-12-14 19:14:42 -08003607 struct kobj_attribute *attr,
3608 char *buf)
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003609{
3610 return nr_hugepages_show_common(kobj, attr, buf);
3611}
3612
3613static ssize_t nr_hugepages_mempolicy_store(struct kobject *kobj,
3614 struct kobj_attribute *attr, const char *buf, size_t len)
3615{
David Rientjes238d3c12014-08-06 16:06:51 -07003616 return nr_hugepages_store_common(true, kobj, buf, len);
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003617}
3618HSTATE_ATTR(nr_hugepages_mempolicy);
3619#endif
3620
3621
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003622static ssize_t nr_overcommit_hugepages_show(struct kobject *kobj,
3623 struct kobj_attribute *attr, char *buf)
3624{
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003625 struct hstate *h = kobj_to_hstate(kobj, NULL);
Joe Perchesae7a9272020-12-14 19:14:42 -08003626 return sysfs_emit(buf, "%lu\n", h->nr_overcommit_huge_pages);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003627}
Eric B Munsonadbe8722011-01-13 15:47:27 -08003628
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003629static ssize_t nr_overcommit_hugepages_store(struct kobject *kobj,
3630 struct kobj_attribute *attr, const char *buf, size_t count)
3631{
3632 int err;
3633 unsigned long input;
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003634 struct hstate *h = kobj_to_hstate(kobj, NULL);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003635
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07003636 if (hstate_is_gigantic(h))
Eric B Munsonadbe8722011-01-13 15:47:27 -08003637 return -EINVAL;
3638
Jingoo Han3dbb95f2013-09-11 14:20:25 -07003639 err = kstrtoul(buf, 10, &input);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003640 if (err)
Eric B Munson73ae31e2011-01-13 15:47:28 -08003641 return err;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003642
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003643 spin_lock_irq(&hugetlb_lock);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003644 h->nr_overcommit_huge_pages = input;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07003645 spin_unlock_irq(&hugetlb_lock);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003646
3647 return count;
3648}
3649HSTATE_ATTR(nr_overcommit_hugepages);
3650
3651static ssize_t free_hugepages_show(struct kobject *kobj,
3652 struct kobj_attribute *attr, char *buf)
3653{
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003654 struct hstate *h;
3655 unsigned long free_huge_pages;
3656 int nid;
3657
3658 h = kobj_to_hstate(kobj, &nid);
3659 if (nid == NUMA_NO_NODE)
3660 free_huge_pages = h->free_huge_pages;
3661 else
3662 free_huge_pages = h->free_huge_pages_node[nid];
3663
Joe Perchesae7a9272020-12-14 19:14:42 -08003664 return sysfs_emit(buf, "%lu\n", free_huge_pages);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003665}
3666HSTATE_ATTR_RO(free_hugepages);
3667
3668static ssize_t resv_hugepages_show(struct kobject *kobj,
3669 struct kobj_attribute *attr, char *buf)
3670{
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003671 struct hstate *h = kobj_to_hstate(kobj, NULL);
Joe Perchesae7a9272020-12-14 19:14:42 -08003672 return sysfs_emit(buf, "%lu\n", h->resv_huge_pages);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003673}
3674HSTATE_ATTR_RO(resv_hugepages);
3675
3676static ssize_t surplus_hugepages_show(struct kobject *kobj,
3677 struct kobj_attribute *attr, char *buf)
3678{
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003679 struct hstate *h;
3680 unsigned long surplus_huge_pages;
3681 int nid;
3682
3683 h = kobj_to_hstate(kobj, &nid);
3684 if (nid == NUMA_NO_NODE)
3685 surplus_huge_pages = h->surplus_huge_pages;
3686 else
3687 surplus_huge_pages = h->surplus_huge_pages_node[nid];
3688
Joe Perchesae7a9272020-12-14 19:14:42 -08003689 return sysfs_emit(buf, "%lu\n", surplus_huge_pages);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003690}
3691HSTATE_ATTR_RO(surplus_hugepages);
3692
Mike Kravetz79dfc692021-11-05 13:41:20 -07003693static ssize_t demote_store(struct kobject *kobj,
3694 struct kobj_attribute *attr, const char *buf, size_t len)
3695{
3696 unsigned long nr_demote;
3697 unsigned long nr_available;
3698 nodemask_t nodes_allowed, *n_mask;
3699 struct hstate *h;
3700 int err = 0;
3701 int nid;
3702
3703 err = kstrtoul(buf, 10, &nr_demote);
3704 if (err)
3705 return err;
3706 h = kobj_to_hstate(kobj, &nid);
3707
3708 if (nid != NUMA_NO_NODE) {
3709 init_nodemask_of_node(&nodes_allowed, nid);
3710 n_mask = &nodes_allowed;
3711 } else {
3712 n_mask = &node_states[N_MEMORY];
3713 }
3714
3715 /* Synchronize with other sysfs operations modifying huge pages */
3716 mutex_lock(&h->resize_lock);
3717 spin_lock_irq(&hugetlb_lock);
3718
3719 while (nr_demote) {
3720 /*
3721 * Check for available pages to demote each time thorough the
3722 * loop as demote_pool_huge_page will drop hugetlb_lock.
Mike Kravetz79dfc692021-11-05 13:41:20 -07003723 */
3724 if (nid != NUMA_NO_NODE)
3725 nr_available = h->free_huge_pages_node[nid];
3726 else
3727 nr_available = h->free_huge_pages;
3728 nr_available -= h->resv_huge_pages;
3729 if (!nr_available)
3730 break;
3731
3732 err = demote_pool_huge_page(h, n_mask);
3733 if (err)
3734 break;
3735
3736 nr_demote--;
3737 }
3738
3739 spin_unlock_irq(&hugetlb_lock);
3740 mutex_unlock(&h->resize_lock);
3741
3742 if (err)
3743 return err;
3744 return len;
3745}
3746HSTATE_ATTR_WO(demote);
3747
3748static ssize_t demote_size_show(struct kobject *kobj,
3749 struct kobj_attribute *attr, char *buf)
3750{
3751 int nid;
3752 struct hstate *h = kobj_to_hstate(kobj, &nid);
3753 unsigned long demote_size = (PAGE_SIZE << h->demote_order) / SZ_1K;
3754
3755 return sysfs_emit(buf, "%lukB\n", demote_size);
3756}
3757
3758static ssize_t demote_size_store(struct kobject *kobj,
3759 struct kobj_attribute *attr,
3760 const char *buf, size_t count)
3761{
3762 struct hstate *h, *demote_hstate;
3763 unsigned long demote_size;
3764 unsigned int demote_order;
3765 int nid;
3766
3767 demote_size = (unsigned long)memparse(buf, NULL);
3768
3769 demote_hstate = size_to_hstate(demote_size);
3770 if (!demote_hstate)
3771 return -EINVAL;
3772 demote_order = demote_hstate->order;
Mike Kravetza01f4392021-11-05 13:41:27 -07003773 if (demote_order < HUGETLB_PAGE_ORDER)
3774 return -EINVAL;
Mike Kravetz79dfc692021-11-05 13:41:20 -07003775
3776 /* demote order must be smaller than hstate order */
3777 h = kobj_to_hstate(kobj, &nid);
3778 if (demote_order >= h->order)
3779 return -EINVAL;
3780
3781 /* resize_lock synchronizes access to demote size and writes */
3782 mutex_lock(&h->resize_lock);
3783 h->demote_order = demote_order;
3784 mutex_unlock(&h->resize_lock);
3785
3786 return count;
3787}
3788HSTATE_ATTR(demote_size);
3789
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003790static struct attribute *hstate_attrs[] = {
3791 &nr_hugepages_attr.attr,
3792 &nr_overcommit_hugepages_attr.attr,
3793 &free_hugepages_attr.attr,
3794 &resv_hugepages_attr.attr,
3795 &surplus_hugepages_attr.attr,
Lee Schermerhorn06808b02009-12-14 17:58:21 -08003796#ifdef CONFIG_NUMA
3797 &nr_hugepages_mempolicy_attr.attr,
3798#endif
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003799 NULL,
3800};
3801
Arvind Yadav67e5ed92017-09-06 16:22:06 -07003802static const struct attribute_group hstate_attr_group = {
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003803 .attrs = hstate_attrs,
3804};
3805
Mike Kravetz79dfc692021-11-05 13:41:20 -07003806static struct attribute *hstate_demote_attrs[] = {
3807 &demote_size_attr.attr,
3808 &demote_attr.attr,
3809 NULL,
3810};
3811
3812static const struct attribute_group hstate_demote_attr_group = {
3813 .attrs = hstate_demote_attrs,
3814};
3815
Jeff Mahoney094e9532010-02-02 13:44:14 -08003816static int hugetlb_sysfs_add_hstate(struct hstate *h, struct kobject *parent,
3817 struct kobject **hstate_kobjs,
Arvind Yadav67e5ed92017-09-06 16:22:06 -07003818 const struct attribute_group *hstate_attr_group)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003819{
3820 int retval;
Aneesh Kumar K.V972dc4d2012-07-31 16:42:00 -07003821 int hi = hstate_index(h);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003822
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003823 hstate_kobjs[hi] = kobject_create_and_add(h->name, parent);
3824 if (!hstate_kobjs[hi])
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003825 return -ENOMEM;
3826
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003827 retval = sysfs_create_group(hstate_kobjs[hi], hstate_attr_group);
Miaohe Lincc2205a2021-02-24 12:06:50 -08003828 if (retval) {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003829 kobject_put(hstate_kobjs[hi]);
Miaohe Lincc2205a2021-02-24 12:06:50 -08003830 hstate_kobjs[hi] = NULL;
3831 }
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003832
Mike Kravetz79dfc692021-11-05 13:41:20 -07003833 if (h->demote_order) {
3834 if (sysfs_create_group(hstate_kobjs[hi],
3835 &hstate_demote_attr_group))
3836 pr_warn("HugeTLB unable to create demote interfaces for %s\n", h->name);
3837 }
3838
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003839 return retval;
3840}
3841
3842static void __init hugetlb_sysfs_init(void)
3843{
3844 struct hstate *h;
3845 int err;
3846
3847 hugepages_kobj = kobject_create_and_add("hugepages", mm_kobj);
3848 if (!hugepages_kobj)
3849 return;
3850
3851 for_each_hstate(h) {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003852 err = hugetlb_sysfs_add_hstate(h, hugepages_kobj,
3853 hstate_kobjs, &hstate_attr_group);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003854 if (err)
Mike Kravetz282f4212020-06-03 16:00:46 -07003855 pr_err("HugeTLB: Unable to add hstate %s", h->name);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07003856 }
3857}
3858
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003859#ifdef CONFIG_NUMA
3860
3861/*
3862 * node_hstate/s - associate per node hstate attributes, via their kobjects,
Kay Sievers10fbcf42011-12-21 14:48:43 -08003863 * with node devices in node_devices[] using a parallel array. The array
3864 * index of a node device or _hstate == node id.
3865 * This is here to avoid any static dependency of the node device driver, in
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003866 * the base kernel, on the hugetlb module.
3867 */
3868struct node_hstate {
3869 struct kobject *hugepages_kobj;
3870 struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
3871};
Alexander Kuleshovb4e289a2015-11-05 18:50:14 -08003872static struct node_hstate node_hstates[MAX_NUMNODES];
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003873
3874/*
Kay Sievers10fbcf42011-12-21 14:48:43 -08003875 * A subset of global hstate attributes for node devices
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003876 */
3877static struct attribute *per_node_hstate_attrs[] = {
3878 &nr_hugepages_attr.attr,
3879 &free_hugepages_attr.attr,
3880 &surplus_hugepages_attr.attr,
3881 NULL,
3882};
3883
Arvind Yadav67e5ed92017-09-06 16:22:06 -07003884static const struct attribute_group per_node_hstate_attr_group = {
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003885 .attrs = per_node_hstate_attrs,
3886};
3887
3888/*
Kay Sievers10fbcf42011-12-21 14:48:43 -08003889 * kobj_to_node_hstate - lookup global hstate for node device hstate attr kobj.
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003890 * Returns node id via non-NULL nidp.
3891 */
3892static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp)
3893{
3894 int nid;
3895
3896 for (nid = 0; nid < nr_node_ids; nid++) {
3897 struct node_hstate *nhs = &node_hstates[nid];
3898 int i;
3899 for (i = 0; i < HUGE_MAX_HSTATE; i++)
3900 if (nhs->hstate_kobjs[i] == kobj) {
3901 if (nidp)
3902 *nidp = nid;
3903 return &hstates[i];
3904 }
3905 }
3906
3907 BUG();
3908 return NULL;
3909}
3910
3911/*
Kay Sievers10fbcf42011-12-21 14:48:43 -08003912 * Unregister hstate attributes from a single node device.
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003913 * No-op if no hstate attributes attached.
3914 */
Claudiu Ghioc3cd8b442013-03-04 12:46:15 +02003915static void hugetlb_unregister_node(struct node *node)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003916{
3917 struct hstate *h;
Kay Sievers10fbcf42011-12-21 14:48:43 -08003918 struct node_hstate *nhs = &node_hstates[node->dev.id];
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003919
3920 if (!nhs->hugepages_kobj)
Lee Schermerhorn9b5e5d02009-12-14 17:58:32 -08003921 return; /* no hstate attributes */
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003922
Aneesh Kumar K.V972dc4d2012-07-31 16:42:00 -07003923 for_each_hstate(h) {
3924 int idx = hstate_index(h);
3925 if (nhs->hstate_kobjs[idx]) {
3926 kobject_put(nhs->hstate_kobjs[idx]);
3927 nhs->hstate_kobjs[idx] = NULL;
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003928 }
Aneesh Kumar K.V972dc4d2012-07-31 16:42:00 -07003929 }
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003930
3931 kobject_put(nhs->hugepages_kobj);
3932 nhs->hugepages_kobj = NULL;
3933}
3934
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003935
3936/*
Kay Sievers10fbcf42011-12-21 14:48:43 -08003937 * Register hstate attributes for a single node device.
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003938 * No-op if attributes already registered.
3939 */
Claudiu Ghioc3cd8b442013-03-04 12:46:15 +02003940static void hugetlb_register_node(struct node *node)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003941{
3942 struct hstate *h;
Kay Sievers10fbcf42011-12-21 14:48:43 -08003943 struct node_hstate *nhs = &node_hstates[node->dev.id];
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003944 int err;
3945
3946 if (nhs->hugepages_kobj)
3947 return; /* already allocated */
3948
3949 nhs->hugepages_kobj = kobject_create_and_add("hugepages",
Kay Sievers10fbcf42011-12-21 14:48:43 -08003950 &node->dev.kobj);
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003951 if (!nhs->hugepages_kobj)
3952 return;
3953
3954 for_each_hstate(h) {
3955 err = hugetlb_sysfs_add_hstate(h, nhs->hugepages_kobj,
3956 nhs->hstate_kobjs,
3957 &per_node_hstate_attr_group);
3958 if (err) {
Mike Kravetz282f4212020-06-03 16:00:46 -07003959 pr_err("HugeTLB: Unable to add hstate %s for node %d\n",
Andrew Mortonffb22af2013-02-22 16:32:08 -08003960 h->name, node->dev.id);
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003961 hugetlb_unregister_node(node);
3962 break;
3963 }
3964 }
3965}
3966
3967/*
Lee Schermerhorn9b5e5d02009-12-14 17:58:32 -08003968 * hugetlb init time: register hstate attributes for all registered node
Kay Sievers10fbcf42011-12-21 14:48:43 -08003969 * devices of nodes that have memory. All on-line nodes should have
3970 * registered their associated device by this time.
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003971 */
Luiz Capitulino7d9ca002014-12-12 16:55:24 -08003972static void __init hugetlb_register_all_nodes(void)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003973{
3974 int nid;
3975
Lai Jiangshan8cebfcd2012-12-12 13:51:36 -08003976 for_each_node_state(nid, N_MEMORY) {
Wen Congyang87327942012-12-11 16:00:56 -08003977 struct node *node = node_devices[nid];
Kay Sievers10fbcf42011-12-21 14:48:43 -08003978 if (node->dev.id == nid)
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003979 hugetlb_register_node(node);
3980 }
3981
3982 /*
Kay Sievers10fbcf42011-12-21 14:48:43 -08003983 * Let the node device driver know we're here so it can
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003984 * [un]register hstate attributes on node hotplug.
3985 */
3986 register_hugetlbfs_with_node(hugetlb_register_node,
3987 hugetlb_unregister_node);
3988}
3989#else /* !CONFIG_NUMA */
3990
3991static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp)
3992{
3993 BUG();
3994 if (nidp)
3995 *nidp = -1;
3996 return NULL;
3997}
3998
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08003999static void hugetlb_register_all_nodes(void) { }
4000
4001#endif
4002
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004003static int __init hugetlb_init(void)
4004{
Davidlohr Bueso8382d912014-04-03 14:47:31 -07004005 int i;
4006
Mike Kravetzd6995da2021-02-24 12:08:51 -08004007 BUILD_BUG_ON(sizeof_field(struct page, private) * BITS_PER_BYTE <
4008 __NR_HPAGEFLAGS);
4009
Mike Kravetzc2833a52020-06-03 16:00:50 -07004010 if (!hugepages_supported()) {
4011 if (hugetlb_max_hstate || default_hstate_max_huge_pages)
4012 pr_warn("HugeTLB: huge pages not supported, ignoring associated command-line parameters\n");
Benjamin Herrenschmidt0ef89d22008-07-31 00:07:30 -07004013 return 0;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004014 }
Vaishali Thakkarf8b74812016-02-17 13:11:26 -08004015
Mike Kravetz282f4212020-06-03 16:00:46 -07004016 /*
4017 * Make sure HPAGE_SIZE (HUGETLB_PAGE_ORDER) hstate exists. Some
4018 * architectures depend on setup being done here.
4019 */
4020 hugetlb_add_hstate(HUGETLB_PAGE_ORDER);
4021 if (!parsed_default_hugepagesz) {
4022 /*
4023 * If we did not parse a default huge page size, set
4024 * default_hstate_idx to HPAGE_SIZE hstate. And, if the
4025 * number of huge pages for this default size was implicitly
4026 * specified, set that here as well.
4027 * Note that the implicit setting will overwrite an explicit
4028 * setting. A warning will be printed in this case.
4029 */
4030 default_hstate_idx = hstate_index(size_to_hstate(HPAGE_SIZE));
4031 if (default_hstate_max_huge_pages) {
4032 if (default_hstate.max_huge_pages) {
4033 char buf[32];
Andi Kleenaa888a72008-07-23 21:27:47 -07004034
Mike Kravetz282f4212020-06-03 16:00:46 -07004035 string_get_size(huge_page_size(&default_hstate),
4036 1, STRING_UNITS_2, buf, 32);
4037 pr_warn("HugeTLB: Ignoring hugepages=%lu associated with %s page size\n",
4038 default_hstate.max_huge_pages, buf);
4039 pr_warn("HugeTLB: Using hugepages=%lu for number of default huge pages\n",
4040 default_hstate_max_huge_pages);
4041 }
4042 default_hstate.max_huge_pages =
4043 default_hstate_max_huge_pages;
Zhenguo Yaob5389082021-11-05 13:43:28 -07004044
4045 for (i = 0; i < nr_online_nodes; i++)
4046 default_hstate.max_huge_pages_node[i] =
4047 default_hugepages_in_node[i];
Mike Kravetz282f4212020-06-03 16:00:46 -07004048 }
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004049 }
Andi Kleenaa888a72008-07-23 21:27:47 -07004050
Roman Gushchincf11e852020-04-10 14:32:45 -07004051 hugetlb_cma_check();
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004052 hugetlb_init_hstates();
Andi Kleenaa888a72008-07-23 21:27:47 -07004053 gather_bootmem_prealloc();
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004054 report_hugepages();
4055
4056 hugetlb_sysfs_init();
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08004057 hugetlb_register_all_nodes();
Jianguo Wu7179e7b2012-12-18 14:23:19 -08004058 hugetlb_cgroup_file_init();
Lee Schermerhorn9a3052302009-12-14 17:58:25 -08004059
Davidlohr Bueso8382d912014-04-03 14:47:31 -07004060#ifdef CONFIG_SMP
4061 num_fault_mutexes = roundup_pow_of_two(8 * num_possible_cpus());
4062#else
4063 num_fault_mutexes = 1;
4064#endif
Mike Kravetzc672c7f2015-09-08 15:01:35 -07004065 hugetlb_fault_mutex_table =
Kees Cook6da2ec52018-06-12 13:55:00 -07004066 kmalloc_array(num_fault_mutexes, sizeof(struct mutex),
4067 GFP_KERNEL);
Mike Kravetzc672c7f2015-09-08 15:01:35 -07004068 BUG_ON(!hugetlb_fault_mutex_table);
Davidlohr Bueso8382d912014-04-03 14:47:31 -07004069
4070 for (i = 0; i < num_fault_mutexes; i++)
Mike Kravetzc672c7f2015-09-08 15:01:35 -07004071 mutex_init(&hugetlb_fault_mutex_table[i]);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004072 return 0;
4073}
Paul Gortmaker3e89e1c2016-01-14 15:21:52 -08004074subsys_initcall(hugetlb_init);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004075
Mike Kravetzae94da82020-06-03 16:00:34 -07004076/* Overwritten by architectures with more huge page sizes */
4077bool __init __attribute((weak)) arch_hugetlb_valid_size(unsigned long size)
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07004078{
Mike Kravetzae94da82020-06-03 16:00:34 -07004079 return size == HPAGE_SIZE;
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07004080}
4081
Kirill A. Shutemovd00181b2015-11-06 16:29:57 -08004082void __init hugetlb_add_hstate(unsigned int order)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004083{
4084 struct hstate *h;
Andi Kleen8faa8b02008-07-23 21:27:48 -07004085 unsigned long i;
4086
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004087 if (size_to_hstate(PAGE_SIZE << order)) {
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004088 return;
4089 }
Aneesh Kumar K.V47d38342012-07-31 16:41:54 -07004090 BUG_ON(hugetlb_max_hstate >= HUGE_MAX_HSTATE);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004091 BUG_ON(order == 0);
Aneesh Kumar K.V47d38342012-07-31 16:41:54 -07004092 h = &hstates[hugetlb_max_hstate++];
Mike Kravetz29383962021-05-04 18:34:52 -07004093 mutex_init(&h->resize_lock);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004094 h->order = order;
Miaohe Linaca78302021-02-24 12:07:46 -08004095 h->mask = ~(huge_page_size(h) - 1);
Andi Kleen8faa8b02008-07-23 21:27:48 -07004096 for (i = 0; i < MAX_NUMNODES; ++i)
4097 INIT_LIST_HEAD(&h->hugepage_freelists[i]);
Aneesh Kumar K.V0edaecf2012-07-31 16:42:07 -07004098 INIT_LIST_HEAD(&h->hugepage_activelist);
Andrew Morton54f18d32016-05-19 17:11:40 -07004099 h->next_nid_to_alloc = first_memory_node;
4100 h->next_nid_to_free = first_memory_node;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004101 snprintf(h->name, HSTATE_NAME_LEN, "hugepages-%lukB",
4102 huge_page_size(h)/1024);
Muchun Song77490582021-06-30 18:47:33 -07004103 hugetlb_vmemmap_init(h);
Andi Kleen8faa8b02008-07-23 21:27:48 -07004104
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004105 parsed_hstate = h;
4106}
4107
Zhenguo Yaob5389082021-11-05 13:43:28 -07004108bool __init __weak hugetlb_node_alloc_supported(void)
4109{
4110 return true;
4111}
Mike Kravetz282f4212020-06-03 16:00:46 -07004112/*
4113 * hugepages command line processing
4114 * hugepages normally follows a valid hugepagsz or default_hugepagsz
4115 * specification. If not, ignore the hugepages value. hugepages can also
4116 * be the first huge page command line option in which case it implicitly
4117 * specifies the number of huge pages for the default size.
4118 */
4119static int __init hugepages_setup(char *s)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004120{
4121 unsigned long *mhp;
Andi Kleen8faa8b02008-07-23 21:27:48 -07004122 static unsigned long *last_mhp;
Zhenguo Yaob5389082021-11-05 13:43:28 -07004123 int node = NUMA_NO_NODE;
4124 int count;
4125 unsigned long tmp;
4126 char *p = s;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004127
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07004128 if (!parsed_valid_hugepagesz) {
Mike Kravetz282f4212020-06-03 16:00:46 -07004129 pr_warn("HugeTLB: hugepages=%s does not follow a valid hugepagesz, ignoring\n", s);
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07004130 parsed_valid_hugepagesz = true;
Mike Kravetz282f4212020-06-03 16:00:46 -07004131 return 0;
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07004132 }
Mike Kravetz282f4212020-06-03 16:00:46 -07004133
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004134 /*
Mike Kravetz282f4212020-06-03 16:00:46 -07004135 * !hugetlb_max_hstate means we haven't parsed a hugepagesz= parameter
4136 * yet, so this hugepages= parameter goes to the "default hstate".
4137 * Otherwise, it goes with the previously parsed hugepagesz or
4138 * default_hugepagesz.
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004139 */
Vaishali Thakkar9fee0212016-05-19 17:11:04 -07004140 else if (!hugetlb_max_hstate)
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004141 mhp = &default_hstate_max_huge_pages;
4142 else
4143 mhp = &parsed_hstate->max_huge_pages;
4144
Andi Kleen8faa8b02008-07-23 21:27:48 -07004145 if (mhp == last_mhp) {
Mike Kravetz282f4212020-06-03 16:00:46 -07004146 pr_warn("HugeTLB: hugepages= specified twice without interleaving hugepagesz=, ignoring hugepages=%s\n", s);
4147 return 0;
Andi Kleen8faa8b02008-07-23 21:27:48 -07004148 }
4149
Zhenguo Yaob5389082021-11-05 13:43:28 -07004150 while (*p) {
4151 count = 0;
4152 if (sscanf(p, "%lu%n", &tmp, &count) != 1)
4153 goto invalid;
4154 /* Parameter is node format */
4155 if (p[count] == ':') {
4156 if (!hugetlb_node_alloc_supported()) {
4157 pr_warn("HugeTLB: architecture can't support node specific alloc, ignoring!\n");
4158 return 0;
4159 }
4160 node = tmp;
4161 p += count + 1;
4162 if (node < 0 || node >= nr_online_nodes)
4163 goto invalid;
4164 /* Parse hugepages */
4165 if (sscanf(p, "%lu%n", &tmp, &count) != 1)
4166 goto invalid;
4167 if (!hugetlb_max_hstate)
4168 default_hugepages_in_node[node] = tmp;
4169 else
4170 parsed_hstate->max_huge_pages_node[node] = tmp;
4171 *mhp += tmp;
4172 /* Go to parse next node*/
4173 if (p[count] == ',')
4174 p += count + 1;
4175 else
4176 break;
4177 } else {
4178 if (p != s)
4179 goto invalid;
4180 *mhp = tmp;
4181 break;
4182 }
4183 }
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004184
Andi Kleen8faa8b02008-07-23 21:27:48 -07004185 /*
4186 * Global state is always initialized later in hugetlb_init.
Miaohe Lin04adbc32021-05-04 18:33:22 -07004187 * But we need to allocate gigantic hstates here early to still
Andi Kleen8faa8b02008-07-23 21:27:48 -07004188 * use the bootmem allocator.
4189 */
Miaohe Lin04adbc32021-05-04 18:33:22 -07004190 if (hugetlb_max_hstate && hstate_is_gigantic(parsed_hstate))
Andi Kleen8faa8b02008-07-23 21:27:48 -07004191 hugetlb_hstate_alloc_pages(parsed_hstate);
4192
4193 last_mhp = mhp;
4194
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004195 return 1;
Zhenguo Yaob5389082021-11-05 13:43:28 -07004196
4197invalid:
4198 pr_warn("HugeTLB: Invalid hugepages parameter %s\n", p);
4199 return 0;
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004200}
Mike Kravetz282f4212020-06-03 16:00:46 -07004201__setup("hugepages=", hugepages_setup);
Nick Piggine11bfbf2008-07-23 21:27:52 -07004202
Mike Kravetz282f4212020-06-03 16:00:46 -07004203/*
4204 * hugepagesz command line processing
4205 * A specific huge page size can only be specified once with hugepagesz.
4206 * hugepagesz is followed by hugepages on the command line. The global
4207 * variable 'parsed_valid_hugepagesz' is used to determine if prior
4208 * hugepagesz argument was valid.
4209 */
Mike Kravetz359f2542020-06-03 16:00:38 -07004210static int __init hugepagesz_setup(char *s)
Nick Piggine11bfbf2008-07-23 21:27:52 -07004211{
Mike Kravetz359f2542020-06-03 16:00:38 -07004212 unsigned long size;
Mike Kravetz282f4212020-06-03 16:00:46 -07004213 struct hstate *h;
4214
4215 parsed_valid_hugepagesz = false;
Mike Kravetz359f2542020-06-03 16:00:38 -07004216 size = (unsigned long)memparse(s, NULL);
4217
4218 if (!arch_hugetlb_valid_size(size)) {
Mike Kravetz282f4212020-06-03 16:00:46 -07004219 pr_err("HugeTLB: unsupported hugepagesz=%s\n", s);
Mike Kravetz359f2542020-06-03 16:00:38 -07004220 return 0;
4221 }
4222
Mike Kravetz282f4212020-06-03 16:00:46 -07004223 h = size_to_hstate(size);
4224 if (h) {
4225 /*
4226 * hstate for this size already exists. This is normally
4227 * an error, but is allowed if the existing hstate is the
4228 * default hstate. More specifically, it is only allowed if
4229 * the number of huge pages for the default hstate was not
4230 * previously specified.
4231 */
4232 if (!parsed_default_hugepagesz || h != &default_hstate ||
4233 default_hstate.max_huge_pages) {
4234 pr_warn("HugeTLB: hugepagesz=%s specified twice, ignoring\n", s);
4235 return 0;
4236 }
4237
4238 /*
4239 * No need to call hugetlb_add_hstate() as hstate already
4240 * exists. But, do set parsed_hstate so that a following
4241 * hugepages= parameter will be applied to this hstate.
4242 */
4243 parsed_hstate = h;
4244 parsed_valid_hugepagesz = true;
4245 return 1;
Mike Kravetz38237832020-06-03 16:00:42 -07004246 }
4247
Mike Kravetz359f2542020-06-03 16:00:38 -07004248 hugetlb_add_hstate(ilog2(size) - PAGE_SHIFT);
Mike Kravetz282f4212020-06-03 16:00:46 -07004249 parsed_valid_hugepagesz = true;
Nick Piggine11bfbf2008-07-23 21:27:52 -07004250 return 1;
4251}
Mike Kravetz359f2542020-06-03 16:00:38 -07004252__setup("hugepagesz=", hugepagesz_setup);
4253
Mike Kravetz282f4212020-06-03 16:00:46 -07004254/*
4255 * default_hugepagesz command line input
4256 * Only one instance of default_hugepagesz allowed on command line.
4257 */
Mike Kravetzae94da82020-06-03 16:00:34 -07004258static int __init default_hugepagesz_setup(char *s)
Nick Piggine11bfbf2008-07-23 21:27:52 -07004259{
Mike Kravetzae94da82020-06-03 16:00:34 -07004260 unsigned long size;
Zhenguo Yaob5389082021-11-05 13:43:28 -07004261 int i;
Mike Kravetzae94da82020-06-03 16:00:34 -07004262
Mike Kravetz282f4212020-06-03 16:00:46 -07004263 parsed_valid_hugepagesz = false;
Mike Kravetz282f4212020-06-03 16:00:46 -07004264 if (parsed_default_hugepagesz) {
4265 pr_err("HugeTLB: default_hugepagesz previously specified, ignoring %s\n", s);
4266 return 0;
4267 }
4268
4269 size = (unsigned long)memparse(s, NULL);
4270
4271 if (!arch_hugetlb_valid_size(size)) {
4272 pr_err("HugeTLB: unsupported default_hugepagesz=%s\n", s);
4273 return 0;
4274 }
4275
4276 hugetlb_add_hstate(ilog2(size) - PAGE_SHIFT);
4277 parsed_valid_hugepagesz = true;
4278 parsed_default_hugepagesz = true;
4279 default_hstate_idx = hstate_index(size_to_hstate(size));
4280
4281 /*
4282 * The number of default huge pages (for this size) could have been
4283 * specified as the first hugetlb parameter: hugepages=X. If so,
4284 * then default_hstate_max_huge_pages is set. If the default huge
4285 * page size is gigantic (>= MAX_ORDER), then the pages must be
4286 * allocated here from bootmem allocator.
4287 */
4288 if (default_hstate_max_huge_pages) {
4289 default_hstate.max_huge_pages = default_hstate_max_huge_pages;
Zhenguo Yaob5389082021-11-05 13:43:28 -07004290 for (i = 0; i < nr_online_nodes; i++)
4291 default_hstate.max_huge_pages_node[i] =
4292 default_hugepages_in_node[i];
Mike Kravetz282f4212020-06-03 16:00:46 -07004293 if (hstate_is_gigantic(&default_hstate))
4294 hugetlb_hstate_alloc_pages(&default_hstate);
4295 default_hstate_max_huge_pages = 0;
4296 }
4297
Nick Piggine11bfbf2008-07-23 21:27:52 -07004298 return 1;
4299}
Mike Kravetzae94da82020-06-03 16:00:34 -07004300__setup("default_hugepagesz=", default_hugepagesz_setup);
Nishanth Aravamudana3437872008-07-23 21:27:44 -07004301
Muchun Song8ca39e62020-08-11 18:30:32 -07004302static unsigned int allowed_mems_nr(struct hstate *h)
Nishanth Aravamudan8a213462008-07-25 19:44:37 -07004303{
4304 int node;
4305 unsigned int nr = 0;
Muchun Song8ca39e62020-08-11 18:30:32 -07004306 nodemask_t *mpol_allowed;
4307 unsigned int *array = h->free_huge_pages_node;
4308 gfp_t gfp_mask = htlb_alloc_mask(h);
Nishanth Aravamudan8a213462008-07-25 19:44:37 -07004309
Muchun Song8ca39e62020-08-11 18:30:32 -07004310 mpol_allowed = policy_nodemask_current(gfp_mask);
4311
4312 for_each_node_mask(node, cpuset_current_mems_allowed) {
Jiapeng Zhongc93b0a92021-02-24 12:07:09 -08004313 if (!mpol_allowed || node_isset(node, *mpol_allowed))
Muchun Song8ca39e62020-08-11 18:30:32 -07004314 nr += array[node];
4315 }
Nishanth Aravamudan8a213462008-07-25 19:44:37 -07004316
4317 return nr;
4318}
4319
4320#ifdef CONFIG_SYSCTL
Muchun Song17743792020-09-04 16:36:13 -07004321static int proc_hugetlb_doulongvec_minmax(struct ctl_table *table, int write,
4322 void *buffer, size_t *length,
4323 loff_t *ppos, unsigned long *out)
4324{
4325 struct ctl_table dup_table;
4326
4327 /*
4328 * In order to avoid races with __do_proc_doulongvec_minmax(), we
4329 * can duplicate the @table and alter the duplicate of it.
4330 */
4331 dup_table = *table;
4332 dup_table.data = out;
4333
4334 return proc_doulongvec_minmax(&dup_table, write, buffer, length, ppos);
4335}
4336
Lee Schermerhorn06808b02009-12-14 17:58:21 -08004337static int hugetlb_sysctl_handler_common(bool obey_mempolicy,
4338 struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +02004339 void *buffer, size_t *length, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340{
Andi Kleene5ff2152008-07-23 21:27:42 -07004341 struct hstate *h = &default_hstate;
David Rientjes238d3c12014-08-06 16:06:51 -07004342 unsigned long tmp = h->max_huge_pages;
Michal Hocko08d4a242011-01-13 15:47:26 -08004343 int ret;
Andi Kleene5ff2152008-07-23 21:27:42 -07004344
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004345 if (!hugepages_supported())
Jan Stancek86613622016-03-09 14:08:35 -08004346 return -EOPNOTSUPP;
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004347
Muchun Song17743792020-09-04 16:36:13 -07004348 ret = proc_hugetlb_doulongvec_minmax(table, write, buffer, length, ppos,
4349 &tmp);
Michal Hocko08d4a242011-01-13 15:47:26 -08004350 if (ret)
4351 goto out;
Andi Kleene5ff2152008-07-23 21:27:42 -07004352
David Rientjes238d3c12014-08-06 16:06:51 -07004353 if (write)
4354 ret = __nr_hugepages_store_common(obey_mempolicy, h,
4355 NUMA_NO_NODE, tmp, *length);
Michal Hocko08d4a242011-01-13 15:47:26 -08004356out:
4357 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358}
Mel Gorman396faf02007-07-17 04:03:13 -07004359
Lee Schermerhorn06808b02009-12-14 17:58:21 -08004360int hugetlb_sysctl_handler(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +02004361 void *buffer, size_t *length, loff_t *ppos)
Lee Schermerhorn06808b02009-12-14 17:58:21 -08004362{
4363
4364 return hugetlb_sysctl_handler_common(false, table, write,
4365 buffer, length, ppos);
4366}
4367
4368#ifdef CONFIG_NUMA
4369int hugetlb_mempolicy_sysctl_handler(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +02004370 void *buffer, size_t *length, loff_t *ppos)
Lee Schermerhorn06808b02009-12-14 17:58:21 -08004371{
4372 return hugetlb_sysctl_handler_common(true, table, write,
4373 buffer, length, ppos);
4374}
4375#endif /* CONFIG_NUMA */
4376
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08004377int hugetlb_overcommit_handler(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +02004378 void *buffer, size_t *length, loff_t *ppos)
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08004379{
Andi Kleena5516432008-07-23 21:27:41 -07004380 struct hstate *h = &default_hstate;
Andi Kleene5ff2152008-07-23 21:27:42 -07004381 unsigned long tmp;
Michal Hocko08d4a242011-01-13 15:47:26 -08004382 int ret;
Andi Kleene5ff2152008-07-23 21:27:42 -07004383
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004384 if (!hugepages_supported())
Jan Stancek86613622016-03-09 14:08:35 -08004385 return -EOPNOTSUPP;
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004386
Petr Holasekc033a932011-03-22 16:33:05 -07004387 tmp = h->nr_overcommit_huge_pages;
Andi Kleene5ff2152008-07-23 21:27:42 -07004388
Luiz Capitulinobae7f4a2014-06-04 16:07:08 -07004389 if (write && hstate_is_gigantic(h))
Eric B Munsonadbe8722011-01-13 15:47:27 -08004390 return -EINVAL;
4391
Muchun Song17743792020-09-04 16:36:13 -07004392 ret = proc_hugetlb_doulongvec_minmax(table, write, buffer, length, ppos,
4393 &tmp);
Michal Hocko08d4a242011-01-13 15:47:26 -08004394 if (ret)
4395 goto out;
Andi Kleene5ff2152008-07-23 21:27:42 -07004396
4397 if (write) {
Mike Kravetzdb71ef72021-05-04 18:35:07 -07004398 spin_lock_irq(&hugetlb_lock);
Andi Kleene5ff2152008-07-23 21:27:42 -07004399 h->nr_overcommit_huge_pages = tmp;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07004400 spin_unlock_irq(&hugetlb_lock);
Andi Kleene5ff2152008-07-23 21:27:42 -07004401 }
Michal Hocko08d4a242011-01-13 15:47:26 -08004402out:
4403 return ret;
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08004404}
4405
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406#endif /* CONFIG_SYSCTL */
4407
Alexey Dobriyane1759c22008-10-15 23:50:22 +04004408void hugetlb_report_meminfo(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409{
Roman Gushchinfcb2b0c2018-01-31 16:16:22 -08004410 struct hstate *h;
4411 unsigned long total = 0;
4412
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004413 if (!hugepages_supported())
4414 return;
Roman Gushchinfcb2b0c2018-01-31 16:16:22 -08004415
4416 for_each_hstate(h) {
4417 unsigned long count = h->nr_huge_pages;
4418
Miaohe Linaca78302021-02-24 12:07:46 -08004419 total += huge_page_size(h) * count;
Roman Gushchinfcb2b0c2018-01-31 16:16:22 -08004420
4421 if (h == &default_hstate)
4422 seq_printf(m,
4423 "HugePages_Total: %5lu\n"
4424 "HugePages_Free: %5lu\n"
4425 "HugePages_Rsvd: %5lu\n"
4426 "HugePages_Surp: %5lu\n"
4427 "Hugepagesize: %8lu kB\n",
4428 count,
4429 h->free_huge_pages,
4430 h->resv_huge_pages,
4431 h->surplus_huge_pages,
Miaohe Linaca78302021-02-24 12:07:46 -08004432 huge_page_size(h) / SZ_1K);
Roman Gushchinfcb2b0c2018-01-31 16:16:22 -08004433 }
4434
Miaohe Linaca78302021-02-24 12:07:46 -08004435 seq_printf(m, "Hugetlb: %8lu kB\n", total / SZ_1K);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436}
4437
Joe Perches79815932020-09-16 13:40:43 -07004438int hugetlb_report_node_meminfo(char *buf, int len, int nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439{
Andi Kleena5516432008-07-23 21:27:41 -07004440 struct hstate *h = &default_hstate;
Joe Perches79815932020-09-16 13:40:43 -07004441
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004442 if (!hugepages_supported())
4443 return 0;
Joe Perches79815932020-09-16 13:40:43 -07004444
4445 return sysfs_emit_at(buf, len,
4446 "Node %d HugePages_Total: %5u\n"
4447 "Node %d HugePages_Free: %5u\n"
4448 "Node %d HugePages_Surp: %5u\n",
4449 nid, h->nr_huge_pages_node[nid],
4450 nid, h->free_huge_pages_node[nid],
4451 nid, h->surplus_huge_pages_node[nid]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452}
4453
David Rientjes949f7ec2013-04-29 15:07:48 -07004454void hugetlb_show_meminfo(void)
4455{
4456 struct hstate *h;
4457 int nid;
4458
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07004459 if (!hugepages_supported())
4460 return;
4461
David Rientjes949f7ec2013-04-29 15:07:48 -07004462 for_each_node_state(nid, N_MEMORY)
4463 for_each_hstate(h)
4464 pr_info("Node %d hugepages_total=%u hugepages_free=%u hugepages_surp=%u hugepages_size=%lukB\n",
4465 nid,
4466 h->nr_huge_pages_node[nid],
4467 h->free_huge_pages_node[nid],
4468 h->surplus_huge_pages_node[nid],
Miaohe Linaca78302021-02-24 12:07:46 -08004469 huge_page_size(h) / SZ_1K);
David Rientjes949f7ec2013-04-29 15:07:48 -07004470}
4471
Naoya Horiguchi5d317b22015-11-05 18:47:14 -08004472void hugetlb_report_usage(struct seq_file *m, struct mm_struct *mm)
4473{
4474 seq_printf(m, "HugetlbPages:\t%8lu kB\n",
4475 atomic_long_read(&mm->hugetlb_usage) << (PAGE_SHIFT - 10));
4476}
4477
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478/* Return the number pages of memory we physically have, in PAGE_SIZE units. */
4479unsigned long hugetlb_total_pages(void)
4480{
Wanpeng Lid0028582013-03-22 15:04:40 -07004481 struct hstate *h;
4482 unsigned long nr_total_pages = 0;
4483
4484 for_each_hstate(h)
4485 nr_total_pages += h->nr_huge_pages * pages_per_huge_page(h);
4486 return nr_total_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488
Andi Kleena5516432008-07-23 21:27:41 -07004489static int hugetlb_acct_memory(struct hstate *h, long delta)
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004490{
4491 int ret = -ENOMEM;
4492
Miaohe Lin0aa7f352021-02-24 12:06:57 -08004493 if (!delta)
4494 return 0;
4495
Mike Kravetzdb71ef72021-05-04 18:35:07 -07004496 spin_lock_irq(&hugetlb_lock);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004497 /*
4498 * When cpuset is configured, it breaks the strict hugetlb page
4499 * reservation as the accounting is done on a global variable. Such
4500 * reservation is completely rubbish in the presence of cpuset because
4501 * the reservation is not checked against page availability for the
4502 * current cpuset. Application can still potentially OOM'ed by kernel
4503 * with lack of free htlb page in cpuset that the task is in.
4504 * Attempt to enforce strict accounting with cpuset is almost
4505 * impossible (or too ugly) because cpuset is too fluid that
4506 * task or memory node can be dynamically moved between cpusets.
4507 *
4508 * The change of semantics for shared hugetlb mapping with cpuset is
4509 * undesirable. However, in order to preserve some of the semantics,
4510 * we fall back to check against current free page availability as
4511 * a best attempt and hopefully to minimize the impact of changing
4512 * semantics that cpuset has.
Muchun Song8ca39e62020-08-11 18:30:32 -07004513 *
4514 * Apart from cpuset, we also have memory policy mechanism that
4515 * also determines from which node the kernel will allocate memory
4516 * in a NUMA system. So similar to cpuset, we also should consider
4517 * the memory policy of the current task. Similar to the description
4518 * above.
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004519 */
4520 if (delta > 0) {
Andi Kleena5516432008-07-23 21:27:41 -07004521 if (gather_surplus_pages(h, delta) < 0)
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004522 goto out;
4523
Muchun Song8ca39e62020-08-11 18:30:32 -07004524 if (delta > allowed_mems_nr(h)) {
Andi Kleena5516432008-07-23 21:27:41 -07004525 return_unused_surplus_pages(h, delta);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004526 goto out;
4527 }
4528 }
4529
4530 ret = 0;
4531 if (delta < 0)
Andi Kleena5516432008-07-23 21:27:41 -07004532 return_unused_surplus_pages(h, (unsigned long) -delta);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004533
4534out:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07004535 spin_unlock_irq(&hugetlb_lock);
Mel Gormanfc1b8a72008-07-23 21:27:22 -07004536 return ret;
4537}
4538
Andy Whitcroft84afd992008-07-23 21:27:32 -07004539static void hugetlb_vm_op_open(struct vm_area_struct *vma)
4540{
Joonsoo Kimf522c3a2013-09-11 14:21:53 -07004541 struct resv_map *resv = vma_resv_map(vma);
Andy Whitcroft84afd992008-07-23 21:27:32 -07004542
4543 /*
4544 * This new VMA should share its siblings reservation map if present.
4545 * The VMA will only ever have a valid reservation map pointer where
4546 * it is being copied for another still existing VMA. As that VMA
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004547 * has a reference to the reservation map it cannot disappear until
Andy Whitcroft84afd992008-07-23 21:27:32 -07004548 * after this open call completes. It is therefore safe to take a
4549 * new reference here without additional locking.
4550 */
Mike Kravetz09a26e82021-09-02 14:58:53 -07004551 if (resv && is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
4552 resv_map_dup_hugetlb_cgroup_uncharge_info(resv);
Joonsoo Kimf522c3a2013-09-11 14:21:53 -07004553 kref_get(&resv->refs);
Mike Kravetz09a26e82021-09-02 14:58:53 -07004554 }
Andy Whitcroft84afd992008-07-23 21:27:32 -07004555}
4556
Mel Gormana1e78772008-07-23 21:27:23 -07004557static void hugetlb_vm_op_close(struct vm_area_struct *vma)
4558{
Andi Kleena5516432008-07-23 21:27:41 -07004559 struct hstate *h = hstate_vma(vma);
Joonsoo Kimf522c3a2013-09-11 14:21:53 -07004560 struct resv_map *resv = vma_resv_map(vma);
David Gibson90481622012-03-21 16:34:12 -07004561 struct hugepage_subpool *spool = subpool_vma(vma);
Joonsoo Kim4e35f482014-04-03 14:47:30 -07004562 unsigned long reserve, start, end;
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07004563 long gbl_reserve;
Andy Whitcroft84afd992008-07-23 21:27:32 -07004564
Joonsoo Kim4e35f482014-04-03 14:47:30 -07004565 if (!resv || !is_vma_resv_set(vma, HPAGE_RESV_OWNER))
4566 return;
Andy Whitcroft84afd992008-07-23 21:27:32 -07004567
Joonsoo Kim4e35f482014-04-03 14:47:30 -07004568 start = vma_hugecache_offset(h, vma, vma->vm_start);
4569 end = vma_hugecache_offset(h, vma, vma->vm_end);
Andy Whitcroft84afd992008-07-23 21:27:32 -07004570
Joonsoo Kim4e35f482014-04-03 14:47:30 -07004571 reserve = (end - start) - region_count(resv, start, end);
Mina Almasrye9fe92a2020-04-01 21:11:21 -07004572 hugetlb_cgroup_uncharge_counter(resv, start, end);
Joonsoo Kim4e35f482014-04-03 14:47:30 -07004573 if (reserve) {
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07004574 /*
4575 * Decrement reserve counts. The global reserve count may be
4576 * adjusted if the subpool has a minimum size.
4577 */
4578 gbl_reserve = hugepage_subpool_put_pages(spool, reserve);
4579 hugetlb_acct_memory(h, -gbl_reserve);
Andy Whitcroft84afd992008-07-23 21:27:32 -07004580 }
Mina Almasrye9fe92a2020-04-01 21:11:21 -07004581
4582 kref_put(&resv->refs, resv_map_release);
Mel Gormana1e78772008-07-23 21:27:23 -07004583}
4584
Dan Williams31383c62017-11-29 16:10:28 -08004585static int hugetlb_vm_op_split(struct vm_area_struct *vma, unsigned long addr)
4586{
4587 if (addr & ~(huge_page_mask(hstate_vma(vma))))
4588 return -EINVAL;
4589 return 0;
4590}
4591
Dan Williams05ea8862018-04-05 16:24:25 -07004592static unsigned long hugetlb_vm_op_pagesize(struct vm_area_struct *vma)
4593{
Miaohe Linaca78302021-02-24 12:07:46 -08004594 return huge_page_size(hstate_vma(vma));
Dan Williams05ea8862018-04-05 16:24:25 -07004595}
4596
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597/*
4598 * We cannot handle pagefaults against hugetlb pages at all. They cause
4599 * handle_mm_fault() to try to instantiate regular-sized pages in the
Miaohe Lin6c26d312021-02-24 12:07:19 -08004600 * hugepage VMA. do_page_fault() is supposed to trap this, so BUG is we get
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 * this far.
4602 */
Souptick Joarderb3ec9f32018-06-07 17:08:04 -07004603static vm_fault_t hugetlb_vm_op_fault(struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604{
4605 BUG();
Nick Piggind0217ac2007-07-19 01:47:03 -07004606 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607}
4608
Jane Chueec36362018-08-02 15:36:05 -07004609/*
4610 * When a new function is introduced to vm_operations_struct and added
4611 * to hugetlb_vm_ops, please consider adding the function to shm_vm_ops.
4612 * This is because under System V memory model, mappings created via
4613 * shmget/shmat with "huge page" specified are backed by hugetlbfs files,
4614 * their original vm_ops are overwritten with shm_vm_ops.
4615 */
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04004616const struct vm_operations_struct hugetlb_vm_ops = {
Nick Piggind0217ac2007-07-19 01:47:03 -07004617 .fault = hugetlb_vm_op_fault,
Andy Whitcroft84afd992008-07-23 21:27:32 -07004618 .open = hugetlb_vm_op_open,
Mel Gormana1e78772008-07-23 21:27:23 -07004619 .close = hugetlb_vm_op_close,
Dmitry Safonovdd3b6142020-12-14 19:08:17 -08004620 .may_split = hugetlb_vm_op_split,
Dan Williams05ea8862018-04-05 16:24:25 -07004621 .pagesize = hugetlb_vm_op_pagesize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622};
4623
David Gibson1e8f8892006-01-06 00:10:44 -08004624static pte_t make_huge_pte(struct vm_area_struct *vma, struct page *page,
4625 int writable)
David Gibson63551ae2005-06-21 17:14:44 -07004626{
4627 pte_t entry;
Christophe Leroy79c1c592021-06-30 18:48:00 -07004628 unsigned int shift = huge_page_shift(hstate_vma(vma));
David Gibson63551ae2005-06-21 17:14:44 -07004629
David Gibson1e8f8892006-01-06 00:10:44 -08004630 if (writable) {
Gerald Schaefer106c9922013-04-29 15:07:23 -07004631 entry = huge_pte_mkwrite(huge_pte_mkdirty(mk_huge_pte(page,
4632 vma->vm_page_prot)));
David Gibson63551ae2005-06-21 17:14:44 -07004633 } else {
Gerald Schaefer106c9922013-04-29 15:07:23 -07004634 entry = huge_pte_wrprotect(mk_huge_pte(page,
4635 vma->vm_page_prot));
David Gibson63551ae2005-06-21 17:14:44 -07004636 }
4637 entry = pte_mkyoung(entry);
4638 entry = pte_mkhuge(entry);
Christophe Leroy79c1c592021-06-30 18:48:00 -07004639 entry = arch_make_huge_pte(entry, shift, vma->vm_flags);
David Gibson63551ae2005-06-21 17:14:44 -07004640
4641 return entry;
4642}
4643
David Gibson1e8f8892006-01-06 00:10:44 -08004644static void set_huge_ptep_writable(struct vm_area_struct *vma,
4645 unsigned long address, pte_t *ptep)
4646{
4647 pte_t entry;
4648
Gerald Schaefer106c9922013-04-29 15:07:23 -07004649 entry = huge_pte_mkwrite(huge_pte_mkdirty(huge_ptep_get(ptep)));
Chris Forbes32f84522011-07-25 17:12:14 -07004650 if (huge_ptep_set_access_flags(vma, address, ptep, entry, 1))
Russell King4b3073e2009-12-18 16:40:18 +00004651 update_mmu_cache(vma, address, ptep);
David Gibson1e8f8892006-01-06 00:10:44 -08004652}
4653
Aneesh Kumar K.Vd5ed7442017-07-06 15:38:47 -07004654bool is_hugetlb_entry_migration(pte_t pte)
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004655{
4656 swp_entry_t swp;
4657
4658 if (huge_pte_none(pte) || pte_present(pte))
Aneesh Kumar K.Vd5ed7442017-07-06 15:38:47 -07004659 return false;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004660 swp = pte_to_swp_entry(pte);
Baoquan Hed79d1762020-10-13 16:56:14 -07004661 if (is_migration_entry(swp))
Aneesh Kumar K.Vd5ed7442017-07-06 15:38:47 -07004662 return true;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004663 else
Aneesh Kumar K.Vd5ed7442017-07-06 15:38:47 -07004664 return false;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004665}
4666
Baoquan He3e5c3602020-10-13 16:56:10 -07004667static bool is_hugetlb_entry_hwpoisoned(pte_t pte)
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004668{
4669 swp_entry_t swp;
4670
4671 if (huge_pte_none(pte) || pte_present(pte))
Baoquan He3e5c3602020-10-13 16:56:10 -07004672 return false;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004673 swp = pte_to_swp_entry(pte);
Baoquan Hed79d1762020-10-13 16:56:14 -07004674 if (is_hwpoison_entry(swp))
Baoquan He3e5c3602020-10-13 16:56:10 -07004675 return true;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004676 else
Baoquan He3e5c3602020-10-13 16:56:10 -07004677 return false;
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004678}
David Gibson1e8f8892006-01-06 00:10:44 -08004679
Peter Xu4eae4ef2021-03-12 21:07:33 -08004680static void
4681hugetlb_install_page(struct vm_area_struct *vma, pte_t *ptep, unsigned long addr,
4682 struct page *new_page)
4683{
4684 __SetPageUptodate(new_page);
4685 set_huge_pte_at(vma->vm_mm, addr, ptep, make_huge_pte(vma, new_page, 1));
4686 hugepage_add_new_anon_rmap(new_page, vma, addr);
4687 hugetlb_count_add(pages_per_huge_page(hstate_vma(vma)), vma->vm_mm);
4688 ClearHPageRestoreReserve(new_page);
4689 SetHPageMigratable(new_page);
4690}
4691
David Gibson63551ae2005-06-21 17:14:44 -07004692int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
4693 struct vm_area_struct *vma)
4694{
Mike Kravetz5e415402018-11-16 15:08:04 -08004695 pte_t *src_pte, *dst_pte, entry, dst_entry;
David Gibson63551ae2005-06-21 17:14:44 -07004696 struct page *ptepage;
Hugh Dickins1c598272005-10-19 21:23:43 -07004697 unsigned long addr;
Peter Xuca6eb142021-03-12 21:07:30 -08004698 bool cow = is_cow_mapping(vma->vm_flags);
Andi Kleena5516432008-07-23 21:27:41 -07004699 struct hstate *h = hstate_vma(vma);
4700 unsigned long sz = huge_page_size(h);
Peter Xu4eae4ef2021-03-12 21:07:33 -08004701 unsigned long npages = pages_per_huge_page(h);
Mike Kravetzc0d03812020-04-01 21:11:05 -07004702 struct address_space *mapping = vma->vm_file->f_mapping;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004703 struct mmu_notifier_range range;
Andreas Sandberge8569dd2014-01-21 15:49:09 -08004704 int ret = 0;
David Gibson1e8f8892006-01-06 00:10:44 -08004705
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004706 if (cow) {
Jérôme Glisse7269f992019-05-13 17:20:53 -07004707 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, src,
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07004708 vma->vm_start,
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004709 vma->vm_end);
4710 mmu_notifier_invalidate_range_start(&range);
Mike Kravetzc0d03812020-04-01 21:11:05 -07004711 } else {
4712 /*
4713 * For shared mappings i_mmap_rwsem must be held to call
4714 * huge_pte_alloc, otherwise the returned ptep could go
4715 * away if part of a shared pmd and another thread calls
4716 * huge_pmd_unshare.
4717 */
4718 i_mmap_lock_read(mapping);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004719 }
Andreas Sandberge8569dd2014-01-21 15:49:09 -08004720
Andi Kleena5516432008-07-23 21:27:41 -07004721 for (addr = vma->vm_start; addr < vma->vm_end; addr += sz) {
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004722 spinlock_t *src_ptl, *dst_ptl;
Punit Agrawal7868a202017-07-06 15:39:42 -07004723 src_pte = huge_pte_offset(src, addr, sz);
Hugh Dickinsc74df322005-10-29 18:16:23 -07004724 if (!src_pte)
4725 continue;
Peter Xuaec44e02021-05-04 18:33:00 -07004726 dst_pte = huge_pte_alloc(dst, vma, addr, sz);
Andreas Sandberge8569dd2014-01-21 15:49:09 -08004727 if (!dst_pte) {
4728 ret = -ENOMEM;
4729 break;
4730 }
Larry Woodmanc5c99422008-01-24 05:49:25 -08004731
Mike Kravetz5e415402018-11-16 15:08:04 -08004732 /*
4733 * If the pagetables are shared don't copy or take references.
4734 * dst_pte == src_pte is the common case of src/dest sharing.
4735 *
4736 * However, src could have 'unshared' and dst shares with
4737 * another vma. If dst_pte !none, this implies sharing.
4738 * Check here before taking page table lock, and once again
4739 * after taking the lock below.
4740 */
4741 dst_entry = huge_ptep_get(dst_pte);
4742 if ((dst_pte == src_pte) || !huge_pte_none(dst_entry))
Larry Woodmanc5c99422008-01-24 05:49:25 -08004743 continue;
4744
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004745 dst_ptl = huge_pte_lock(h, dst, dst_pte);
4746 src_ptl = huge_pte_lockptr(h, src, src_pte);
4747 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004748 entry = huge_ptep_get(src_pte);
Mike Kravetz5e415402018-11-16 15:08:04 -08004749 dst_entry = huge_ptep_get(dst_pte);
Peter Xu4eae4ef2021-03-12 21:07:33 -08004750again:
Mike Kravetz5e415402018-11-16 15:08:04 -08004751 if (huge_pte_none(entry) || !huge_pte_none(dst_entry)) {
4752 /*
4753 * Skip if src entry none. Also, skip in the
4754 * unlikely case dst entry !none as this implies
4755 * sharing with another vma.
4756 */
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004757 ;
4758 } else if (unlikely(is_hugetlb_entry_migration(entry) ||
4759 is_hugetlb_entry_hwpoisoned(entry))) {
4760 swp_entry_t swp_entry = pte_to_swp_entry(entry);
4761
Alistair Popple4dd845b2021-06-30 18:54:09 -07004762 if (is_writable_migration_entry(swp_entry) && cow) {
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004763 /*
4764 * COW mappings require pages in both
4765 * parent and child to be set to read.
4766 */
Alistair Popple4dd845b2021-06-30 18:54:09 -07004767 swp_entry = make_readable_migration_entry(
4768 swp_offset(swp_entry));
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004769 entry = swp_entry_to_pte(swp_entry);
Punit Agrawale5251fd2017-07-06 15:39:50 -07004770 set_huge_swap_pte_at(src, addr, src_pte,
4771 entry, sz);
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004772 }
Punit Agrawale5251fd2017-07-06 15:39:50 -07004773 set_huge_swap_pte_at(dst, addr, dst_pte, entry, sz);
Naoya Horiguchi4a705fe2014-06-23 13:22:03 -07004774 } else {
Peter Xu4eae4ef2021-03-12 21:07:33 -08004775 entry = huge_ptep_get(src_pte);
4776 ptepage = pte_page(entry);
4777 get_page(ptepage);
4778
4779 /*
4780 * This is a rare case where we see pinned hugetlb
4781 * pages while they're prone to COW. We need to do the
4782 * COW earlier during fork.
4783 *
4784 * When pre-allocating the page or copying data, we
4785 * need to be without the pgtable locks since we could
4786 * sleep during the process.
4787 */
4788 if (unlikely(page_needs_cow_for_dma(vma, ptepage))) {
4789 pte_t src_pte_old = entry;
4790 struct page *new;
4791
4792 spin_unlock(src_ptl);
4793 spin_unlock(dst_ptl);
4794 /* Do not use reserve as it's private owned */
4795 new = alloc_huge_page(vma, addr, 1);
4796 if (IS_ERR(new)) {
4797 put_page(ptepage);
4798 ret = PTR_ERR(new);
4799 break;
4800 }
4801 copy_user_huge_page(new, ptepage, addr, vma,
4802 npages);
4803 put_page(ptepage);
4804
4805 /* Install the new huge page if src pte stable */
4806 dst_ptl = huge_pte_lock(h, dst, dst_pte);
4807 src_ptl = huge_pte_lockptr(h, src, src_pte);
4808 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
4809 entry = huge_ptep_get(src_pte);
4810 if (!pte_same(src_pte_old, entry)) {
Mike Kravetz846be082021-06-15 18:23:29 -07004811 restore_reserve_on_error(h, vma, addr,
4812 new);
Peter Xu4eae4ef2021-03-12 21:07:33 -08004813 put_page(new);
4814 /* dst_entry won't change as in child */
4815 goto again;
4816 }
4817 hugetlb_install_page(vma, dst_pte, addr, new);
4818 spin_unlock(src_ptl);
4819 spin_unlock(dst_ptl);
4820 continue;
4821 }
4822
Joerg Roedel34ee6452014-11-13 13:46:09 +11004823 if (cow) {
Jérôme Glisse0f108512017-11-15 17:34:07 -08004824 /*
4825 * No need to notify as we are downgrading page
4826 * table protection not changing it to point
4827 * to a new page.
4828 *
Mike Rapoportad56b732018-03-21 21:22:47 +02004829 * See Documentation/vm/mmu_notifier.rst
Jérôme Glisse0f108512017-11-15 17:34:07 -08004830 */
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07004831 huge_ptep_set_wrprotect(src, addr, src_pte);
Peter Xu84894e12021-05-14 17:27:07 -07004832 entry = huge_pte_wrprotect(entry);
Joerg Roedel34ee6452014-11-13 13:46:09 +11004833 }
Peter Xu4eae4ef2021-03-12 21:07:33 -08004834
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08004835 page_dup_rmap(ptepage, true);
Hugh Dickins1c598272005-10-19 21:23:43 -07004836 set_huge_pte_at(dst, addr, dst_pte, entry);
Peter Xu4eae4ef2021-03-12 21:07:33 -08004837 hugetlb_count_add(npages, dst);
Hugh Dickins1c598272005-10-19 21:23:43 -07004838 }
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004839 spin_unlock(src_ptl);
4840 spin_unlock(dst_ptl);
David Gibson63551ae2005-06-21 17:14:44 -07004841 }
David Gibson63551ae2005-06-21 17:14:44 -07004842
Andreas Sandberge8569dd2014-01-21 15:49:09 -08004843 if (cow)
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004844 mmu_notifier_invalidate_range_end(&range);
Mike Kravetzc0d03812020-04-01 21:11:05 -07004845 else
4846 i_mmap_unlock_read(mapping);
Andreas Sandberge8569dd2014-01-21 15:49:09 -08004847
4848 return ret;
David Gibson63551ae2005-06-21 17:14:44 -07004849}
4850
Mina Almasry550a7d62021-11-05 13:41:40 -07004851static void move_huge_pte(struct vm_area_struct *vma, unsigned long old_addr,
4852 unsigned long new_addr, pte_t *src_pte)
4853{
4854 struct hstate *h = hstate_vma(vma);
4855 struct mm_struct *mm = vma->vm_mm;
4856 pte_t *dst_pte, pte;
4857 spinlock_t *src_ptl, *dst_ptl;
4858
4859 dst_pte = huge_pte_offset(mm, new_addr, huge_page_size(h));
4860 dst_ptl = huge_pte_lock(h, mm, dst_pte);
4861 src_ptl = huge_pte_lockptr(h, mm, src_pte);
4862
4863 /*
4864 * We don't have to worry about the ordering of src and dst ptlocks
4865 * because exclusive mmap_sem (or the i_mmap_lock) prevents deadlock.
4866 */
4867 if (src_ptl != dst_ptl)
4868 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
4869
4870 pte = huge_ptep_get_and_clear(mm, old_addr, src_pte);
4871 set_huge_pte_at(mm, new_addr, dst_pte, pte);
4872
4873 if (src_ptl != dst_ptl)
4874 spin_unlock(src_ptl);
4875 spin_unlock(dst_ptl);
4876}
4877
4878int move_hugetlb_page_tables(struct vm_area_struct *vma,
4879 struct vm_area_struct *new_vma,
4880 unsigned long old_addr, unsigned long new_addr,
4881 unsigned long len)
4882{
4883 struct hstate *h = hstate_vma(vma);
4884 struct address_space *mapping = vma->vm_file->f_mapping;
4885 unsigned long sz = huge_page_size(h);
4886 struct mm_struct *mm = vma->vm_mm;
4887 unsigned long old_end = old_addr + len;
4888 unsigned long old_addr_copy;
4889 pte_t *src_pte, *dst_pte;
4890 struct mmu_notifier_range range;
4891
4892 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, mm, old_addr,
4893 old_end);
4894 adjust_range_if_pmd_sharing_possible(vma, &range.start, &range.end);
4895 mmu_notifier_invalidate_range_start(&range);
4896 /* Prevent race with file truncation */
4897 i_mmap_lock_write(mapping);
4898 for (; old_addr < old_end; old_addr += sz, new_addr += sz) {
4899 src_pte = huge_pte_offset(mm, old_addr, sz);
4900 if (!src_pte)
4901 continue;
4902 if (huge_pte_none(huge_ptep_get(src_pte)))
4903 continue;
4904
4905 /* old_addr arg to huge_pmd_unshare() is a pointer and so the
4906 * arg may be modified. Pass a copy instead to preserve the
4907 * value in old_addr.
4908 */
4909 old_addr_copy = old_addr;
4910
4911 if (huge_pmd_unshare(mm, vma, &old_addr_copy, src_pte))
4912 continue;
4913
4914 dst_pte = huge_pte_alloc(mm, new_vma, new_addr, sz);
4915 if (!dst_pte)
4916 break;
4917
4918 move_huge_pte(vma, old_addr, new_addr, src_pte);
4919 }
4920 i_mmap_unlock_write(mapping);
4921 flush_tlb_range(vma, old_end - len, old_end);
4922 mmu_notifier_invalidate_range_end(&range);
4923
4924 return len + old_addr - old_end;
4925}
4926
Peter Xu73c54762021-11-05 13:41:17 -07004927static void __unmap_hugepage_range(struct mmu_gather *tlb, struct vm_area_struct *vma,
4928 unsigned long start, unsigned long end,
4929 struct page *ref_page)
David Gibson63551ae2005-06-21 17:14:44 -07004930{
4931 struct mm_struct *mm = vma->vm_mm;
4932 unsigned long address;
David Gibsonc7546f82005-08-05 11:59:35 -07004933 pte_t *ptep;
David Gibson63551ae2005-06-21 17:14:44 -07004934 pte_t pte;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004935 spinlock_t *ptl;
David Gibson63551ae2005-06-21 17:14:44 -07004936 struct page *page;
Andi Kleena5516432008-07-23 21:27:41 -07004937 struct hstate *h = hstate_vma(vma);
4938 unsigned long sz = huge_page_size(h);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004939 struct mmu_notifier_range range;
Andi Kleena5516432008-07-23 21:27:41 -07004940
David Gibson63551ae2005-06-21 17:14:44 -07004941 WARN_ON(!is_vm_hugetlb_page(vma));
Andi Kleena5516432008-07-23 21:27:41 -07004942 BUG_ON(start & ~huge_page_mask(h));
4943 BUG_ON(end & ~huge_page_mask(h));
David Gibson63551ae2005-06-21 17:14:44 -07004944
Aneesh Kumar K.V07e32662016-12-12 16:42:40 -08004945 /*
4946 * This is a hugetlb vma, all the pte entries should point
4947 * to huge page.
4948 */
Peter Zijlstraed6a7932018-08-31 14:46:08 +02004949 tlb_change_page_size(tlb, sz);
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07004950 tlb_start_vma(tlb, vma);
Mike Kravetzdff11ab2018-10-05 15:51:33 -07004951
4952 /*
4953 * If sharing possible, alert mmu notifiers of worst case.
4954 */
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07004955 mmu_notifier_range_init(&range, MMU_NOTIFY_UNMAP, 0, vma, mm, start,
4956 end);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08004957 adjust_range_if_pmd_sharing_possible(vma, &range.start, &range.end);
4958 mmu_notifier_invalidate_range_start(&range);
Hillf Danton569f48b82014-12-10 15:44:41 -08004959 address = start;
Hillf Danton569f48b82014-12-10 15:44:41 -08004960 for (; address < end; address += sz) {
Punit Agrawal7868a202017-07-06 15:39:42 -07004961 ptep = huge_pte_offset(mm, address, sz);
Adam Litke4c887262005-10-29 18:16:46 -07004962 if (!ptep)
David Gibsonc7546f82005-08-05 11:59:35 -07004963 continue;
4964
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08004965 ptl = huge_pte_lock(h, mm, ptep);
Mike Kravetz34ae2042020-08-11 18:31:38 -07004966 if (huge_pmd_unshare(mm, vma, &address, ptep)) {
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004967 spin_unlock(ptl);
Mike Kravetzdff11ab2018-10-05 15:51:33 -07004968 /*
4969 * We just unmapped a page of PMDs by clearing a PUD.
4970 * The caller's TLB flush range should cover this area.
4971 */
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004972 continue;
4973 }
Chen, Kenneth W39dde652006-12-06 20:32:03 -08004974
Hillf Danton66293262012-03-23 15:01:48 -07004975 pte = huge_ptep_get(ptep);
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004976 if (huge_pte_none(pte)) {
4977 spin_unlock(ptl);
4978 continue;
4979 }
Hillf Danton66293262012-03-23 15:01:48 -07004980
4981 /*
Naoya Horiguchi9fbc1f62015-02-11 15:25:32 -08004982 * Migrating hugepage or HWPoisoned hugepage is already
4983 * unmapped and its refcount is dropped, so just clear pte here.
Hillf Danton66293262012-03-23 15:01:48 -07004984 */
Naoya Horiguchi9fbc1f62015-02-11 15:25:32 -08004985 if (unlikely(!pte_present(pte))) {
Punit Agrawal9386fac2017-07-06 15:39:46 -07004986 huge_pte_clear(mm, address, ptep, sz);
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004987 spin_unlock(ptl);
4988 continue;
Naoya Horiguchi8c4894c2012-12-12 13:52:28 -08004989 }
Hillf Danton66293262012-03-23 15:01:48 -07004990
4991 page = pte_page(pte);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07004992 /*
4993 * If a reference page is supplied, it is because a specific
4994 * page is being unmapped, not a range. Ensure the page we
4995 * are about to unmap is the actual page of interest.
4996 */
4997 if (ref_page) {
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07004998 if (page != ref_page) {
4999 spin_unlock(ptl);
5000 continue;
5001 }
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005002 /*
5003 * Mark the VMA as having unmapped its page so that
5004 * future faults in this VMA will fail rather than
5005 * looking like data was lost
5006 */
5007 set_vma_resv_flags(vma, HPAGE_RESV_UNMAPPED);
5008 }
5009
David Gibsonc7546f82005-08-05 11:59:35 -07005010 pte = huge_ptep_get_and_clear(mm, address, ptep);
Aneesh Kumar K.Vb528e4b2016-12-12 16:42:37 -08005011 tlb_remove_huge_tlb_entry(h, tlb, ptep, address);
Gerald Schaefer106c9922013-04-29 15:07:23 -07005012 if (huge_pte_dirty(pte))
Ken Chen6649a382007-02-08 14:20:27 -08005013 set_page_dirty(page);
Hillf Danton9e811302012-03-21 16:34:03 -07005014
Naoya Horiguchi5d317b22015-11-05 18:47:14 -08005015 hugetlb_count_sub(pages_per_huge_page(h), mm);
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08005016 page_remove_rmap(page, true);
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07005017
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005018 spin_unlock(ptl);
Aneesh Kumar K.Ve77b0852016-07-26 15:24:12 -07005019 tlb_remove_page_size(tlb, page, huge_page_size(h));
Aneesh Kumar K.V31d49da2016-07-26 15:24:06 -07005020 /*
5021 * Bail out after unmapping reference page if supplied
5022 */
5023 if (ref_page)
5024 break;
Chen, Kenneth Wfe1668a2006-10-04 02:15:24 -07005025 }
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08005026 mmu_notifier_invalidate_range_end(&range);
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07005027 tlb_end_vma(tlb, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028}
David Gibson63551ae2005-06-21 17:14:44 -07005029
Mel Gormand8333522012-07-31 16:46:20 -07005030void __unmap_hugepage_range_final(struct mmu_gather *tlb,
5031 struct vm_area_struct *vma, unsigned long start,
5032 unsigned long end, struct page *ref_page)
5033{
5034 __unmap_hugepage_range(tlb, vma, start, end, ref_page);
5035
5036 /*
5037 * Clear this flag so that x86's huge_pmd_share page_table_shareable
5038 * test will fail on a vma being torn down, and not grab a page table
5039 * on its way out. We're lucky that the flag has such an appropriate
5040 * name, and can in fact be safely cleared here. We could clear it
5041 * before the __unmap_hugepage_range above, but all that's necessary
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08005042 * is to clear it before releasing the i_mmap_rwsem. This works
Mel Gormand8333522012-07-31 16:46:20 -07005043 * because in the context this is called, the VMA is about to be
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08005044 * destroyed and the i_mmap_rwsem is held.
Mel Gormand8333522012-07-31 16:46:20 -07005045 */
5046 vma->vm_flags &= ~VM_MAYSHARE;
5047}
5048
Chen, Kenneth W502717f2006-10-11 01:20:46 -07005049void unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005050 unsigned long end, struct page *ref_page)
Chen, Kenneth W502717f2006-10-11 01:20:46 -07005051{
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07005052 struct mmu_gather tlb;
Mike Kravetzdff11ab2018-10-05 15:51:33 -07005053
Will Deacona72afd82021-01-27 23:53:45 +00005054 tlb_gather_mmu(&tlb, vma->vm_mm);
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07005055 __unmap_hugepage_range(&tlb, vma, start, end, ref_page);
Will Deaconae8eba82021-01-27 23:53:43 +00005056 tlb_finish_mmu(&tlb);
Chen, Kenneth W502717f2006-10-11 01:20:46 -07005057}
5058
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005059/*
5060 * This is called when the original mapper is failing to COW a MAP_PRIVATE
Zhiyuan Dai578b7722021-02-24 12:07:26 -08005061 * mapping it owns the reserve page for. The intention is to unmap the page
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005062 * from other VMAs and let the children be SIGKILLed if they are faulting the
5063 * same region.
5064 */
Davidlohr Bueso2f4612a2014-08-06 16:06:45 -07005065static void unmap_ref_private(struct mm_struct *mm, struct vm_area_struct *vma,
5066 struct page *page, unsigned long address)
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005067{
Adam Litke75266742008-11-12 13:24:56 -08005068 struct hstate *h = hstate_vma(vma);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005069 struct vm_area_struct *iter_vma;
5070 struct address_space *mapping;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005071 pgoff_t pgoff;
5072
5073 /*
5074 * vm_pgoff is in PAGE_SIZE units, hence the different calculation
5075 * from page cache lookup which is in HPAGE_SIZE units.
5076 */
Adam Litke75266742008-11-12 13:24:56 -08005077 address = address & huge_page_mask(h);
Michal Hocko36e4f202012-10-08 16:33:31 -07005078 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) +
5079 vma->vm_pgoff;
Al Viro93c76a32015-12-04 23:45:44 -05005080 mapping = vma->vm_file->f_mapping;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005081
Mel Gorman4eb2b1d2009-12-14 17:59:53 -08005082 /*
5083 * Take the mapping lock for the duration of the table walk. As
5084 * this mapping should be shared between all the VMAs,
5085 * __unmap_hugepage_range() is called as the lock is already held
5086 */
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -08005087 i_mmap_lock_write(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07005088 vma_interval_tree_foreach(iter_vma, &mapping->i_mmap, pgoff, pgoff) {
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005089 /* Do not unmap the current VMA */
5090 if (iter_vma == vma)
5091 continue;
5092
5093 /*
Mel Gorman2f84a892015-10-01 15:36:57 -07005094 * Shared VMAs have their own reserves and do not affect
5095 * MAP_PRIVATE accounting but it is possible that a shared
5096 * VMA is using the same page so check and skip such VMAs.
5097 */
5098 if (iter_vma->vm_flags & VM_MAYSHARE)
5099 continue;
5100
5101 /*
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005102 * Unmap the page from other VMAs without their own reserves.
5103 * They get marked to be SIGKILLed if they fault in these
5104 * areas. This is because a future no-page fault on this VMA
5105 * could insert a zeroed page instead of the data existing
5106 * from the time of fork. This would look like data corruption
5107 */
5108 if (!is_vma_resv_set(iter_vma, HPAGE_RESV_OWNER))
Aneesh Kumar K.V24669e52012-07-31 16:42:03 -07005109 unmap_hugepage_range(iter_vma, address,
5110 address + huge_page_size(h), page);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005111 }
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -08005112 i_mmap_unlock_write(mapping);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005113}
5114
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005115/*
5116 * Hugetlb_cow() should be called with page lock of the original hugepage held.
Baolin Wangaa6d2e82021-11-05 13:41:55 -07005117 * Called with hugetlb_fault_mutex_table held and pte_page locked so we
Michal Hockoef009b22012-01-10 15:07:21 -08005118 * cannot race with other handlers or page migration.
5119 * Keep the pte_same checks anyway to make transition from the mutex easier.
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005120 */
Souptick Joarder2b740302018-08-23 17:01:36 -07005121static vm_fault_t hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma,
Huang Ying974e6d62018-08-17 15:45:57 -07005122 unsigned long address, pte_t *ptep,
Aneesh Kumar K.V3999f522016-12-12 16:41:56 -08005123 struct page *pagecache_page, spinlock_t *ptl)
David Gibson1e8f8892006-01-06 00:10:44 -08005124{
Aneesh Kumar K.V3999f522016-12-12 16:41:56 -08005125 pte_t pte;
Andi Kleena5516432008-07-23 21:27:41 -07005126 struct hstate *h = hstate_vma(vma);
David Gibson1e8f8892006-01-06 00:10:44 -08005127 struct page *old_page, *new_page;
Souptick Joarder2b740302018-08-23 17:01:36 -07005128 int outside_reserve = 0;
5129 vm_fault_t ret = 0;
Huang Ying974e6d62018-08-17 15:45:57 -07005130 unsigned long haddr = address & huge_page_mask(h);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08005131 struct mmu_notifier_range range;
David Gibson1e8f8892006-01-06 00:10:44 -08005132
Aneesh Kumar K.V3999f522016-12-12 16:41:56 -08005133 pte = huge_ptep_get(ptep);
David Gibson1e8f8892006-01-06 00:10:44 -08005134 old_page = pte_page(pte);
5135
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005136retry_avoidcopy:
David Gibson1e8f8892006-01-06 00:10:44 -08005137 /* If no-one else is actually using this page, avoid the copy
5138 * and just make the page writable */
Joonsoo Kim37a21402013-09-11 14:21:04 -07005139 if (page_mapcount(old_page) == 1 && PageAnon(old_page)) {
Hugh Dickins5a499732016-07-14 12:07:38 -07005140 page_move_anon_rmap(old_page, vma);
Huang Ying5b7a1d42018-08-17 15:45:53 -07005141 set_huge_ptep_writable(vma, haddr, ptep);
Nick Piggin83c54072007-07-19 01:47:05 -07005142 return 0;
David Gibson1e8f8892006-01-06 00:10:44 -08005143 }
5144
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005145 /*
5146 * If the process that created a MAP_PRIVATE mapping is about to
5147 * perform a COW due to a shared page count, attempt to satisfy
5148 * the allocation without using the existing reserves. The pagecache
5149 * page is used to determine if the reserve at this address was
5150 * consumed or not. If reserves were used, a partial faulted mapping
5151 * at the time of fork() could consume its reserves on COW instead
5152 * of the full address range.
5153 */
Joonsoo Kim5944d012013-09-11 14:21:55 -07005154 if (is_vma_resv_set(vma, HPAGE_RESV_OWNER) &&
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005155 old_page != pagecache_page)
5156 outside_reserve = 1;
5157
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005158 get_page(old_page);
Larry Woodmanb76c8cf2009-12-14 17:59:37 -08005159
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07005160 /*
5161 * Drop page table lock as buddy allocator may be called. It will
5162 * be acquired again before returning to the caller, as expected.
5163 */
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005164 spin_unlock(ptl);
Huang Ying5b7a1d42018-08-17 15:45:53 -07005165 new_page = alloc_huge_page(vma, haddr, outside_reserve);
David Gibson1e8f8892006-01-06 00:10:44 -08005166
Adam Litke2fc39ce2007-11-14 16:59:39 -08005167 if (IS_ERR(new_page)) {
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005168 /*
5169 * If a process owning a MAP_PRIVATE mapping fails to COW,
5170 * it is due to references held by a child and an insufficient
5171 * huge page pool. To guarantee the original mappers
5172 * reliability, unmap the page from child processes. The child
5173 * may get SIGKILLed if it later faults.
5174 */
5175 if (outside_reserve) {
Mike Kravetze7dd91c2020-12-29 15:14:25 -08005176 struct address_space *mapping = vma->vm_file->f_mapping;
5177 pgoff_t idx;
5178 u32 hash;
5179
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005180 put_page(old_page);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005181 BUG_ON(huge_pte_none(pte));
Mike Kravetze7dd91c2020-12-29 15:14:25 -08005182 /*
5183 * Drop hugetlb_fault_mutex and i_mmap_rwsem before
5184 * unmapping. unmapping needs to hold i_mmap_rwsem
5185 * in write mode. Dropping i_mmap_rwsem in read mode
5186 * here is OK as COW mappings do not interact with
5187 * PMD sharing.
5188 *
5189 * Reacquire both after unmap operation.
5190 */
5191 idx = vma_hugecache_offset(h, vma, haddr);
5192 hash = hugetlb_fault_mutex_hash(mapping, idx);
5193 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
5194 i_mmap_unlock_read(mapping);
5195
Huang Ying5b7a1d42018-08-17 15:45:53 -07005196 unmap_ref_private(mm, vma, old_page, haddr);
Mike Kravetze7dd91c2020-12-29 15:14:25 -08005197
5198 i_mmap_lock_read(mapping);
5199 mutex_lock(&hugetlb_fault_mutex_table[hash]);
Davidlohr Bueso2f4612a2014-08-06 16:06:45 -07005200 spin_lock(ptl);
Huang Ying5b7a1d42018-08-17 15:45:53 -07005201 ptep = huge_pte_offset(mm, haddr, huge_page_size(h));
Davidlohr Bueso2f4612a2014-08-06 16:06:45 -07005202 if (likely(ptep &&
5203 pte_same(huge_ptep_get(ptep), pte)))
5204 goto retry_avoidcopy;
5205 /*
5206 * race occurs while re-acquiring page table
5207 * lock, and our job is done.
5208 */
5209 return 0;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005210 }
5211
Souptick Joarder2b740302018-08-23 17:01:36 -07005212 ret = vmf_error(PTR_ERR(new_page));
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07005213 goto out_release_old;
David Gibson1e8f8892006-01-06 00:10:44 -08005214 }
5215
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005216 /*
5217 * When the original hugepage is shared one, it does not have
5218 * anon_vma prepared.
5219 */
Dean Nelson44e2aa92010-10-26 14:22:08 -07005220 if (unlikely(anon_vma_prepare(vma))) {
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07005221 ret = VM_FAULT_OOM;
5222 goto out_release_all;
Dean Nelson44e2aa92010-10-26 14:22:08 -07005223 }
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005224
Huang Ying974e6d62018-08-17 15:45:57 -07005225 copy_user_huge_page(new_page, old_page, address, vma,
Andrea Arcangeli47ad8472011-01-13 15:46:47 -08005226 pages_per_huge_page(h));
Nick Piggin0ed361d2008-02-04 22:29:34 -08005227 __SetPageUptodate(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -08005228
Jérôme Glisse7269f992019-05-13 17:20:53 -07005229 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, mm, haddr,
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07005230 haddr + huge_page_size(h));
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08005231 mmu_notifier_invalidate_range_start(&range);
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07005232
Larry Woodmanb76c8cf2009-12-14 17:59:37 -08005233 /*
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005234 * Retake the page table lock to check for racing updates
Larry Woodmanb76c8cf2009-12-14 17:59:37 -08005235 * before the page tables are altered
5236 */
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005237 spin_lock(ptl);
Huang Ying5b7a1d42018-08-17 15:45:53 -07005238 ptep = huge_pte_offset(mm, haddr, huge_page_size(h));
Naoya Horiguchia9af0c52014-04-07 15:36:54 -07005239 if (likely(ptep && pte_same(huge_ptep_get(ptep), pte))) {
Mike Kravetzd6995da2021-02-24 12:08:51 -08005240 ClearHPageRestoreReserve(new_page);
Joonsoo Kim07443a82013-09-11 14:21:58 -07005241
David Gibson1e8f8892006-01-06 00:10:44 -08005242 /* Break COW */
Huang Ying5b7a1d42018-08-17 15:45:53 -07005243 huge_ptep_clear_flush(vma, haddr, ptep);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08005244 mmu_notifier_invalidate_range(mm, range.start, range.end);
Huang Ying5b7a1d42018-08-17 15:45:53 -07005245 set_huge_pte_at(mm, haddr, ptep,
David Gibson1e8f8892006-01-06 00:10:44 -08005246 make_huge_pte(vma, new_page, 1));
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08005247 page_remove_rmap(old_page, true);
Huang Ying5b7a1d42018-08-17 15:45:53 -07005248 hugepage_add_new_anon_rmap(new_page, vma, haddr);
Mike Kravetz8f251a32021-02-24 12:08:56 -08005249 SetHPageMigratable(new_page);
David Gibson1e8f8892006-01-06 00:10:44 -08005250 /* Make the old page be freed below */
5251 new_page = old_page;
5252 }
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005253 spin_unlock(ptl);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08005254 mmu_notifier_invalidate_range_end(&range);
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07005255out_release_all:
Mike Kravetzc7b18502021-08-19 19:04:33 -07005256 /* No restore in case of successful pagetable update (Break COW) */
5257 if (new_page != old_page)
5258 restore_reserve_on_error(h, vma, haddr, new_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005259 put_page(new_page);
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07005260out_release_old:
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005261 put_page(old_page);
Joonsoo Kim83120342013-09-11 14:21:57 -07005262
Davidlohr Buesoad4404a2014-08-06 16:06:47 -07005263 spin_lock(ptl); /* Caller expects lock to be held */
5264 return ret;
David Gibson1e8f8892006-01-06 00:10:44 -08005265}
5266
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005267/* Return the pagecache page at a given address within a VMA */
Andi Kleena5516432008-07-23 21:27:41 -07005268static struct page *hugetlbfs_pagecache_page(struct hstate *h,
5269 struct vm_area_struct *vma, unsigned long address)
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005270{
5271 struct address_space *mapping;
Andy Whitcrofte7c4b0b2008-07-23 21:27:26 -07005272 pgoff_t idx;
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005273
5274 mapping = vma->vm_file->f_mapping;
Andi Kleena5516432008-07-23 21:27:41 -07005275 idx = vma_hugecache_offset(h, vma, address);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005276
5277 return find_lock_page(mapping, idx);
5278}
5279
Hugh Dickins3ae77f42009-09-21 17:03:33 -07005280/*
5281 * Return whether there is a pagecache page to back given address within VMA.
5282 * Caller follow_hugetlb_page() holds page_table_lock so we cannot lock_page.
5283 */
5284static bool hugetlbfs_pagecache_present(struct hstate *h,
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005285 struct vm_area_struct *vma, unsigned long address)
5286{
5287 struct address_space *mapping;
5288 pgoff_t idx;
5289 struct page *page;
5290
5291 mapping = vma->vm_file->f_mapping;
5292 idx = vma_hugecache_offset(h, vma, address);
5293
5294 page = find_get_page(mapping, idx);
5295 if (page)
5296 put_page(page);
5297 return page != NULL;
5298}
5299
Mike Kravetzab76ad52015-09-08 15:01:50 -07005300int huge_add_to_page_cache(struct page *page, struct address_space *mapping,
5301 pgoff_t idx)
5302{
5303 struct inode *inode = mapping->host;
5304 struct hstate *h = hstate_inode(inode);
5305 int err = add_to_page_cache(page, mapping, idx, GFP_KERNEL);
5306
5307 if (err)
5308 return err;
Mike Kravetzd6995da2021-02-24 12:08:51 -08005309 ClearHPageRestoreReserve(page);
Mike Kravetzab76ad52015-09-08 15:01:50 -07005310
Mike Kravetz22146c32018-10-26 15:10:58 -07005311 /*
5312 * set page dirty so that it will not be removed from cache/file
5313 * by non-hugetlbfs specific code paths.
5314 */
5315 set_page_dirty(page);
5316
Mike Kravetzab76ad52015-09-08 15:01:50 -07005317 spin_lock(&inode->i_lock);
5318 inode->i_blocks += blocks_per_huge_page(h);
5319 spin_unlock(&inode->i_lock);
5320 return 0;
5321}
5322
Axel Rasmussen7677f7f2021-05-04 18:35:36 -07005323static inline vm_fault_t hugetlb_handle_userfault(struct vm_area_struct *vma,
5324 struct address_space *mapping,
5325 pgoff_t idx,
5326 unsigned int flags,
5327 unsigned long haddr,
5328 unsigned long reason)
5329{
5330 vm_fault_t ret;
5331 u32 hash;
5332 struct vm_fault vmf = {
5333 .vma = vma,
5334 .address = haddr,
5335 .flags = flags,
5336
5337 /*
5338 * Hard to debug if it ends up being
5339 * used by a callee that assumes
5340 * something about the other
5341 * uninitialized fields... same as in
5342 * memory.c
5343 */
5344 };
5345
5346 /*
5347 * hugetlb_fault_mutex and i_mmap_rwsem must be
5348 * dropped before handling userfault. Reacquire
5349 * after handling fault to make calling code simpler.
5350 */
5351 hash = hugetlb_fault_mutex_hash(mapping, idx);
5352 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
5353 i_mmap_unlock_read(mapping);
5354 ret = handle_userfault(&vmf, reason);
5355 i_mmap_lock_read(mapping);
5356 mutex_lock(&hugetlb_fault_mutex_table[hash]);
5357
5358 return ret;
5359}
5360
Souptick Joarder2b740302018-08-23 17:01:36 -07005361static vm_fault_t hugetlb_no_page(struct mm_struct *mm,
5362 struct vm_area_struct *vma,
5363 struct address_space *mapping, pgoff_t idx,
5364 unsigned long address, pte_t *ptep, unsigned int flags)
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01005365{
Andi Kleena5516432008-07-23 21:27:41 -07005366 struct hstate *h = hstate_vma(vma);
Souptick Joarder2b740302018-08-23 17:01:36 -07005367 vm_fault_t ret = VM_FAULT_SIGBUS;
Hillf Danton409eb8c2012-01-20 14:34:13 -08005368 int anon_rmap = 0;
Adam Litke4c887262005-10-29 18:16:46 -07005369 unsigned long size;
Adam Litke4c887262005-10-29 18:16:46 -07005370 struct page *page;
David Gibson1e8f8892006-01-06 00:10:44 -08005371 pte_t new_pte;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005372 spinlock_t *ptl;
Huang Ying285b8dc2018-06-07 17:08:08 -07005373 unsigned long haddr = address & huge_page_mask(h);
Mike Kravetzc7b18502021-08-19 19:04:33 -07005374 bool new_page, new_pagecache_page = false;
Adam Litke4c887262005-10-29 18:16:46 -07005375
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005376 /*
5377 * Currently, we are forced to kill the process in the event the
5378 * original mapper has unmapped pages from the child due to a failed
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005379 * COW. Warn that such a situation has occurred as it may not be obvious
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005380 */
5381 if (is_vma_resv_set(vma, HPAGE_RESV_UNMAPPED)) {
Geoffrey Thomas910154d2016-03-09 14:08:04 -08005382 pr_warn_ratelimited("PID %d killed due to inadequate hugepage pool\n",
Andrew Mortonffb22af2013-02-22 16:32:08 -08005383 current->pid);
Mel Gorman04f2cbe2008-07-23 21:27:25 -07005384 return ret;
5385 }
5386
Adam Litke4c887262005-10-29 18:16:46 -07005387 /*
Mike Kravetz87bf91d2020-04-01 21:11:08 -07005388 * We can not race with truncation due to holding i_mmap_rwsem.
5389 * i_size is modified when holding i_mmap_rwsem, so check here
5390 * once for faults beyond end of file.
Adam Litke4c887262005-10-29 18:16:46 -07005391 */
Mike Kravetz87bf91d2020-04-01 21:11:08 -07005392 size = i_size_read(mapping->host) >> huge_page_shift(h);
5393 if (idx >= size)
5394 goto out;
5395
Christoph Lameter6bda6662006-01-06 00:10:49 -08005396retry:
Mike Kravetzc7b18502021-08-19 19:04:33 -07005397 new_page = false;
Christoph Lameter6bda6662006-01-06 00:10:49 -08005398 page = find_lock_page(mapping, idx);
5399 if (!page) {
Axel Rasmussen7677f7f2021-05-04 18:35:36 -07005400 /* Check for page in userfault range */
Mike Kravetz1a1aad82017-02-22 15:43:01 -08005401 if (userfaultfd_missing(vma)) {
Axel Rasmussen7677f7f2021-05-04 18:35:36 -07005402 ret = hugetlb_handle_userfault(vma, mapping, idx,
5403 flags, haddr,
5404 VM_UFFD_MISSING);
Mike Kravetz1a1aad82017-02-22 15:43:01 -08005405 goto out;
5406 }
5407
Huang Ying285b8dc2018-06-07 17:08:08 -07005408 page = alloc_huge_page(vma, haddr, 0);
Adam Litke2fc39ce2007-11-14 16:59:39 -08005409 if (IS_ERR(page)) {
Mike Kravetz4643d672019-08-13 15:38:00 -07005410 /*
5411 * Returning error will result in faulting task being
5412 * sent SIGBUS. The hugetlb fault mutex prevents two
5413 * tasks from racing to fault in the same page which
5414 * could result in false unable to allocate errors.
5415 * Page migration does not take the fault mutex, but
5416 * does a clear then write of pte's under page table
5417 * lock. Page fault code could race with migration,
5418 * notice the clear pte and try to allocate a page
5419 * here. Before returning error, get ptl and make
5420 * sure there really is no pte entry.
5421 */
5422 ptl = huge_pte_lock(h, mm, ptep);
Miaohe Lind83e6c8a2021-05-04 18:33:31 -07005423 ret = 0;
5424 if (huge_pte_none(huge_ptep_get(ptep)))
5425 ret = vmf_error(PTR_ERR(page));
Mike Kravetz4643d672019-08-13 15:38:00 -07005426 spin_unlock(ptl);
Christoph Lameter6bda6662006-01-06 00:10:49 -08005427 goto out;
5428 }
Andrea Arcangeli47ad8472011-01-13 15:46:47 -08005429 clear_huge_page(page, address, pages_per_huge_page(h));
Nick Piggin0ed361d2008-02-04 22:29:34 -08005430 __SetPageUptodate(page);
Mike Kravetzcb6acd02019-02-28 16:22:02 -08005431 new_page = true;
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01005432
Mel Gormanf83a2752009-05-28 14:34:40 -07005433 if (vma->vm_flags & VM_MAYSHARE) {
Mike Kravetzab76ad52015-09-08 15:01:50 -07005434 int err = huge_add_to_page_cache(page, mapping, idx);
Christoph Lameter6bda6662006-01-06 00:10:49 -08005435 if (err) {
5436 put_page(page);
Christoph Lameter6bda6662006-01-06 00:10:49 -08005437 if (err == -EEXIST)
5438 goto retry;
5439 goto out;
5440 }
Mike Kravetzc7b18502021-08-19 19:04:33 -07005441 new_pagecache_page = true;
Mel Gorman23be7462010-04-23 13:17:56 -04005442 } else {
Christoph Lameter6bda6662006-01-06 00:10:49 -08005443 lock_page(page);
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005444 if (unlikely(anon_vma_prepare(vma))) {
5445 ret = VM_FAULT_OOM;
5446 goto backout_unlocked;
5447 }
Hillf Danton409eb8c2012-01-20 14:34:13 -08005448 anon_rmap = 1;
Mel Gorman23be7462010-04-23 13:17:56 -04005449 }
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005450 } else {
Naoya Horiguchi998b4382010-09-08 10:19:32 +09005451 /*
5452 * If memory error occurs between mmap() and fault, some process
5453 * don't have hwpoisoned swap entry for errored virtual address.
5454 * So we need to block hugepage fault by PG_hwpoison bit check.
5455 */
5456 if (unlikely(PageHWPoison(page))) {
Miaohe Lin0eb98f12021-01-12 15:49:24 -08005457 ret = VM_FAULT_HWPOISON_LARGE |
Aneesh Kumar K.V972dc4d2012-07-31 16:42:00 -07005458 VM_FAULT_SET_HINDEX(hstate_index(h));
Naoya Horiguchi998b4382010-09-08 10:19:32 +09005459 goto backout_unlocked;
5460 }
Axel Rasmussen7677f7f2021-05-04 18:35:36 -07005461
5462 /* Check for page in userfault range. */
5463 if (userfaultfd_minor(vma)) {
5464 unlock_page(page);
5465 put_page(page);
5466 ret = hugetlb_handle_userfault(vma, mapping, idx,
5467 flags, haddr,
5468 VM_UFFD_MINOR);
5469 goto out;
5470 }
Christoph Lameter6bda6662006-01-06 00:10:49 -08005471 }
David Gibson1e8f8892006-01-06 00:10:44 -08005472
Andy Whitcroft57303d82008-08-12 15:08:47 -07005473 /*
5474 * If we are going to COW a private mapping later, we examine the
5475 * pending reservations for this page now. This will ensure that
5476 * any allocations necessary to record that reservation occur outside
5477 * the spinlock.
5478 */
Mike Kravetz5e911372015-09-08 15:01:28 -07005479 if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
Huang Ying285b8dc2018-06-07 17:08:08 -07005480 if (vma_needs_reservation(h, vma, haddr) < 0) {
Andy Whitcroft2b267362008-08-12 15:08:49 -07005481 ret = VM_FAULT_OOM;
5482 goto backout_unlocked;
5483 }
Mike Kravetz5e911372015-09-08 15:01:28 -07005484 /* Just decrements count, does not deallocate */
Huang Ying285b8dc2018-06-07 17:08:08 -07005485 vma_end_reservation(h, vma, haddr);
Mike Kravetz5e911372015-09-08 15:01:28 -07005486 }
Andy Whitcroft57303d82008-08-12 15:08:47 -07005487
Aneesh Kumar K.V8bea8052016-12-12 16:41:59 -08005488 ptl = huge_pte_lock(h, mm, ptep);
Nick Piggin83c54072007-07-19 01:47:05 -07005489 ret = 0;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07005490 if (!huge_pte_none(huge_ptep_get(ptep)))
Adam Litke4c887262005-10-29 18:16:46 -07005491 goto backout;
5492
Joonsoo Kim07443a82013-09-11 14:21:58 -07005493 if (anon_rmap) {
Mike Kravetzd6995da2021-02-24 12:08:51 -08005494 ClearHPageRestoreReserve(page);
Huang Ying285b8dc2018-06-07 17:08:08 -07005495 hugepage_add_new_anon_rmap(page, vma, haddr);
Choi Gi-yongac714902014-04-07 15:37:36 -07005496 } else
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08005497 page_dup_rmap(page, true);
David Gibson1e8f8892006-01-06 00:10:44 -08005498 new_pte = make_huge_pte(vma, page, ((vma->vm_flags & VM_WRITE)
5499 && (vma->vm_flags & VM_SHARED)));
Huang Ying285b8dc2018-06-07 17:08:08 -07005500 set_huge_pte_at(mm, haddr, ptep, new_pte);
David Gibson1e8f8892006-01-06 00:10:44 -08005501
Naoya Horiguchi5d317b22015-11-05 18:47:14 -08005502 hugetlb_count_add(pages_per_huge_page(h), mm);
Hugh Dickins788c7df2009-06-23 13:49:05 +01005503 if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
David Gibson1e8f8892006-01-06 00:10:44 -08005504 /* Optimization, do the COW without a second fault */
Huang Ying974e6d62018-08-17 15:45:57 -07005505 ret = hugetlb_cow(mm, vma, address, ptep, page, ptl);
David Gibson1e8f8892006-01-06 00:10:44 -08005506 }
5507
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005508 spin_unlock(ptl);
Mike Kravetzcb6acd02019-02-28 16:22:02 -08005509
5510 /*
Mike Kravetz8f251a32021-02-24 12:08:56 -08005511 * Only set HPageMigratable in newly allocated pages. Existing pages
5512 * found in the pagecache may not have HPageMigratableset if they have
5513 * been isolated for migration.
Mike Kravetzcb6acd02019-02-28 16:22:02 -08005514 */
5515 if (new_page)
Mike Kravetz8f251a32021-02-24 12:08:56 -08005516 SetHPageMigratable(page);
Mike Kravetzcb6acd02019-02-28 16:22:02 -08005517
Adam Litke4c887262005-10-29 18:16:46 -07005518 unlock_page(page);
5519out:
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01005520 return ret;
Adam Litke4c887262005-10-29 18:16:46 -07005521
5522backout:
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005523 spin_unlock(ptl);
Andy Whitcroft2b267362008-08-12 15:08:49 -07005524backout_unlocked:
Adam Litke4c887262005-10-29 18:16:46 -07005525 unlock_page(page);
Mike Kravetzc7b18502021-08-19 19:04:33 -07005526 /* restore reserve for newly allocated pages not in page cache */
5527 if (new_page && !new_pagecache_page)
5528 restore_reserve_on_error(h, vma, haddr, page);
Adam Litke4c887262005-10-29 18:16:46 -07005529 put_page(page);
5530 goto out;
Hugh Dickinsac9b9c62005-10-20 16:24:28 +01005531}
5532
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005533#ifdef CONFIG_SMP
Wei Yang188b04a2019-11-30 17:57:02 -08005534u32 hugetlb_fault_mutex_hash(struct address_space *mapping, pgoff_t idx)
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005535{
5536 unsigned long key[2];
5537 u32 hash;
5538
Mike Kravetz1b426ba2019-05-13 17:19:41 -07005539 key[0] = (unsigned long) mapping;
5540 key[1] = idx;
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005541
Mike Kravetz55254632019-11-30 17:56:30 -08005542 hash = jhash2((u32 *)&key, sizeof(key)/(sizeof(u32)), 0);
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005543
5544 return hash & (num_fault_mutexes - 1);
5545}
5546#else
5547/*
Miaohe Lin6c26d312021-02-24 12:07:19 -08005548 * For uniprocessor systems we always use a single mutex, so just
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005549 * return 0 and avoid the hashing overhead.
5550 */
Wei Yang188b04a2019-11-30 17:57:02 -08005551u32 hugetlb_fault_mutex_hash(struct address_space *mapping, pgoff_t idx)
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005552{
5553 return 0;
5554}
5555#endif
5556
Souptick Joarder2b740302018-08-23 17:01:36 -07005557vm_fault_t hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
Hugh Dickins788c7df2009-06-23 13:49:05 +01005558 unsigned long address, unsigned int flags)
Adam Litke86e52162006-01-06 00:10:43 -08005559{
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005560 pte_t *ptep, entry;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005561 spinlock_t *ptl;
Souptick Joarder2b740302018-08-23 17:01:36 -07005562 vm_fault_t ret;
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005563 u32 hash;
5564 pgoff_t idx;
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005565 struct page *page = NULL;
Andy Whitcroft57303d82008-08-12 15:08:47 -07005566 struct page *pagecache_page = NULL;
Andi Kleena5516432008-07-23 21:27:41 -07005567 struct hstate *h = hstate_vma(vma);
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005568 struct address_space *mapping;
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005569 int need_wait_lock = 0;
Huang Ying285b8dc2018-06-07 17:08:08 -07005570 unsigned long haddr = address & huge_page_mask(h);
Adam Litke86e52162006-01-06 00:10:43 -08005571
Huang Ying285b8dc2018-06-07 17:08:08 -07005572 ptep = huge_pte_offset(mm, haddr, huge_page_size(h));
Naoya Horiguchifd6a03e2010-05-28 09:29:21 +09005573 if (ptep) {
Mike Kravetzc0d03812020-04-01 21:11:05 -07005574 /*
5575 * Since we hold no locks, ptep could be stale. That is
5576 * OK as we are only making decisions based on content and
5577 * not actually modifying content here.
5578 */
Naoya Horiguchifd6a03e2010-05-28 09:29:21 +09005579 entry = huge_ptep_get(ptep);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09005580 if (unlikely(is_hugetlb_entry_migration(entry))) {
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005581 migration_entry_wait_huge(vma, mm, ptep);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09005582 return 0;
5583 } else if (unlikely(is_hugetlb_entry_hwpoisoned(entry)))
Chris Forbes32f84522011-07-25 17:12:14 -07005584 return VM_FAULT_HWPOISON_LARGE |
Aneesh Kumar K.V972dc4d2012-07-31 16:42:00 -07005585 VM_FAULT_SET_HINDEX(hstate_index(h));
Naoya Horiguchifd6a03e2010-05-28 09:29:21 +09005586 }
5587
Mike Kravetzc0d03812020-04-01 21:11:05 -07005588 /*
5589 * Acquire i_mmap_rwsem before calling huge_pte_alloc and hold
Mike Kravetz87bf91d2020-04-01 21:11:08 -07005590 * until finished with ptep. This serves two purposes:
5591 * 1) It prevents huge_pmd_unshare from being called elsewhere
5592 * and making the ptep no longer valid.
5593 * 2) It synchronizes us with i_size modifications during truncation.
Mike Kravetzc0d03812020-04-01 21:11:05 -07005594 *
5595 * ptep could have already be assigned via huge_pte_offset. That
5596 * is OK, as huge_pte_alloc will return the same value unless
5597 * something has changed.
5598 */
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005599 mapping = vma->vm_file->f_mapping;
Mike Kravetzc0d03812020-04-01 21:11:05 -07005600 i_mmap_lock_read(mapping);
Peter Xuaec44e02021-05-04 18:33:00 -07005601 ptep = huge_pte_alloc(mm, vma, haddr, huge_page_size(h));
Mike Kravetzc0d03812020-04-01 21:11:05 -07005602 if (!ptep) {
5603 i_mmap_unlock_read(mapping);
5604 return VM_FAULT_OOM;
5605 }
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005606
David Gibson3935baa2006-03-22 00:08:53 -08005607 /*
5608 * Serialize hugepage allocation and instantiation, so that we don't
5609 * get spurious allocation failures if two CPUs race to instantiate
5610 * the same page in the page cache.
5611 */
Mike Kravetzc0d03812020-04-01 21:11:05 -07005612 idx = vma_hugecache_offset(h, vma, haddr);
Wei Yang188b04a2019-11-30 17:57:02 -08005613 hash = hugetlb_fault_mutex_hash(mapping, idx);
Mike Kravetzc672c7f2015-09-08 15:01:35 -07005614 mutex_lock(&hugetlb_fault_mutex_table[hash]);
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005615
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07005616 entry = huge_ptep_get(ptep);
5617 if (huge_pte_none(entry)) {
Davidlohr Bueso8382d912014-04-03 14:47:31 -07005618 ret = hugetlb_no_page(mm, vma, mapping, idx, address, ptep, flags);
David Gibsonb4d1d992008-10-15 22:01:11 -07005619 goto out_mutex;
David Gibson3935baa2006-03-22 00:08:53 -08005620 }
Adam Litke86e52162006-01-06 00:10:43 -08005621
Nick Piggin83c54072007-07-19 01:47:05 -07005622 ret = 0;
David Gibson1e8f8892006-01-06 00:10:44 -08005623
Andy Whitcroft57303d82008-08-12 15:08:47 -07005624 /*
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005625 * entry could be a migration/hwpoison entry at this point, so this
5626 * check prevents the kernel from going below assuming that we have
Ethon Paul7c8de352020-06-04 16:49:07 -07005627 * an active hugepage in pagecache. This goto expects the 2nd page
5628 * fault, and is_hugetlb_entry_(migration|hwpoisoned) check will
5629 * properly handle it.
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005630 */
5631 if (!pte_present(entry))
5632 goto out_mutex;
5633
5634 /*
Andy Whitcroft57303d82008-08-12 15:08:47 -07005635 * If we are going to COW the mapping later, we examine the pending
5636 * reservations for this page now. This will ensure that any
5637 * allocations necessary to record that reservation occur outside the
5638 * spinlock. For private mappings, we also lookup the pagecache
5639 * page now as it is used to determine if a reservation has been
5640 * consumed.
5641 */
Gerald Schaefer106c9922013-04-29 15:07:23 -07005642 if ((flags & FAULT_FLAG_WRITE) && !huge_pte_write(entry)) {
Huang Ying285b8dc2018-06-07 17:08:08 -07005643 if (vma_needs_reservation(h, vma, haddr) < 0) {
Andy Whitcroft2b267362008-08-12 15:08:49 -07005644 ret = VM_FAULT_OOM;
David Gibsonb4d1d992008-10-15 22:01:11 -07005645 goto out_mutex;
Andy Whitcroft2b267362008-08-12 15:08:49 -07005646 }
Mike Kravetz5e911372015-09-08 15:01:28 -07005647 /* Just decrements count, does not deallocate */
Huang Ying285b8dc2018-06-07 17:08:08 -07005648 vma_end_reservation(h, vma, haddr);
Andy Whitcroft57303d82008-08-12 15:08:47 -07005649
Mel Gormanf83a2752009-05-28 14:34:40 -07005650 if (!(vma->vm_flags & VM_MAYSHARE))
Andy Whitcroft57303d82008-08-12 15:08:47 -07005651 pagecache_page = hugetlbfs_pagecache_page(h,
Huang Ying285b8dc2018-06-07 17:08:08 -07005652 vma, haddr);
Andy Whitcroft57303d82008-08-12 15:08:47 -07005653 }
5654
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005655 ptl = huge_pte_lock(h, mm, ptep);
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09005656
David Gibson1e8f8892006-01-06 00:10:44 -08005657 /* Check for a racing update before calling hugetlb_cow */
David Gibsonb4d1d992008-10-15 22:01:11 -07005658 if (unlikely(!pte_same(entry, huge_ptep_get(ptep))))
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005659 goto out_ptl;
David Gibsonb4d1d992008-10-15 22:01:11 -07005660
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005661 /*
5662 * hugetlb_cow() requires page locks of pte_page(entry) and
5663 * pagecache_page, so here we need take the former one
5664 * when page != pagecache_page or !pagecache_page.
5665 */
5666 page = pte_page(entry);
5667 if (page != pagecache_page)
5668 if (!trylock_page(page)) {
5669 need_wait_lock = 1;
5670 goto out_ptl;
5671 }
5672
5673 get_page(page);
David Gibsonb4d1d992008-10-15 22:01:11 -07005674
Hugh Dickins788c7df2009-06-23 13:49:05 +01005675 if (flags & FAULT_FLAG_WRITE) {
Gerald Schaefer106c9922013-04-29 15:07:23 -07005676 if (!huge_pte_write(entry)) {
Huang Ying974e6d62018-08-17 15:45:57 -07005677 ret = hugetlb_cow(mm, vma, address, ptep,
Aneesh Kumar K.V3999f522016-12-12 16:41:56 -08005678 pagecache_page, ptl);
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005679 goto out_put_page;
David Gibsonb4d1d992008-10-15 22:01:11 -07005680 }
Gerald Schaefer106c9922013-04-29 15:07:23 -07005681 entry = huge_pte_mkdirty(entry);
David Gibsonb4d1d992008-10-15 22:01:11 -07005682 }
5683 entry = pte_mkyoung(entry);
Huang Ying285b8dc2018-06-07 17:08:08 -07005684 if (huge_ptep_set_access_flags(vma, haddr, ptep, entry,
Hugh Dickins788c7df2009-06-23 13:49:05 +01005685 flags & FAULT_FLAG_WRITE))
Huang Ying285b8dc2018-06-07 17:08:08 -07005686 update_mmu_cache(vma, haddr, ptep);
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005687out_put_page:
5688 if (page != pagecache_page)
5689 unlock_page(page);
5690 put_page(page);
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005691out_ptl:
5692 spin_unlock(ptl);
Andy Whitcroft57303d82008-08-12 15:08:47 -07005693
5694 if (pagecache_page) {
5695 unlock_page(pagecache_page);
5696 put_page(pagecache_page);
5697 }
David Gibsonb4d1d992008-10-15 22:01:11 -07005698out_mutex:
Mike Kravetzc672c7f2015-09-08 15:01:35 -07005699 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
Mike Kravetzc0d03812020-04-01 21:11:05 -07005700 i_mmap_unlock_read(mapping);
Naoya Horiguchi0f792cf2015-02-11 15:25:25 -08005701 /*
5702 * Generally it's safe to hold refcount during waiting page lock. But
5703 * here we just wait to defer the next page fault to avoid busy loop and
5704 * the page is not used after unlocked before returning from the current
5705 * page fault. So we are safe from accessing freed page, even if we wait
5706 * here without taking refcount.
5707 */
5708 if (need_wait_lock)
5709 wait_on_page_locked(page);
David Gibson1e8f8892006-01-06 00:10:44 -08005710 return ret;
Adam Litke86e52162006-01-06 00:10:43 -08005711}
5712
Axel Rasmussen714c1892021-05-04 18:35:45 -07005713#ifdef CONFIG_USERFAULTFD
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005714/*
5715 * Used by userfaultfd UFFDIO_COPY. Based on mcopy_atomic_pte with
5716 * modifications for huge pages.
5717 */
5718int hugetlb_mcopy_atomic_pte(struct mm_struct *dst_mm,
5719 pte_t *dst_pte,
5720 struct vm_area_struct *dst_vma,
5721 unsigned long dst_addr,
5722 unsigned long src_addr,
Axel Rasmussenf6191472021-05-04 18:35:49 -07005723 enum mcopy_atomic_mode mode,
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005724 struct page **pagep)
5725{
Axel Rasmussenf6191472021-05-04 18:35:49 -07005726 bool is_continue = (mode == MCOPY_ATOMIC_CONTINUE);
Mina Almasry8cc5fcb2021-06-30 18:48:19 -07005727 struct hstate *h = hstate_vma(dst_vma);
5728 struct address_space *mapping = dst_vma->vm_file->f_mapping;
5729 pgoff_t idx = vma_hugecache_offset(h, dst_vma, dst_addr);
Andrea Arcangeli1e3921472017-11-02 15:59:29 -07005730 unsigned long size;
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005731 int vm_shared = dst_vma->vm_flags & VM_SHARED;
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005732 pte_t _dst_pte;
5733 spinlock_t *ptl;
Mina Almasry8cc5fcb2021-06-30 18:48:19 -07005734 int ret = -ENOMEM;
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005735 struct page *page;
Axel Rasmussenf6191472021-05-04 18:35:49 -07005736 int writable;
Mike Kravetzc7b18502021-08-19 19:04:33 -07005737 bool new_pagecache_page = false;
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005738
Axel Rasmussenf6191472021-05-04 18:35:49 -07005739 if (is_continue) {
5740 ret = -EFAULT;
5741 page = find_lock_page(mapping, idx);
5742 if (!page)
5743 goto out;
5744 } else if (!*pagep) {
Mina Almasryd84cf062021-06-04 20:01:36 -07005745 /* If a page already exists, then it's UFFDIO_COPY for
5746 * a non-missing case. Return -EEXIST.
5747 */
5748 if (vm_shared &&
5749 hugetlbfs_pagecache_present(h, dst_vma, dst_addr)) {
5750 ret = -EEXIST;
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005751 goto out;
Mina Almasryd84cf062021-06-04 20:01:36 -07005752 }
5753
5754 page = alloc_huge_page(dst_vma, dst_addr, 0);
5755 if (IS_ERR(page)) {
5756 ret = -ENOMEM;
5757 goto out;
5758 }
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005759
5760 ret = copy_huge_page_from_user(page,
5761 (const void __user *) src_addr,
Mike Kravetz810a56b2017-02-22 15:42:58 -08005762 pages_per_huge_page(h), false);
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005763
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07005764 /* fallback to copy_from_user outside mmap_lock */
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005765 if (unlikely(ret)) {
Andrea Arcangeli9e368252018-11-30 14:09:25 -08005766 ret = -ENOENT;
Mina Almasry8cc5fcb2021-06-30 18:48:19 -07005767 /* Free the allocated page which may have
5768 * consumed a reservation.
5769 */
5770 restore_reserve_on_error(h, dst_vma, dst_addr, page);
5771 put_page(page);
5772
5773 /* Allocate a temporary page to hold the copied
5774 * contents.
5775 */
5776 page = alloc_huge_page_vma(h, dst_vma, dst_addr);
5777 if (!page) {
5778 ret = -ENOMEM;
5779 goto out;
5780 }
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005781 *pagep = page;
Mina Almasry8cc5fcb2021-06-30 18:48:19 -07005782 /* Set the outparam pagep and return to the caller to
5783 * copy the contents outside the lock. Don't free the
5784 * page.
5785 */
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005786 goto out;
5787 }
5788 } else {
Mina Almasry8cc5fcb2021-06-30 18:48:19 -07005789 if (vm_shared &&
5790 hugetlbfs_pagecache_present(h, dst_vma, dst_addr)) {
5791 put_page(*pagep);
5792 ret = -EEXIST;
5793 *pagep = NULL;
5794 goto out;
5795 }
5796
5797 page = alloc_huge_page(dst_vma, dst_addr, 0);
5798 if (IS_ERR(page)) {
5799 ret = -ENOMEM;
5800 *pagep = NULL;
5801 goto out;
5802 }
5803 copy_huge_page(page, *pagep);
5804 put_page(*pagep);
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005805 *pagep = NULL;
5806 }
5807
5808 /*
5809 * The memory barrier inside __SetPageUptodate makes sure that
5810 * preceding stores to the page contents become visible before
5811 * the set_pte_at() write.
5812 */
5813 __SetPageUptodate(page);
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005814
Axel Rasmussenf6191472021-05-04 18:35:49 -07005815 /* Add shared, newly allocated pages to the page cache. */
5816 if (vm_shared && !is_continue) {
Andrea Arcangeli1e3921472017-11-02 15:59:29 -07005817 size = i_size_read(mapping->host) >> huge_page_shift(h);
5818 ret = -EFAULT;
5819 if (idx >= size)
5820 goto out_release_nounlock;
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005821
Andrea Arcangeli1e3921472017-11-02 15:59:29 -07005822 /*
5823 * Serialization between remove_inode_hugepages() and
5824 * huge_add_to_page_cache() below happens through the
5825 * hugetlb_fault_mutex_table that here must be hold by
5826 * the caller.
5827 */
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005828 ret = huge_add_to_page_cache(page, mapping, idx);
5829 if (ret)
5830 goto out_release_nounlock;
Mike Kravetzc7b18502021-08-19 19:04:33 -07005831 new_pagecache_page = true;
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005832 }
5833
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005834 ptl = huge_pte_lockptr(h, dst_mm, dst_pte);
5835 spin_lock(ptl);
5836
Andrea Arcangeli1e3921472017-11-02 15:59:29 -07005837 /*
5838 * Recheck the i_size after holding PT lock to make sure not
5839 * to leave any page mapped (as page_mapped()) beyond the end
5840 * of the i_size (remove_inode_hugepages() is strict about
5841 * enforcing that). If we bail out here, we'll also leave a
5842 * page in the radix tree in the vm_shared case beyond the end
5843 * of the i_size, but remove_inode_hugepages() will take care
5844 * of it as soon as we drop the hugetlb_fault_mutex_table.
5845 */
5846 size = i_size_read(mapping->host) >> huge_page_shift(h);
5847 ret = -EFAULT;
5848 if (idx >= size)
5849 goto out_release_unlock;
5850
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005851 ret = -EEXIST;
5852 if (!huge_pte_none(huge_ptep_get(dst_pte)))
5853 goto out_release_unlock;
5854
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005855 if (vm_shared) {
5856 page_dup_rmap(page, true);
5857 } else {
Mike Kravetzd6995da2021-02-24 12:08:51 -08005858 ClearHPageRestoreReserve(page);
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005859 hugepage_add_new_anon_rmap(page, dst_vma, dst_addr);
5860 }
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005861
Axel Rasmussenf6191472021-05-04 18:35:49 -07005862 /* For CONTINUE on a non-shared VMA, don't set VM_WRITE for CoW. */
5863 if (is_continue && !vm_shared)
5864 writable = 0;
5865 else
5866 writable = dst_vma->vm_flags & VM_WRITE;
5867
5868 _dst_pte = make_huge_pte(dst_vma, page, writable);
5869 if (writable)
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005870 _dst_pte = huge_pte_mkdirty(_dst_pte);
5871 _dst_pte = pte_mkyoung(_dst_pte);
5872
5873 set_huge_pte_at(dst_mm, dst_addr, dst_pte, _dst_pte);
5874
5875 (void)huge_ptep_set_access_flags(dst_vma, dst_addr, dst_pte, _dst_pte,
5876 dst_vma->vm_flags & VM_WRITE);
5877 hugetlb_count_add(pages_per_huge_page(h), dst_mm);
5878
5879 /* No need to invalidate - it was non-present before */
5880 update_mmu_cache(dst_vma, dst_addr, dst_pte);
5881
5882 spin_unlock(ptl);
Axel Rasmussenf6191472021-05-04 18:35:49 -07005883 if (!is_continue)
5884 SetHPageMigratable(page);
5885 if (vm_shared || is_continue)
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005886 unlock_page(page);
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005887 ret = 0;
5888out:
5889 return ret;
5890out_release_unlock:
5891 spin_unlock(ptl);
Axel Rasmussenf6191472021-05-04 18:35:49 -07005892 if (vm_shared || is_continue)
Mike Kravetz1c9e8de2017-02-22 15:43:43 -08005893 unlock_page(page);
Andrea Arcangeli5af10df2017-08-10 15:23:38 -07005894out_release_nounlock:
Mike Kravetzc7b18502021-08-19 19:04:33 -07005895 if (!new_pagecache_page)
5896 restore_reserve_on_error(h, dst_vma, dst_addr, page);
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005897 put_page(page);
5898 goto out;
5899}
Axel Rasmussen714c1892021-05-04 18:35:45 -07005900#endif /* CONFIG_USERFAULTFD */
Mike Kravetz8fb5deb2017-02-22 15:42:52 -08005901
Joao Martins82e5d372021-02-24 12:07:16 -08005902static void record_subpages_vmas(struct page *page, struct vm_area_struct *vma,
5903 int refs, struct page **pages,
5904 struct vm_area_struct **vmas)
5905{
5906 int nr;
5907
5908 for (nr = 0; nr < refs; nr++) {
5909 if (likely(pages))
5910 pages[nr] = mem_map_offset(page, nr);
5911 if (vmas)
5912 vmas[nr] = vma;
5913 }
5914}
5915
Michel Lespinasse28a35712013-02-22 16:35:55 -08005916long follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma,
5917 struct page **pages, struct vm_area_struct **vmas,
5918 unsigned long *position, unsigned long *nr_pages,
Peter Xu4f6da932020-04-01 21:07:58 -07005919 long i, unsigned int flags, int *locked)
David Gibson63551ae2005-06-21 17:14:44 -07005920{
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08005921 unsigned long pfn_offset;
5922 unsigned long vaddr = *position;
Michel Lespinasse28a35712013-02-22 16:35:55 -08005923 unsigned long remainder = *nr_pages;
Andi Kleena5516432008-07-23 21:27:41 -07005924 struct hstate *h = hstate_vma(vma);
Joao Martins0fa5bc42021-02-24 12:07:12 -08005925 int err = -EFAULT, refs;
David Gibson63551ae2005-06-21 17:14:44 -07005926
David Gibson63551ae2005-06-21 17:14:44 -07005927 while (vaddr < vma->vm_end && remainder) {
Adam Litke4c887262005-10-29 18:16:46 -07005928 pte_t *pte;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005929 spinlock_t *ptl = NULL;
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005930 int absent;
Adam Litke4c887262005-10-29 18:16:46 -07005931 struct page *page;
5932
5933 /*
David Rientjes02057962015-04-14 15:48:24 -07005934 * If we have a pending SIGKILL, don't keep faulting pages and
5935 * potentially allocating memory.
5936 */
Davidlohr Buesofa45f112019-01-03 15:28:55 -08005937 if (fatal_signal_pending(current)) {
David Rientjes02057962015-04-14 15:48:24 -07005938 remainder = 0;
5939 break;
5940 }
5941
5942 /*
Adam Litke4c887262005-10-29 18:16:46 -07005943 * Some archs (sparc64, sh*) have multiple pte_ts to
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005944 * each hugepage. We have to make sure we get the
Adam Litke4c887262005-10-29 18:16:46 -07005945 * first, for the page indexing below to work.
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005946 *
5947 * Note that page table lock is not held when pte is null.
Adam Litke4c887262005-10-29 18:16:46 -07005948 */
Punit Agrawal7868a202017-07-06 15:39:42 -07005949 pte = huge_pte_offset(mm, vaddr & huge_page_mask(h),
5950 huge_page_size(h));
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005951 if (pte)
5952 ptl = huge_pte_lock(h, mm, pte);
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005953 absent = !pte || huge_pte_none(huge_ptep_get(pte));
Adam Litke4c887262005-10-29 18:16:46 -07005954
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005955 /*
5956 * When coredumping, it suits get_dump_page if we just return
Hugh Dickins3ae77f42009-09-21 17:03:33 -07005957 * an error where there's an empty slot with no huge pagecache
5958 * to back it. This way, we avoid allocating a hugepage, and
5959 * the sparse dumpfile avoids allocating disk blocks, but its
5960 * huge holes still show up with zeroes where they need to be.
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005961 */
Hugh Dickins3ae77f42009-09-21 17:03:33 -07005962 if (absent && (flags & FOLL_DUMP) &&
5963 !hugetlbfs_pagecache_present(h, vma, vaddr)) {
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005964 if (pte)
5965 spin_unlock(ptl);
Hugh Dickins2a15efc2009-09-21 17:03:27 -07005966 remainder = 0;
5967 break;
5968 }
5969
Naoya Horiguchi9cc3a5b2013-04-17 15:58:30 -07005970 /*
5971 * We need call hugetlb_fault for both hugepages under migration
5972 * (in which case hugetlb_fault waits for the migration,) and
5973 * hwpoisoned hugepages (in which case we need to prevent the
5974 * caller from accessing to them.) In order to do this, we use
5975 * here is_swap_pte instead of is_hugetlb_entry_migration and
5976 * is_hugetlb_entry_hwpoisoned. This is because it simply covers
5977 * both cases, and because we can't follow correct pages
5978 * directly from any kind of swap entries.
5979 */
5980 if (absent || is_swap_pte(huge_ptep_get(pte)) ||
Gerald Schaefer106c9922013-04-29 15:07:23 -07005981 ((flags & FOLL_WRITE) &&
5982 !huge_pte_write(huge_ptep_get(pte)))) {
Souptick Joarder2b740302018-08-23 17:01:36 -07005983 vm_fault_t ret;
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005984 unsigned int fault_flags = 0;
Adam Litke4c887262005-10-29 18:16:46 -07005985
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08005986 if (pte)
5987 spin_unlock(ptl);
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005988 if (flags & FOLL_WRITE)
5989 fault_flags |= FAULT_FLAG_WRITE;
Peter Xu4f6da932020-04-01 21:07:58 -07005990 if (locked)
Peter Xu71335f32020-04-01 21:08:53 -07005991 fault_flags |= FAULT_FLAG_ALLOW_RETRY |
5992 FAULT_FLAG_KILLABLE;
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08005993 if (flags & FOLL_NOWAIT)
5994 fault_flags |= FAULT_FLAG_ALLOW_RETRY |
5995 FAULT_FLAG_RETRY_NOWAIT;
5996 if (flags & FOLL_TRIED) {
Peter Xu4426e942020-04-01 21:08:49 -07005997 /*
5998 * Note: FAULT_FLAG_ALLOW_RETRY and
5999 * FAULT_FLAG_TRIED can co-exist
6000 */
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08006001 fault_flags |= FAULT_FLAG_TRIED;
6002 }
6003 ret = hugetlb_fault(mm, vma, vaddr, fault_flags);
6004 if (ret & VM_FAULT_ERROR) {
Daniel Jordan2be7cfe2017-08-02 13:31:47 -07006005 err = vm_fault_to_errno(ret, flags);
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08006006 remainder = 0;
6007 break;
6008 }
6009 if (ret & VM_FAULT_RETRY) {
Peter Xu4f6da932020-04-01 21:07:58 -07006010 if (locked &&
Andrea Arcangeli1ac25012019-02-01 14:20:16 -08006011 !(fault_flags & FAULT_FLAG_RETRY_NOWAIT))
Peter Xu4f6da932020-04-01 21:07:58 -07006012 *locked = 0;
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08006013 *nr_pages = 0;
6014 /*
6015 * VM_FAULT_RETRY must not return an
6016 * error, it will return zero
6017 * instead.
6018 *
6019 * No need to update "position" as the
6020 * caller will not check it after
6021 * *nr_pages is set to 0.
6022 */
6023 return i;
6024 }
6025 continue;
Adam Litke4c887262005-10-29 18:16:46 -07006026 }
David Gibson63551ae2005-06-21 17:14:44 -07006027
Andi Kleena5516432008-07-23 21:27:41 -07006028 pfn_offset = (vaddr & ~huge_page_mask(h)) >> PAGE_SHIFT;
Gerald Schaefer7f2e9522008-04-28 02:13:29 -07006029 page = pte_page(huge_ptep_get(pte));
Linus Torvalds8fde12c2019-04-11 10:49:19 -07006030
6031 /*
Zhigang Luacbfb082019-11-30 17:57:06 -08006032 * If subpage information not requested, update counters
6033 * and skip the same_page loop below.
6034 */
6035 if (!pages && !vmas && !pfn_offset &&
6036 (vaddr + huge_page_size(h) < vma->vm_end) &&
6037 (remainder >= pages_per_huge_page(h))) {
6038 vaddr += huge_page_size(h);
6039 remainder -= pages_per_huge_page(h);
6040 i += pages_per_huge_page(h);
6041 spin_unlock(ptl);
6042 continue;
6043 }
6044
Joao Martinsd08af0a2021-07-14 21:27:11 -07006045 /* vaddr may not be aligned to PAGE_SIZE */
6046 refs = min3(pages_per_huge_page(h) - pfn_offset, remainder,
6047 (vma->vm_end - ALIGN_DOWN(vaddr, PAGE_SIZE)) >> PAGE_SHIFT);
Joao Martins0fa5bc42021-02-24 12:07:12 -08006048
Joao Martins82e5d372021-02-24 12:07:16 -08006049 if (pages || vmas)
6050 record_subpages_vmas(mem_map_offset(page, pfn_offset),
6051 vma, refs,
6052 likely(pages) ? pages + i : NULL,
6053 vmas ? vmas + i : NULL);
David Gibson63551ae2005-06-21 17:14:44 -07006054
Joao Martins82e5d372021-02-24 12:07:16 -08006055 if (pages) {
Joao Martins0fa5bc42021-02-24 12:07:12 -08006056 /*
6057 * try_grab_compound_head() should always succeed here,
6058 * because: a) we hold the ptl lock, and b) we've just
6059 * checked that the huge page is present in the page
6060 * tables. If the huge page is present, then the tail
6061 * pages must also be present. The ptl prevents the
6062 * head page and tail pages from being rearranged in
6063 * any way. So this page must be available at this
6064 * point, unless the page refcount overflowed:
6065 */
Joao Martins82e5d372021-02-24 12:07:16 -08006066 if (WARN_ON_ONCE(!try_grab_compound_head(pages[i],
Joao Martins0fa5bc42021-02-24 12:07:12 -08006067 refs,
6068 flags))) {
6069 spin_unlock(ptl);
6070 remainder = 0;
6071 err = -ENOMEM;
6072 break;
6073 }
Chen, Kenneth Wd5d4b0a2006-03-22 00:09:03 -08006074 }
Joao Martins82e5d372021-02-24 12:07:16 -08006075
6076 vaddr += (refs << PAGE_SHIFT);
6077 remainder -= refs;
6078 i += refs;
6079
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08006080 spin_unlock(ptl);
David Gibson63551ae2005-06-21 17:14:44 -07006081 }
Michel Lespinasse28a35712013-02-22 16:35:55 -08006082 *nr_pages = remainder;
Andrea Arcangeli87ffc112017-02-22 15:43:13 -08006083 /*
6084 * setting position is actually required only if remainder is
6085 * not zero but it's faster not to add a "if (remainder)"
6086 * branch.
6087 */
David Gibson63551ae2005-06-21 17:14:44 -07006088 *position = vaddr;
6089
Daniel Jordan2be7cfe2017-08-02 13:31:47 -07006090 return i ? i : err;
David Gibson63551ae2005-06-21 17:14:44 -07006091}
Zhang, Yanmin8f860592006-03-22 00:08:50 -08006092
Peter Zijlstra7da4d642012-11-19 03:14:23 +01006093unsigned long hugetlb_change_protection(struct vm_area_struct *vma,
Zhang, Yanmin8f860592006-03-22 00:08:50 -08006094 unsigned long address, unsigned long end, pgprot_t newprot)
6095{
6096 struct mm_struct *mm = vma->vm_mm;
6097 unsigned long start = address;
6098 pte_t *ptep;
6099 pte_t pte;
Andi Kleena5516432008-07-23 21:27:41 -07006100 struct hstate *h = hstate_vma(vma);
Peter Zijlstra7da4d642012-11-19 03:14:23 +01006101 unsigned long pages = 0;
Mike Kravetzdff11ab2018-10-05 15:51:33 -07006102 bool shared_pmd = false;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08006103 struct mmu_notifier_range range;
Mike Kravetzdff11ab2018-10-05 15:51:33 -07006104
6105 /*
6106 * In the case of shared PMDs, the area to flush could be beyond
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08006107 * start/end. Set range.start/range.end to cover the maximum possible
Mike Kravetzdff11ab2018-10-05 15:51:33 -07006108 * range if PMD sharing is possible.
6109 */
Jérôme Glisse7269f992019-05-13 17:20:53 -07006110 mmu_notifier_range_init(&range, MMU_NOTIFY_PROTECTION_VMA,
6111 0, vma, mm, start, end);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08006112 adjust_range_if_pmd_sharing_possible(vma, &range.start, &range.end);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08006113
6114 BUG_ON(address >= end);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08006115 flush_cache_range(vma, range.start, range.end);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08006116
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08006117 mmu_notifier_invalidate_range_start(&range);
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -08006118 i_mmap_lock_write(vma->vm_file->f_mapping);
Andi Kleena5516432008-07-23 21:27:41 -07006119 for (; address < end; address += huge_page_size(h)) {
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08006120 spinlock_t *ptl;
Punit Agrawal7868a202017-07-06 15:39:42 -07006121 ptep = huge_pte_offset(mm, address, huge_page_size(h));
Zhang, Yanmin8f860592006-03-22 00:08:50 -08006122 if (!ptep)
6123 continue;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08006124 ptl = huge_pte_lock(h, mm, ptep);
Mike Kravetz34ae2042020-08-11 18:31:38 -07006125 if (huge_pmd_unshare(mm, vma, &address, ptep)) {
Peter Zijlstra7da4d642012-11-19 03:14:23 +01006126 pages++;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08006127 spin_unlock(ptl);
Mike Kravetzdff11ab2018-10-05 15:51:33 -07006128 shared_pmd = true;
Chen, Kenneth W39dde652006-12-06 20:32:03 -08006129 continue;
Peter Zijlstra7da4d642012-11-19 03:14:23 +01006130 }
Naoya Horiguchia8bda282015-02-11 15:25:28 -08006131 pte = huge_ptep_get(ptep);
6132 if (unlikely(is_hugetlb_entry_hwpoisoned(pte))) {
6133 spin_unlock(ptl);
6134 continue;
6135 }
6136 if (unlikely(is_hugetlb_entry_migration(pte))) {
6137 swp_entry_t entry = pte_to_swp_entry(pte);
6138
Alistair Popple4dd845b2021-06-30 18:54:09 -07006139 if (is_writable_migration_entry(entry)) {
Naoya Horiguchia8bda282015-02-11 15:25:28 -08006140 pte_t newpte;
6141
Alistair Popple4dd845b2021-06-30 18:54:09 -07006142 entry = make_readable_migration_entry(
6143 swp_offset(entry));
Naoya Horiguchia8bda282015-02-11 15:25:28 -08006144 newpte = swp_entry_to_pte(entry);
Punit Agrawale5251fd2017-07-06 15:39:50 -07006145 set_huge_swap_pte_at(mm, address, ptep,
6146 newpte, huge_page_size(h));
Naoya Horiguchia8bda282015-02-11 15:25:28 -08006147 pages++;
6148 }
6149 spin_unlock(ptl);
6150 continue;
6151 }
6152 if (!huge_pte_none(pte)) {
Aneesh Kumar K.V023bdd02019-03-05 15:46:37 -08006153 pte_t old_pte;
Christophe Leroy79c1c592021-06-30 18:48:00 -07006154 unsigned int shift = huge_page_shift(hstate_vma(vma));
Aneesh Kumar K.V023bdd02019-03-05 15:46:37 -08006155
6156 old_pte = huge_ptep_modify_prot_start(vma, address, ptep);
6157 pte = pte_mkhuge(huge_pte_modify(old_pte, newprot));
Christophe Leroy79c1c592021-06-30 18:48:00 -07006158 pte = arch_make_huge_pte(pte, shift, vma->vm_flags);
Aneesh Kumar K.V023bdd02019-03-05 15:46:37 -08006159 huge_ptep_modify_prot_commit(vma, address, ptep, old_pte, pte);
Peter Zijlstra7da4d642012-11-19 03:14:23 +01006160 pages++;
Zhang, Yanmin8f860592006-03-22 00:08:50 -08006161 }
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08006162 spin_unlock(ptl);
Zhang, Yanmin8f860592006-03-22 00:08:50 -08006163 }
Mel Gormand8333522012-07-31 16:46:20 -07006164 /*
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08006165 * Must flush TLB before releasing i_mmap_rwsem: x86's huge_pmd_unshare
Mel Gormand8333522012-07-31 16:46:20 -07006166 * may have cleared our pud entry and done put_page on the page table:
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08006167 * once we release i_mmap_rwsem, another task can do the final put_page
Mike Kravetzdff11ab2018-10-05 15:51:33 -07006168 * and that page table be reused and filled with junk. If we actually
6169 * did unshare a page of pmds, flush the range corresponding to the pud.
Mel Gormand8333522012-07-31 16:46:20 -07006170 */
Mike Kravetzdff11ab2018-10-05 15:51:33 -07006171 if (shared_pmd)
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08006172 flush_hugetlb_tlb_range(vma, range.start, range.end);
Mike Kravetzdff11ab2018-10-05 15:51:33 -07006173 else
6174 flush_hugetlb_tlb_range(vma, start, end);
Jérôme Glisse0f108512017-11-15 17:34:07 -08006175 /*
6176 * No need to call mmu_notifier_invalidate_range() we are downgrading
6177 * page table protection not changing it to point to a new page.
6178 *
Mike Rapoportad56b732018-03-21 21:22:47 +02006179 * See Documentation/vm/mmu_notifier.rst
Jérôme Glisse0f108512017-11-15 17:34:07 -08006180 */
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -08006181 i_mmap_unlock_write(vma->vm_file->f_mapping);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08006182 mmu_notifier_invalidate_range_end(&range);
Peter Zijlstra7da4d642012-11-19 03:14:23 +01006183
6184 return pages << h->order;
Zhang, Yanmin8f860592006-03-22 00:08:50 -08006185}
6186
Mike Kravetz33b8f842021-02-24 12:09:54 -08006187/* Return true if reservation was successful, false otherwise. */
6188bool hugetlb_reserve_pages(struct inode *inode,
Mel Gormana1e78772008-07-23 21:27:23 -07006189 long from, long to,
Mel Gorman5a6fe122009-02-10 14:02:27 +00006190 struct vm_area_struct *vma,
KOSAKI Motohiroca16d142011-05-26 19:16:19 +09006191 vm_flags_t vm_flags)
Adam Litkee4e574b2007-10-16 01:26:19 -07006192{
Mike Kravetz33b8f842021-02-24 12:09:54 -08006193 long chg, add = -1;
Andi Kleena5516432008-07-23 21:27:41 -07006194 struct hstate *h = hstate_inode(inode);
David Gibson90481622012-03-21 16:34:12 -07006195 struct hugepage_subpool *spool = subpool_inode(inode);
Joonsoo Kim9119a412014-04-03 14:47:25 -07006196 struct resv_map *resv_map;
Mina Almasry075a61d2020-04-01 21:11:28 -07006197 struct hugetlb_cgroup *h_cg = NULL;
Mina Almasry0db9d742020-04-01 21:11:25 -07006198 long gbl_reserve, regions_needed = 0;
Adam Litkee4e574b2007-10-16 01:26:19 -07006199
Mike Kravetz63489f82018-03-22 16:17:13 -07006200 /* This should never happen */
6201 if (from > to) {
6202 VM_WARN(1, "%s called with a negative range\n", __func__);
Mike Kravetz33b8f842021-02-24 12:09:54 -08006203 return false;
Mike Kravetz63489f82018-03-22 16:17:13 -07006204 }
6205
Mel Gormana1e78772008-07-23 21:27:23 -07006206 /*
Mel Gorman17c9d122009-02-11 16:34:16 +00006207 * Only apply hugepage reservation if asked. At fault time, an
6208 * attempt will be made for VM_NORESERVE to allocate a page
David Gibson90481622012-03-21 16:34:12 -07006209 * without using reserves
Mel Gorman17c9d122009-02-11 16:34:16 +00006210 */
KOSAKI Motohiroca16d142011-05-26 19:16:19 +09006211 if (vm_flags & VM_NORESERVE)
Mike Kravetz33b8f842021-02-24 12:09:54 -08006212 return true;
Mel Gorman17c9d122009-02-11 16:34:16 +00006213
6214 /*
Mel Gormana1e78772008-07-23 21:27:23 -07006215 * Shared mappings base their reservation on the number of pages that
6216 * are already allocated on behalf of the file. Private mappings need
6217 * to reserve the full area even if read-only as mprotect() may be
6218 * called to make the mapping read-write. Assume !vma is a shm mapping
6219 */
Joonsoo Kim9119a412014-04-03 14:47:25 -07006220 if (!vma || vma->vm_flags & VM_MAYSHARE) {
Mike Kravetzf27a5132019-05-13 17:22:55 -07006221 /*
6222 * resv_map can not be NULL as hugetlb_reserve_pages is only
6223 * called for inodes for which resv_maps were created (see
6224 * hugetlbfs_get_inode).
6225 */
Joonsoo Kim4e35f482014-04-03 14:47:30 -07006226 resv_map = inode_resv_map(inode);
Joonsoo Kim9119a412014-04-03 14:47:25 -07006227
Mina Almasry0db9d742020-04-01 21:11:25 -07006228 chg = region_chg(resv_map, from, to, &regions_needed);
Joonsoo Kim9119a412014-04-03 14:47:25 -07006229
6230 } else {
Mina Almasrye9fe92a2020-04-01 21:11:21 -07006231 /* Private mapping. */
Joonsoo Kim9119a412014-04-03 14:47:25 -07006232 resv_map = resv_map_alloc();
Mel Gorman5a6fe122009-02-10 14:02:27 +00006233 if (!resv_map)
Mike Kravetz33b8f842021-02-24 12:09:54 -08006234 return false;
Mel Gorman5a6fe122009-02-10 14:02:27 +00006235
Mel Gorman17c9d122009-02-11 16:34:16 +00006236 chg = to - from;
6237
Mel Gorman5a6fe122009-02-10 14:02:27 +00006238 set_vma_resv_map(vma, resv_map);
6239 set_vma_resv_flags(vma, HPAGE_RESV_OWNER);
6240 }
6241
Mike Kravetz33b8f842021-02-24 12:09:54 -08006242 if (chg < 0)
Dave Hansenc50ac052012-05-29 15:06:46 -07006243 goto out_err;
Mel Gorman17c9d122009-02-11 16:34:16 +00006244
Mike Kravetz33b8f842021-02-24 12:09:54 -08006245 if (hugetlb_cgroup_charge_cgroup_rsvd(hstate_index(h),
6246 chg * pages_per_huge_page(h), &h_cg) < 0)
Mina Almasry075a61d2020-04-01 21:11:28 -07006247 goto out_err;
Mina Almasry075a61d2020-04-01 21:11:28 -07006248
6249 if (vma && !(vma->vm_flags & VM_MAYSHARE) && h_cg) {
6250 /* For private mappings, the hugetlb_cgroup uncharge info hangs
6251 * of the resv_map.
6252 */
6253 resv_map_set_hugetlb_cgroup_uncharge_info(resv_map, h_cg, h);
6254 }
6255
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07006256 /*
6257 * There must be enough pages in the subpool for the mapping. If
6258 * the subpool has a minimum size, there may be some global
6259 * reservations already in place (gbl_reserve).
6260 */
6261 gbl_reserve = hugepage_subpool_get_pages(spool, chg);
Mike Kravetz33b8f842021-02-24 12:09:54 -08006262 if (gbl_reserve < 0)
Mina Almasry075a61d2020-04-01 21:11:28 -07006263 goto out_uncharge_cgroup;
Mel Gorman17c9d122009-02-11 16:34:16 +00006264
6265 /*
6266 * Check enough hugepages are available for the reservation.
David Gibson90481622012-03-21 16:34:12 -07006267 * Hand the pages back to the subpool if there are not
Mel Gorman17c9d122009-02-11 16:34:16 +00006268 */
Mike Kravetz33b8f842021-02-24 12:09:54 -08006269 if (hugetlb_acct_memory(h, gbl_reserve) < 0)
Mina Almasry075a61d2020-04-01 21:11:28 -07006270 goto out_put_pages;
Mel Gorman17c9d122009-02-11 16:34:16 +00006271
6272 /*
6273 * Account for the reservations made. Shared mappings record regions
6274 * that have reservations as they are shared by multiple VMAs.
6275 * When the last VMA disappears, the region map says how much
6276 * the reservation was and the page cache tells how much of
6277 * the reservation was consumed. Private mappings are per-VMA and
6278 * only the consumed reservations are tracked. When the VMA
6279 * disappears, the original reservation is the VMA size and the
6280 * consumed reservations are stored in the map. Hence, nothing
6281 * else has to be done for private mappings here
6282 */
Mike Kravetz33039672015-06-24 16:57:58 -07006283 if (!vma || vma->vm_flags & VM_MAYSHARE) {
Mina Almasry075a61d2020-04-01 21:11:28 -07006284 add = region_add(resv_map, from, to, regions_needed, h, h_cg);
Mike Kravetz33039672015-06-24 16:57:58 -07006285
Mina Almasry0db9d742020-04-01 21:11:25 -07006286 if (unlikely(add < 0)) {
6287 hugetlb_acct_memory(h, -gbl_reserve);
Mina Almasry075a61d2020-04-01 21:11:28 -07006288 goto out_put_pages;
Mina Almasry0db9d742020-04-01 21:11:25 -07006289 } else if (unlikely(chg > add)) {
Mike Kravetz33039672015-06-24 16:57:58 -07006290 /*
6291 * pages in this range were added to the reserve
6292 * map between region_chg and region_add. This
6293 * indicates a race with alloc_huge_page. Adjust
6294 * the subpool and reserve counts modified above
6295 * based on the difference.
6296 */
6297 long rsv_adjust;
6298
Miaohe Lind85aecf2021-03-24 21:37:17 -07006299 /*
6300 * hugetlb_cgroup_uncharge_cgroup_rsvd() will put the
6301 * reference to h_cg->css. See comment below for detail.
6302 */
Mina Almasry075a61d2020-04-01 21:11:28 -07006303 hugetlb_cgroup_uncharge_cgroup_rsvd(
6304 hstate_index(h),
6305 (chg - add) * pages_per_huge_page(h), h_cg);
6306
Mike Kravetz33039672015-06-24 16:57:58 -07006307 rsv_adjust = hugepage_subpool_put_pages(spool,
6308 chg - add);
6309 hugetlb_acct_memory(h, -rsv_adjust);
Miaohe Lind85aecf2021-03-24 21:37:17 -07006310 } else if (h_cg) {
6311 /*
6312 * The file_regions will hold their own reference to
6313 * h_cg->css. So we should release the reference held
6314 * via hugetlb_cgroup_charge_cgroup_rsvd() when we are
6315 * done.
6316 */
6317 hugetlb_cgroup_put_rsvd_cgroup(h_cg);
Mike Kravetz33039672015-06-24 16:57:58 -07006318 }
6319 }
Mike Kravetz33b8f842021-02-24 12:09:54 -08006320 return true;
6321
Mina Almasry075a61d2020-04-01 21:11:28 -07006322out_put_pages:
6323 /* put back original number of pages, chg */
6324 (void)hugepage_subpool_put_pages(spool, chg);
6325out_uncharge_cgroup:
6326 hugetlb_cgroup_uncharge_cgroup_rsvd(hstate_index(h),
6327 chg * pages_per_huge_page(h), h_cg);
Dave Hansenc50ac052012-05-29 15:06:46 -07006328out_err:
Mike Kravetz5e911372015-09-08 15:01:28 -07006329 if (!vma || vma->vm_flags & VM_MAYSHARE)
Mina Almasry0db9d742020-04-01 21:11:25 -07006330 /* Only call region_abort if the region_chg succeeded but the
6331 * region_add failed or didn't run.
6332 */
6333 if (chg >= 0 && add < 0)
6334 region_abort(resv_map, from, to, regions_needed);
Joonsoo Kimf031dd22014-04-03 14:47:28 -07006335 if (vma && is_vma_resv_set(vma, HPAGE_RESV_OWNER))
6336 kref_put(&resv_map->refs, resv_map_release);
Mike Kravetz33b8f842021-02-24 12:09:54 -08006337 return false;
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07006338}
6339
Mike Kravetzb5cec282015-09-08 15:01:41 -07006340long hugetlb_unreserve_pages(struct inode *inode, long start, long end,
6341 long freed)
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07006342{
Andi Kleena5516432008-07-23 21:27:41 -07006343 struct hstate *h = hstate_inode(inode);
Joonsoo Kim4e35f482014-04-03 14:47:30 -07006344 struct resv_map *resv_map = inode_resv_map(inode);
Joonsoo Kim9119a412014-04-03 14:47:25 -07006345 long chg = 0;
David Gibson90481622012-03-21 16:34:12 -07006346 struct hugepage_subpool *spool = subpool_inode(inode);
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07006347 long gbl_reserve;
Ken Chen45c682a2007-11-14 16:59:44 -08006348
Mike Kravetzf27a5132019-05-13 17:22:55 -07006349 /*
6350 * Since this routine can be called in the evict inode path for all
6351 * hugetlbfs inodes, resv_map could be NULL.
6352 */
Mike Kravetzb5cec282015-09-08 15:01:41 -07006353 if (resv_map) {
6354 chg = region_del(resv_map, start, end);
6355 /*
6356 * region_del() can fail in the rare case where a region
6357 * must be split and another region descriptor can not be
6358 * allocated. If end == LONG_MAX, it will not fail.
6359 */
6360 if (chg < 0)
6361 return chg;
6362 }
6363
Ken Chen45c682a2007-11-14 16:59:44 -08006364 spin_lock(&inode->i_lock);
Eric Sandeene4c6f8b2009-07-29 15:02:16 -07006365 inode->i_blocks -= (blocks_per_huge_page(h) * freed);
Ken Chen45c682a2007-11-14 16:59:44 -08006366 spin_unlock(&inode->i_lock);
6367
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07006368 /*
6369 * If the subpool has a minimum size, the number of global
6370 * reservations to be released may be adjusted.
Miaohe Lindddf31a2021-05-04 18:34:35 -07006371 *
6372 * Note that !resv_map implies freed == 0. So (chg - freed)
6373 * won't go negative.
Mike Kravetz1c5ecae2015-04-15 16:13:39 -07006374 */
6375 gbl_reserve = hugepage_subpool_put_pages(spool, (chg - freed));
6376 hugetlb_acct_memory(h, -gbl_reserve);
Mike Kravetzb5cec282015-09-08 15:01:41 -07006377
6378 return 0;
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -07006379}
Naoya Horiguchi93f70f92010-05-28 09:29:20 +09006380
Steve Capper3212b532013-04-23 12:35:02 +01006381#ifdef CONFIG_ARCH_WANT_HUGE_PMD_SHARE
6382static unsigned long page_table_shareable(struct vm_area_struct *svma,
6383 struct vm_area_struct *vma,
6384 unsigned long addr, pgoff_t idx)
6385{
6386 unsigned long saddr = ((idx - svma->vm_pgoff) << PAGE_SHIFT) +
6387 svma->vm_start;
6388 unsigned long sbase = saddr & PUD_MASK;
6389 unsigned long s_end = sbase + PUD_SIZE;
6390
6391 /* Allow segments to share if only one is marked locked */
Eric B Munsonde60f5f2015-11-05 18:51:36 -08006392 unsigned long vm_flags = vma->vm_flags & VM_LOCKED_CLEAR_MASK;
6393 unsigned long svm_flags = svma->vm_flags & VM_LOCKED_CLEAR_MASK;
Steve Capper3212b532013-04-23 12:35:02 +01006394
6395 /*
6396 * match the virtual addresses, permission and the alignment of the
6397 * page table page.
6398 */
6399 if (pmd_index(addr) != pmd_index(saddr) ||
6400 vm_flags != svm_flags ||
Miaohe Lin07e51ed2021-02-24 12:07:39 -08006401 !range_in_vma(svma, sbase, s_end))
Steve Capper3212b532013-04-23 12:35:02 +01006402 return 0;
6403
6404 return saddr;
6405}
6406
Nicholas Krause31aafb42015-09-04 15:47:58 -07006407static bool vma_shareable(struct vm_area_struct *vma, unsigned long addr)
Steve Capper3212b532013-04-23 12:35:02 +01006408{
6409 unsigned long base = addr & PUD_MASK;
6410 unsigned long end = base + PUD_SIZE;
6411
6412 /*
6413 * check on proper vm_flags and page table alignment
6414 */
Mike Kravetz017b1662018-10-05 15:51:29 -07006415 if (vma->vm_flags & VM_MAYSHARE && range_in_vma(vma, base, end))
Nicholas Krause31aafb42015-09-04 15:47:58 -07006416 return true;
6417 return false;
Steve Capper3212b532013-04-23 12:35:02 +01006418}
6419
Peter Xuc1991e02021-05-04 18:33:04 -07006420bool want_pmd_share(struct vm_area_struct *vma, unsigned long addr)
6421{
6422#ifdef CONFIG_USERFAULTFD
6423 if (uffd_disable_huge_pmd_share(vma))
6424 return false;
6425#endif
6426 return vma_shareable(vma, addr);
6427}
6428
Steve Capper3212b532013-04-23 12:35:02 +01006429/*
Mike Kravetz017b1662018-10-05 15:51:29 -07006430 * Determine if start,end range within vma could be mapped by shared pmd.
6431 * If yes, adjust start and end to cover range associated with possible
6432 * shared pmd mappings.
6433 */
6434void adjust_range_if_pmd_sharing_possible(struct vm_area_struct *vma,
6435 unsigned long *start, unsigned long *end)
6436{
Li Xinhaia1ba9da2021-02-24 12:06:54 -08006437 unsigned long v_start = ALIGN(vma->vm_start, PUD_SIZE),
6438 v_end = ALIGN_DOWN(vma->vm_end, PUD_SIZE);
Mike Kravetz017b1662018-10-05 15:51:29 -07006439
Li Xinhaia1ba9da2021-02-24 12:06:54 -08006440 /*
Ingo Molnarf0953a12021-05-06 18:06:47 -07006441 * vma needs to span at least one aligned PUD size, and the range
6442 * must be at least partially within in.
Li Xinhaia1ba9da2021-02-24 12:06:54 -08006443 */
6444 if (!(vma->vm_flags & VM_MAYSHARE) || !(v_end > v_start) ||
6445 (*end <= v_start) || (*start >= v_end))
Mike Kravetz017b1662018-10-05 15:51:29 -07006446 return;
6447
Peter Xu75802ca62020-08-06 23:26:11 -07006448 /* Extend the range to be PUD aligned for a worst case scenario */
Li Xinhaia1ba9da2021-02-24 12:06:54 -08006449 if (*start > v_start)
6450 *start = ALIGN_DOWN(*start, PUD_SIZE);
Mike Kravetz017b1662018-10-05 15:51:29 -07006451
Li Xinhaia1ba9da2021-02-24 12:06:54 -08006452 if (*end < v_end)
6453 *end = ALIGN(*end, PUD_SIZE);
Mike Kravetz017b1662018-10-05 15:51:29 -07006454}
6455
6456/*
Steve Capper3212b532013-04-23 12:35:02 +01006457 * Search for a shareable pmd page for hugetlb. In any case calls pmd_alloc()
6458 * and returns the corresponding pte. While this is not necessary for the
6459 * !shared pmd case because we can allocate the pmd later as well, it makes the
Mike Kravetzc0d03812020-04-01 21:11:05 -07006460 * code much cleaner.
6461 *
Mike Kravetz0bf7b642020-10-13 16:56:42 -07006462 * This routine must be called with i_mmap_rwsem held in at least read mode if
6463 * sharing is possible. For hugetlbfs, this prevents removal of any page
6464 * table entries associated with the address space. This is important as we
6465 * are setting up sharing based on existing page table entries (mappings).
Steve Capper3212b532013-04-23 12:35:02 +01006466 */
Peter Xuaec44e02021-05-04 18:33:00 -07006467pte_t *huge_pmd_share(struct mm_struct *mm, struct vm_area_struct *vma,
6468 unsigned long addr, pud_t *pud)
Steve Capper3212b532013-04-23 12:35:02 +01006469{
Steve Capper3212b532013-04-23 12:35:02 +01006470 struct address_space *mapping = vma->vm_file->f_mapping;
6471 pgoff_t idx = ((addr - vma->vm_start) >> PAGE_SHIFT) +
6472 vma->vm_pgoff;
6473 struct vm_area_struct *svma;
6474 unsigned long saddr;
6475 pte_t *spte = NULL;
6476 pte_t *pte;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08006477 spinlock_t *ptl;
Steve Capper3212b532013-04-23 12:35:02 +01006478
Mike Kravetz0bf7b642020-10-13 16:56:42 -07006479 i_mmap_assert_locked(mapping);
Steve Capper3212b532013-04-23 12:35:02 +01006480 vma_interval_tree_foreach(svma, &mapping->i_mmap, idx, idx) {
6481 if (svma == vma)
6482 continue;
6483
6484 saddr = page_table_shareable(svma, vma, addr, idx);
6485 if (saddr) {
Punit Agrawal7868a202017-07-06 15:39:42 -07006486 spte = huge_pte_offset(svma->vm_mm, saddr,
6487 vma_mmu_pagesize(svma));
Steve Capper3212b532013-04-23 12:35:02 +01006488 if (spte) {
6489 get_page(virt_to_page(spte));
6490 break;
6491 }
6492 }
6493 }
6494
6495 if (!spte)
6496 goto out;
6497
Aneesh Kumar K.V8bea8052016-12-12 16:41:59 -08006498 ptl = huge_pte_lock(hstate_vma(vma), mm, spte);
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -08006499 if (pud_none(*pud)) {
Steve Capper3212b532013-04-23 12:35:02 +01006500 pud_populate(mm, pud,
6501 (pmd_t *)((unsigned long)spte & PAGE_MASK));
Kirill A. Shutemovc17b1f42016-06-24 14:49:51 -07006502 mm_inc_nr_pmds(mm);
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -08006503 } else {
Steve Capper3212b532013-04-23 12:35:02 +01006504 put_page(virt_to_page(spte));
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -08006505 }
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -08006506 spin_unlock(ptl);
Steve Capper3212b532013-04-23 12:35:02 +01006507out:
6508 pte = (pte_t *)pmd_alloc(mm, pud, addr);
Steve Capper3212b532013-04-23 12:35:02 +01006509 return pte;
6510}
6511
6512/*
6513 * unmap huge page backed by shared pte.
6514 *
6515 * Hugetlb pte page is ref counted at the time of mapping. If pte is shared
6516 * indicated by page_count > 1, unmap is achieved by clearing pud and
6517 * decrementing the ref count. If count == 1, the pte page is not shared.
6518 *
Mike Kravetzc0d03812020-04-01 21:11:05 -07006519 * Called with page table lock held and i_mmap_rwsem held in write mode.
Steve Capper3212b532013-04-23 12:35:02 +01006520 *
6521 * returns: 1 successfully unmapped a shared pte page
6522 * 0 the underlying pte page is not shared, or it is the last user
6523 */
Mike Kravetz34ae2042020-08-11 18:31:38 -07006524int huge_pmd_unshare(struct mm_struct *mm, struct vm_area_struct *vma,
6525 unsigned long *addr, pte_t *ptep)
Steve Capper3212b532013-04-23 12:35:02 +01006526{
6527 pgd_t *pgd = pgd_offset(mm, *addr);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006528 p4d_t *p4d = p4d_offset(pgd, *addr);
6529 pud_t *pud = pud_offset(p4d, *addr);
Steve Capper3212b532013-04-23 12:35:02 +01006530
Mike Kravetz34ae2042020-08-11 18:31:38 -07006531 i_mmap_assert_write_locked(vma->vm_file->f_mapping);
Steve Capper3212b532013-04-23 12:35:02 +01006532 BUG_ON(page_count(virt_to_page(ptep)) == 0);
6533 if (page_count(virt_to_page(ptep)) == 1)
6534 return 0;
6535
6536 pud_clear(pud);
6537 put_page(virt_to_page(ptep));
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -08006538 mm_dec_nr_pmds(mm);
Steve Capper3212b532013-04-23 12:35:02 +01006539 *addr = ALIGN(*addr, HPAGE_SIZE * PTRS_PER_PTE) - HPAGE_SIZE;
6540 return 1;
6541}
Peter Xuc1991e02021-05-04 18:33:04 -07006542
Steve Capper9e5fc742013-04-30 08:02:03 +01006543#else /* !CONFIG_ARCH_WANT_HUGE_PMD_SHARE */
Peter Xuaec44e02021-05-04 18:33:00 -07006544pte_t *huge_pmd_share(struct mm_struct *mm, struct vm_area_struct *vma,
6545 unsigned long addr, pud_t *pud)
Steve Capper9e5fc742013-04-30 08:02:03 +01006546{
6547 return NULL;
6548}
Zhang Zhene81f2d22015-06-24 16:56:13 -07006549
Mike Kravetz34ae2042020-08-11 18:31:38 -07006550int huge_pmd_unshare(struct mm_struct *mm, struct vm_area_struct *vma,
6551 unsigned long *addr, pte_t *ptep)
Zhang Zhene81f2d22015-06-24 16:56:13 -07006552{
6553 return 0;
6554}
Mike Kravetz017b1662018-10-05 15:51:29 -07006555
6556void adjust_range_if_pmd_sharing_possible(struct vm_area_struct *vma,
6557 unsigned long *start, unsigned long *end)
6558{
6559}
Peter Xuc1991e02021-05-04 18:33:04 -07006560
6561bool want_pmd_share(struct vm_area_struct *vma, unsigned long addr)
6562{
6563 return false;
6564}
Steve Capper3212b532013-04-23 12:35:02 +01006565#endif /* CONFIG_ARCH_WANT_HUGE_PMD_SHARE */
6566
Steve Capper9e5fc742013-04-30 08:02:03 +01006567#ifdef CONFIG_ARCH_WANT_GENERAL_HUGETLB
Peter Xuaec44e02021-05-04 18:33:00 -07006568pte_t *huge_pte_alloc(struct mm_struct *mm, struct vm_area_struct *vma,
Steve Capper9e5fc742013-04-30 08:02:03 +01006569 unsigned long addr, unsigned long sz)
6570{
6571 pgd_t *pgd;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006572 p4d_t *p4d;
Steve Capper9e5fc742013-04-30 08:02:03 +01006573 pud_t *pud;
6574 pte_t *pte = NULL;
6575
6576 pgd = pgd_offset(mm, addr);
Kirill A. Shutemovf4f0a3d2017-11-29 16:11:30 -08006577 p4d = p4d_alloc(mm, pgd, addr);
6578 if (!p4d)
6579 return NULL;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006580 pud = pud_alloc(mm, p4d, addr);
Steve Capper9e5fc742013-04-30 08:02:03 +01006581 if (pud) {
6582 if (sz == PUD_SIZE) {
6583 pte = (pte_t *)pud;
6584 } else {
6585 BUG_ON(sz != PMD_SIZE);
Peter Xuc1991e02021-05-04 18:33:04 -07006586 if (want_pmd_share(vma, addr) && pud_none(*pud))
Peter Xuaec44e02021-05-04 18:33:00 -07006587 pte = huge_pmd_share(mm, vma, addr, pud);
Steve Capper9e5fc742013-04-30 08:02:03 +01006588 else
6589 pte = (pte_t *)pmd_alloc(mm, pud, addr);
6590 }
6591 }
Michal Hocko4e666312016-08-02 14:02:34 -07006592 BUG_ON(pte && pte_present(*pte) && !pte_huge(*pte));
Steve Capper9e5fc742013-04-30 08:02:03 +01006593
6594 return pte;
6595}
6596
Punit Agrawal9b19df22017-09-06 16:21:01 -07006597/*
6598 * huge_pte_offset() - Walk the page table to resolve the hugepage
6599 * entry at address @addr
6600 *
Li Xinhai8ac0b812020-06-03 16:00:53 -07006601 * Return: Pointer to page table entry (PUD or PMD) for
6602 * address @addr, or NULL if a !p*d_present() entry is encountered and the
Punit Agrawal9b19df22017-09-06 16:21:01 -07006603 * size @sz doesn't match the hugepage size at this level of the page
6604 * table.
6605 */
Punit Agrawal7868a202017-07-06 15:39:42 -07006606pte_t *huge_pte_offset(struct mm_struct *mm,
6607 unsigned long addr, unsigned long sz)
Steve Capper9e5fc742013-04-30 08:02:03 +01006608{
6609 pgd_t *pgd;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006610 p4d_t *p4d;
Li Xinhai8ac0b812020-06-03 16:00:53 -07006611 pud_t *pud;
6612 pmd_t *pmd;
Steve Capper9e5fc742013-04-30 08:02:03 +01006613
6614 pgd = pgd_offset(mm, addr);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006615 if (!pgd_present(*pgd))
6616 return NULL;
6617 p4d = p4d_offset(pgd, addr);
6618 if (!p4d_present(*p4d))
6619 return NULL;
Punit Agrawal9b19df22017-09-06 16:21:01 -07006620
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006621 pud = pud_offset(p4d, addr);
Li Xinhai8ac0b812020-06-03 16:00:53 -07006622 if (sz == PUD_SIZE)
6623 /* must be pud huge, non-present or none */
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006624 return (pte_t *)pud;
Li Xinhai8ac0b812020-06-03 16:00:53 -07006625 if (!pud_present(*pud))
6626 return NULL;
6627 /* must have a valid entry and size to go further */
Punit Agrawal9b19df22017-09-06 16:21:01 -07006628
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03006629 pmd = pmd_offset(pud, addr);
Li Xinhai8ac0b812020-06-03 16:00:53 -07006630 /* must be pmd huge, non-present or none */
6631 return (pte_t *)pmd;
Steve Capper9e5fc742013-04-30 08:02:03 +01006632}
6633
Naoya Horiguchi61f77ed2015-02-11 15:25:15 -08006634#endif /* CONFIG_ARCH_WANT_GENERAL_HUGETLB */
6635
6636/*
6637 * These functions are overwritable if your architecture needs its own
6638 * behavior.
6639 */
6640struct page * __weak
6641follow_huge_addr(struct mm_struct *mm, unsigned long address,
6642 int write)
6643{
6644 return ERR_PTR(-EINVAL);
6645}
6646
6647struct page * __weak
Aneesh Kumar K.V4dc71452017-07-06 15:38:56 -07006648follow_huge_pd(struct vm_area_struct *vma,
6649 unsigned long address, hugepd_t hpd, int flags, int pdshift)
6650{
6651 WARN(1, "hugepd follow called with no support for hugepage directory format\n");
6652 return NULL;
6653}
6654
6655struct page * __weak
Steve Capper9e5fc742013-04-30 08:02:03 +01006656follow_huge_pmd(struct mm_struct *mm, unsigned long address,
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006657 pmd_t *pmd, int flags)
Steve Capper9e5fc742013-04-30 08:02:03 +01006658{
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006659 struct page *page = NULL;
6660 spinlock_t *ptl;
Naoya Horiguchic9d398f2017-03-31 15:11:55 -07006661 pte_t pte;
John Hubbard3faa52c2020-04-01 21:05:29 -07006662
6663 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
6664 if (WARN_ON_ONCE((flags & (FOLL_PIN | FOLL_GET)) ==
6665 (FOLL_PIN | FOLL_GET)))
6666 return NULL;
6667
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006668retry:
6669 ptl = pmd_lockptr(mm, pmd);
6670 spin_lock(ptl);
6671 /*
6672 * make sure that the address range covered by this pmd is not
6673 * unmapped from other threads.
6674 */
6675 if (!pmd_huge(*pmd))
6676 goto out;
Naoya Horiguchic9d398f2017-03-31 15:11:55 -07006677 pte = huge_ptep_get((pte_t *)pmd);
6678 if (pte_present(pte)) {
Gerald Schaefer97534122015-04-14 15:42:30 -07006679 page = pmd_page(*pmd) + ((address & ~PMD_MASK) >> PAGE_SHIFT);
John Hubbard3faa52c2020-04-01 21:05:29 -07006680 /*
6681 * try_grab_page() should always succeed here, because: a) we
6682 * hold the pmd (ptl) lock, and b) we've just checked that the
6683 * huge pmd (head) page is present in the page tables. The ptl
6684 * prevents the head page and tail pages from being rearranged
6685 * in any way. So this page must be available at this point,
6686 * unless the page refcount overflowed:
6687 */
6688 if (WARN_ON_ONCE(!try_grab_page(page, flags))) {
6689 page = NULL;
6690 goto out;
6691 }
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006692 } else {
Naoya Horiguchic9d398f2017-03-31 15:11:55 -07006693 if (is_hugetlb_entry_migration(pte)) {
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006694 spin_unlock(ptl);
6695 __migration_entry_wait(mm, (pte_t *)pmd, ptl);
6696 goto retry;
6697 }
6698 /*
6699 * hwpoisoned entry is treated as no_page_table in
6700 * follow_page_mask().
6701 */
6702 }
6703out:
6704 spin_unlock(ptl);
Steve Capper9e5fc742013-04-30 08:02:03 +01006705 return page;
6706}
6707
Naoya Horiguchi61f77ed2015-02-11 15:25:15 -08006708struct page * __weak
Steve Capper9e5fc742013-04-30 08:02:03 +01006709follow_huge_pud(struct mm_struct *mm, unsigned long address,
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006710 pud_t *pud, int flags)
Steve Capper9e5fc742013-04-30 08:02:03 +01006711{
John Hubbard3faa52c2020-04-01 21:05:29 -07006712 if (flags & (FOLL_GET | FOLL_PIN))
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006713 return NULL;
Steve Capper9e5fc742013-04-30 08:02:03 +01006714
Naoya Horiguchie66f17f2015-02-11 15:25:22 -08006715 return pte_page(*(pte_t *)pud) + ((address & ~PUD_MASK) >> PAGE_SHIFT);
Steve Capper9e5fc742013-04-30 08:02:03 +01006716}
6717
Anshuman Khandualfaaa5b62017-07-06 15:38:50 -07006718struct page * __weak
6719follow_huge_pgd(struct mm_struct *mm, unsigned long address, pgd_t *pgd, int flags)
6720{
John Hubbard3faa52c2020-04-01 21:05:29 -07006721 if (flags & (FOLL_GET | FOLL_PIN))
Anshuman Khandualfaaa5b62017-07-06 15:38:50 -07006722 return NULL;
6723
6724 return pte_page(*(pte_t *)pgd) + ((address & ~PGDIR_MASK) >> PAGE_SHIFT);
6725}
6726
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006727bool isolate_huge_page(struct page *page, struct list_head *list)
6728{
Naoya Horiguchibcc54222015-04-15 16:14:38 -07006729 bool ret = true;
6730
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006731 spin_lock_irq(&hugetlb_lock);
Mike Kravetz8f251a32021-02-24 12:08:56 -08006732 if (!PageHeadHuge(page) ||
6733 !HPageMigratable(page) ||
Muchun Song0eb2df22021-02-04 18:32:10 -08006734 !get_page_unless_zero(page)) {
Naoya Horiguchibcc54222015-04-15 16:14:38 -07006735 ret = false;
6736 goto unlock;
6737 }
Mike Kravetz8f251a32021-02-24 12:08:56 -08006738 ClearHPageMigratable(page);
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006739 list_move_tail(&page->lru, list);
Naoya Horiguchibcc54222015-04-15 16:14:38 -07006740unlock:
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006741 spin_unlock_irq(&hugetlb_lock);
Naoya Horiguchibcc54222015-04-15 16:14:38 -07006742 return ret;
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006743}
6744
Naoya Horiguchi25182f02021-06-15 18:23:13 -07006745int get_hwpoison_huge_page(struct page *page, bool *hugetlb)
6746{
6747 int ret = 0;
6748
6749 *hugetlb = false;
6750 spin_lock_irq(&hugetlb_lock);
6751 if (PageHeadHuge(page)) {
6752 *hugetlb = true;
6753 if (HPageFreed(page) || HPageMigratable(page))
6754 ret = get_page_unless_zero(page);
Naoya Horiguchi0ed950d2021-06-28 19:43:17 -07006755 else
6756 ret = -EBUSY;
Naoya Horiguchi25182f02021-06-15 18:23:13 -07006757 }
6758 spin_unlock_irq(&hugetlb_lock);
6759 return ret;
6760}
6761
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006762void putback_active_hugepage(struct page *page)
6763{
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006764 spin_lock_irq(&hugetlb_lock);
Mike Kravetz8f251a32021-02-24 12:08:56 -08006765 SetHPageMigratable(page);
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006766 list_move_tail(&page->lru, &(page_hstate(page))->hugepage_activelist);
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006767 spin_unlock_irq(&hugetlb_lock);
Naoya Horiguchi31caf662013-09-11 14:21:59 -07006768 put_page(page);
6769}
Michal Hockoab5ac902018-01-31 16:20:48 -08006770
6771void move_hugetlb_state(struct page *oldpage, struct page *newpage, int reason)
6772{
6773 struct hstate *h = page_hstate(oldpage);
6774
6775 hugetlb_cgroup_migrate(oldpage, newpage);
6776 set_page_owner_migrate_reason(newpage, reason);
6777
6778 /*
6779 * transfer temporary state of the new huge page. This is
6780 * reverse to other transitions because the newpage is going to
6781 * be final while the old one will be freed so it takes over
6782 * the temporary status.
6783 *
6784 * Also note that we have to transfer the per-node surplus state
6785 * here as well otherwise the global surplus count will not match
6786 * the per-node's.
6787 */
Mike Kravetz9157c3112021-02-24 12:09:00 -08006788 if (HPageTemporary(newpage)) {
Michal Hockoab5ac902018-01-31 16:20:48 -08006789 int old_nid = page_to_nid(oldpage);
6790 int new_nid = page_to_nid(newpage);
6791
Mike Kravetz9157c3112021-02-24 12:09:00 -08006792 SetHPageTemporary(oldpage);
6793 ClearHPageTemporary(newpage);
Michal Hockoab5ac902018-01-31 16:20:48 -08006794
Miaohe Lin5af1ab12021-05-04 18:33:25 -07006795 /*
6796 * There is no need to transfer the per-node surplus state
6797 * when we do not cross the node.
6798 */
6799 if (new_nid == old_nid)
6800 return;
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006801 spin_lock_irq(&hugetlb_lock);
Michal Hockoab5ac902018-01-31 16:20:48 -08006802 if (h->surplus_huge_pages_node[old_nid]) {
6803 h->surplus_huge_pages_node[old_nid]--;
6804 h->surplus_huge_pages_node[new_nid]++;
6805 }
Mike Kravetzdb71ef72021-05-04 18:35:07 -07006806 spin_unlock_irq(&hugetlb_lock);
Michal Hockoab5ac902018-01-31 16:20:48 -08006807 }
6808}
Roman Gushchincf11e852020-04-10 14:32:45 -07006809
Peter Xu6dfeaff2021-05-04 18:33:13 -07006810/*
6811 * This function will unconditionally remove all the shared pmd pgtable entries
6812 * within the specific vma for a hugetlbfs memory range.
6813 */
6814void hugetlb_unshare_all_pmds(struct vm_area_struct *vma)
6815{
6816 struct hstate *h = hstate_vma(vma);
6817 unsigned long sz = huge_page_size(h);
6818 struct mm_struct *mm = vma->vm_mm;
6819 struct mmu_notifier_range range;
6820 unsigned long address, start, end;
6821 spinlock_t *ptl;
6822 pte_t *ptep;
6823
6824 if (!(vma->vm_flags & VM_MAYSHARE))
6825 return;
6826
6827 start = ALIGN(vma->vm_start, PUD_SIZE);
6828 end = ALIGN_DOWN(vma->vm_end, PUD_SIZE);
6829
6830 if (start >= end)
6831 return;
6832
6833 /*
6834 * No need to call adjust_range_if_pmd_sharing_possible(), because
6835 * we have already done the PUD_SIZE alignment.
6836 */
6837 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, mm,
6838 start, end);
6839 mmu_notifier_invalidate_range_start(&range);
6840 i_mmap_lock_write(vma->vm_file->f_mapping);
6841 for (address = start; address < end; address += PUD_SIZE) {
6842 unsigned long tmp = address;
6843
6844 ptep = huge_pte_offset(mm, address, sz);
6845 if (!ptep)
6846 continue;
6847 ptl = huge_pte_lock(h, mm, ptep);
6848 /* We don't want 'address' to be changed */
6849 huge_pmd_unshare(mm, vma, &tmp, ptep);
6850 spin_unlock(ptl);
6851 }
6852 flush_hugetlb_tlb_range(vma, start, end);
6853 i_mmap_unlock_write(vma->vm_file->f_mapping);
6854 /*
6855 * No need to call mmu_notifier_invalidate_range(), see
6856 * Documentation/vm/mmu_notifier.rst.
6857 */
6858 mmu_notifier_invalidate_range_end(&range);
6859}
6860
Roman Gushchincf11e852020-04-10 14:32:45 -07006861#ifdef CONFIG_CMA
Roman Gushchincf11e852020-04-10 14:32:45 -07006862static bool cma_reserve_called __initdata;
6863
6864static int __init cmdline_parse_hugetlb_cma(char *p)
6865{
Baolin Wang38e719a2021-11-05 13:41:46 -07006866 int nid, count = 0;
6867 unsigned long tmp;
6868 char *s = p;
6869
6870 while (*s) {
6871 if (sscanf(s, "%lu%n", &tmp, &count) != 1)
6872 break;
6873
6874 if (s[count] == ':') {
6875 nid = tmp;
6876 if (nid < 0 || nid >= MAX_NUMNODES)
6877 break;
6878
6879 s += count + 1;
6880 tmp = memparse(s, &s);
6881 hugetlb_cma_size_in_node[nid] = tmp;
6882 hugetlb_cma_size += tmp;
6883
6884 /*
6885 * Skip the separator if have one, otherwise
6886 * break the parsing.
6887 */
6888 if (*s == ',')
6889 s++;
6890 else
6891 break;
6892 } else {
6893 hugetlb_cma_size = memparse(p, &p);
6894 break;
6895 }
6896 }
6897
Roman Gushchincf11e852020-04-10 14:32:45 -07006898 return 0;
6899}
6900
6901early_param("hugetlb_cma", cmdline_parse_hugetlb_cma);
6902
6903void __init hugetlb_cma_reserve(int order)
6904{
6905 unsigned long size, reserved, per_node;
Baolin Wang38e719a2021-11-05 13:41:46 -07006906 bool node_specific_cma_alloc = false;
Roman Gushchincf11e852020-04-10 14:32:45 -07006907 int nid;
6908
6909 cma_reserve_called = true;
6910
6911 if (!hugetlb_cma_size)
6912 return;
6913
Baolin Wang38e719a2021-11-05 13:41:46 -07006914 for (nid = 0; nid < MAX_NUMNODES; nid++) {
6915 if (hugetlb_cma_size_in_node[nid] == 0)
6916 continue;
6917
6918 if (!node_state(nid, N_ONLINE)) {
6919 pr_warn("hugetlb_cma: invalid node %d specified\n", nid);
6920 hugetlb_cma_size -= hugetlb_cma_size_in_node[nid];
6921 hugetlb_cma_size_in_node[nid] = 0;
6922 continue;
6923 }
6924
6925 if (hugetlb_cma_size_in_node[nid] < (PAGE_SIZE << order)) {
6926 pr_warn("hugetlb_cma: cma area of node %d should be at least %lu MiB\n",
6927 nid, (PAGE_SIZE << order) / SZ_1M);
6928 hugetlb_cma_size -= hugetlb_cma_size_in_node[nid];
6929 hugetlb_cma_size_in_node[nid] = 0;
6930 } else {
6931 node_specific_cma_alloc = true;
6932 }
6933 }
6934
6935 /* Validate the CMA size again in case some invalid nodes specified. */
6936 if (!hugetlb_cma_size)
6937 return;
6938
Roman Gushchincf11e852020-04-10 14:32:45 -07006939 if (hugetlb_cma_size < (PAGE_SIZE << order)) {
6940 pr_warn("hugetlb_cma: cma area should be at least %lu MiB\n",
6941 (PAGE_SIZE << order) / SZ_1M);
Mike Kravetza01f4392021-11-05 13:41:27 -07006942 hugetlb_cma_size = 0;
Roman Gushchincf11e852020-04-10 14:32:45 -07006943 return;
6944 }
6945
Baolin Wang38e719a2021-11-05 13:41:46 -07006946 if (!node_specific_cma_alloc) {
6947 /*
6948 * If 3 GB area is requested on a machine with 4 numa nodes,
6949 * let's allocate 1 GB on first three nodes and ignore the last one.
6950 */
6951 per_node = DIV_ROUND_UP(hugetlb_cma_size, nr_online_nodes);
6952 pr_info("hugetlb_cma: reserve %lu MiB, up to %lu MiB per node\n",
6953 hugetlb_cma_size / SZ_1M, per_node / SZ_1M);
6954 }
Roman Gushchincf11e852020-04-10 14:32:45 -07006955
6956 reserved = 0;
6957 for_each_node_state(nid, N_ONLINE) {
6958 int res;
Barry Song2281f792020-08-24 11:03:09 +12006959 char name[CMA_MAX_NAME];
Roman Gushchincf11e852020-04-10 14:32:45 -07006960
Baolin Wang38e719a2021-11-05 13:41:46 -07006961 if (node_specific_cma_alloc) {
6962 if (hugetlb_cma_size_in_node[nid] == 0)
6963 continue;
6964
6965 size = hugetlb_cma_size_in_node[nid];
6966 } else {
6967 size = min(per_node, hugetlb_cma_size - reserved);
6968 }
6969
Roman Gushchincf11e852020-04-10 14:32:45 -07006970 size = round_up(size, PAGE_SIZE << order);
6971
Barry Song2281f792020-08-24 11:03:09 +12006972 snprintf(name, sizeof(name), "hugetlb%d", nid);
Mike Kravetza01f4392021-11-05 13:41:27 -07006973 /*
6974 * Note that 'order per bit' is based on smallest size that
6975 * may be returned to CMA allocator in the case of
6976 * huge page demotion.
6977 */
6978 res = cma_declare_contiguous_nid(0, size, 0,
6979 PAGE_SIZE << HUGETLB_PAGE_ORDER,
Barry Song29d0f412020-08-11 18:32:00 -07006980 0, false, name,
Roman Gushchincf11e852020-04-10 14:32:45 -07006981 &hugetlb_cma[nid], nid);
6982 if (res) {
6983 pr_warn("hugetlb_cma: reservation failed: err %d, node %d",
6984 res, nid);
6985 continue;
6986 }
6987
6988 reserved += size;
6989 pr_info("hugetlb_cma: reserved %lu MiB on node %d\n",
6990 size / SZ_1M, nid);
6991
6992 if (reserved >= hugetlb_cma_size)
6993 break;
6994 }
Mike Kravetza01f4392021-11-05 13:41:27 -07006995
6996 if (!reserved)
6997 /*
6998 * hugetlb_cma_size is used to determine if allocations from
6999 * cma are possible. Set to zero if no cma regions are set up.
7000 */
7001 hugetlb_cma_size = 0;
Roman Gushchincf11e852020-04-10 14:32:45 -07007002}
7003
7004void __init hugetlb_cma_check(void)
7005{
7006 if (!hugetlb_cma_size || cma_reserve_called)
7007 return;
7008
7009 pr_warn("hugetlb_cma: the option isn't supported by current arch\n");
7010}
7011
7012#endif /* CONFIG_CMA */