xref: /openbmc/linux/mm/hugetlb.c (revision 3e59fcb0)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * Generic hugetlb support.
36d49e352SNadia Yvette Chambers  * (C) Nadia Yvette Chambers, April 2004
41da177e4SLinus Torvalds  */
51da177e4SLinus Torvalds #include <linux/list.h>
61da177e4SLinus Torvalds #include <linux/init.h>
71da177e4SLinus Torvalds #include <linux/mm.h>
8e1759c21SAlexey Dobriyan #include <linux/seq_file.h>
91da177e4SLinus Torvalds #include <linux/sysctl.h>
101da177e4SLinus Torvalds #include <linux/highmem.h>
11cddb8a5cSAndrea Arcangeli #include <linux/mmu_notifier.h>
121da177e4SLinus Torvalds #include <linux/nodemask.h>
1363551ae0SDavid Gibson #include <linux/pagemap.h>
145da7ca86SChristoph Lameter #include <linux/mempolicy.h>
153b32123dSGideon Israel Dsouza #include <linux/compiler.h>
16aea47ff3SChristoph Lameter #include <linux/cpuset.h>
173935baa9SDavid Gibson #include <linux/mutex.h>
18aa888a74SAndi Kleen #include <linux/bootmem.h>
19a3437870SNishanth Aravamudan #include <linux/sysfs.h>
205a0e3ad6STejun Heo #include <linux/slab.h>
21174cd4b1SIngo Molnar #include <linux/sched/signal.h>
220fe6e20bSNaoya Horiguchi #include <linux/rmap.h>
23c6247f72SMatthew Wilcox #include <linux/string_helpers.h>
24fd6a03edSNaoya Horiguchi #include <linux/swap.h>
25fd6a03edSNaoya Horiguchi #include <linux/swapops.h>
268382d914SDavidlohr Bueso #include <linux/jhash.h>
27d6606683SLinus Torvalds 
2863551ae0SDavid Gibson #include <asm/page.h>
2963551ae0SDavid Gibson #include <asm/pgtable.h>
3024669e58SAneesh Kumar K.V #include <asm/tlb.h>
3163551ae0SDavid Gibson 
3224669e58SAneesh Kumar K.V #include <linux/io.h>
3363551ae0SDavid Gibson #include <linux/hugetlb.h>
349dd540e2SAneesh Kumar K.V #include <linux/hugetlb_cgroup.h>
359a305230SLee Schermerhorn #include <linux/node.h>
361a1aad8aSMike Kravetz #include <linux/userfaultfd_k.h>
377835e98bSNick Piggin #include "internal.h"
381da177e4SLinus Torvalds 
39753162cdSAndrey Ryabinin int hugepages_treat_as_movable;
40a5516438SAndi Kleen 
41c3f38a38SAneesh Kumar K.V int hugetlb_max_hstate __read_mostly;
42e5ff2159SAndi Kleen unsigned int default_hstate_idx;
43e5ff2159SAndi Kleen struct hstate hstates[HUGE_MAX_HSTATE];
44641844f5SNaoya Horiguchi /*
45641844f5SNaoya Horiguchi  * Minimum page order among possible hugepage sizes, set to a proper value
46641844f5SNaoya Horiguchi  * at boot time.
47641844f5SNaoya Horiguchi  */
48641844f5SNaoya Horiguchi static unsigned int minimum_order __read_mostly = UINT_MAX;
49e5ff2159SAndi Kleen 
5053ba51d2SJon Tollefson __initdata LIST_HEAD(huge_boot_pages);
5153ba51d2SJon Tollefson 
52e5ff2159SAndi Kleen /* for command line parsing */
53e5ff2159SAndi Kleen static struct hstate * __initdata parsed_hstate;
54e5ff2159SAndi Kleen static unsigned long __initdata default_hstate_max_huge_pages;
55e11bfbfcSNick Piggin static unsigned long __initdata default_hstate_size;
569fee021dSVaishali Thakkar static bool __initdata parsed_valid_hugepagesz = true;
57e5ff2159SAndi Kleen 
583935baa9SDavid Gibson /*
5931caf665SNaoya Horiguchi  * Protects updates to hugepage_freelists, hugepage_activelist, nr_huge_pages,
6031caf665SNaoya Horiguchi  * free_huge_pages, and surplus_huge_pages.
613935baa9SDavid Gibson  */
62c3f38a38SAneesh Kumar K.V DEFINE_SPINLOCK(hugetlb_lock);
630bd0f9fbSEric Paris 
648382d914SDavidlohr Bueso /*
658382d914SDavidlohr Bueso  * Serializes faults on the same logical page.  This is used to
668382d914SDavidlohr Bueso  * prevent spurious OOMs when the hugepage pool is fully utilized.
678382d914SDavidlohr Bueso  */
688382d914SDavidlohr Bueso static int num_fault_mutexes;
69c672c7f2SMike Kravetz struct mutex *hugetlb_fault_mutex_table ____cacheline_aligned_in_smp;
708382d914SDavidlohr Bueso 
717ca02d0aSMike Kravetz /* Forward declaration */
727ca02d0aSMike Kravetz static int hugetlb_acct_memory(struct hstate *h, long delta);
737ca02d0aSMike Kravetz 
7490481622SDavid Gibson static inline void unlock_or_release_subpool(struct hugepage_subpool *spool)
7590481622SDavid Gibson {
7690481622SDavid Gibson 	bool free = (spool->count == 0) && (spool->used_hpages == 0);
7790481622SDavid Gibson 
7890481622SDavid Gibson 	spin_unlock(&spool->lock);
7990481622SDavid Gibson 
8090481622SDavid Gibson 	/* If no pages are used, and no other handles to the subpool
817ca02d0aSMike Kravetz 	 * remain, give up any reservations mased on minimum size and
827ca02d0aSMike Kravetz 	 * free the subpool */
837ca02d0aSMike Kravetz 	if (free) {
847ca02d0aSMike Kravetz 		if (spool->min_hpages != -1)
857ca02d0aSMike Kravetz 			hugetlb_acct_memory(spool->hstate,
867ca02d0aSMike Kravetz 						-spool->min_hpages);
8790481622SDavid Gibson 		kfree(spool);
8890481622SDavid Gibson 	}
897ca02d0aSMike Kravetz }
9090481622SDavid Gibson 
917ca02d0aSMike Kravetz struct hugepage_subpool *hugepage_new_subpool(struct hstate *h, long max_hpages,
927ca02d0aSMike Kravetz 						long min_hpages)
9390481622SDavid Gibson {
9490481622SDavid Gibson 	struct hugepage_subpool *spool;
9590481622SDavid Gibson 
96c6a91820SMike Kravetz 	spool = kzalloc(sizeof(*spool), GFP_KERNEL);
9790481622SDavid Gibson 	if (!spool)
9890481622SDavid Gibson 		return NULL;
9990481622SDavid Gibson 
10090481622SDavid Gibson 	spin_lock_init(&spool->lock);
10190481622SDavid Gibson 	spool->count = 1;
1027ca02d0aSMike Kravetz 	spool->max_hpages = max_hpages;
1037ca02d0aSMike Kravetz 	spool->hstate = h;
1047ca02d0aSMike Kravetz 	spool->min_hpages = min_hpages;
1057ca02d0aSMike Kravetz 
1067ca02d0aSMike Kravetz 	if (min_hpages != -1 && hugetlb_acct_memory(h, min_hpages)) {
1077ca02d0aSMike Kravetz 		kfree(spool);
1087ca02d0aSMike Kravetz 		return NULL;
1097ca02d0aSMike Kravetz 	}
1107ca02d0aSMike Kravetz 	spool->rsv_hpages = min_hpages;
11190481622SDavid Gibson 
11290481622SDavid Gibson 	return spool;
11390481622SDavid Gibson }
11490481622SDavid Gibson 
11590481622SDavid Gibson void hugepage_put_subpool(struct hugepage_subpool *spool)
11690481622SDavid Gibson {
11790481622SDavid Gibson 	spin_lock(&spool->lock);
11890481622SDavid Gibson 	BUG_ON(!spool->count);
11990481622SDavid Gibson 	spool->count--;
12090481622SDavid Gibson 	unlock_or_release_subpool(spool);
12190481622SDavid Gibson }
12290481622SDavid Gibson 
1231c5ecae3SMike Kravetz /*
1241c5ecae3SMike Kravetz  * Subpool accounting for allocating and reserving pages.
1251c5ecae3SMike Kravetz  * Return -ENOMEM if there are not enough resources to satisfy the
1261c5ecae3SMike Kravetz  * the request.  Otherwise, return the number of pages by which the
1271c5ecae3SMike Kravetz  * global pools must be adjusted (upward).  The returned value may
1281c5ecae3SMike Kravetz  * only be different than the passed value (delta) in the case where
1291c5ecae3SMike Kravetz  * a subpool minimum size must be manitained.
1301c5ecae3SMike Kravetz  */
1311c5ecae3SMike Kravetz static long hugepage_subpool_get_pages(struct hugepage_subpool *spool,
13290481622SDavid Gibson 				      long delta)
13390481622SDavid Gibson {
1341c5ecae3SMike Kravetz 	long ret = delta;
13590481622SDavid Gibson 
13690481622SDavid Gibson 	if (!spool)
1371c5ecae3SMike Kravetz 		return ret;
13890481622SDavid Gibson 
13990481622SDavid Gibson 	spin_lock(&spool->lock);
14090481622SDavid Gibson 
1411c5ecae3SMike Kravetz 	if (spool->max_hpages != -1) {		/* maximum size accounting */
1421c5ecae3SMike Kravetz 		if ((spool->used_hpages + delta) <= spool->max_hpages)
1431c5ecae3SMike Kravetz 			spool->used_hpages += delta;
1441c5ecae3SMike Kravetz 		else {
1451c5ecae3SMike Kravetz 			ret = -ENOMEM;
1461c5ecae3SMike Kravetz 			goto unlock_ret;
1471c5ecae3SMike Kravetz 		}
1481c5ecae3SMike Kravetz 	}
1491c5ecae3SMike Kravetz 
15009a95e29SMike Kravetz 	/* minimum size accounting */
15109a95e29SMike Kravetz 	if (spool->min_hpages != -1 && spool->rsv_hpages) {
1521c5ecae3SMike Kravetz 		if (delta > spool->rsv_hpages) {
1531c5ecae3SMike Kravetz 			/*
1541c5ecae3SMike Kravetz 			 * Asking for more reserves than those already taken on
1551c5ecae3SMike Kravetz 			 * behalf of subpool.  Return difference.
1561c5ecae3SMike Kravetz 			 */
1571c5ecae3SMike Kravetz 			ret = delta - spool->rsv_hpages;
1581c5ecae3SMike Kravetz 			spool->rsv_hpages = 0;
1591c5ecae3SMike Kravetz 		} else {
1601c5ecae3SMike Kravetz 			ret = 0;	/* reserves already accounted for */
1611c5ecae3SMike Kravetz 			spool->rsv_hpages -= delta;
1621c5ecae3SMike Kravetz 		}
1631c5ecae3SMike Kravetz 	}
1641c5ecae3SMike Kravetz 
1651c5ecae3SMike Kravetz unlock_ret:
1661c5ecae3SMike Kravetz 	spin_unlock(&spool->lock);
16790481622SDavid Gibson 	return ret;
16890481622SDavid Gibson }
16990481622SDavid Gibson 
1701c5ecae3SMike Kravetz /*
1711c5ecae3SMike Kravetz  * Subpool accounting for freeing and unreserving pages.
1721c5ecae3SMike Kravetz  * Return the number of global page reservations that must be dropped.
1731c5ecae3SMike Kravetz  * The return value may only be different than the passed value (delta)
1741c5ecae3SMike Kravetz  * in the case where a subpool minimum size must be maintained.
1751c5ecae3SMike Kravetz  */
1761c5ecae3SMike Kravetz static long hugepage_subpool_put_pages(struct hugepage_subpool *spool,
17790481622SDavid Gibson 				       long delta)
17890481622SDavid Gibson {
1791c5ecae3SMike Kravetz 	long ret = delta;
1801c5ecae3SMike Kravetz 
18190481622SDavid Gibson 	if (!spool)
1821c5ecae3SMike Kravetz 		return delta;
18390481622SDavid Gibson 
18490481622SDavid Gibson 	spin_lock(&spool->lock);
1851c5ecae3SMike Kravetz 
1861c5ecae3SMike Kravetz 	if (spool->max_hpages != -1)		/* maximum size accounting */
18790481622SDavid Gibson 		spool->used_hpages -= delta;
1881c5ecae3SMike Kravetz 
18909a95e29SMike Kravetz 	 /* minimum size accounting */
19009a95e29SMike Kravetz 	if (spool->min_hpages != -1 && spool->used_hpages < spool->min_hpages) {
1911c5ecae3SMike Kravetz 		if (spool->rsv_hpages + delta <= spool->min_hpages)
1921c5ecae3SMike Kravetz 			ret = 0;
1931c5ecae3SMike Kravetz 		else
1941c5ecae3SMike Kravetz 			ret = spool->rsv_hpages + delta - spool->min_hpages;
1951c5ecae3SMike Kravetz 
1961c5ecae3SMike Kravetz 		spool->rsv_hpages += delta;
1971c5ecae3SMike Kravetz 		if (spool->rsv_hpages > spool->min_hpages)
1981c5ecae3SMike Kravetz 			spool->rsv_hpages = spool->min_hpages;
1991c5ecae3SMike Kravetz 	}
2001c5ecae3SMike Kravetz 
2011c5ecae3SMike Kravetz 	/*
2021c5ecae3SMike Kravetz 	 * If hugetlbfs_put_super couldn't free spool due to an outstanding
2031c5ecae3SMike Kravetz 	 * quota reference, free it now.
2041c5ecae3SMike Kravetz 	 */
20590481622SDavid Gibson 	unlock_or_release_subpool(spool);
2061c5ecae3SMike Kravetz 
2071c5ecae3SMike Kravetz 	return ret;
20890481622SDavid Gibson }
20990481622SDavid Gibson 
21090481622SDavid Gibson static inline struct hugepage_subpool *subpool_inode(struct inode *inode)
21190481622SDavid Gibson {
21290481622SDavid Gibson 	return HUGETLBFS_SB(inode->i_sb)->spool;
21390481622SDavid Gibson }
21490481622SDavid Gibson 
21590481622SDavid Gibson static inline struct hugepage_subpool *subpool_vma(struct vm_area_struct *vma)
21690481622SDavid Gibson {
217496ad9aaSAl Viro 	return subpool_inode(file_inode(vma->vm_file));
21890481622SDavid Gibson }
21990481622SDavid Gibson 
220e7c4b0bfSAndy Whitcroft /*
22196822904SAndy Whitcroft  * Region tracking -- allows tracking of reservations and instantiated pages
22296822904SAndy Whitcroft  *                    across the pages in a mapping.
22384afd99bSAndy Whitcroft  *
2241dd308a7SMike Kravetz  * The region data structures are embedded into a resv_map and protected
2251dd308a7SMike Kravetz  * by a resv_map's lock.  The set of regions within the resv_map represent
2261dd308a7SMike Kravetz  * reservations for huge pages, or huge pages that have already been
2271dd308a7SMike Kravetz  * instantiated within the map.  The from and to elements are huge page
2281dd308a7SMike Kravetz  * indicies into the associated mapping.  from indicates the starting index
2291dd308a7SMike Kravetz  * of the region.  to represents the first index past the end of  the region.
2301dd308a7SMike Kravetz  *
2311dd308a7SMike Kravetz  * For example, a file region structure with from == 0 and to == 4 represents
2321dd308a7SMike Kravetz  * four huge pages in a mapping.  It is important to note that the to element
2331dd308a7SMike Kravetz  * represents the first element past the end of the region. This is used in
2341dd308a7SMike Kravetz  * arithmetic as 4(to) - 0(from) = 4 huge pages in the region.
2351dd308a7SMike Kravetz  *
2361dd308a7SMike Kravetz  * Interval notation of the form [from, to) will be used to indicate that
2371dd308a7SMike Kravetz  * the endpoint from is inclusive and to is exclusive.
23896822904SAndy Whitcroft  */
23996822904SAndy Whitcroft struct file_region {
24096822904SAndy Whitcroft 	struct list_head link;
24196822904SAndy Whitcroft 	long from;
24296822904SAndy Whitcroft 	long to;
24396822904SAndy Whitcroft };
24496822904SAndy Whitcroft 
2451dd308a7SMike Kravetz /*
2461dd308a7SMike Kravetz  * Add the huge page range represented by [f, t) to the reserve
2475e911373SMike Kravetz  * map.  In the normal case, existing regions will be expanded
2485e911373SMike Kravetz  * to accommodate the specified range.  Sufficient regions should
2495e911373SMike Kravetz  * exist for expansion due to the previous call to region_chg
2505e911373SMike Kravetz  * with the same range.  However, it is possible that region_del
2515e911373SMike Kravetz  * could have been called after region_chg and modifed the map
2525e911373SMike Kravetz  * in such a way that no region exists to be expanded.  In this
2535e911373SMike Kravetz  * case, pull a region descriptor from the cache associated with
2545e911373SMike Kravetz  * the map and use that for the new range.
255cf3ad20bSMike Kravetz  *
256cf3ad20bSMike Kravetz  * Return the number of new huge pages added to the map.  This
257cf3ad20bSMike Kravetz  * number is greater than or equal to zero.
2581dd308a7SMike Kravetz  */
2591406ec9bSJoonsoo Kim static long region_add(struct resv_map *resv, long f, long t)
26096822904SAndy Whitcroft {
2611406ec9bSJoonsoo Kim 	struct list_head *head = &resv->regions;
26296822904SAndy Whitcroft 	struct file_region *rg, *nrg, *trg;
263cf3ad20bSMike Kravetz 	long add = 0;
26496822904SAndy Whitcroft 
2657b24d861SDavidlohr Bueso 	spin_lock(&resv->lock);
26696822904SAndy Whitcroft 	/* Locate the region we are either in or before. */
26796822904SAndy Whitcroft 	list_for_each_entry(rg, head, link)
26896822904SAndy Whitcroft 		if (f <= rg->to)
26996822904SAndy Whitcroft 			break;
27096822904SAndy Whitcroft 
2715e911373SMike Kravetz 	/*
2725e911373SMike Kravetz 	 * If no region exists which can be expanded to include the
2735e911373SMike Kravetz 	 * specified range, the list must have been modified by an
2745e911373SMike Kravetz 	 * interleving call to region_del().  Pull a region descriptor
2755e911373SMike Kravetz 	 * from the cache and use it for this range.
2765e911373SMike Kravetz 	 */
2775e911373SMike Kravetz 	if (&rg->link == head || t < rg->from) {
2785e911373SMike Kravetz 		VM_BUG_ON(resv->region_cache_count <= 0);
2795e911373SMike Kravetz 
2805e911373SMike Kravetz 		resv->region_cache_count--;
2815e911373SMike Kravetz 		nrg = list_first_entry(&resv->region_cache, struct file_region,
2825e911373SMike Kravetz 					link);
2835e911373SMike Kravetz 		list_del(&nrg->link);
2845e911373SMike Kravetz 
2855e911373SMike Kravetz 		nrg->from = f;
2865e911373SMike Kravetz 		nrg->to = t;
2875e911373SMike Kravetz 		list_add(&nrg->link, rg->link.prev);
2885e911373SMike Kravetz 
2895e911373SMike Kravetz 		add += t - f;
2905e911373SMike Kravetz 		goto out_locked;
2915e911373SMike Kravetz 	}
2925e911373SMike Kravetz 
29396822904SAndy Whitcroft 	/* Round our left edge to the current segment if it encloses us. */
29496822904SAndy Whitcroft 	if (f > rg->from)
29596822904SAndy Whitcroft 		f = rg->from;
29696822904SAndy Whitcroft 
29796822904SAndy Whitcroft 	/* Check for and consume any regions we now overlap with. */
29896822904SAndy Whitcroft 	nrg = rg;
29996822904SAndy Whitcroft 	list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
30096822904SAndy Whitcroft 		if (&rg->link == head)
30196822904SAndy Whitcroft 			break;
30296822904SAndy Whitcroft 		if (rg->from > t)
30396822904SAndy Whitcroft 			break;
30496822904SAndy Whitcroft 
30596822904SAndy Whitcroft 		/* If this area reaches higher then extend our area to
30696822904SAndy Whitcroft 		 * include it completely.  If this is not the first area
30796822904SAndy Whitcroft 		 * which we intend to reuse, free it. */
30896822904SAndy Whitcroft 		if (rg->to > t)
30996822904SAndy Whitcroft 			t = rg->to;
31096822904SAndy Whitcroft 		if (rg != nrg) {
311cf3ad20bSMike Kravetz 			/* Decrement return value by the deleted range.
312cf3ad20bSMike Kravetz 			 * Another range will span this area so that by
313cf3ad20bSMike Kravetz 			 * end of routine add will be >= zero
314cf3ad20bSMike Kravetz 			 */
315cf3ad20bSMike Kravetz 			add -= (rg->to - rg->from);
31696822904SAndy Whitcroft 			list_del(&rg->link);
31796822904SAndy Whitcroft 			kfree(rg);
31896822904SAndy Whitcroft 		}
31996822904SAndy Whitcroft 	}
320cf3ad20bSMike Kravetz 
321cf3ad20bSMike Kravetz 	add += (nrg->from - f);		/* Added to beginning of region */
32296822904SAndy Whitcroft 	nrg->from = f;
323cf3ad20bSMike Kravetz 	add += t - nrg->to;		/* Added to end of region */
32496822904SAndy Whitcroft 	nrg->to = t;
325cf3ad20bSMike Kravetz 
3265e911373SMike Kravetz out_locked:
3275e911373SMike Kravetz 	resv->adds_in_progress--;
3287b24d861SDavidlohr Bueso 	spin_unlock(&resv->lock);
329cf3ad20bSMike Kravetz 	VM_BUG_ON(add < 0);
330cf3ad20bSMike Kravetz 	return add;
33196822904SAndy Whitcroft }
33296822904SAndy Whitcroft 
3331dd308a7SMike Kravetz /*
3341dd308a7SMike Kravetz  * Examine the existing reserve map and determine how many
3351dd308a7SMike Kravetz  * huge pages in the specified range [f, t) are NOT currently
3361dd308a7SMike Kravetz  * represented.  This routine is called before a subsequent
3371dd308a7SMike Kravetz  * call to region_add that will actually modify the reserve
3381dd308a7SMike Kravetz  * map to add the specified range [f, t).  region_chg does
3391dd308a7SMike Kravetz  * not change the number of huge pages represented by the
3401dd308a7SMike Kravetz  * map.  However, if the existing regions in the map can not
3411dd308a7SMike Kravetz  * be expanded to represent the new range, a new file_region
3421dd308a7SMike Kravetz  * structure is added to the map as a placeholder.  This is
3431dd308a7SMike Kravetz  * so that the subsequent region_add call will have all the
3441dd308a7SMike Kravetz  * regions it needs and will not fail.
3451dd308a7SMike Kravetz  *
3465e911373SMike Kravetz  * Upon entry, region_chg will also examine the cache of region descriptors
3475e911373SMike Kravetz  * associated with the map.  If there are not enough descriptors cached, one
3485e911373SMike Kravetz  * will be allocated for the in progress add operation.
3495e911373SMike Kravetz  *
3505e911373SMike Kravetz  * Returns the number of huge pages that need to be added to the existing
3515e911373SMike Kravetz  * reservation map for the range [f, t).  This number is greater or equal to
3525e911373SMike Kravetz  * zero.  -ENOMEM is returned if a new file_region structure or cache entry
3535e911373SMike Kravetz  * is needed and can not be allocated.
3541dd308a7SMike Kravetz  */
3551406ec9bSJoonsoo Kim static long region_chg(struct resv_map *resv, long f, long t)
35696822904SAndy Whitcroft {
3571406ec9bSJoonsoo Kim 	struct list_head *head = &resv->regions;
3587b24d861SDavidlohr Bueso 	struct file_region *rg, *nrg = NULL;
35996822904SAndy Whitcroft 	long chg = 0;
36096822904SAndy Whitcroft 
3617b24d861SDavidlohr Bueso retry:
3627b24d861SDavidlohr Bueso 	spin_lock(&resv->lock);
3635e911373SMike Kravetz retry_locked:
3645e911373SMike Kravetz 	resv->adds_in_progress++;
3655e911373SMike Kravetz 
3665e911373SMike Kravetz 	/*
3675e911373SMike Kravetz 	 * Check for sufficient descriptors in the cache to accommodate
3685e911373SMike Kravetz 	 * the number of in progress add operations.
3695e911373SMike Kravetz 	 */
3705e911373SMike Kravetz 	if (resv->adds_in_progress > resv->region_cache_count) {
3715e911373SMike Kravetz 		struct file_region *trg;
3725e911373SMike Kravetz 
3735e911373SMike Kravetz 		VM_BUG_ON(resv->adds_in_progress - resv->region_cache_count > 1);
3745e911373SMike Kravetz 		/* Must drop lock to allocate a new descriptor. */
3755e911373SMike Kravetz 		resv->adds_in_progress--;
3765e911373SMike Kravetz 		spin_unlock(&resv->lock);
3775e911373SMike Kravetz 
3785e911373SMike Kravetz 		trg = kmalloc(sizeof(*trg), GFP_KERNEL);
379dbe409e4SMike Kravetz 		if (!trg) {
380dbe409e4SMike Kravetz 			kfree(nrg);
3815e911373SMike Kravetz 			return -ENOMEM;
382dbe409e4SMike Kravetz 		}
3835e911373SMike Kravetz 
3845e911373SMike Kravetz 		spin_lock(&resv->lock);
3855e911373SMike Kravetz 		list_add(&trg->link, &resv->region_cache);
3865e911373SMike Kravetz 		resv->region_cache_count++;
3875e911373SMike Kravetz 		goto retry_locked;
3885e911373SMike Kravetz 	}
3895e911373SMike Kravetz 
39096822904SAndy Whitcroft 	/* Locate the region we are before or in. */
39196822904SAndy Whitcroft 	list_for_each_entry(rg, head, link)
39296822904SAndy Whitcroft 		if (f <= rg->to)
39396822904SAndy Whitcroft 			break;
39496822904SAndy Whitcroft 
39596822904SAndy Whitcroft 	/* If we are below the current region then a new region is required.
39696822904SAndy Whitcroft 	 * Subtle, allocate a new region at the position but make it zero
39796822904SAndy Whitcroft 	 * size such that we can guarantee to record the reservation. */
39896822904SAndy Whitcroft 	if (&rg->link == head || t < rg->from) {
3997b24d861SDavidlohr Bueso 		if (!nrg) {
4005e911373SMike Kravetz 			resv->adds_in_progress--;
4017b24d861SDavidlohr Bueso 			spin_unlock(&resv->lock);
40296822904SAndy Whitcroft 			nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
40396822904SAndy Whitcroft 			if (!nrg)
40496822904SAndy Whitcroft 				return -ENOMEM;
4057b24d861SDavidlohr Bueso 
40696822904SAndy Whitcroft 			nrg->from = f;
40796822904SAndy Whitcroft 			nrg->to   = f;
40896822904SAndy Whitcroft 			INIT_LIST_HEAD(&nrg->link);
4097b24d861SDavidlohr Bueso 			goto retry;
4107b24d861SDavidlohr Bueso 		}
41196822904SAndy Whitcroft 
4127b24d861SDavidlohr Bueso 		list_add(&nrg->link, rg->link.prev);
4137b24d861SDavidlohr Bueso 		chg = t - f;
4147b24d861SDavidlohr Bueso 		goto out_nrg;
41596822904SAndy Whitcroft 	}
41696822904SAndy Whitcroft 
41796822904SAndy Whitcroft 	/* Round our left edge to the current segment if it encloses us. */
41896822904SAndy Whitcroft 	if (f > rg->from)
41996822904SAndy Whitcroft 		f = rg->from;
42096822904SAndy Whitcroft 	chg = t - f;
42196822904SAndy Whitcroft 
42296822904SAndy Whitcroft 	/* Check for and consume any regions we now overlap with. */
42396822904SAndy Whitcroft 	list_for_each_entry(rg, rg->link.prev, link) {
42496822904SAndy Whitcroft 		if (&rg->link == head)
42596822904SAndy Whitcroft 			break;
42696822904SAndy Whitcroft 		if (rg->from > t)
4277b24d861SDavidlohr Bueso 			goto out;
42896822904SAndy Whitcroft 
42925985edcSLucas De Marchi 		/* We overlap with this area, if it extends further than
43096822904SAndy Whitcroft 		 * us then we must extend ourselves.  Account for its
43196822904SAndy Whitcroft 		 * existing reservation. */
43296822904SAndy Whitcroft 		if (rg->to > t) {
43396822904SAndy Whitcroft 			chg += rg->to - t;
43496822904SAndy Whitcroft 			t = rg->to;
43596822904SAndy Whitcroft 		}
43696822904SAndy Whitcroft 		chg -= rg->to - rg->from;
43796822904SAndy Whitcroft 	}
4387b24d861SDavidlohr Bueso 
4397b24d861SDavidlohr Bueso out:
4407b24d861SDavidlohr Bueso 	spin_unlock(&resv->lock);
4417b24d861SDavidlohr Bueso 	/*  We already know we raced and no longer need the new region */
4427b24d861SDavidlohr Bueso 	kfree(nrg);
4437b24d861SDavidlohr Bueso 	return chg;
4447b24d861SDavidlohr Bueso out_nrg:
4457b24d861SDavidlohr Bueso 	spin_unlock(&resv->lock);
44696822904SAndy Whitcroft 	return chg;
44796822904SAndy Whitcroft }
44896822904SAndy Whitcroft 
4491dd308a7SMike Kravetz /*
4505e911373SMike Kravetz  * Abort the in progress add operation.  The adds_in_progress field
4515e911373SMike Kravetz  * of the resv_map keeps track of the operations in progress between
4525e911373SMike Kravetz  * calls to region_chg and region_add.  Operations are sometimes
4535e911373SMike Kravetz  * aborted after the call to region_chg.  In such cases, region_abort
4545e911373SMike Kravetz  * is called to decrement the adds_in_progress counter.
4555e911373SMike Kravetz  *
4565e911373SMike Kravetz  * NOTE: The range arguments [f, t) are not needed or used in this
4575e911373SMike Kravetz  * routine.  They are kept to make reading the calling code easier as
4585e911373SMike Kravetz  * arguments will match the associated region_chg call.
4595e911373SMike Kravetz  */
4605e911373SMike Kravetz static void region_abort(struct resv_map *resv, long f, long t)
4615e911373SMike Kravetz {
4625e911373SMike Kravetz 	spin_lock(&resv->lock);
4635e911373SMike Kravetz 	VM_BUG_ON(!resv->region_cache_count);
4645e911373SMike Kravetz 	resv->adds_in_progress--;
4655e911373SMike Kravetz 	spin_unlock(&resv->lock);
4665e911373SMike Kravetz }
4675e911373SMike Kravetz 
4685e911373SMike Kravetz /*
469feba16e2SMike Kravetz  * Delete the specified range [f, t) from the reserve map.  If the
470feba16e2SMike Kravetz  * t parameter is LONG_MAX, this indicates that ALL regions after f
471feba16e2SMike Kravetz  * should be deleted.  Locate the regions which intersect [f, t)
472feba16e2SMike Kravetz  * and either trim, delete or split the existing regions.
473feba16e2SMike Kravetz  *
474feba16e2SMike Kravetz  * Returns the number of huge pages deleted from the reserve map.
475feba16e2SMike Kravetz  * In the normal case, the return value is zero or more.  In the
476feba16e2SMike Kravetz  * case where a region must be split, a new region descriptor must
477feba16e2SMike Kravetz  * be allocated.  If the allocation fails, -ENOMEM will be returned.
478feba16e2SMike Kravetz  * NOTE: If the parameter t == LONG_MAX, then we will never split
479feba16e2SMike Kravetz  * a region and possibly return -ENOMEM.  Callers specifying
480feba16e2SMike Kravetz  * t == LONG_MAX do not need to check for -ENOMEM error.
4811dd308a7SMike Kravetz  */
482feba16e2SMike Kravetz static long region_del(struct resv_map *resv, long f, long t)
48396822904SAndy Whitcroft {
4841406ec9bSJoonsoo Kim 	struct list_head *head = &resv->regions;
48596822904SAndy Whitcroft 	struct file_region *rg, *trg;
486feba16e2SMike Kravetz 	struct file_region *nrg = NULL;
487feba16e2SMike Kravetz 	long del = 0;
48896822904SAndy Whitcroft 
489feba16e2SMike Kravetz retry:
4907b24d861SDavidlohr Bueso 	spin_lock(&resv->lock);
491feba16e2SMike Kravetz 	list_for_each_entry_safe(rg, trg, head, link) {
492dbe409e4SMike Kravetz 		/*
493dbe409e4SMike Kravetz 		 * Skip regions before the range to be deleted.  file_region
494dbe409e4SMike Kravetz 		 * ranges are normally of the form [from, to).  However, there
495dbe409e4SMike Kravetz 		 * may be a "placeholder" entry in the map which is of the form
496dbe409e4SMike Kravetz 		 * (from, to) with from == to.  Check for placeholder entries
497dbe409e4SMike Kravetz 		 * at the beginning of the range to be deleted.
498dbe409e4SMike Kravetz 		 */
499dbe409e4SMike Kravetz 		if (rg->to <= f && (rg->to != rg->from || rg->to != f))
500feba16e2SMike Kravetz 			continue;
501dbe409e4SMike Kravetz 
502feba16e2SMike Kravetz 		if (rg->from >= t)
50396822904SAndy Whitcroft 			break;
50496822904SAndy Whitcroft 
505feba16e2SMike Kravetz 		if (f > rg->from && t < rg->to) { /* Must split region */
506feba16e2SMike Kravetz 			/*
507feba16e2SMike Kravetz 			 * Check for an entry in the cache before dropping
508feba16e2SMike Kravetz 			 * lock and attempting allocation.
509feba16e2SMike Kravetz 			 */
510feba16e2SMike Kravetz 			if (!nrg &&
511feba16e2SMike Kravetz 			    resv->region_cache_count > resv->adds_in_progress) {
512feba16e2SMike Kravetz 				nrg = list_first_entry(&resv->region_cache,
513feba16e2SMike Kravetz 							struct file_region,
514feba16e2SMike Kravetz 							link);
515feba16e2SMike Kravetz 				list_del(&nrg->link);
516feba16e2SMike Kravetz 				resv->region_cache_count--;
51796822904SAndy Whitcroft 			}
51896822904SAndy Whitcroft 
519feba16e2SMike Kravetz 			if (!nrg) {
520feba16e2SMike Kravetz 				spin_unlock(&resv->lock);
521feba16e2SMike Kravetz 				nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
522feba16e2SMike Kravetz 				if (!nrg)
523feba16e2SMike Kravetz 					return -ENOMEM;
524feba16e2SMike Kravetz 				goto retry;
525feba16e2SMike Kravetz 			}
526feba16e2SMike Kravetz 
527feba16e2SMike Kravetz 			del += t - f;
528feba16e2SMike Kravetz 
529feba16e2SMike Kravetz 			/* New entry for end of split region */
530feba16e2SMike Kravetz 			nrg->from = t;
531feba16e2SMike Kravetz 			nrg->to = rg->to;
532feba16e2SMike Kravetz 			INIT_LIST_HEAD(&nrg->link);
533feba16e2SMike Kravetz 
534feba16e2SMike Kravetz 			/* Original entry is trimmed */
535feba16e2SMike Kravetz 			rg->to = f;
536feba16e2SMike Kravetz 
537feba16e2SMike Kravetz 			list_add(&nrg->link, &rg->link);
538feba16e2SMike Kravetz 			nrg = NULL;
53996822904SAndy Whitcroft 			break;
540feba16e2SMike Kravetz 		}
541feba16e2SMike Kravetz 
542feba16e2SMike Kravetz 		if (f <= rg->from && t >= rg->to) { /* Remove entire region */
543feba16e2SMike Kravetz 			del += rg->to - rg->from;
54496822904SAndy Whitcroft 			list_del(&rg->link);
54596822904SAndy Whitcroft 			kfree(rg);
546feba16e2SMike Kravetz 			continue;
54796822904SAndy Whitcroft 		}
5487b24d861SDavidlohr Bueso 
549feba16e2SMike Kravetz 		if (f <= rg->from) {	/* Trim beginning of region */
550feba16e2SMike Kravetz 			del += t - rg->from;
551feba16e2SMike Kravetz 			rg->from = t;
552feba16e2SMike Kravetz 		} else {		/* Trim end of region */
553feba16e2SMike Kravetz 			del += rg->to - f;
554feba16e2SMike Kravetz 			rg->to = f;
555feba16e2SMike Kravetz 		}
556feba16e2SMike Kravetz 	}
557feba16e2SMike Kravetz 
5587b24d861SDavidlohr Bueso 	spin_unlock(&resv->lock);
559feba16e2SMike Kravetz 	kfree(nrg);
560feba16e2SMike Kravetz 	return del;
56196822904SAndy Whitcroft }
56296822904SAndy Whitcroft 
5631dd308a7SMike Kravetz /*
564b5cec28dSMike Kravetz  * A rare out of memory error was encountered which prevented removal of
565b5cec28dSMike Kravetz  * the reserve map region for a page.  The huge page itself was free'ed
566b5cec28dSMike Kravetz  * and removed from the page cache.  This routine will adjust the subpool
567b5cec28dSMike Kravetz  * usage count, and the global reserve count if needed.  By incrementing
568b5cec28dSMike Kravetz  * these counts, the reserve map entry which could not be deleted will
569b5cec28dSMike Kravetz  * appear as a "reserved" entry instead of simply dangling with incorrect
570b5cec28dSMike Kravetz  * counts.
571b5cec28dSMike Kravetz  */
57272e2936cSzhong jiang void hugetlb_fix_reserve_counts(struct inode *inode)
573b5cec28dSMike Kravetz {
574b5cec28dSMike Kravetz 	struct hugepage_subpool *spool = subpool_inode(inode);
575b5cec28dSMike Kravetz 	long rsv_adjust;
576b5cec28dSMike Kravetz 
577b5cec28dSMike Kravetz 	rsv_adjust = hugepage_subpool_get_pages(spool, 1);
57872e2936cSzhong jiang 	if (rsv_adjust) {
579b5cec28dSMike Kravetz 		struct hstate *h = hstate_inode(inode);
580b5cec28dSMike Kravetz 
581b5cec28dSMike Kravetz 		hugetlb_acct_memory(h, 1);
582b5cec28dSMike Kravetz 	}
583b5cec28dSMike Kravetz }
584b5cec28dSMike Kravetz 
585b5cec28dSMike Kravetz /*
5861dd308a7SMike Kravetz  * Count and return the number of huge pages in the reserve map
5871dd308a7SMike Kravetz  * that intersect with the range [f, t).
5881dd308a7SMike Kravetz  */
5891406ec9bSJoonsoo Kim static long region_count(struct resv_map *resv, long f, long t)
59084afd99bSAndy Whitcroft {
5911406ec9bSJoonsoo Kim 	struct list_head *head = &resv->regions;
59284afd99bSAndy Whitcroft 	struct file_region *rg;
59384afd99bSAndy Whitcroft 	long chg = 0;
59484afd99bSAndy Whitcroft 
5957b24d861SDavidlohr Bueso 	spin_lock(&resv->lock);
59684afd99bSAndy Whitcroft 	/* Locate each segment we overlap with, and count that overlap. */
59784afd99bSAndy Whitcroft 	list_for_each_entry(rg, head, link) {
598f2135a4aSWang Sheng-Hui 		long seg_from;
599f2135a4aSWang Sheng-Hui 		long seg_to;
60084afd99bSAndy Whitcroft 
60184afd99bSAndy Whitcroft 		if (rg->to <= f)
60284afd99bSAndy Whitcroft 			continue;
60384afd99bSAndy Whitcroft 		if (rg->from >= t)
60484afd99bSAndy Whitcroft 			break;
60584afd99bSAndy Whitcroft 
60684afd99bSAndy Whitcroft 		seg_from = max(rg->from, f);
60784afd99bSAndy Whitcroft 		seg_to = min(rg->to, t);
60884afd99bSAndy Whitcroft 
60984afd99bSAndy Whitcroft 		chg += seg_to - seg_from;
61084afd99bSAndy Whitcroft 	}
6117b24d861SDavidlohr Bueso 	spin_unlock(&resv->lock);
61284afd99bSAndy Whitcroft 
61384afd99bSAndy Whitcroft 	return chg;
61484afd99bSAndy Whitcroft }
61584afd99bSAndy Whitcroft 
61696822904SAndy Whitcroft /*
617e7c4b0bfSAndy Whitcroft  * Convert the address within this vma to the page offset within
618e7c4b0bfSAndy Whitcroft  * the mapping, in pagecache page units; huge pages here.
619e7c4b0bfSAndy Whitcroft  */
620a5516438SAndi Kleen static pgoff_t vma_hugecache_offset(struct hstate *h,
621a5516438SAndi Kleen 			struct vm_area_struct *vma, unsigned long address)
622e7c4b0bfSAndy Whitcroft {
623a5516438SAndi Kleen 	return ((address - vma->vm_start) >> huge_page_shift(h)) +
624a5516438SAndi Kleen 			(vma->vm_pgoff >> huge_page_order(h));
625e7c4b0bfSAndy Whitcroft }
626e7c4b0bfSAndy Whitcroft 
6270fe6e20bSNaoya Horiguchi pgoff_t linear_hugepage_index(struct vm_area_struct *vma,
6280fe6e20bSNaoya Horiguchi 				     unsigned long address)
6290fe6e20bSNaoya Horiguchi {
6300fe6e20bSNaoya Horiguchi 	return vma_hugecache_offset(hstate_vma(vma), vma, address);
6310fe6e20bSNaoya Horiguchi }
632dee41079SDan Williams EXPORT_SYMBOL_GPL(linear_hugepage_index);
6330fe6e20bSNaoya Horiguchi 
63484afd99bSAndy Whitcroft /*
63508fba699SMel Gorman  * Return the size of the pages allocated when backing a VMA. In the majority
63608fba699SMel Gorman  * cases this will be same size as used by the page table entries.
63708fba699SMel Gorman  */
63808fba699SMel Gorman unsigned long vma_kernel_pagesize(struct vm_area_struct *vma)
63908fba699SMel Gorman {
64008fba699SMel Gorman 	struct hstate *hstate;
64108fba699SMel Gorman 
64208fba699SMel Gorman 	if (!is_vm_hugetlb_page(vma))
64308fba699SMel Gorman 		return PAGE_SIZE;
64408fba699SMel Gorman 
64508fba699SMel Gorman 	hstate = hstate_vma(vma);
64608fba699SMel Gorman 
6472415cf12SWanpeng Li 	return 1UL << huge_page_shift(hstate);
64808fba699SMel Gorman }
649f340ca0fSJoerg Roedel EXPORT_SYMBOL_GPL(vma_kernel_pagesize);
65008fba699SMel Gorman 
65108fba699SMel Gorman /*
6523340289dSMel Gorman  * Return the page size being used by the MMU to back a VMA. In the majority
6533340289dSMel Gorman  * of cases, the page size used by the kernel matches the MMU size. On
6543340289dSMel Gorman  * architectures where it differs, an architecture-specific version of this
6553340289dSMel Gorman  * function is required.
6563340289dSMel Gorman  */
6573340289dSMel Gorman #ifndef vma_mmu_pagesize
6583340289dSMel Gorman unsigned long vma_mmu_pagesize(struct vm_area_struct *vma)
6593340289dSMel Gorman {
6603340289dSMel Gorman 	return vma_kernel_pagesize(vma);
6613340289dSMel Gorman }
6623340289dSMel Gorman #endif
6633340289dSMel Gorman 
6643340289dSMel Gorman /*
66584afd99bSAndy Whitcroft  * Flags for MAP_PRIVATE reservations.  These are stored in the bottom
66684afd99bSAndy Whitcroft  * bits of the reservation map pointer, which are always clear due to
66784afd99bSAndy Whitcroft  * alignment.
66884afd99bSAndy Whitcroft  */
66984afd99bSAndy Whitcroft #define HPAGE_RESV_OWNER    (1UL << 0)
67084afd99bSAndy Whitcroft #define HPAGE_RESV_UNMAPPED (1UL << 1)
67104f2cbe3SMel Gorman #define HPAGE_RESV_MASK (HPAGE_RESV_OWNER | HPAGE_RESV_UNMAPPED)
67284afd99bSAndy Whitcroft 
673a1e78772SMel Gorman /*
674a1e78772SMel Gorman  * These helpers are used to track how many pages are reserved for
675a1e78772SMel Gorman  * faults in a MAP_PRIVATE mapping. Only the process that called mmap()
676a1e78772SMel Gorman  * is guaranteed to have their future faults succeed.
677a1e78772SMel Gorman  *
678a1e78772SMel Gorman  * With the exception of reset_vma_resv_huge_pages() which is called at fork(),
679a1e78772SMel Gorman  * the reserve counters are updated with the hugetlb_lock held. It is safe
680a1e78772SMel Gorman  * to reset the VMA at fork() time as it is not in use yet and there is no
681a1e78772SMel Gorman  * chance of the global counters getting corrupted as a result of the values.
68284afd99bSAndy Whitcroft  *
68384afd99bSAndy Whitcroft  * The private mapping reservation is represented in a subtly different
68484afd99bSAndy Whitcroft  * manner to a shared mapping.  A shared mapping has a region map associated
68584afd99bSAndy Whitcroft  * with the underlying file, this region map represents the backing file
68684afd99bSAndy Whitcroft  * pages which have ever had a reservation assigned which this persists even
68784afd99bSAndy Whitcroft  * after the page is instantiated.  A private mapping has a region map
68884afd99bSAndy Whitcroft  * associated with the original mmap which is attached to all VMAs which
68984afd99bSAndy Whitcroft  * reference it, this region map represents those offsets which have consumed
69084afd99bSAndy Whitcroft  * reservation ie. where pages have been instantiated.
691a1e78772SMel Gorman  */
692e7c4b0bfSAndy Whitcroft static unsigned long get_vma_private_data(struct vm_area_struct *vma)
693e7c4b0bfSAndy Whitcroft {
694e7c4b0bfSAndy Whitcroft 	return (unsigned long)vma->vm_private_data;
695e7c4b0bfSAndy Whitcroft }
696e7c4b0bfSAndy Whitcroft 
697e7c4b0bfSAndy Whitcroft static void set_vma_private_data(struct vm_area_struct *vma,
698e7c4b0bfSAndy Whitcroft 							unsigned long value)
699e7c4b0bfSAndy Whitcroft {
700e7c4b0bfSAndy Whitcroft 	vma->vm_private_data = (void *)value;
701e7c4b0bfSAndy Whitcroft }
702e7c4b0bfSAndy Whitcroft 
7039119a41eSJoonsoo Kim struct resv_map *resv_map_alloc(void)
70484afd99bSAndy Whitcroft {
70584afd99bSAndy Whitcroft 	struct resv_map *resv_map = kmalloc(sizeof(*resv_map), GFP_KERNEL);
7065e911373SMike Kravetz 	struct file_region *rg = kmalloc(sizeof(*rg), GFP_KERNEL);
7075e911373SMike Kravetz 
7085e911373SMike Kravetz 	if (!resv_map || !rg) {
7095e911373SMike Kravetz 		kfree(resv_map);
7105e911373SMike Kravetz 		kfree(rg);
71184afd99bSAndy Whitcroft 		return NULL;
7125e911373SMike Kravetz 	}
71384afd99bSAndy Whitcroft 
71484afd99bSAndy Whitcroft 	kref_init(&resv_map->refs);
7157b24d861SDavidlohr Bueso 	spin_lock_init(&resv_map->lock);
71684afd99bSAndy Whitcroft 	INIT_LIST_HEAD(&resv_map->regions);
71784afd99bSAndy Whitcroft 
7185e911373SMike Kravetz 	resv_map->adds_in_progress = 0;
7195e911373SMike Kravetz 
7205e911373SMike Kravetz 	INIT_LIST_HEAD(&resv_map->region_cache);
7215e911373SMike Kravetz 	list_add(&rg->link, &resv_map->region_cache);
7225e911373SMike Kravetz 	resv_map->region_cache_count = 1;
7235e911373SMike Kravetz 
72484afd99bSAndy Whitcroft 	return resv_map;
72584afd99bSAndy Whitcroft }
72684afd99bSAndy Whitcroft 
7279119a41eSJoonsoo Kim void resv_map_release(struct kref *ref)
72884afd99bSAndy Whitcroft {
72984afd99bSAndy Whitcroft 	struct resv_map *resv_map = container_of(ref, struct resv_map, refs);
7305e911373SMike Kravetz 	struct list_head *head = &resv_map->region_cache;
7315e911373SMike Kravetz 	struct file_region *rg, *trg;
73284afd99bSAndy Whitcroft 
73384afd99bSAndy Whitcroft 	/* Clear out any active regions before we release the map. */
734feba16e2SMike Kravetz 	region_del(resv_map, 0, LONG_MAX);
7355e911373SMike Kravetz 
7365e911373SMike Kravetz 	/* ... and any entries left in the cache */
7375e911373SMike Kravetz 	list_for_each_entry_safe(rg, trg, head, link) {
7385e911373SMike Kravetz 		list_del(&rg->link);
7395e911373SMike Kravetz 		kfree(rg);
7405e911373SMike Kravetz 	}
7415e911373SMike Kravetz 
7425e911373SMike Kravetz 	VM_BUG_ON(resv_map->adds_in_progress);
7435e911373SMike Kravetz 
74484afd99bSAndy Whitcroft 	kfree(resv_map);
74584afd99bSAndy Whitcroft }
74684afd99bSAndy Whitcroft 
7474e35f483SJoonsoo Kim static inline struct resv_map *inode_resv_map(struct inode *inode)
7484e35f483SJoonsoo Kim {
7494e35f483SJoonsoo Kim 	return inode->i_mapping->private_data;
7504e35f483SJoonsoo Kim }
7514e35f483SJoonsoo Kim 
75284afd99bSAndy Whitcroft static struct resv_map *vma_resv_map(struct vm_area_struct *vma)
753a1e78772SMel Gorman {
75481d1b09cSSasha Levin 	VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
7554e35f483SJoonsoo Kim 	if (vma->vm_flags & VM_MAYSHARE) {
7564e35f483SJoonsoo Kim 		struct address_space *mapping = vma->vm_file->f_mapping;
7574e35f483SJoonsoo Kim 		struct inode *inode = mapping->host;
7584e35f483SJoonsoo Kim 
7594e35f483SJoonsoo Kim 		return inode_resv_map(inode);
7604e35f483SJoonsoo Kim 
7614e35f483SJoonsoo Kim 	} else {
76284afd99bSAndy Whitcroft 		return (struct resv_map *)(get_vma_private_data(vma) &
76384afd99bSAndy Whitcroft 							~HPAGE_RESV_MASK);
7644e35f483SJoonsoo Kim 	}
765a1e78772SMel Gorman }
766a1e78772SMel Gorman 
76784afd99bSAndy Whitcroft static void set_vma_resv_map(struct vm_area_struct *vma, struct resv_map *map)
768a1e78772SMel Gorman {
76981d1b09cSSasha Levin 	VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
77081d1b09cSSasha Levin 	VM_BUG_ON_VMA(vma->vm_flags & VM_MAYSHARE, vma);
771a1e78772SMel Gorman 
77284afd99bSAndy Whitcroft 	set_vma_private_data(vma, (get_vma_private_data(vma) &
77384afd99bSAndy Whitcroft 				HPAGE_RESV_MASK) | (unsigned long)map);
77404f2cbe3SMel Gorman }
77504f2cbe3SMel Gorman 
77604f2cbe3SMel Gorman static void set_vma_resv_flags(struct vm_area_struct *vma, unsigned long flags)
77704f2cbe3SMel Gorman {
77881d1b09cSSasha Levin 	VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
77981d1b09cSSasha Levin 	VM_BUG_ON_VMA(vma->vm_flags & VM_MAYSHARE, vma);
780e7c4b0bfSAndy Whitcroft 
781e7c4b0bfSAndy Whitcroft 	set_vma_private_data(vma, get_vma_private_data(vma) | flags);
78204f2cbe3SMel Gorman }
78304f2cbe3SMel Gorman 
78404f2cbe3SMel Gorman static int is_vma_resv_set(struct vm_area_struct *vma, unsigned long flag)
78504f2cbe3SMel Gorman {
78681d1b09cSSasha Levin 	VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
787e7c4b0bfSAndy Whitcroft 
788e7c4b0bfSAndy Whitcroft 	return (get_vma_private_data(vma) & flag) != 0;
789a1e78772SMel Gorman }
790a1e78772SMel Gorman 
79104f2cbe3SMel Gorman /* Reset counters to 0 and clear all HPAGE_RESV_* flags */
792a1e78772SMel Gorman void reset_vma_resv_huge_pages(struct vm_area_struct *vma)
793a1e78772SMel Gorman {
79481d1b09cSSasha Levin 	VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
795f83a275dSMel Gorman 	if (!(vma->vm_flags & VM_MAYSHARE))
796a1e78772SMel Gorman 		vma->vm_private_data = (void *)0;
797a1e78772SMel Gorman }
798a1e78772SMel Gorman 
799a1e78772SMel Gorman /* Returns true if the VMA has associated reserve pages */
800559ec2f8SNicholas Krause static bool vma_has_reserves(struct vm_area_struct *vma, long chg)
801a1e78772SMel Gorman {
802af0ed73eSJoonsoo Kim 	if (vma->vm_flags & VM_NORESERVE) {
803af0ed73eSJoonsoo Kim 		/*
804af0ed73eSJoonsoo Kim 		 * This address is already reserved by other process(chg == 0),
805af0ed73eSJoonsoo Kim 		 * so, we should decrement reserved count. Without decrementing,
806af0ed73eSJoonsoo Kim 		 * reserve count remains after releasing inode, because this
807af0ed73eSJoonsoo Kim 		 * allocated page will go into page cache and is regarded as
808af0ed73eSJoonsoo Kim 		 * coming from reserved pool in releasing step.  Currently, we
809af0ed73eSJoonsoo Kim 		 * don't have any other solution to deal with this situation
810af0ed73eSJoonsoo Kim 		 * properly, so add work-around here.
811af0ed73eSJoonsoo Kim 		 */
812af0ed73eSJoonsoo Kim 		if (vma->vm_flags & VM_MAYSHARE && chg == 0)
813559ec2f8SNicholas Krause 			return true;
814af0ed73eSJoonsoo Kim 		else
815559ec2f8SNicholas Krause 			return false;
816af0ed73eSJoonsoo Kim 	}
817a63884e9SJoonsoo Kim 
818a63884e9SJoonsoo Kim 	/* Shared mappings always use reserves */
8191fb1b0e9SMike Kravetz 	if (vma->vm_flags & VM_MAYSHARE) {
8201fb1b0e9SMike Kravetz 		/*
8211fb1b0e9SMike Kravetz 		 * We know VM_NORESERVE is not set.  Therefore, there SHOULD
8221fb1b0e9SMike Kravetz 		 * be a region map for all pages.  The only situation where
8231fb1b0e9SMike Kravetz 		 * there is no region map is if a hole was punched via
8241fb1b0e9SMike Kravetz 		 * fallocate.  In this case, there really are no reverves to
8251fb1b0e9SMike Kravetz 		 * use.  This situation is indicated if chg != 0.
8261fb1b0e9SMike Kravetz 		 */
8271fb1b0e9SMike Kravetz 		if (chg)
8281fb1b0e9SMike Kravetz 			return false;
8291fb1b0e9SMike Kravetz 		else
830559ec2f8SNicholas Krause 			return true;
8311fb1b0e9SMike Kravetz 	}
832a63884e9SJoonsoo Kim 
833a63884e9SJoonsoo Kim 	/*
834a63884e9SJoonsoo Kim 	 * Only the process that called mmap() has reserves for
835a63884e9SJoonsoo Kim 	 * private mappings.
836a63884e9SJoonsoo Kim 	 */
83767961f9dSMike Kravetz 	if (is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
83867961f9dSMike Kravetz 		/*
83967961f9dSMike Kravetz 		 * Like the shared case above, a hole punch or truncate
84067961f9dSMike Kravetz 		 * could have been performed on the private mapping.
84167961f9dSMike Kravetz 		 * Examine the value of chg to determine if reserves
84267961f9dSMike Kravetz 		 * actually exist or were previously consumed.
84367961f9dSMike Kravetz 		 * Very Subtle - The value of chg comes from a previous
84467961f9dSMike Kravetz 		 * call to vma_needs_reserves().  The reserve map for
84567961f9dSMike Kravetz 		 * private mappings has different (opposite) semantics
84667961f9dSMike Kravetz 		 * than that of shared mappings.  vma_needs_reserves()
84767961f9dSMike Kravetz 		 * has already taken this difference in semantics into
84867961f9dSMike Kravetz 		 * account.  Therefore, the meaning of chg is the same
84967961f9dSMike Kravetz 		 * as in the shared case above.  Code could easily be
85067961f9dSMike Kravetz 		 * combined, but keeping it separate draws attention to
85167961f9dSMike Kravetz 		 * subtle differences.
85267961f9dSMike Kravetz 		 */
85367961f9dSMike Kravetz 		if (chg)
85467961f9dSMike Kravetz 			return false;
85567961f9dSMike Kravetz 		else
856559ec2f8SNicholas Krause 			return true;
85767961f9dSMike Kravetz 	}
858a63884e9SJoonsoo Kim 
859559ec2f8SNicholas Krause 	return false;
860a1e78772SMel Gorman }
861a1e78772SMel Gorman 
862a5516438SAndi Kleen static void enqueue_huge_page(struct hstate *h, struct page *page)
8631da177e4SLinus Torvalds {
8641da177e4SLinus Torvalds 	int nid = page_to_nid(page);
8650edaecfaSAneesh Kumar K.V 	list_move(&page->lru, &h->hugepage_freelists[nid]);
866a5516438SAndi Kleen 	h->free_huge_pages++;
867a5516438SAndi Kleen 	h->free_huge_pages_node[nid]++;
8681da177e4SLinus Torvalds }
8691da177e4SLinus Torvalds 
87094310cbcSAnshuman Khandual static struct page *dequeue_huge_page_node_exact(struct hstate *h, int nid)
871bf50bab2SNaoya Horiguchi {
872bf50bab2SNaoya Horiguchi 	struct page *page;
873bf50bab2SNaoya Horiguchi 
874c8721bbbSNaoya Horiguchi 	list_for_each_entry(page, &h->hugepage_freelists[nid], lru)
875243abd5bSNaoya Horiguchi 		if (!PageHWPoison(page))
876c8721bbbSNaoya Horiguchi 			break;
877c8721bbbSNaoya Horiguchi 	/*
878c8721bbbSNaoya Horiguchi 	 * if 'non-isolated free hugepage' not found on the list,
879c8721bbbSNaoya Horiguchi 	 * the allocation fails.
880c8721bbbSNaoya Horiguchi 	 */
881c8721bbbSNaoya Horiguchi 	if (&h->hugepage_freelists[nid] == &page->lru)
882bf50bab2SNaoya Horiguchi 		return NULL;
8830edaecfaSAneesh Kumar K.V 	list_move(&page->lru, &h->hugepage_activelist);
884a9869b83SNaoya Horiguchi 	set_page_refcounted(page);
885bf50bab2SNaoya Horiguchi 	h->free_huge_pages--;
886bf50bab2SNaoya Horiguchi 	h->free_huge_pages_node[nid]--;
887bf50bab2SNaoya Horiguchi 	return page;
888bf50bab2SNaoya Horiguchi }
889bf50bab2SNaoya Horiguchi 
8903e59fcb0SMichal Hocko static struct page *dequeue_huge_page_nodemask(struct hstate *h, gfp_t gfp_mask, int nid,
8913e59fcb0SMichal Hocko 		nodemask_t *nmask)
89294310cbcSAnshuman Khandual {
8933e59fcb0SMichal Hocko 	unsigned int cpuset_mems_cookie;
8943e59fcb0SMichal Hocko 	struct zonelist *zonelist;
8953e59fcb0SMichal Hocko 	struct zone *zone;
8963e59fcb0SMichal Hocko 	struct zoneref *z;
8973e59fcb0SMichal Hocko 	int node = -1;
8983e59fcb0SMichal Hocko 
8993e59fcb0SMichal Hocko 	zonelist = node_zonelist(nid, gfp_mask);
9003e59fcb0SMichal Hocko 
9013e59fcb0SMichal Hocko retry_cpuset:
9023e59fcb0SMichal Hocko 	cpuset_mems_cookie = read_mems_allowed_begin();
9033e59fcb0SMichal Hocko 	for_each_zone_zonelist_nodemask(zone, z, zonelist, gfp_zone(gfp_mask), nmask) {
90494310cbcSAnshuman Khandual 		struct page *page;
90594310cbcSAnshuman Khandual 
9063e59fcb0SMichal Hocko 		if (!cpuset_zone_allowed(zone, gfp_mask))
9073e59fcb0SMichal Hocko 			continue;
9083e59fcb0SMichal Hocko 		/*
9093e59fcb0SMichal Hocko 		 * no need to ask again on the same node. Pool is node rather than
9103e59fcb0SMichal Hocko 		 * zone aware
9113e59fcb0SMichal Hocko 		 */
9123e59fcb0SMichal Hocko 		if (zone_to_nid(zone) == node)
9133e59fcb0SMichal Hocko 			continue;
9143e59fcb0SMichal Hocko 		node = zone_to_nid(zone);
91594310cbcSAnshuman Khandual 
91694310cbcSAnshuman Khandual 		page = dequeue_huge_page_node_exact(h, node);
91794310cbcSAnshuman Khandual 		if (page)
91894310cbcSAnshuman Khandual 			return page;
91994310cbcSAnshuman Khandual 	}
9203e59fcb0SMichal Hocko 	if (unlikely(read_mems_allowed_retry(cpuset_mems_cookie)))
9213e59fcb0SMichal Hocko 		goto retry_cpuset;
9223e59fcb0SMichal Hocko 
92394310cbcSAnshuman Khandual 	return NULL;
92494310cbcSAnshuman Khandual }
92594310cbcSAnshuman Khandual 
92686cdb465SNaoya Horiguchi /* Movability of hugepages depends on migration support. */
92786cdb465SNaoya Horiguchi static inline gfp_t htlb_alloc_mask(struct hstate *h)
92886cdb465SNaoya Horiguchi {
929100873d7SNaoya Horiguchi 	if (hugepages_treat_as_movable || hugepage_migration_supported(h))
93086cdb465SNaoya Horiguchi 		return GFP_HIGHUSER_MOVABLE;
93186cdb465SNaoya Horiguchi 	else
93286cdb465SNaoya Horiguchi 		return GFP_HIGHUSER;
93386cdb465SNaoya Horiguchi }
93486cdb465SNaoya Horiguchi 
935a5516438SAndi Kleen static struct page *dequeue_huge_page_vma(struct hstate *h,
936a5516438SAndi Kleen 				struct vm_area_struct *vma,
937af0ed73eSJoonsoo Kim 				unsigned long address, int avoid_reserve,
938af0ed73eSJoonsoo Kim 				long chg)
9391da177e4SLinus Torvalds {
9403e59fcb0SMichal Hocko 	struct page *page;
941480eccf9SLee Schermerhorn 	struct mempolicy *mpol;
94204ec6264SVlastimil Babka 	gfp_t gfp_mask;
9433e59fcb0SMichal Hocko 	nodemask_t *nodemask;
94404ec6264SVlastimil Babka 	int nid;
9451da177e4SLinus Torvalds 
946a1e78772SMel Gorman 	/*
947a1e78772SMel Gorman 	 * A child process with MAP_PRIVATE mappings created by their parent
948a1e78772SMel Gorman 	 * have no page reserves. This check ensures that reservations are
949a1e78772SMel Gorman 	 * not "stolen". The child may still get SIGKILLed
950a1e78772SMel Gorman 	 */
951af0ed73eSJoonsoo Kim 	if (!vma_has_reserves(vma, chg) &&
952a5516438SAndi Kleen 			h->free_huge_pages - h->resv_huge_pages == 0)
953c0ff7453SMiao Xie 		goto err;
954a1e78772SMel Gorman 
95504f2cbe3SMel Gorman 	/* If reserves cannot be used, ensure enough pages are in the pool */
956a5516438SAndi Kleen 	if (avoid_reserve && h->free_huge_pages - h->resv_huge_pages == 0)
9576eab04a8SJustin P. Mattock 		goto err;
95804f2cbe3SMel Gorman 
95904ec6264SVlastimil Babka 	gfp_mask = htlb_alloc_mask(h);
96004ec6264SVlastimil Babka 	nid = huge_node(vma, address, gfp_mask, &mpol, &nodemask);
9613e59fcb0SMichal Hocko 	page = dequeue_huge_page_nodemask(h, gfp_mask, nid, nodemask);
9623e59fcb0SMichal Hocko 	if (page && !avoid_reserve && vma_has_reserves(vma, chg)) {
96307443a85SJoonsoo Kim 		SetPagePrivate(page);
964a63884e9SJoonsoo Kim 		h->resv_huge_pages--;
965bf50bab2SNaoya Horiguchi 	}
966cc9a6c87SMel Gorman 
967cc9a6c87SMel Gorman 	mpol_cond_put(mpol);
968cc9a6c87SMel Gorman 	return page;
969cc9a6c87SMel Gorman 
970c0ff7453SMiao Xie err:
971cc9a6c87SMel Gorman 	return NULL;
9721da177e4SLinus Torvalds }
9731da177e4SLinus Torvalds 
9741cac6f2cSLuiz Capitulino /*
9751cac6f2cSLuiz Capitulino  * common helper functions for hstate_next_node_to_{alloc|free}.
9761cac6f2cSLuiz Capitulino  * We may have allocated or freed a huge page based on a different
9771cac6f2cSLuiz Capitulino  * nodes_allowed previously, so h->next_node_to_{alloc|free} might
9781cac6f2cSLuiz Capitulino  * be outside of *nodes_allowed.  Ensure that we use an allowed
9791cac6f2cSLuiz Capitulino  * node for alloc or free.
9801cac6f2cSLuiz Capitulino  */
9811cac6f2cSLuiz Capitulino static int next_node_allowed(int nid, nodemask_t *nodes_allowed)
9821cac6f2cSLuiz Capitulino {
9830edaf86cSAndrew Morton 	nid = next_node_in(nid, *nodes_allowed);
9841cac6f2cSLuiz Capitulino 	VM_BUG_ON(nid >= MAX_NUMNODES);
9851cac6f2cSLuiz Capitulino 
9861cac6f2cSLuiz Capitulino 	return nid;
9871cac6f2cSLuiz Capitulino }
9881cac6f2cSLuiz Capitulino 
9891cac6f2cSLuiz Capitulino static int get_valid_node_allowed(int nid, nodemask_t *nodes_allowed)
9901cac6f2cSLuiz Capitulino {
9911cac6f2cSLuiz Capitulino 	if (!node_isset(nid, *nodes_allowed))
9921cac6f2cSLuiz Capitulino 		nid = next_node_allowed(nid, nodes_allowed);
9931cac6f2cSLuiz Capitulino 	return nid;
9941cac6f2cSLuiz Capitulino }
9951cac6f2cSLuiz Capitulino 
9961cac6f2cSLuiz Capitulino /*
9971cac6f2cSLuiz Capitulino  * returns the previously saved node ["this node"] from which to
9981cac6f2cSLuiz Capitulino  * allocate a persistent huge page for the pool and advance the
9991cac6f2cSLuiz Capitulino  * next node from which to allocate, handling wrap at end of node
10001cac6f2cSLuiz Capitulino  * mask.
10011cac6f2cSLuiz Capitulino  */
10021cac6f2cSLuiz Capitulino static int hstate_next_node_to_alloc(struct hstate *h,
10031cac6f2cSLuiz Capitulino 					nodemask_t *nodes_allowed)
10041cac6f2cSLuiz Capitulino {
10051cac6f2cSLuiz Capitulino 	int nid;
10061cac6f2cSLuiz Capitulino 
10071cac6f2cSLuiz Capitulino 	VM_BUG_ON(!nodes_allowed);
10081cac6f2cSLuiz Capitulino 
10091cac6f2cSLuiz Capitulino 	nid = get_valid_node_allowed(h->next_nid_to_alloc, nodes_allowed);
10101cac6f2cSLuiz Capitulino 	h->next_nid_to_alloc = next_node_allowed(nid, nodes_allowed);
10111cac6f2cSLuiz Capitulino 
10121cac6f2cSLuiz Capitulino 	return nid;
10131cac6f2cSLuiz Capitulino }
10141cac6f2cSLuiz Capitulino 
10151cac6f2cSLuiz Capitulino /*
10161cac6f2cSLuiz Capitulino  * helper for free_pool_huge_page() - return the previously saved
10171cac6f2cSLuiz Capitulino  * node ["this node"] from which to free a huge page.  Advance the
10181cac6f2cSLuiz Capitulino  * next node id whether or not we find a free huge page to free so
10191cac6f2cSLuiz Capitulino  * that the next attempt to free addresses the next node.
10201cac6f2cSLuiz Capitulino  */
10211cac6f2cSLuiz Capitulino static int hstate_next_node_to_free(struct hstate *h, nodemask_t *nodes_allowed)
10221cac6f2cSLuiz Capitulino {
10231cac6f2cSLuiz Capitulino 	int nid;
10241cac6f2cSLuiz Capitulino 
10251cac6f2cSLuiz Capitulino 	VM_BUG_ON(!nodes_allowed);
10261cac6f2cSLuiz Capitulino 
10271cac6f2cSLuiz Capitulino 	nid = get_valid_node_allowed(h->next_nid_to_free, nodes_allowed);
10281cac6f2cSLuiz Capitulino 	h->next_nid_to_free = next_node_allowed(nid, nodes_allowed);
10291cac6f2cSLuiz Capitulino 
10301cac6f2cSLuiz Capitulino 	return nid;
10311cac6f2cSLuiz Capitulino }
10321cac6f2cSLuiz Capitulino 
10331cac6f2cSLuiz Capitulino #define for_each_node_mask_to_alloc(hs, nr_nodes, node, mask)		\
10341cac6f2cSLuiz Capitulino 	for (nr_nodes = nodes_weight(*mask);				\
10351cac6f2cSLuiz Capitulino 		nr_nodes > 0 &&						\
10361cac6f2cSLuiz Capitulino 		((node = hstate_next_node_to_alloc(hs, mask)) || 1);	\
10371cac6f2cSLuiz Capitulino 		nr_nodes--)
10381cac6f2cSLuiz Capitulino 
10391cac6f2cSLuiz Capitulino #define for_each_node_mask_to_free(hs, nr_nodes, node, mask)		\
10401cac6f2cSLuiz Capitulino 	for (nr_nodes = nodes_weight(*mask);				\
10411cac6f2cSLuiz Capitulino 		nr_nodes > 0 &&						\
10421cac6f2cSLuiz Capitulino 		((node = hstate_next_node_to_free(hs, mask)) || 1);	\
10431cac6f2cSLuiz Capitulino 		nr_nodes--)
10441cac6f2cSLuiz Capitulino 
1045e1073d1eSAneesh Kumar K.V #ifdef CONFIG_ARCH_HAS_GIGANTIC_PAGE
1046944d9fecSLuiz Capitulino static void destroy_compound_gigantic_page(struct page *page,
1047d00181b9SKirill A. Shutemov 					unsigned int order)
1048944d9fecSLuiz Capitulino {
1049944d9fecSLuiz Capitulino 	int i;
1050944d9fecSLuiz Capitulino 	int nr_pages = 1 << order;
1051944d9fecSLuiz Capitulino 	struct page *p = page + 1;
1052944d9fecSLuiz Capitulino 
1053c8cc708aSGerald Schaefer 	atomic_set(compound_mapcount_ptr(page), 0);
1054944d9fecSLuiz Capitulino 	for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
10551d798ca3SKirill A. Shutemov 		clear_compound_head(p);
1056944d9fecSLuiz Capitulino 		set_page_refcounted(p);
1057944d9fecSLuiz Capitulino 	}
1058944d9fecSLuiz Capitulino 
1059944d9fecSLuiz Capitulino 	set_compound_order(page, 0);
1060944d9fecSLuiz Capitulino 	__ClearPageHead(page);
1061944d9fecSLuiz Capitulino }
1062944d9fecSLuiz Capitulino 
1063d00181b9SKirill A. Shutemov static void free_gigantic_page(struct page *page, unsigned int order)
1064944d9fecSLuiz Capitulino {
1065944d9fecSLuiz Capitulino 	free_contig_range(page_to_pfn(page), 1 << order);
1066944d9fecSLuiz Capitulino }
1067944d9fecSLuiz Capitulino 
1068944d9fecSLuiz Capitulino static int __alloc_gigantic_page(unsigned long start_pfn,
1069944d9fecSLuiz Capitulino 				unsigned long nr_pages)
1070944d9fecSLuiz Capitulino {
1071944d9fecSLuiz Capitulino 	unsigned long end_pfn = start_pfn + nr_pages;
1072ca96b625SLucas Stach 	return alloc_contig_range(start_pfn, end_pfn, MIGRATE_MOVABLE,
1073ca96b625SLucas Stach 				  GFP_KERNEL);
1074944d9fecSLuiz Capitulino }
1075944d9fecSLuiz Capitulino 
1076f44b2ddaSJoonsoo Kim static bool pfn_range_valid_gigantic(struct zone *z,
1077f44b2ddaSJoonsoo Kim 			unsigned long start_pfn, unsigned long nr_pages)
1078944d9fecSLuiz Capitulino {
1079944d9fecSLuiz Capitulino 	unsigned long i, end_pfn = start_pfn + nr_pages;
1080944d9fecSLuiz Capitulino 	struct page *page;
1081944d9fecSLuiz Capitulino 
1082944d9fecSLuiz Capitulino 	for (i = start_pfn; i < end_pfn; i++) {
1083944d9fecSLuiz Capitulino 		if (!pfn_valid(i))
1084944d9fecSLuiz Capitulino 			return false;
1085944d9fecSLuiz Capitulino 
1086944d9fecSLuiz Capitulino 		page = pfn_to_page(i);
1087944d9fecSLuiz Capitulino 
1088f44b2ddaSJoonsoo Kim 		if (page_zone(page) != z)
1089f44b2ddaSJoonsoo Kim 			return false;
1090f44b2ddaSJoonsoo Kim 
1091944d9fecSLuiz Capitulino 		if (PageReserved(page))
1092944d9fecSLuiz Capitulino 			return false;
1093944d9fecSLuiz Capitulino 
1094944d9fecSLuiz Capitulino 		if (page_count(page) > 0)
1095944d9fecSLuiz Capitulino 			return false;
1096944d9fecSLuiz Capitulino 
1097944d9fecSLuiz Capitulino 		if (PageHuge(page))
1098944d9fecSLuiz Capitulino 			return false;
1099944d9fecSLuiz Capitulino 	}
1100944d9fecSLuiz Capitulino 
1101944d9fecSLuiz Capitulino 	return true;
1102944d9fecSLuiz Capitulino }
1103944d9fecSLuiz Capitulino 
1104944d9fecSLuiz Capitulino static bool zone_spans_last_pfn(const struct zone *zone,
1105944d9fecSLuiz Capitulino 			unsigned long start_pfn, unsigned long nr_pages)
1106944d9fecSLuiz Capitulino {
1107944d9fecSLuiz Capitulino 	unsigned long last_pfn = start_pfn + nr_pages - 1;
1108944d9fecSLuiz Capitulino 	return zone_spans_pfn(zone, last_pfn);
1109944d9fecSLuiz Capitulino }
1110944d9fecSLuiz Capitulino 
1111d00181b9SKirill A. Shutemov static struct page *alloc_gigantic_page(int nid, unsigned int order)
1112944d9fecSLuiz Capitulino {
1113944d9fecSLuiz Capitulino 	unsigned long nr_pages = 1 << order;
1114944d9fecSLuiz Capitulino 	unsigned long ret, pfn, flags;
1115944d9fecSLuiz Capitulino 	struct zone *z;
1116944d9fecSLuiz Capitulino 
1117944d9fecSLuiz Capitulino 	z = NODE_DATA(nid)->node_zones;
1118944d9fecSLuiz Capitulino 	for (; z - NODE_DATA(nid)->node_zones < MAX_NR_ZONES; z++) {
1119944d9fecSLuiz Capitulino 		spin_lock_irqsave(&z->lock, flags);
1120944d9fecSLuiz Capitulino 
1121944d9fecSLuiz Capitulino 		pfn = ALIGN(z->zone_start_pfn, nr_pages);
1122944d9fecSLuiz Capitulino 		while (zone_spans_last_pfn(z, pfn, nr_pages)) {
1123f44b2ddaSJoonsoo Kim 			if (pfn_range_valid_gigantic(z, pfn, nr_pages)) {
1124944d9fecSLuiz Capitulino 				/*
1125944d9fecSLuiz Capitulino 				 * We release the zone lock here because
1126944d9fecSLuiz Capitulino 				 * alloc_contig_range() will also lock the zone
1127944d9fecSLuiz Capitulino 				 * at some point. If there's an allocation
1128944d9fecSLuiz Capitulino 				 * spinning on this lock, it may win the race
1129944d9fecSLuiz Capitulino 				 * and cause alloc_contig_range() to fail...
1130944d9fecSLuiz Capitulino 				 */
1131944d9fecSLuiz Capitulino 				spin_unlock_irqrestore(&z->lock, flags);
1132944d9fecSLuiz Capitulino 				ret = __alloc_gigantic_page(pfn, nr_pages);
1133944d9fecSLuiz Capitulino 				if (!ret)
1134944d9fecSLuiz Capitulino 					return pfn_to_page(pfn);
1135944d9fecSLuiz Capitulino 				spin_lock_irqsave(&z->lock, flags);
1136944d9fecSLuiz Capitulino 			}
1137944d9fecSLuiz Capitulino 			pfn += nr_pages;
1138944d9fecSLuiz Capitulino 		}
1139944d9fecSLuiz Capitulino 
1140944d9fecSLuiz Capitulino 		spin_unlock_irqrestore(&z->lock, flags);
1141944d9fecSLuiz Capitulino 	}
1142944d9fecSLuiz Capitulino 
1143944d9fecSLuiz Capitulino 	return NULL;
1144944d9fecSLuiz Capitulino }
1145944d9fecSLuiz Capitulino 
1146944d9fecSLuiz Capitulino static void prep_new_huge_page(struct hstate *h, struct page *page, int nid);
1147d00181b9SKirill A. Shutemov static void prep_compound_gigantic_page(struct page *page, unsigned int order);
1148944d9fecSLuiz Capitulino 
1149944d9fecSLuiz Capitulino static struct page *alloc_fresh_gigantic_page_node(struct hstate *h, int nid)
1150944d9fecSLuiz Capitulino {
1151944d9fecSLuiz Capitulino 	struct page *page;
1152944d9fecSLuiz Capitulino 
1153944d9fecSLuiz Capitulino 	page = alloc_gigantic_page(nid, huge_page_order(h));
1154944d9fecSLuiz Capitulino 	if (page) {
1155944d9fecSLuiz Capitulino 		prep_compound_gigantic_page(page, huge_page_order(h));
1156944d9fecSLuiz Capitulino 		prep_new_huge_page(h, page, nid);
1157944d9fecSLuiz Capitulino 	}
1158944d9fecSLuiz Capitulino 
1159944d9fecSLuiz Capitulino 	return page;
1160944d9fecSLuiz Capitulino }
1161944d9fecSLuiz Capitulino 
1162944d9fecSLuiz Capitulino static int alloc_fresh_gigantic_page(struct hstate *h,
1163944d9fecSLuiz Capitulino 				nodemask_t *nodes_allowed)
1164944d9fecSLuiz Capitulino {
1165944d9fecSLuiz Capitulino 	struct page *page = NULL;
1166944d9fecSLuiz Capitulino 	int nr_nodes, node;
1167944d9fecSLuiz Capitulino 
1168944d9fecSLuiz Capitulino 	for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
1169944d9fecSLuiz Capitulino 		page = alloc_fresh_gigantic_page_node(h, node);
1170944d9fecSLuiz Capitulino 		if (page)
1171944d9fecSLuiz Capitulino 			return 1;
1172944d9fecSLuiz Capitulino 	}
1173944d9fecSLuiz Capitulino 
1174944d9fecSLuiz Capitulino 	return 0;
1175944d9fecSLuiz Capitulino }
1176944d9fecSLuiz Capitulino 
1177e1073d1eSAneesh Kumar K.V #else /* !CONFIG_ARCH_HAS_GIGANTIC_PAGE */
1178944d9fecSLuiz Capitulino static inline bool gigantic_page_supported(void) { return false; }
1179d00181b9SKirill A. Shutemov static inline void free_gigantic_page(struct page *page, unsigned int order) { }
1180944d9fecSLuiz Capitulino static inline void destroy_compound_gigantic_page(struct page *page,
1181d00181b9SKirill A. Shutemov 						unsigned int order) { }
1182944d9fecSLuiz Capitulino static inline int alloc_fresh_gigantic_page(struct hstate *h,
1183944d9fecSLuiz Capitulino 					nodemask_t *nodes_allowed) { return 0; }
1184944d9fecSLuiz Capitulino #endif
1185944d9fecSLuiz Capitulino 
1186a5516438SAndi Kleen static void update_and_free_page(struct hstate *h, struct page *page)
11876af2acb6SAdam Litke {
11886af2acb6SAdam Litke 	int i;
1189a5516438SAndi Kleen 
1190944d9fecSLuiz Capitulino 	if (hstate_is_gigantic(h) && !gigantic_page_supported())
1191944d9fecSLuiz Capitulino 		return;
119218229df5SAndy Whitcroft 
1193a5516438SAndi Kleen 	h->nr_huge_pages--;
1194a5516438SAndi Kleen 	h->nr_huge_pages_node[page_to_nid(page)]--;
1195a5516438SAndi Kleen 	for (i = 0; i < pages_per_huge_page(h); i++) {
119632f84528SChris Forbes 		page[i].flags &= ~(1 << PG_locked | 1 << PG_error |
119732f84528SChris Forbes 				1 << PG_referenced | 1 << PG_dirty |
1198a7407a27SLuiz Capitulino 				1 << PG_active | 1 << PG_private |
1199a7407a27SLuiz Capitulino 				1 << PG_writeback);
12006af2acb6SAdam Litke 	}
1201309381feSSasha Levin 	VM_BUG_ON_PAGE(hugetlb_cgroup_from_page(page), page);
1202f1e61557SKirill A. Shutemov 	set_compound_page_dtor(page, NULL_COMPOUND_DTOR);
12036af2acb6SAdam Litke 	set_page_refcounted(page);
1204944d9fecSLuiz Capitulino 	if (hstate_is_gigantic(h)) {
1205944d9fecSLuiz Capitulino 		destroy_compound_gigantic_page(page, huge_page_order(h));
1206944d9fecSLuiz Capitulino 		free_gigantic_page(page, huge_page_order(h));
1207944d9fecSLuiz Capitulino 	} else {
1208a5516438SAndi Kleen 		__free_pages(page, huge_page_order(h));
12096af2acb6SAdam Litke 	}
1210944d9fecSLuiz Capitulino }
12116af2acb6SAdam Litke 
1212e5ff2159SAndi Kleen struct hstate *size_to_hstate(unsigned long size)
1213e5ff2159SAndi Kleen {
1214e5ff2159SAndi Kleen 	struct hstate *h;
1215e5ff2159SAndi Kleen 
1216e5ff2159SAndi Kleen 	for_each_hstate(h) {
1217e5ff2159SAndi Kleen 		if (huge_page_size(h) == size)
1218e5ff2159SAndi Kleen 			return h;
1219e5ff2159SAndi Kleen 	}
1220e5ff2159SAndi Kleen 	return NULL;
1221e5ff2159SAndi Kleen }
1222e5ff2159SAndi Kleen 
1223bcc54222SNaoya Horiguchi /*
1224bcc54222SNaoya Horiguchi  * Test to determine whether the hugepage is "active/in-use" (i.e. being linked
1225bcc54222SNaoya Horiguchi  * to hstate->hugepage_activelist.)
1226bcc54222SNaoya Horiguchi  *
1227bcc54222SNaoya Horiguchi  * This function can be called for tail pages, but never returns true for them.
1228bcc54222SNaoya Horiguchi  */
1229bcc54222SNaoya Horiguchi bool page_huge_active(struct page *page)
1230bcc54222SNaoya Horiguchi {
1231bcc54222SNaoya Horiguchi 	VM_BUG_ON_PAGE(!PageHuge(page), page);
1232bcc54222SNaoya Horiguchi 	return PageHead(page) && PagePrivate(&page[1]);
1233bcc54222SNaoya Horiguchi }
1234bcc54222SNaoya Horiguchi 
1235bcc54222SNaoya Horiguchi /* never called for tail page */
1236bcc54222SNaoya Horiguchi static void set_page_huge_active(struct page *page)
1237bcc54222SNaoya Horiguchi {
1238bcc54222SNaoya Horiguchi 	VM_BUG_ON_PAGE(!PageHeadHuge(page), page);
1239bcc54222SNaoya Horiguchi 	SetPagePrivate(&page[1]);
1240bcc54222SNaoya Horiguchi }
1241bcc54222SNaoya Horiguchi 
1242bcc54222SNaoya Horiguchi static void clear_page_huge_active(struct page *page)
1243bcc54222SNaoya Horiguchi {
1244bcc54222SNaoya Horiguchi 	VM_BUG_ON_PAGE(!PageHeadHuge(page), page);
1245bcc54222SNaoya Horiguchi 	ClearPagePrivate(&page[1]);
1246bcc54222SNaoya Horiguchi }
1247bcc54222SNaoya Horiguchi 
12488f1d26d0SAtsushi Kumagai void free_huge_page(struct page *page)
124927a85ef1SDavid Gibson {
1250a5516438SAndi Kleen 	/*
1251a5516438SAndi Kleen 	 * Can't pass hstate in here because it is called from the
1252a5516438SAndi Kleen 	 * compound page destructor.
1253a5516438SAndi Kleen 	 */
1254e5ff2159SAndi Kleen 	struct hstate *h = page_hstate(page);
12557893d1d5SAdam Litke 	int nid = page_to_nid(page);
125690481622SDavid Gibson 	struct hugepage_subpool *spool =
125790481622SDavid Gibson 		(struct hugepage_subpool *)page_private(page);
125807443a85SJoonsoo Kim 	bool restore_reserve;
125927a85ef1SDavid Gibson 
1260e5df70abSAndy Whitcroft 	set_page_private(page, 0);
126123be7468SMel Gorman 	page->mapping = NULL;
1262b4330afbSMike Kravetz 	VM_BUG_ON_PAGE(page_count(page), page);
1263b4330afbSMike Kravetz 	VM_BUG_ON_PAGE(page_mapcount(page), page);
126407443a85SJoonsoo Kim 	restore_reserve = PagePrivate(page);
126516c794b4SJoonsoo Kim 	ClearPagePrivate(page);
126627a85ef1SDavid Gibson 
12671c5ecae3SMike Kravetz 	/*
12681c5ecae3SMike Kravetz 	 * A return code of zero implies that the subpool will be under its
12691c5ecae3SMike Kravetz 	 * minimum size if the reservation is not restored after page is free.
12701c5ecae3SMike Kravetz 	 * Therefore, force restore_reserve operation.
12711c5ecae3SMike Kravetz 	 */
12721c5ecae3SMike Kravetz 	if (hugepage_subpool_put_pages(spool, 1) == 0)
12731c5ecae3SMike Kravetz 		restore_reserve = true;
12741c5ecae3SMike Kravetz 
127527a85ef1SDavid Gibson 	spin_lock(&hugetlb_lock);
1276bcc54222SNaoya Horiguchi 	clear_page_huge_active(page);
12776d76dcf4SAneesh Kumar K.V 	hugetlb_cgroup_uncharge_page(hstate_index(h),
12786d76dcf4SAneesh Kumar K.V 				     pages_per_huge_page(h), page);
127907443a85SJoonsoo Kim 	if (restore_reserve)
128007443a85SJoonsoo Kim 		h->resv_huge_pages++;
128107443a85SJoonsoo Kim 
1282944d9fecSLuiz Capitulino 	if (h->surplus_huge_pages_node[nid]) {
12830edaecfaSAneesh Kumar K.V 		/* remove the page from active list */
12840edaecfaSAneesh Kumar K.V 		list_del(&page->lru);
1285a5516438SAndi Kleen 		update_and_free_page(h, page);
1286a5516438SAndi Kleen 		h->surplus_huge_pages--;
1287a5516438SAndi Kleen 		h->surplus_huge_pages_node[nid]--;
12887893d1d5SAdam Litke 	} else {
12895d3a551cSWill Deacon 		arch_clear_hugepage_flags(page);
1290a5516438SAndi Kleen 		enqueue_huge_page(h, page);
12917893d1d5SAdam Litke 	}
129227a85ef1SDavid Gibson 	spin_unlock(&hugetlb_lock);
129327a85ef1SDavid Gibson }
129427a85ef1SDavid Gibson 
1295a5516438SAndi Kleen static void prep_new_huge_page(struct hstate *h, struct page *page, int nid)
1296b7ba30c6SAndi Kleen {
12970edaecfaSAneesh Kumar K.V 	INIT_LIST_HEAD(&page->lru);
1298f1e61557SKirill A. Shutemov 	set_compound_page_dtor(page, HUGETLB_PAGE_DTOR);
1299b7ba30c6SAndi Kleen 	spin_lock(&hugetlb_lock);
13009dd540e2SAneesh Kumar K.V 	set_hugetlb_cgroup(page, NULL);
1301a5516438SAndi Kleen 	h->nr_huge_pages++;
1302a5516438SAndi Kleen 	h->nr_huge_pages_node[nid]++;
1303b7ba30c6SAndi Kleen 	spin_unlock(&hugetlb_lock);
1304b7ba30c6SAndi Kleen 	put_page(page); /* free it into the hugepage allocator */
1305b7ba30c6SAndi Kleen }
1306b7ba30c6SAndi Kleen 
1307d00181b9SKirill A. Shutemov static void prep_compound_gigantic_page(struct page *page, unsigned int order)
130820a0307cSWu Fengguang {
130920a0307cSWu Fengguang 	int i;
131020a0307cSWu Fengguang 	int nr_pages = 1 << order;
131120a0307cSWu Fengguang 	struct page *p = page + 1;
131220a0307cSWu Fengguang 
131320a0307cSWu Fengguang 	/* we rely on prep_new_huge_page to set the destructor */
131420a0307cSWu Fengguang 	set_compound_order(page, order);
1315ef5a22beSAndrea Arcangeli 	__ClearPageReserved(page);
1316de09d31dSKirill A. Shutemov 	__SetPageHead(page);
131720a0307cSWu Fengguang 	for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
1318ef5a22beSAndrea Arcangeli 		/*
1319ef5a22beSAndrea Arcangeli 		 * For gigantic hugepages allocated through bootmem at
1320ef5a22beSAndrea Arcangeli 		 * boot, it's safer to be consistent with the not-gigantic
1321ef5a22beSAndrea Arcangeli 		 * hugepages and clear the PG_reserved bit from all tail pages
1322ef5a22beSAndrea Arcangeli 		 * too.  Otherwse drivers using get_user_pages() to access tail
1323ef5a22beSAndrea Arcangeli 		 * pages may get the reference counting wrong if they see
1324ef5a22beSAndrea Arcangeli 		 * PG_reserved set on a tail page (despite the head page not
1325ef5a22beSAndrea Arcangeli 		 * having PG_reserved set).  Enforcing this consistency between
1326ef5a22beSAndrea Arcangeli 		 * head and tail pages allows drivers to optimize away a check
1327ef5a22beSAndrea Arcangeli 		 * on the head page when they need know if put_page() is needed
1328ef5a22beSAndrea Arcangeli 		 * after get_user_pages().
1329ef5a22beSAndrea Arcangeli 		 */
1330ef5a22beSAndrea Arcangeli 		__ClearPageReserved(p);
133158a84aa9SYouquan Song 		set_page_count(p, 0);
13321d798ca3SKirill A. Shutemov 		set_compound_head(p, page);
133320a0307cSWu Fengguang 	}
1334b4330afbSMike Kravetz 	atomic_set(compound_mapcount_ptr(page), -1);
133520a0307cSWu Fengguang }
133620a0307cSWu Fengguang 
13377795912cSAndrew Morton /*
13387795912cSAndrew Morton  * PageHuge() only returns true for hugetlbfs pages, but not for normal or
13397795912cSAndrew Morton  * transparent huge pages.  See the PageTransHuge() documentation for more
13407795912cSAndrew Morton  * details.
13417795912cSAndrew Morton  */
134220a0307cSWu Fengguang int PageHuge(struct page *page)
134320a0307cSWu Fengguang {
134420a0307cSWu Fengguang 	if (!PageCompound(page))
134520a0307cSWu Fengguang 		return 0;
134620a0307cSWu Fengguang 
134720a0307cSWu Fengguang 	page = compound_head(page);
1348f1e61557SKirill A. Shutemov 	return page[1].compound_dtor == HUGETLB_PAGE_DTOR;
134920a0307cSWu Fengguang }
135043131e14SNaoya Horiguchi EXPORT_SYMBOL_GPL(PageHuge);
135143131e14SNaoya Horiguchi 
135227c73ae7SAndrea Arcangeli /*
135327c73ae7SAndrea Arcangeli  * PageHeadHuge() only returns true for hugetlbfs head page, but not for
135427c73ae7SAndrea Arcangeli  * normal or transparent huge pages.
135527c73ae7SAndrea Arcangeli  */
135627c73ae7SAndrea Arcangeli int PageHeadHuge(struct page *page_head)
135727c73ae7SAndrea Arcangeli {
135827c73ae7SAndrea Arcangeli 	if (!PageHead(page_head))
135927c73ae7SAndrea Arcangeli 		return 0;
136027c73ae7SAndrea Arcangeli 
1361758f66a2SAndrew Morton 	return get_compound_page_dtor(page_head) == free_huge_page;
136227c73ae7SAndrea Arcangeli }
136327c73ae7SAndrea Arcangeli 
136413d60f4bSZhang Yi pgoff_t __basepage_index(struct page *page)
136513d60f4bSZhang Yi {
136613d60f4bSZhang Yi 	struct page *page_head = compound_head(page);
136713d60f4bSZhang Yi 	pgoff_t index = page_index(page_head);
136813d60f4bSZhang Yi 	unsigned long compound_idx;
136913d60f4bSZhang Yi 
137013d60f4bSZhang Yi 	if (!PageHuge(page_head))
137113d60f4bSZhang Yi 		return page_index(page);
137213d60f4bSZhang Yi 
137313d60f4bSZhang Yi 	if (compound_order(page_head) >= MAX_ORDER)
137413d60f4bSZhang Yi 		compound_idx = page_to_pfn(page) - page_to_pfn(page_head);
137513d60f4bSZhang Yi 	else
137613d60f4bSZhang Yi 		compound_idx = page - page_head;
137713d60f4bSZhang Yi 
137813d60f4bSZhang Yi 	return (index << compound_order(page_head)) + compound_idx;
137913d60f4bSZhang Yi }
138013d60f4bSZhang Yi 
1381a5516438SAndi Kleen static struct page *alloc_fresh_huge_page_node(struct hstate *h, int nid)
13821da177e4SLinus Torvalds {
13831da177e4SLinus Torvalds 	struct page *page;
1384f96efd58SJoe Jin 
138596db800fSVlastimil Babka 	page = __alloc_pages_node(nid,
138686cdb465SNaoya Horiguchi 		htlb_alloc_mask(h)|__GFP_COMP|__GFP_THISNODE|
1387551883aeSNishanth Aravamudan 						__GFP_REPEAT|__GFP_NOWARN,
1388a5516438SAndi Kleen 		huge_page_order(h));
13891da177e4SLinus Torvalds 	if (page) {
1390a5516438SAndi Kleen 		prep_new_huge_page(h, page, nid);
13911da177e4SLinus Torvalds 	}
139263b4613cSNishanth Aravamudan 
139363b4613cSNishanth Aravamudan 	return page;
139463b4613cSNishanth Aravamudan }
139563b4613cSNishanth Aravamudan 
1396b2261026SJoonsoo Kim static int alloc_fresh_huge_page(struct hstate *h, nodemask_t *nodes_allowed)
1397b2261026SJoonsoo Kim {
1398b2261026SJoonsoo Kim 	struct page *page;
1399b2261026SJoonsoo Kim 	int nr_nodes, node;
1400b2261026SJoonsoo Kim 	int ret = 0;
1401b2261026SJoonsoo Kim 
1402b2261026SJoonsoo Kim 	for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
1403b2261026SJoonsoo Kim 		page = alloc_fresh_huge_page_node(h, node);
1404b2261026SJoonsoo Kim 		if (page) {
1405b2261026SJoonsoo Kim 			ret = 1;
1406b2261026SJoonsoo Kim 			break;
1407b2261026SJoonsoo Kim 		}
1408b2261026SJoonsoo Kim 	}
1409b2261026SJoonsoo Kim 
1410b2261026SJoonsoo Kim 	if (ret)
1411b2261026SJoonsoo Kim 		count_vm_event(HTLB_BUDDY_PGALLOC);
1412b2261026SJoonsoo Kim 	else
1413b2261026SJoonsoo Kim 		count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
1414b2261026SJoonsoo Kim 
1415b2261026SJoonsoo Kim 	return ret;
1416b2261026SJoonsoo Kim }
1417b2261026SJoonsoo Kim 
1418e8c5c824SLee Schermerhorn /*
1419e8c5c824SLee Schermerhorn  * Free huge page from pool from next node to free.
1420e8c5c824SLee Schermerhorn  * Attempt to keep persistent huge pages more or less
1421e8c5c824SLee Schermerhorn  * balanced over allowed nodes.
1422e8c5c824SLee Schermerhorn  * Called with hugetlb_lock locked.
1423e8c5c824SLee Schermerhorn  */
14246ae11b27SLee Schermerhorn static int free_pool_huge_page(struct hstate *h, nodemask_t *nodes_allowed,
14256ae11b27SLee Schermerhorn 							 bool acct_surplus)
1426e8c5c824SLee Schermerhorn {
1427b2261026SJoonsoo Kim 	int nr_nodes, node;
1428e8c5c824SLee Schermerhorn 	int ret = 0;
1429e8c5c824SLee Schermerhorn 
1430b2261026SJoonsoo Kim 	for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
1431685f3457SLee Schermerhorn 		/*
1432685f3457SLee Schermerhorn 		 * If we're returning unused surplus pages, only examine
1433685f3457SLee Schermerhorn 		 * nodes with surplus pages.
1434685f3457SLee Schermerhorn 		 */
1435b2261026SJoonsoo Kim 		if ((!acct_surplus || h->surplus_huge_pages_node[node]) &&
1436b2261026SJoonsoo Kim 		    !list_empty(&h->hugepage_freelists[node])) {
1437e8c5c824SLee Schermerhorn 			struct page *page =
1438b2261026SJoonsoo Kim 				list_entry(h->hugepage_freelists[node].next,
1439e8c5c824SLee Schermerhorn 					  struct page, lru);
1440e8c5c824SLee Schermerhorn 			list_del(&page->lru);
1441e8c5c824SLee Schermerhorn 			h->free_huge_pages--;
1442b2261026SJoonsoo Kim 			h->free_huge_pages_node[node]--;
1443685f3457SLee Schermerhorn 			if (acct_surplus) {
1444685f3457SLee Schermerhorn 				h->surplus_huge_pages--;
1445b2261026SJoonsoo Kim 				h->surplus_huge_pages_node[node]--;
1446685f3457SLee Schermerhorn 			}
1447e8c5c824SLee Schermerhorn 			update_and_free_page(h, page);
1448e8c5c824SLee Schermerhorn 			ret = 1;
14499a76db09SLee Schermerhorn 			break;
1450e8c5c824SLee Schermerhorn 		}
1451b2261026SJoonsoo Kim 	}
1452e8c5c824SLee Schermerhorn 
1453e8c5c824SLee Schermerhorn 	return ret;
1454e8c5c824SLee Schermerhorn }
1455e8c5c824SLee Schermerhorn 
1456c8721bbbSNaoya Horiguchi /*
1457c8721bbbSNaoya Horiguchi  * Dissolve a given free hugepage into free buddy pages. This function does
1458082d5b6bSGerald Schaefer  * nothing for in-use (including surplus) hugepages. Returns -EBUSY if the
1459082d5b6bSGerald Schaefer  * number of free hugepages would be reduced below the number of reserved
1460082d5b6bSGerald Schaefer  * hugepages.
1461c8721bbbSNaoya Horiguchi  */
1462c3114a84SAnshuman Khandual int dissolve_free_huge_page(struct page *page)
1463c8721bbbSNaoya Horiguchi {
1464082d5b6bSGerald Schaefer 	int rc = 0;
1465082d5b6bSGerald Schaefer 
1466c8721bbbSNaoya Horiguchi 	spin_lock(&hugetlb_lock);
1467c8721bbbSNaoya Horiguchi 	if (PageHuge(page) && !page_count(page)) {
14682247bb33SGerald Schaefer 		struct page *head = compound_head(page);
14692247bb33SGerald Schaefer 		struct hstate *h = page_hstate(head);
14702247bb33SGerald Schaefer 		int nid = page_to_nid(head);
1471082d5b6bSGerald Schaefer 		if (h->free_huge_pages - h->resv_huge_pages == 0) {
1472082d5b6bSGerald Schaefer 			rc = -EBUSY;
1473082d5b6bSGerald Schaefer 			goto out;
1474082d5b6bSGerald Schaefer 		}
1475c3114a84SAnshuman Khandual 		/*
1476c3114a84SAnshuman Khandual 		 * Move PageHWPoison flag from head page to the raw error page,
1477c3114a84SAnshuman Khandual 		 * which makes any subpages rather than the error page reusable.
1478c3114a84SAnshuman Khandual 		 */
1479c3114a84SAnshuman Khandual 		if (PageHWPoison(head) && page != head) {
1480c3114a84SAnshuman Khandual 			SetPageHWPoison(page);
1481c3114a84SAnshuman Khandual 			ClearPageHWPoison(head);
1482c3114a84SAnshuman Khandual 		}
14832247bb33SGerald Schaefer 		list_del(&head->lru);
1484c8721bbbSNaoya Horiguchi 		h->free_huge_pages--;
1485c8721bbbSNaoya Horiguchi 		h->free_huge_pages_node[nid]--;
1486c1470b33Szhong jiang 		h->max_huge_pages--;
14872247bb33SGerald Schaefer 		update_and_free_page(h, head);
1488c8721bbbSNaoya Horiguchi 	}
1489082d5b6bSGerald Schaefer out:
1490c8721bbbSNaoya Horiguchi 	spin_unlock(&hugetlb_lock);
1491082d5b6bSGerald Schaefer 	return rc;
1492c8721bbbSNaoya Horiguchi }
1493c8721bbbSNaoya Horiguchi 
1494c8721bbbSNaoya Horiguchi /*
1495c8721bbbSNaoya Horiguchi  * Dissolve free hugepages in a given pfn range. Used by memory hotplug to
1496c8721bbbSNaoya Horiguchi  * make specified memory blocks removable from the system.
14972247bb33SGerald Schaefer  * Note that this will dissolve a free gigantic hugepage completely, if any
14982247bb33SGerald Schaefer  * part of it lies within the given range.
1499082d5b6bSGerald Schaefer  * Also note that if dissolve_free_huge_page() returns with an error, all
1500082d5b6bSGerald Schaefer  * free hugepages that were dissolved before that error are lost.
1501c8721bbbSNaoya Horiguchi  */
1502082d5b6bSGerald Schaefer int dissolve_free_huge_pages(unsigned long start_pfn, unsigned long end_pfn)
1503c8721bbbSNaoya Horiguchi {
1504c8721bbbSNaoya Horiguchi 	unsigned long pfn;
1505eb03aa00SGerald Schaefer 	struct page *page;
1506082d5b6bSGerald Schaefer 	int rc = 0;
1507c8721bbbSNaoya Horiguchi 
1508d0177639SLi Zhong 	if (!hugepages_supported())
1509082d5b6bSGerald Schaefer 		return rc;
1510d0177639SLi Zhong 
1511eb03aa00SGerald Schaefer 	for (pfn = start_pfn; pfn < end_pfn; pfn += 1 << minimum_order) {
1512eb03aa00SGerald Schaefer 		page = pfn_to_page(pfn);
1513eb03aa00SGerald Schaefer 		if (PageHuge(page) && !page_count(page)) {
1514eb03aa00SGerald Schaefer 			rc = dissolve_free_huge_page(page);
1515eb03aa00SGerald Schaefer 			if (rc)
1516082d5b6bSGerald Schaefer 				break;
1517eb03aa00SGerald Schaefer 		}
1518eb03aa00SGerald Schaefer 	}
1519082d5b6bSGerald Schaefer 
1520082d5b6bSGerald Schaefer 	return rc;
1521c8721bbbSNaoya Horiguchi }
1522c8721bbbSNaoya Horiguchi 
1523099730d6SDave Hansen static struct page *__hugetlb_alloc_buddy_huge_page(struct hstate *h,
1524aaf14e40SMichal Hocko 		gfp_t gfp_mask, int nid, nodemask_t *nmask)
1525099730d6SDave Hansen {
1526099730d6SDave Hansen 	int order = huge_page_order(h);
1527099730d6SDave Hansen 
1528aaf14e40SMichal Hocko 	gfp_mask |= __GFP_COMP|__GFP_REPEAT|__GFP_NOWARN;
1529aaf14e40SMichal Hocko 	if (nid == NUMA_NO_NODE)
1530aaf14e40SMichal Hocko 		nid = numa_mem_id();
1531aaf14e40SMichal Hocko 	return __alloc_pages_nodemask(gfp_mask, order, nid, nmask);
1532099730d6SDave Hansen }
1533099730d6SDave Hansen 
1534aaf14e40SMichal Hocko static struct page *__alloc_buddy_huge_page(struct hstate *h, gfp_t gfp_mask,
1535aaf14e40SMichal Hocko 		int nid, nodemask_t *nmask)
15367893d1d5SAdam Litke {
15377893d1d5SAdam Litke 	struct page *page;
1538bf50bab2SNaoya Horiguchi 	unsigned int r_nid;
15397893d1d5SAdam Litke 
1540bae7f4aeSLuiz Capitulino 	if (hstate_is_gigantic(h))
1541aa888a74SAndi Kleen 		return NULL;
1542aa888a74SAndi Kleen 
1543d1c3fb1fSNishanth Aravamudan 	/*
1544d1c3fb1fSNishanth Aravamudan 	 * Assume we will successfully allocate the surplus page to
1545d1c3fb1fSNishanth Aravamudan 	 * prevent racing processes from causing the surplus to exceed
1546d1c3fb1fSNishanth Aravamudan 	 * overcommit
1547d1c3fb1fSNishanth Aravamudan 	 *
1548d1c3fb1fSNishanth Aravamudan 	 * This however introduces a different race, where a process B
1549d1c3fb1fSNishanth Aravamudan 	 * tries to grow the static hugepage pool while alloc_pages() is
1550d1c3fb1fSNishanth Aravamudan 	 * called by process A. B will only examine the per-node
1551d1c3fb1fSNishanth Aravamudan 	 * counters in determining if surplus huge pages can be
1552d1c3fb1fSNishanth Aravamudan 	 * converted to normal huge pages in adjust_pool_surplus(). A
1553d1c3fb1fSNishanth Aravamudan 	 * won't be able to increment the per-node counter, until the
1554d1c3fb1fSNishanth Aravamudan 	 * lock is dropped by B, but B doesn't drop hugetlb_lock until
1555d1c3fb1fSNishanth Aravamudan 	 * no more huge pages can be converted from surplus to normal
1556d1c3fb1fSNishanth Aravamudan 	 * state (and doesn't try to convert again). Thus, we have a
1557d1c3fb1fSNishanth Aravamudan 	 * case where a surplus huge page exists, the pool is grown, and
1558d1c3fb1fSNishanth Aravamudan 	 * the surplus huge page still exists after, even though it
1559d1c3fb1fSNishanth Aravamudan 	 * should just have been converted to a normal huge page. This
1560d1c3fb1fSNishanth Aravamudan 	 * does not leak memory, though, as the hugepage will be freed
1561d1c3fb1fSNishanth Aravamudan 	 * once it is out of use. It also does not allow the counters to
1562d1c3fb1fSNishanth Aravamudan 	 * go out of whack in adjust_pool_surplus() as we don't modify
1563d1c3fb1fSNishanth Aravamudan 	 * the node values until we've gotten the hugepage and only the
1564d1c3fb1fSNishanth Aravamudan 	 * per-node value is checked there.
1565d1c3fb1fSNishanth Aravamudan 	 */
1566d1c3fb1fSNishanth Aravamudan 	spin_lock(&hugetlb_lock);
1567a5516438SAndi Kleen 	if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages) {
1568d1c3fb1fSNishanth Aravamudan 		spin_unlock(&hugetlb_lock);
1569d1c3fb1fSNishanth Aravamudan 		return NULL;
1570d1c3fb1fSNishanth Aravamudan 	} else {
1571a5516438SAndi Kleen 		h->nr_huge_pages++;
1572a5516438SAndi Kleen 		h->surplus_huge_pages++;
1573d1c3fb1fSNishanth Aravamudan 	}
1574d1c3fb1fSNishanth Aravamudan 	spin_unlock(&hugetlb_lock);
1575d1c3fb1fSNishanth Aravamudan 
1576aaf14e40SMichal Hocko 	page = __hugetlb_alloc_buddy_huge_page(h, gfp_mask, nid, nmask);
1577d1c3fb1fSNishanth Aravamudan 
15787893d1d5SAdam Litke 	spin_lock(&hugetlb_lock);
1579d1c3fb1fSNishanth Aravamudan 	if (page) {
15800edaecfaSAneesh Kumar K.V 		INIT_LIST_HEAD(&page->lru);
1581bf50bab2SNaoya Horiguchi 		r_nid = page_to_nid(page);
1582f1e61557SKirill A. Shutemov 		set_compound_page_dtor(page, HUGETLB_PAGE_DTOR);
15839dd540e2SAneesh Kumar K.V 		set_hugetlb_cgroup(page, NULL);
1584d1c3fb1fSNishanth Aravamudan 		/*
1585d1c3fb1fSNishanth Aravamudan 		 * We incremented the global counters already
1586d1c3fb1fSNishanth Aravamudan 		 */
1587bf50bab2SNaoya Horiguchi 		h->nr_huge_pages_node[r_nid]++;
1588bf50bab2SNaoya Horiguchi 		h->surplus_huge_pages_node[r_nid]++;
15893b116300SAdam Litke 		__count_vm_event(HTLB_BUDDY_PGALLOC);
1590d1c3fb1fSNishanth Aravamudan 	} else {
1591a5516438SAndi Kleen 		h->nr_huge_pages--;
1592a5516438SAndi Kleen 		h->surplus_huge_pages--;
15933b116300SAdam Litke 		__count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
15947893d1d5SAdam Litke 	}
1595d1c3fb1fSNishanth Aravamudan 	spin_unlock(&hugetlb_lock);
15967893d1d5SAdam Litke 
15977893d1d5SAdam Litke 	return page;
15987893d1d5SAdam Litke }
15997893d1d5SAdam Litke 
1600e4e574b7SAdam Litke /*
1601099730d6SDave Hansen  * Use the VMA's mpolicy to allocate a huge page from the buddy.
1602099730d6SDave Hansen  */
1603e0ec90eeSDave Hansen static
1604099730d6SDave Hansen struct page *__alloc_buddy_huge_page_with_mpol(struct hstate *h,
1605099730d6SDave Hansen 		struct vm_area_struct *vma, unsigned long addr)
1606099730d6SDave Hansen {
1607aaf14e40SMichal Hocko 	struct page *page;
1608aaf14e40SMichal Hocko 	struct mempolicy *mpol;
1609aaf14e40SMichal Hocko 	gfp_t gfp_mask = htlb_alloc_mask(h);
1610aaf14e40SMichal Hocko 	int nid;
1611aaf14e40SMichal Hocko 	nodemask_t *nodemask;
1612aaf14e40SMichal Hocko 
1613aaf14e40SMichal Hocko 	nid = huge_node(vma, addr, gfp_mask, &mpol, &nodemask);
1614aaf14e40SMichal Hocko 	page = __alloc_buddy_huge_page(h, gfp_mask, nid, nodemask);
1615aaf14e40SMichal Hocko 	mpol_cond_put(mpol);
1616aaf14e40SMichal Hocko 
1617aaf14e40SMichal Hocko 	return page;
1618099730d6SDave Hansen }
1619099730d6SDave Hansen 
1620099730d6SDave Hansen /*
1621bf50bab2SNaoya Horiguchi  * This allocation function is useful in the context where vma is irrelevant.
1622bf50bab2SNaoya Horiguchi  * E.g. soft-offlining uses this function because it only cares physical
1623bf50bab2SNaoya Horiguchi  * address of error page.
1624bf50bab2SNaoya Horiguchi  */
1625bf50bab2SNaoya Horiguchi struct page *alloc_huge_page_node(struct hstate *h, int nid)
1626bf50bab2SNaoya Horiguchi {
1627aaf14e40SMichal Hocko 	gfp_t gfp_mask = htlb_alloc_mask(h);
16284ef91848SJoonsoo Kim 	struct page *page = NULL;
1629bf50bab2SNaoya Horiguchi 
1630aaf14e40SMichal Hocko 	if (nid != NUMA_NO_NODE)
1631aaf14e40SMichal Hocko 		gfp_mask |= __GFP_THISNODE;
1632aaf14e40SMichal Hocko 
1633bf50bab2SNaoya Horiguchi 	spin_lock(&hugetlb_lock);
16344ef91848SJoonsoo Kim 	if (h->free_huge_pages - h->resv_huge_pages > 0)
16353e59fcb0SMichal Hocko 		page = dequeue_huge_page_nodemask(h, gfp_mask, nid, NULL);
1636bf50bab2SNaoya Horiguchi 	spin_unlock(&hugetlb_lock);
1637bf50bab2SNaoya Horiguchi 
163894ae8ba7SAneesh Kumar K.V 	if (!page)
1639aaf14e40SMichal Hocko 		page = __alloc_buddy_huge_page(h, gfp_mask, nid, NULL);
1640bf50bab2SNaoya Horiguchi 
1641bf50bab2SNaoya Horiguchi 	return page;
1642bf50bab2SNaoya Horiguchi }
1643bf50bab2SNaoya Horiguchi 
16443e59fcb0SMichal Hocko 
16453e59fcb0SMichal Hocko struct page *alloc_huge_page_nodemask(struct hstate *h, int preferred_nid,
16463e59fcb0SMichal Hocko 		nodemask_t *nmask)
16474db9b2efSMichal Hocko {
1648aaf14e40SMichal Hocko 	gfp_t gfp_mask = htlb_alloc_mask(h);
16494db9b2efSMichal Hocko 
16504db9b2efSMichal Hocko 	spin_lock(&hugetlb_lock);
16514db9b2efSMichal Hocko 	if (h->free_huge_pages - h->resv_huge_pages > 0) {
16523e59fcb0SMichal Hocko 		struct page *page;
16533e59fcb0SMichal Hocko 
16543e59fcb0SMichal Hocko 		page = dequeue_huge_page_nodemask(h, gfp_mask, preferred_nid, nmask);
16553e59fcb0SMichal Hocko 		if (page) {
16563e59fcb0SMichal Hocko 			spin_unlock(&hugetlb_lock);
16573e59fcb0SMichal Hocko 			return page;
16584db9b2efSMichal Hocko 		}
16594db9b2efSMichal Hocko 	}
16604db9b2efSMichal Hocko 	spin_unlock(&hugetlb_lock);
16614db9b2efSMichal Hocko 
16624db9b2efSMichal Hocko 	/* No reservations, try to overcommit */
16633e59fcb0SMichal Hocko 
16643e59fcb0SMichal Hocko 	return __alloc_buddy_huge_page(h, gfp_mask, preferred_nid, nmask);
16654db9b2efSMichal Hocko }
16664db9b2efSMichal Hocko 
1667bf50bab2SNaoya Horiguchi /*
166825985edcSLucas De Marchi  * Increase the hugetlb pool such that it can accommodate a reservation
1669e4e574b7SAdam Litke  * of size 'delta'.
1670e4e574b7SAdam Litke  */
1671a5516438SAndi Kleen static int gather_surplus_pages(struct hstate *h, int delta)
1672e4e574b7SAdam Litke {
1673e4e574b7SAdam Litke 	struct list_head surplus_list;
1674e4e574b7SAdam Litke 	struct page *page, *tmp;
1675e4e574b7SAdam Litke 	int ret, i;
1676e4e574b7SAdam Litke 	int needed, allocated;
167728073b02SHillf Danton 	bool alloc_ok = true;
1678e4e574b7SAdam Litke 
1679a5516438SAndi Kleen 	needed = (h->resv_huge_pages + delta) - h->free_huge_pages;
1680ac09b3a1SAdam Litke 	if (needed <= 0) {
1681a5516438SAndi Kleen 		h->resv_huge_pages += delta;
1682e4e574b7SAdam Litke 		return 0;
1683ac09b3a1SAdam Litke 	}
1684e4e574b7SAdam Litke 
1685e4e574b7SAdam Litke 	allocated = 0;
1686e4e574b7SAdam Litke 	INIT_LIST_HEAD(&surplus_list);
1687e4e574b7SAdam Litke 
1688e4e574b7SAdam Litke 	ret = -ENOMEM;
1689e4e574b7SAdam Litke retry:
1690e4e574b7SAdam Litke 	spin_unlock(&hugetlb_lock);
1691e4e574b7SAdam Litke 	for (i = 0; i < needed; i++) {
1692aaf14e40SMichal Hocko 		page = __alloc_buddy_huge_page(h, htlb_alloc_mask(h),
1693aaf14e40SMichal Hocko 				NUMA_NO_NODE, NULL);
169428073b02SHillf Danton 		if (!page) {
169528073b02SHillf Danton 			alloc_ok = false;
169628073b02SHillf Danton 			break;
169728073b02SHillf Danton 		}
1698e4e574b7SAdam Litke 		list_add(&page->lru, &surplus_list);
169969ed779aSDavid Rientjes 		cond_resched();
1700e4e574b7SAdam Litke 	}
170128073b02SHillf Danton 	allocated += i;
1702e4e574b7SAdam Litke 
1703e4e574b7SAdam Litke 	/*
1704e4e574b7SAdam Litke 	 * After retaking hugetlb_lock, we need to recalculate 'needed'
1705e4e574b7SAdam Litke 	 * because either resv_huge_pages or free_huge_pages may have changed.
1706e4e574b7SAdam Litke 	 */
1707e4e574b7SAdam Litke 	spin_lock(&hugetlb_lock);
1708a5516438SAndi Kleen 	needed = (h->resv_huge_pages + delta) -
1709a5516438SAndi Kleen 			(h->free_huge_pages + allocated);
171028073b02SHillf Danton 	if (needed > 0) {
171128073b02SHillf Danton 		if (alloc_ok)
1712e4e574b7SAdam Litke 			goto retry;
171328073b02SHillf Danton 		/*
171428073b02SHillf Danton 		 * We were not able to allocate enough pages to
171528073b02SHillf Danton 		 * satisfy the entire reservation so we free what
171628073b02SHillf Danton 		 * we've allocated so far.
171728073b02SHillf Danton 		 */
171828073b02SHillf Danton 		goto free;
171928073b02SHillf Danton 	}
1720e4e574b7SAdam Litke 	/*
1721e4e574b7SAdam Litke 	 * The surplus_list now contains _at_least_ the number of extra pages
172225985edcSLucas De Marchi 	 * needed to accommodate the reservation.  Add the appropriate number
1723e4e574b7SAdam Litke 	 * of pages to the hugetlb pool and free the extras back to the buddy
1724ac09b3a1SAdam Litke 	 * allocator.  Commit the entire reservation here to prevent another
1725ac09b3a1SAdam Litke 	 * process from stealing the pages as they are added to the pool but
1726ac09b3a1SAdam Litke 	 * before they are reserved.
1727e4e574b7SAdam Litke 	 */
1728e4e574b7SAdam Litke 	needed += allocated;
1729a5516438SAndi Kleen 	h->resv_huge_pages += delta;
1730e4e574b7SAdam Litke 	ret = 0;
1731a9869b83SNaoya Horiguchi 
173219fc3f0aSAdam Litke 	/* Free the needed pages to the hugetlb pool */
173319fc3f0aSAdam Litke 	list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
173419fc3f0aSAdam Litke 		if ((--needed) < 0)
173519fc3f0aSAdam Litke 			break;
1736a9869b83SNaoya Horiguchi 		/*
1737a9869b83SNaoya Horiguchi 		 * This page is now managed by the hugetlb allocator and has
1738a9869b83SNaoya Horiguchi 		 * no users -- drop the buddy allocator's reference.
1739a9869b83SNaoya Horiguchi 		 */
1740a9869b83SNaoya Horiguchi 		put_page_testzero(page);
1741309381feSSasha Levin 		VM_BUG_ON_PAGE(page_count(page), page);
1742a5516438SAndi Kleen 		enqueue_huge_page(h, page);
174319fc3f0aSAdam Litke 	}
174428073b02SHillf Danton free:
1745b0365c8dSHillf Danton 	spin_unlock(&hugetlb_lock);
174619fc3f0aSAdam Litke 
174719fc3f0aSAdam Litke 	/* Free unnecessary surplus pages to the buddy allocator */
1748c0d934baSJoonsoo Kim 	list_for_each_entry_safe(page, tmp, &surplus_list, lru)
1749a9869b83SNaoya Horiguchi 		put_page(page);
175019fc3f0aSAdam Litke 	spin_lock(&hugetlb_lock);
1751e4e574b7SAdam Litke 
1752e4e574b7SAdam Litke 	return ret;
1753e4e574b7SAdam Litke }
1754e4e574b7SAdam Litke 
1755e4e574b7SAdam Litke /*
1756e5bbc8a6SMike Kravetz  * This routine has two main purposes:
1757e5bbc8a6SMike Kravetz  * 1) Decrement the reservation count (resv_huge_pages) by the value passed
1758e5bbc8a6SMike Kravetz  *    in unused_resv_pages.  This corresponds to the prior adjustments made
1759e5bbc8a6SMike Kravetz  *    to the associated reservation map.
1760e5bbc8a6SMike Kravetz  * 2) Free any unused surplus pages that may have been allocated to satisfy
1761e5bbc8a6SMike Kravetz  *    the reservation.  As many as unused_resv_pages may be freed.
1762e5bbc8a6SMike Kravetz  *
1763e5bbc8a6SMike Kravetz  * Called with hugetlb_lock held.  However, the lock could be dropped (and
1764e5bbc8a6SMike Kravetz  * reacquired) during calls to cond_resched_lock.  Whenever dropping the lock,
1765e5bbc8a6SMike Kravetz  * we must make sure nobody else can claim pages we are in the process of
1766e5bbc8a6SMike Kravetz  * freeing.  Do this by ensuring resv_huge_page always is greater than the
1767e5bbc8a6SMike Kravetz  * number of huge pages we plan to free when dropping the lock.
1768e4e574b7SAdam Litke  */
1769a5516438SAndi Kleen static void return_unused_surplus_pages(struct hstate *h,
1770a5516438SAndi Kleen 					unsigned long unused_resv_pages)
1771e4e574b7SAdam Litke {
1772e4e574b7SAdam Litke 	unsigned long nr_pages;
1773e4e574b7SAdam Litke 
1774aa888a74SAndi Kleen 	/* Cannot return gigantic pages currently */
1775bae7f4aeSLuiz Capitulino 	if (hstate_is_gigantic(h))
1776e5bbc8a6SMike Kravetz 		goto out;
1777aa888a74SAndi Kleen 
1778e5bbc8a6SMike Kravetz 	/*
1779e5bbc8a6SMike Kravetz 	 * Part (or even all) of the reservation could have been backed
1780e5bbc8a6SMike Kravetz 	 * by pre-allocated pages. Only free surplus pages.
1781e5bbc8a6SMike Kravetz 	 */
1782a5516438SAndi Kleen 	nr_pages = min(unused_resv_pages, h->surplus_huge_pages);
1783e4e574b7SAdam Litke 
1784685f3457SLee Schermerhorn 	/*
1785685f3457SLee Schermerhorn 	 * We want to release as many surplus pages as possible, spread
17869b5e5d0fSLee Schermerhorn 	 * evenly across all nodes with memory. Iterate across these nodes
17879b5e5d0fSLee Schermerhorn 	 * until we can no longer free unreserved surplus pages. This occurs
17889b5e5d0fSLee Schermerhorn 	 * when the nodes with surplus pages have no free pages.
17899b5e5d0fSLee Schermerhorn 	 * free_pool_huge_page() will balance the the freed pages across the
17909b5e5d0fSLee Schermerhorn 	 * on-line nodes with memory and will handle the hstate accounting.
1791e5bbc8a6SMike Kravetz 	 *
1792e5bbc8a6SMike Kravetz 	 * Note that we decrement resv_huge_pages as we free the pages.  If
1793e5bbc8a6SMike Kravetz 	 * we drop the lock, resv_huge_pages will still be sufficiently large
1794e5bbc8a6SMike Kravetz 	 * to cover subsequent pages we may free.
1795685f3457SLee Schermerhorn 	 */
1796685f3457SLee Schermerhorn 	while (nr_pages--) {
1797e5bbc8a6SMike Kravetz 		h->resv_huge_pages--;
1798e5bbc8a6SMike Kravetz 		unused_resv_pages--;
17998cebfcd0SLai Jiangshan 		if (!free_pool_huge_page(h, &node_states[N_MEMORY], 1))
1800e5bbc8a6SMike Kravetz 			goto out;
18017848a4bfSMizuma, Masayoshi 		cond_resched_lock(&hugetlb_lock);
1802e4e574b7SAdam Litke 	}
1803e5bbc8a6SMike Kravetz 
1804e5bbc8a6SMike Kravetz out:
1805e5bbc8a6SMike Kravetz 	/* Fully uncommit the reservation */
1806e5bbc8a6SMike Kravetz 	h->resv_huge_pages -= unused_resv_pages;
1807e4e574b7SAdam Litke }
1808e4e574b7SAdam Litke 
18095e911373SMike Kravetz 
1810c37f9fb1SAndy Whitcroft /*
1811feba16e2SMike Kravetz  * vma_needs_reservation, vma_commit_reservation and vma_end_reservation
18125e911373SMike Kravetz  * are used by the huge page allocation routines to manage reservations.
1813cf3ad20bSMike Kravetz  *
1814cf3ad20bSMike Kravetz  * vma_needs_reservation is called to determine if the huge page at addr
1815cf3ad20bSMike Kravetz  * within the vma has an associated reservation.  If a reservation is
1816cf3ad20bSMike Kravetz  * needed, the value 1 is returned.  The caller is then responsible for
1817cf3ad20bSMike Kravetz  * managing the global reservation and subpool usage counts.  After
1818cf3ad20bSMike Kravetz  * the huge page has been allocated, vma_commit_reservation is called
1819feba16e2SMike Kravetz  * to add the page to the reservation map.  If the page allocation fails,
1820feba16e2SMike Kravetz  * the reservation must be ended instead of committed.  vma_end_reservation
1821feba16e2SMike Kravetz  * is called in such cases.
1822cf3ad20bSMike Kravetz  *
1823cf3ad20bSMike Kravetz  * In the normal case, vma_commit_reservation returns the same value
1824cf3ad20bSMike Kravetz  * as the preceding vma_needs_reservation call.  The only time this
1825cf3ad20bSMike Kravetz  * is not the case is if a reserve map was changed between calls.  It
1826cf3ad20bSMike Kravetz  * is the responsibility of the caller to notice the difference and
1827cf3ad20bSMike Kravetz  * take appropriate action.
182896b96a96SMike Kravetz  *
182996b96a96SMike Kravetz  * vma_add_reservation is used in error paths where a reservation must
183096b96a96SMike Kravetz  * be restored when a newly allocated huge page must be freed.  It is
183196b96a96SMike Kravetz  * to be called after calling vma_needs_reservation to determine if a
183296b96a96SMike Kravetz  * reservation exists.
1833c37f9fb1SAndy Whitcroft  */
18345e911373SMike Kravetz enum vma_resv_mode {
18355e911373SMike Kravetz 	VMA_NEEDS_RESV,
18365e911373SMike Kravetz 	VMA_COMMIT_RESV,
1837feba16e2SMike Kravetz 	VMA_END_RESV,
183896b96a96SMike Kravetz 	VMA_ADD_RESV,
18395e911373SMike Kravetz };
1840cf3ad20bSMike Kravetz static long __vma_reservation_common(struct hstate *h,
1841cf3ad20bSMike Kravetz 				struct vm_area_struct *vma, unsigned long addr,
18425e911373SMike Kravetz 				enum vma_resv_mode mode)
1843c37f9fb1SAndy Whitcroft {
18444e35f483SJoonsoo Kim 	struct resv_map *resv;
18454e35f483SJoonsoo Kim 	pgoff_t idx;
1846cf3ad20bSMike Kravetz 	long ret;
1847c37f9fb1SAndy Whitcroft 
18484e35f483SJoonsoo Kim 	resv = vma_resv_map(vma);
18494e35f483SJoonsoo Kim 	if (!resv)
1850c37f9fb1SAndy Whitcroft 		return 1;
1851c37f9fb1SAndy Whitcroft 
18524e35f483SJoonsoo Kim 	idx = vma_hugecache_offset(h, vma, addr);
18535e911373SMike Kravetz 	switch (mode) {
18545e911373SMike Kravetz 	case VMA_NEEDS_RESV:
1855cf3ad20bSMike Kravetz 		ret = region_chg(resv, idx, idx + 1);
18565e911373SMike Kravetz 		break;
18575e911373SMike Kravetz 	case VMA_COMMIT_RESV:
18585e911373SMike Kravetz 		ret = region_add(resv, idx, idx + 1);
18595e911373SMike Kravetz 		break;
1860feba16e2SMike Kravetz 	case VMA_END_RESV:
18615e911373SMike Kravetz 		region_abort(resv, idx, idx + 1);
18625e911373SMike Kravetz 		ret = 0;
18635e911373SMike Kravetz 		break;
186496b96a96SMike Kravetz 	case VMA_ADD_RESV:
186596b96a96SMike Kravetz 		if (vma->vm_flags & VM_MAYSHARE)
186696b96a96SMike Kravetz 			ret = region_add(resv, idx, idx + 1);
186796b96a96SMike Kravetz 		else {
186896b96a96SMike Kravetz 			region_abort(resv, idx, idx + 1);
186996b96a96SMike Kravetz 			ret = region_del(resv, idx, idx + 1);
187096b96a96SMike Kravetz 		}
187196b96a96SMike Kravetz 		break;
18725e911373SMike Kravetz 	default:
18735e911373SMike Kravetz 		BUG();
18745e911373SMike Kravetz 	}
187584afd99bSAndy Whitcroft 
18764e35f483SJoonsoo Kim 	if (vma->vm_flags & VM_MAYSHARE)
1877cf3ad20bSMike Kravetz 		return ret;
187867961f9dSMike Kravetz 	else if (is_vma_resv_set(vma, HPAGE_RESV_OWNER) && ret >= 0) {
187967961f9dSMike Kravetz 		/*
188067961f9dSMike Kravetz 		 * In most cases, reserves always exist for private mappings.
188167961f9dSMike Kravetz 		 * However, a file associated with mapping could have been
188267961f9dSMike Kravetz 		 * hole punched or truncated after reserves were consumed.
188367961f9dSMike Kravetz 		 * As subsequent fault on such a range will not use reserves.
188467961f9dSMike Kravetz 		 * Subtle - The reserve map for private mappings has the
188567961f9dSMike Kravetz 		 * opposite meaning than that of shared mappings.  If NO
188667961f9dSMike Kravetz 		 * entry is in the reserve map, it means a reservation exists.
188767961f9dSMike Kravetz 		 * If an entry exists in the reserve map, it means the
188867961f9dSMike Kravetz 		 * reservation has already been consumed.  As a result, the
188967961f9dSMike Kravetz 		 * return value of this routine is the opposite of the
189067961f9dSMike Kravetz 		 * value returned from reserve map manipulation routines above.
189167961f9dSMike Kravetz 		 */
189267961f9dSMike Kravetz 		if (ret)
189367961f9dSMike Kravetz 			return 0;
189467961f9dSMike Kravetz 		else
189567961f9dSMike Kravetz 			return 1;
189667961f9dSMike Kravetz 	}
18974e35f483SJoonsoo Kim 	else
1898cf3ad20bSMike Kravetz 		return ret < 0 ? ret : 0;
189984afd99bSAndy Whitcroft }
1900cf3ad20bSMike Kravetz 
1901cf3ad20bSMike Kravetz static long vma_needs_reservation(struct hstate *h,
1902a5516438SAndi Kleen 			struct vm_area_struct *vma, unsigned long addr)
1903c37f9fb1SAndy Whitcroft {
19045e911373SMike Kravetz 	return __vma_reservation_common(h, vma, addr, VMA_NEEDS_RESV);
1905cf3ad20bSMike Kravetz }
1906c37f9fb1SAndy Whitcroft 
1907cf3ad20bSMike Kravetz static long vma_commit_reservation(struct hstate *h,
1908cf3ad20bSMike Kravetz 			struct vm_area_struct *vma, unsigned long addr)
1909cf3ad20bSMike Kravetz {
19105e911373SMike Kravetz 	return __vma_reservation_common(h, vma, addr, VMA_COMMIT_RESV);
19115e911373SMike Kravetz }
19125e911373SMike Kravetz 
1913feba16e2SMike Kravetz static void vma_end_reservation(struct hstate *h,
19145e911373SMike Kravetz 			struct vm_area_struct *vma, unsigned long addr)
19155e911373SMike Kravetz {
1916feba16e2SMike Kravetz 	(void)__vma_reservation_common(h, vma, addr, VMA_END_RESV);
1917c37f9fb1SAndy Whitcroft }
1918c37f9fb1SAndy Whitcroft 
191996b96a96SMike Kravetz static long vma_add_reservation(struct hstate *h,
192096b96a96SMike Kravetz 			struct vm_area_struct *vma, unsigned long addr)
192196b96a96SMike Kravetz {
192296b96a96SMike Kravetz 	return __vma_reservation_common(h, vma, addr, VMA_ADD_RESV);
192396b96a96SMike Kravetz }
192496b96a96SMike Kravetz 
192596b96a96SMike Kravetz /*
192696b96a96SMike Kravetz  * This routine is called to restore a reservation on error paths.  In the
192796b96a96SMike Kravetz  * specific error paths, a huge page was allocated (via alloc_huge_page)
192896b96a96SMike Kravetz  * and is about to be freed.  If a reservation for the page existed,
192996b96a96SMike Kravetz  * alloc_huge_page would have consumed the reservation and set PagePrivate
193096b96a96SMike Kravetz  * in the newly allocated page.  When the page is freed via free_huge_page,
193196b96a96SMike Kravetz  * the global reservation count will be incremented if PagePrivate is set.
193296b96a96SMike Kravetz  * However, free_huge_page can not adjust the reserve map.  Adjust the
193396b96a96SMike Kravetz  * reserve map here to be consistent with global reserve count adjustments
193496b96a96SMike Kravetz  * to be made by free_huge_page.
193596b96a96SMike Kravetz  */
193696b96a96SMike Kravetz static void restore_reserve_on_error(struct hstate *h,
193796b96a96SMike Kravetz 			struct vm_area_struct *vma, unsigned long address,
193896b96a96SMike Kravetz 			struct page *page)
193996b96a96SMike Kravetz {
194096b96a96SMike Kravetz 	if (unlikely(PagePrivate(page))) {
194196b96a96SMike Kravetz 		long rc = vma_needs_reservation(h, vma, address);
194296b96a96SMike Kravetz 
194396b96a96SMike Kravetz 		if (unlikely(rc < 0)) {
194496b96a96SMike Kravetz 			/*
194596b96a96SMike Kravetz 			 * Rare out of memory condition in reserve map
194696b96a96SMike Kravetz 			 * manipulation.  Clear PagePrivate so that
194796b96a96SMike Kravetz 			 * global reserve count will not be incremented
194896b96a96SMike Kravetz 			 * by free_huge_page.  This will make it appear
194996b96a96SMike Kravetz 			 * as though the reservation for this page was
195096b96a96SMike Kravetz 			 * consumed.  This may prevent the task from
195196b96a96SMike Kravetz 			 * faulting in the page at a later time.  This
195296b96a96SMike Kravetz 			 * is better than inconsistent global huge page
195396b96a96SMike Kravetz 			 * accounting of reserve counts.
195496b96a96SMike Kravetz 			 */
195596b96a96SMike Kravetz 			ClearPagePrivate(page);
195696b96a96SMike Kravetz 		} else if (rc) {
195796b96a96SMike Kravetz 			rc = vma_add_reservation(h, vma, address);
195896b96a96SMike Kravetz 			if (unlikely(rc < 0))
195996b96a96SMike Kravetz 				/*
196096b96a96SMike Kravetz 				 * See above comment about rare out of
196196b96a96SMike Kravetz 				 * memory condition.
196296b96a96SMike Kravetz 				 */
196396b96a96SMike Kravetz 				ClearPagePrivate(page);
196496b96a96SMike Kravetz 		} else
196596b96a96SMike Kravetz 			vma_end_reservation(h, vma, address);
196696b96a96SMike Kravetz 	}
196796b96a96SMike Kravetz }
196896b96a96SMike Kravetz 
196970c3547eSMike Kravetz struct page *alloc_huge_page(struct vm_area_struct *vma,
197004f2cbe3SMel Gorman 				    unsigned long addr, int avoid_reserve)
1971348ea204SAdam Litke {
197290481622SDavid Gibson 	struct hugepage_subpool *spool = subpool_vma(vma);
1973a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
1974348ea204SAdam Litke 	struct page *page;
1975d85f69b0SMike Kravetz 	long map_chg, map_commit;
1976d85f69b0SMike Kravetz 	long gbl_chg;
19776d76dcf4SAneesh Kumar K.V 	int ret, idx;
19786d76dcf4SAneesh Kumar K.V 	struct hugetlb_cgroup *h_cg;
19792fc39cecSAdam Litke 
19806d76dcf4SAneesh Kumar K.V 	idx = hstate_index(h);
1981a1e78772SMel Gorman 	/*
1982d85f69b0SMike Kravetz 	 * Examine the region/reserve map to determine if the process
1983d85f69b0SMike Kravetz 	 * has a reservation for the page to be allocated.  A return
1984d85f69b0SMike Kravetz 	 * code of zero indicates a reservation exists (no change).
1985a1e78772SMel Gorman 	 */
1986d85f69b0SMike Kravetz 	map_chg = gbl_chg = vma_needs_reservation(h, vma, addr);
1987d85f69b0SMike Kravetz 	if (map_chg < 0)
198876dcee75SAneesh Kumar K.V 		return ERR_PTR(-ENOMEM);
1989d85f69b0SMike Kravetz 
1990d85f69b0SMike Kravetz 	/*
1991d85f69b0SMike Kravetz 	 * Processes that did not create the mapping will have no
1992d85f69b0SMike Kravetz 	 * reserves as indicated by the region/reserve map. Check
1993d85f69b0SMike Kravetz 	 * that the allocation will not exceed the subpool limit.
1994d85f69b0SMike Kravetz 	 * Allocations for MAP_NORESERVE mappings also need to be
1995d85f69b0SMike Kravetz 	 * checked against any subpool limit.
1996d85f69b0SMike Kravetz 	 */
1997d85f69b0SMike Kravetz 	if (map_chg || avoid_reserve) {
1998d85f69b0SMike Kravetz 		gbl_chg = hugepage_subpool_get_pages(spool, 1);
1999d85f69b0SMike Kravetz 		if (gbl_chg < 0) {
2000feba16e2SMike Kravetz 			vma_end_reservation(h, vma, addr);
200176dcee75SAneesh Kumar K.V 			return ERR_PTR(-ENOSPC);
20025e911373SMike Kravetz 		}
200390d8b7e6SAdam Litke 
2004d85f69b0SMike Kravetz 		/*
2005d85f69b0SMike Kravetz 		 * Even though there was no reservation in the region/reserve
2006d85f69b0SMike Kravetz 		 * map, there could be reservations associated with the
2007d85f69b0SMike Kravetz 		 * subpool that can be used.  This would be indicated if the
2008d85f69b0SMike Kravetz 		 * return value of hugepage_subpool_get_pages() is zero.
2009d85f69b0SMike Kravetz 		 * However, if avoid_reserve is specified we still avoid even
2010d85f69b0SMike Kravetz 		 * the subpool reservations.
2011d85f69b0SMike Kravetz 		 */
2012d85f69b0SMike Kravetz 		if (avoid_reserve)
2013d85f69b0SMike Kravetz 			gbl_chg = 1;
2014d85f69b0SMike Kravetz 	}
2015d85f69b0SMike Kravetz 
20166d76dcf4SAneesh Kumar K.V 	ret = hugetlb_cgroup_charge_cgroup(idx, pages_per_huge_page(h), &h_cg);
20178f34af6fSJianyu Zhan 	if (ret)
20188f34af6fSJianyu Zhan 		goto out_subpool_put;
20198f34af6fSJianyu Zhan 
2020a1e78772SMel Gorman 	spin_lock(&hugetlb_lock);
2021d85f69b0SMike Kravetz 	/*
2022d85f69b0SMike Kravetz 	 * glb_chg is passed to indicate whether or not a page must be taken
2023d85f69b0SMike Kravetz 	 * from the global free pool (global change).  gbl_chg == 0 indicates
2024d85f69b0SMike Kravetz 	 * a reservation exists for the allocation.
2025d85f69b0SMike Kravetz 	 */
2026d85f69b0SMike Kravetz 	page = dequeue_huge_page_vma(h, vma, addr, avoid_reserve, gbl_chg);
202781a6fcaeSJoonsoo Kim 	if (!page) {
202894ae8ba7SAneesh Kumar K.V 		spin_unlock(&hugetlb_lock);
2029099730d6SDave Hansen 		page = __alloc_buddy_huge_page_with_mpol(h, vma, addr);
20308f34af6fSJianyu Zhan 		if (!page)
20318f34af6fSJianyu Zhan 			goto out_uncharge_cgroup;
2032a88c7695SNaoya Horiguchi 		if (!avoid_reserve && vma_has_reserves(vma, gbl_chg)) {
2033a88c7695SNaoya Horiguchi 			SetPagePrivate(page);
2034a88c7695SNaoya Horiguchi 			h->resv_huge_pages--;
2035a88c7695SNaoya Horiguchi 		}
203679dbb236SAneesh Kumar K.V 		spin_lock(&hugetlb_lock);
203779dbb236SAneesh Kumar K.V 		list_move(&page->lru, &h->hugepage_activelist);
203881a6fcaeSJoonsoo Kim 		/* Fall through */
2039a1e78772SMel Gorman 	}
204081a6fcaeSJoonsoo Kim 	hugetlb_cgroup_commit_charge(idx, pages_per_huge_page(h), h_cg, page);
204181a6fcaeSJoonsoo Kim 	spin_unlock(&hugetlb_lock);
2042a1e78772SMel Gorman 
204390481622SDavid Gibson 	set_page_private(page, (unsigned long)spool);
2044a1e78772SMel Gorman 
2045d85f69b0SMike Kravetz 	map_commit = vma_commit_reservation(h, vma, addr);
2046d85f69b0SMike Kravetz 	if (unlikely(map_chg > map_commit)) {
204733039678SMike Kravetz 		/*
204833039678SMike Kravetz 		 * The page was added to the reservation map between
204933039678SMike Kravetz 		 * vma_needs_reservation and vma_commit_reservation.
205033039678SMike Kravetz 		 * This indicates a race with hugetlb_reserve_pages.
205133039678SMike Kravetz 		 * Adjust for the subpool count incremented above AND
205233039678SMike Kravetz 		 * in hugetlb_reserve_pages for the same page.  Also,
205333039678SMike Kravetz 		 * the reservation count added in hugetlb_reserve_pages
205433039678SMike Kravetz 		 * no longer applies.
205533039678SMike Kravetz 		 */
205633039678SMike Kravetz 		long rsv_adjust;
205733039678SMike Kravetz 
205833039678SMike Kravetz 		rsv_adjust = hugepage_subpool_put_pages(spool, 1);
205933039678SMike Kravetz 		hugetlb_acct_memory(h, -rsv_adjust);
206033039678SMike Kravetz 	}
20617893d1d5SAdam Litke 	return page;
20628f34af6fSJianyu Zhan 
20638f34af6fSJianyu Zhan out_uncharge_cgroup:
20648f34af6fSJianyu Zhan 	hugetlb_cgroup_uncharge_cgroup(idx, pages_per_huge_page(h), h_cg);
20658f34af6fSJianyu Zhan out_subpool_put:
2066d85f69b0SMike Kravetz 	if (map_chg || avoid_reserve)
20678f34af6fSJianyu Zhan 		hugepage_subpool_put_pages(spool, 1);
2068feba16e2SMike Kravetz 	vma_end_reservation(h, vma, addr);
20698f34af6fSJianyu Zhan 	return ERR_PTR(-ENOSPC);
2070b45b5bd6SDavid Gibson }
2071b45b5bd6SDavid Gibson 
207274060e4dSNaoya Horiguchi /*
207374060e4dSNaoya Horiguchi  * alloc_huge_page()'s wrapper which simply returns the page if allocation
207474060e4dSNaoya Horiguchi  * succeeds, otherwise NULL. This function is called from new_vma_page(),
207574060e4dSNaoya Horiguchi  * where no ERR_VALUE is expected to be returned.
207674060e4dSNaoya Horiguchi  */
207774060e4dSNaoya Horiguchi struct page *alloc_huge_page_noerr(struct vm_area_struct *vma,
207874060e4dSNaoya Horiguchi 				unsigned long addr, int avoid_reserve)
207974060e4dSNaoya Horiguchi {
208074060e4dSNaoya Horiguchi 	struct page *page = alloc_huge_page(vma, addr, avoid_reserve);
208174060e4dSNaoya Horiguchi 	if (IS_ERR(page))
208274060e4dSNaoya Horiguchi 		page = NULL;
208374060e4dSNaoya Horiguchi 	return page;
208474060e4dSNaoya Horiguchi }
208574060e4dSNaoya Horiguchi 
208691f47662SCyrill Gorcunov int __weak alloc_bootmem_huge_page(struct hstate *h)
2087aa888a74SAndi Kleen {
2088aa888a74SAndi Kleen 	struct huge_bootmem_page *m;
2089b2261026SJoonsoo Kim 	int nr_nodes, node;
2090aa888a74SAndi Kleen 
2091b2261026SJoonsoo Kim 	for_each_node_mask_to_alloc(h, nr_nodes, node, &node_states[N_MEMORY]) {
2092aa888a74SAndi Kleen 		void *addr;
2093aa888a74SAndi Kleen 
20948b89a116SGrygorii Strashko 		addr = memblock_virt_alloc_try_nid_nopanic(
20958b89a116SGrygorii Strashko 				huge_page_size(h), huge_page_size(h),
20968b89a116SGrygorii Strashko 				0, BOOTMEM_ALLOC_ACCESSIBLE, node);
2097aa888a74SAndi Kleen 		if (addr) {
2098aa888a74SAndi Kleen 			/*
2099aa888a74SAndi Kleen 			 * Use the beginning of the huge page to store the
2100aa888a74SAndi Kleen 			 * huge_bootmem_page struct (until gather_bootmem
2101aa888a74SAndi Kleen 			 * puts them into the mem_map).
2102aa888a74SAndi Kleen 			 */
2103aa888a74SAndi Kleen 			m = addr;
2104aa888a74SAndi Kleen 			goto found;
2105aa888a74SAndi Kleen 		}
2106aa888a74SAndi Kleen 	}
2107aa888a74SAndi Kleen 	return 0;
2108aa888a74SAndi Kleen 
2109aa888a74SAndi Kleen found:
2110df994eadSLuiz Capitulino 	BUG_ON(!IS_ALIGNED(virt_to_phys(m), huge_page_size(h)));
2111aa888a74SAndi Kleen 	/* Put them into a private list first because mem_map is not up yet */
2112aa888a74SAndi Kleen 	list_add(&m->list, &huge_boot_pages);
2113aa888a74SAndi Kleen 	m->hstate = h;
2114aa888a74SAndi Kleen 	return 1;
2115aa888a74SAndi Kleen }
2116aa888a74SAndi Kleen 
2117d00181b9SKirill A. Shutemov static void __init prep_compound_huge_page(struct page *page,
2118d00181b9SKirill A. Shutemov 		unsigned int order)
211918229df5SAndy Whitcroft {
212018229df5SAndy Whitcroft 	if (unlikely(order > (MAX_ORDER - 1)))
212118229df5SAndy Whitcroft 		prep_compound_gigantic_page(page, order);
212218229df5SAndy Whitcroft 	else
212318229df5SAndy Whitcroft 		prep_compound_page(page, order);
212418229df5SAndy Whitcroft }
212518229df5SAndy Whitcroft 
2126aa888a74SAndi Kleen /* Put bootmem huge pages into the standard lists after mem_map is up */
2127aa888a74SAndi Kleen static void __init gather_bootmem_prealloc(void)
2128aa888a74SAndi Kleen {
2129aa888a74SAndi Kleen 	struct huge_bootmem_page *m;
2130aa888a74SAndi Kleen 
2131aa888a74SAndi Kleen 	list_for_each_entry(m, &huge_boot_pages, list) {
2132aa888a74SAndi Kleen 		struct hstate *h = m->hstate;
2133ee8f248dSBecky Bruce 		struct page *page;
2134ee8f248dSBecky Bruce 
2135ee8f248dSBecky Bruce #ifdef CONFIG_HIGHMEM
2136ee8f248dSBecky Bruce 		page = pfn_to_page(m->phys >> PAGE_SHIFT);
21378b89a116SGrygorii Strashko 		memblock_free_late(__pa(m),
2138ee8f248dSBecky Bruce 				   sizeof(struct huge_bootmem_page));
2139ee8f248dSBecky Bruce #else
2140ee8f248dSBecky Bruce 		page = virt_to_page(m);
2141ee8f248dSBecky Bruce #endif
2142aa888a74SAndi Kleen 		WARN_ON(page_count(page) != 1);
214318229df5SAndy Whitcroft 		prep_compound_huge_page(page, h->order);
2144ef5a22beSAndrea Arcangeli 		WARN_ON(PageReserved(page));
2145aa888a74SAndi Kleen 		prep_new_huge_page(h, page, page_to_nid(page));
2146b0320c7bSRafael Aquini 		/*
2147b0320c7bSRafael Aquini 		 * If we had gigantic hugepages allocated at boot time, we need
2148b0320c7bSRafael Aquini 		 * to restore the 'stolen' pages to totalram_pages in order to
2149b0320c7bSRafael Aquini 		 * fix confusing memory reports from free(1) and another
2150b0320c7bSRafael Aquini 		 * side-effects, like CommitLimit going negative.
2151b0320c7bSRafael Aquini 		 */
2152bae7f4aeSLuiz Capitulino 		if (hstate_is_gigantic(h))
21533dcc0571SJiang Liu 			adjust_managed_page_count(page, 1 << h->order);
2154aa888a74SAndi Kleen 	}
2155aa888a74SAndi Kleen }
2156aa888a74SAndi Kleen 
21578faa8b07SAndi Kleen static void __init hugetlb_hstate_alloc_pages(struct hstate *h)
21581da177e4SLinus Torvalds {
21591da177e4SLinus Torvalds 	unsigned long i;
21601da177e4SLinus Torvalds 
2161e5ff2159SAndi Kleen 	for (i = 0; i < h->max_huge_pages; ++i) {
2162bae7f4aeSLuiz Capitulino 		if (hstate_is_gigantic(h)) {
2163aa888a74SAndi Kleen 			if (!alloc_bootmem_huge_page(h))
2164aa888a74SAndi Kleen 				break;
21659b5e5d0fSLee Schermerhorn 		} else if (!alloc_fresh_huge_page(h,
21668cebfcd0SLai Jiangshan 					 &node_states[N_MEMORY]))
21671da177e4SLinus Torvalds 			break;
216869ed779aSDavid Rientjes 		cond_resched();
21691da177e4SLinus Torvalds 	}
2170d715cf80SLiam R. Howlett 	if (i < h->max_huge_pages) {
2171d715cf80SLiam R. Howlett 		char buf[32];
2172d715cf80SLiam R. Howlett 
2173c6247f72SMatthew Wilcox 		string_get_size(huge_page_size(h), 1, STRING_UNITS_2, buf, 32);
2174d715cf80SLiam R. Howlett 		pr_warn("HugeTLB: allocating %lu of page size %s failed.  Only allocated %lu hugepages.\n",
2175d715cf80SLiam R. Howlett 			h->max_huge_pages, buf, i);
21768faa8b07SAndi Kleen 		h->max_huge_pages = i;
2177e5ff2159SAndi Kleen 	}
2178d715cf80SLiam R. Howlett }
2179e5ff2159SAndi Kleen 
2180e5ff2159SAndi Kleen static void __init hugetlb_init_hstates(void)
2181e5ff2159SAndi Kleen {
2182e5ff2159SAndi Kleen 	struct hstate *h;
2183e5ff2159SAndi Kleen 
2184e5ff2159SAndi Kleen 	for_each_hstate(h) {
2185641844f5SNaoya Horiguchi 		if (minimum_order > huge_page_order(h))
2186641844f5SNaoya Horiguchi 			minimum_order = huge_page_order(h);
2187641844f5SNaoya Horiguchi 
21888faa8b07SAndi Kleen 		/* oversize hugepages were init'ed in early boot */
2189bae7f4aeSLuiz Capitulino 		if (!hstate_is_gigantic(h))
21908faa8b07SAndi Kleen 			hugetlb_hstate_alloc_pages(h);
2191e5ff2159SAndi Kleen 	}
2192641844f5SNaoya Horiguchi 	VM_BUG_ON(minimum_order == UINT_MAX);
2193e5ff2159SAndi Kleen }
2194e5ff2159SAndi Kleen 
2195e5ff2159SAndi Kleen static void __init report_hugepages(void)
2196e5ff2159SAndi Kleen {
2197e5ff2159SAndi Kleen 	struct hstate *h;
2198e5ff2159SAndi Kleen 
2199e5ff2159SAndi Kleen 	for_each_hstate(h) {
22004abd32dbSAndi Kleen 		char buf[32];
2201c6247f72SMatthew Wilcox 
2202c6247f72SMatthew Wilcox 		string_get_size(huge_page_size(h), 1, STRING_UNITS_2, buf, 32);
2203ffb22af5SAndrew Morton 		pr_info("HugeTLB registered %s page size, pre-allocated %ld pages\n",
2204c6247f72SMatthew Wilcox 			buf, h->free_huge_pages);
2205e5ff2159SAndi Kleen 	}
2206e5ff2159SAndi Kleen }
2207e5ff2159SAndi Kleen 
22081da177e4SLinus Torvalds #ifdef CONFIG_HIGHMEM
22096ae11b27SLee Schermerhorn static void try_to_free_low(struct hstate *h, unsigned long count,
22106ae11b27SLee Schermerhorn 						nodemask_t *nodes_allowed)
22111da177e4SLinus Torvalds {
22124415cc8dSChristoph Lameter 	int i;
22134415cc8dSChristoph Lameter 
2214bae7f4aeSLuiz Capitulino 	if (hstate_is_gigantic(h))
2215aa888a74SAndi Kleen 		return;
2216aa888a74SAndi Kleen 
22176ae11b27SLee Schermerhorn 	for_each_node_mask(i, *nodes_allowed) {
22181da177e4SLinus Torvalds 		struct page *page, *next;
2219a5516438SAndi Kleen 		struct list_head *freel = &h->hugepage_freelists[i];
2220a5516438SAndi Kleen 		list_for_each_entry_safe(page, next, freel, lru) {
2221a5516438SAndi Kleen 			if (count >= h->nr_huge_pages)
22226b0c880dSAdam Litke 				return;
22231da177e4SLinus Torvalds 			if (PageHighMem(page))
22241da177e4SLinus Torvalds 				continue;
22251da177e4SLinus Torvalds 			list_del(&page->lru);
2226e5ff2159SAndi Kleen 			update_and_free_page(h, page);
2227a5516438SAndi Kleen 			h->free_huge_pages--;
2228a5516438SAndi Kleen 			h->free_huge_pages_node[page_to_nid(page)]--;
22291da177e4SLinus Torvalds 		}
22301da177e4SLinus Torvalds 	}
22311da177e4SLinus Torvalds }
22321da177e4SLinus Torvalds #else
22336ae11b27SLee Schermerhorn static inline void try_to_free_low(struct hstate *h, unsigned long count,
22346ae11b27SLee Schermerhorn 						nodemask_t *nodes_allowed)
22351da177e4SLinus Torvalds {
22361da177e4SLinus Torvalds }
22371da177e4SLinus Torvalds #endif
22381da177e4SLinus Torvalds 
223920a0307cSWu Fengguang /*
224020a0307cSWu Fengguang  * Increment or decrement surplus_huge_pages.  Keep node-specific counters
224120a0307cSWu Fengguang  * balanced by operating on them in a round-robin fashion.
224220a0307cSWu Fengguang  * Returns 1 if an adjustment was made.
224320a0307cSWu Fengguang  */
22446ae11b27SLee Schermerhorn static int adjust_pool_surplus(struct hstate *h, nodemask_t *nodes_allowed,
22456ae11b27SLee Schermerhorn 				int delta)
224620a0307cSWu Fengguang {
2247b2261026SJoonsoo Kim 	int nr_nodes, node;
224820a0307cSWu Fengguang 
224920a0307cSWu Fengguang 	VM_BUG_ON(delta != -1 && delta != 1);
225020a0307cSWu Fengguang 
2251e8c5c824SLee Schermerhorn 	if (delta < 0) {
2252b2261026SJoonsoo Kim 		for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
2253b2261026SJoonsoo Kim 			if (h->surplus_huge_pages_node[node])
2254b2261026SJoonsoo Kim 				goto found;
2255b2261026SJoonsoo Kim 		}
2256b2261026SJoonsoo Kim 	} else {
2257b2261026SJoonsoo Kim 		for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
2258b2261026SJoonsoo Kim 			if (h->surplus_huge_pages_node[node] <
2259b2261026SJoonsoo Kim 					h->nr_huge_pages_node[node])
2260b2261026SJoonsoo Kim 				goto found;
2261e8c5c824SLee Schermerhorn 		}
22629a76db09SLee Schermerhorn 	}
2263b2261026SJoonsoo Kim 	return 0;
226420a0307cSWu Fengguang 
2265b2261026SJoonsoo Kim found:
226620a0307cSWu Fengguang 	h->surplus_huge_pages += delta;
2267b2261026SJoonsoo Kim 	h->surplus_huge_pages_node[node] += delta;
2268b2261026SJoonsoo Kim 	return 1;
226920a0307cSWu Fengguang }
227020a0307cSWu Fengguang 
2271a5516438SAndi Kleen #define persistent_huge_pages(h) (h->nr_huge_pages - h->surplus_huge_pages)
22726ae11b27SLee Schermerhorn static unsigned long set_max_huge_pages(struct hstate *h, unsigned long count,
22736ae11b27SLee Schermerhorn 						nodemask_t *nodes_allowed)
22741da177e4SLinus Torvalds {
22757893d1d5SAdam Litke 	unsigned long min_count, ret;
22761da177e4SLinus Torvalds 
2277944d9fecSLuiz Capitulino 	if (hstate_is_gigantic(h) && !gigantic_page_supported())
2278aa888a74SAndi Kleen 		return h->max_huge_pages;
2279aa888a74SAndi Kleen 
22807893d1d5SAdam Litke 	/*
22817893d1d5SAdam Litke 	 * Increase the pool size
22827893d1d5SAdam Litke 	 * First take pages out of surplus state.  Then make up the
22837893d1d5SAdam Litke 	 * remaining difference by allocating fresh huge pages.
2284d1c3fb1fSNishanth Aravamudan 	 *
2285d15c7c09SNaoya Horiguchi 	 * We might race with __alloc_buddy_huge_page() here and be unable
2286d1c3fb1fSNishanth Aravamudan 	 * to convert a surplus huge page to a normal huge page. That is
2287d1c3fb1fSNishanth Aravamudan 	 * not critical, though, it just means the overall size of the
2288d1c3fb1fSNishanth Aravamudan 	 * pool might be one hugepage larger than it needs to be, but
2289d1c3fb1fSNishanth Aravamudan 	 * within all the constraints specified by the sysctls.
22907893d1d5SAdam Litke 	 */
22911da177e4SLinus Torvalds 	spin_lock(&hugetlb_lock);
2292a5516438SAndi Kleen 	while (h->surplus_huge_pages && count > persistent_huge_pages(h)) {
22936ae11b27SLee Schermerhorn 		if (!adjust_pool_surplus(h, nodes_allowed, -1))
22947893d1d5SAdam Litke 			break;
22957893d1d5SAdam Litke 	}
22967893d1d5SAdam Litke 
2297a5516438SAndi Kleen 	while (count > persistent_huge_pages(h)) {
22987893d1d5SAdam Litke 		/*
22997893d1d5SAdam Litke 		 * If this allocation races such that we no longer need the
23007893d1d5SAdam Litke 		 * page, free_huge_page will handle it by freeing the page
23017893d1d5SAdam Litke 		 * and reducing the surplus.
23027893d1d5SAdam Litke 		 */
23037893d1d5SAdam Litke 		spin_unlock(&hugetlb_lock);
2304649920c6SJia He 
2305649920c6SJia He 		/* yield cpu to avoid soft lockup */
2306649920c6SJia He 		cond_resched();
2307649920c6SJia He 
2308944d9fecSLuiz Capitulino 		if (hstate_is_gigantic(h))
2309944d9fecSLuiz Capitulino 			ret = alloc_fresh_gigantic_page(h, nodes_allowed);
2310944d9fecSLuiz Capitulino 		else
23116ae11b27SLee Schermerhorn 			ret = alloc_fresh_huge_page(h, nodes_allowed);
23127893d1d5SAdam Litke 		spin_lock(&hugetlb_lock);
23137893d1d5SAdam Litke 		if (!ret)
23147893d1d5SAdam Litke 			goto out;
23157893d1d5SAdam Litke 
2316536240f2SMel Gorman 		/* Bail for signals. Probably ctrl-c from user */
2317536240f2SMel Gorman 		if (signal_pending(current))
2318536240f2SMel Gorman 			goto out;
23197893d1d5SAdam Litke 	}
23207893d1d5SAdam Litke 
23217893d1d5SAdam Litke 	/*
23227893d1d5SAdam Litke 	 * Decrease the pool size
23237893d1d5SAdam Litke 	 * First return free pages to the buddy allocator (being careful
23247893d1d5SAdam Litke 	 * to keep enough around to satisfy reservations).  Then place
23257893d1d5SAdam Litke 	 * pages into surplus state as needed so the pool will shrink
23267893d1d5SAdam Litke 	 * to the desired size as pages become free.
2327d1c3fb1fSNishanth Aravamudan 	 *
2328d1c3fb1fSNishanth Aravamudan 	 * By placing pages into the surplus state independent of the
2329d1c3fb1fSNishanth Aravamudan 	 * overcommit value, we are allowing the surplus pool size to
2330d1c3fb1fSNishanth Aravamudan 	 * exceed overcommit. There are few sane options here. Since
2331d15c7c09SNaoya Horiguchi 	 * __alloc_buddy_huge_page() is checking the global counter,
2332d1c3fb1fSNishanth Aravamudan 	 * though, we'll note that we're not allowed to exceed surplus
2333d1c3fb1fSNishanth Aravamudan 	 * and won't grow the pool anywhere else. Not until one of the
2334d1c3fb1fSNishanth Aravamudan 	 * sysctls are changed, or the surplus pages go out of use.
23357893d1d5SAdam Litke 	 */
2336a5516438SAndi Kleen 	min_count = h->resv_huge_pages + h->nr_huge_pages - h->free_huge_pages;
23376b0c880dSAdam Litke 	min_count = max(count, min_count);
23386ae11b27SLee Schermerhorn 	try_to_free_low(h, min_count, nodes_allowed);
2339a5516438SAndi Kleen 	while (min_count < persistent_huge_pages(h)) {
23406ae11b27SLee Schermerhorn 		if (!free_pool_huge_page(h, nodes_allowed, 0))
23411da177e4SLinus Torvalds 			break;
234255f67141SMizuma, Masayoshi 		cond_resched_lock(&hugetlb_lock);
23431da177e4SLinus Torvalds 	}
2344a5516438SAndi Kleen 	while (count < persistent_huge_pages(h)) {
23456ae11b27SLee Schermerhorn 		if (!adjust_pool_surplus(h, nodes_allowed, 1))
23467893d1d5SAdam Litke 			break;
23477893d1d5SAdam Litke 	}
23487893d1d5SAdam Litke out:
2349a5516438SAndi Kleen 	ret = persistent_huge_pages(h);
23501da177e4SLinus Torvalds 	spin_unlock(&hugetlb_lock);
23517893d1d5SAdam Litke 	return ret;
23521da177e4SLinus Torvalds }
23531da177e4SLinus Torvalds 
2354a3437870SNishanth Aravamudan #define HSTATE_ATTR_RO(_name) \
2355a3437870SNishanth Aravamudan 	static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
2356a3437870SNishanth Aravamudan 
2357a3437870SNishanth Aravamudan #define HSTATE_ATTR(_name) \
2358a3437870SNishanth Aravamudan 	static struct kobj_attribute _name##_attr = \
2359a3437870SNishanth Aravamudan 		__ATTR(_name, 0644, _name##_show, _name##_store)
2360a3437870SNishanth Aravamudan 
2361a3437870SNishanth Aravamudan static struct kobject *hugepages_kobj;
2362a3437870SNishanth Aravamudan static struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
2363a3437870SNishanth Aravamudan 
23649a305230SLee Schermerhorn static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp);
23659a305230SLee Schermerhorn 
23669a305230SLee Schermerhorn static struct hstate *kobj_to_hstate(struct kobject *kobj, int *nidp)
2367a3437870SNishanth Aravamudan {
2368a3437870SNishanth Aravamudan 	int i;
23699a305230SLee Schermerhorn 
2370a3437870SNishanth Aravamudan 	for (i = 0; i < HUGE_MAX_HSTATE; i++)
23719a305230SLee Schermerhorn 		if (hstate_kobjs[i] == kobj) {
23729a305230SLee Schermerhorn 			if (nidp)
23739a305230SLee Schermerhorn 				*nidp = NUMA_NO_NODE;
2374a3437870SNishanth Aravamudan 			return &hstates[i];
23759a305230SLee Schermerhorn 		}
23769a305230SLee Schermerhorn 
23779a305230SLee Schermerhorn 	return kobj_to_node_hstate(kobj, nidp);
2378a3437870SNishanth Aravamudan }
2379a3437870SNishanth Aravamudan 
238006808b08SLee Schermerhorn static ssize_t nr_hugepages_show_common(struct kobject *kobj,
2381a3437870SNishanth Aravamudan 					struct kobj_attribute *attr, char *buf)
2382a3437870SNishanth Aravamudan {
23839a305230SLee Schermerhorn 	struct hstate *h;
23849a305230SLee Schermerhorn 	unsigned long nr_huge_pages;
23859a305230SLee Schermerhorn 	int nid;
23869a305230SLee Schermerhorn 
23879a305230SLee Schermerhorn 	h = kobj_to_hstate(kobj, &nid);
23889a305230SLee Schermerhorn 	if (nid == NUMA_NO_NODE)
23899a305230SLee Schermerhorn 		nr_huge_pages = h->nr_huge_pages;
23909a305230SLee Schermerhorn 	else
23919a305230SLee Schermerhorn 		nr_huge_pages = h->nr_huge_pages_node[nid];
23929a305230SLee Schermerhorn 
23939a305230SLee Schermerhorn 	return sprintf(buf, "%lu\n", nr_huge_pages);
2394a3437870SNishanth Aravamudan }
2395adbe8726SEric B Munson 
2396238d3c13SDavid Rientjes static ssize_t __nr_hugepages_store_common(bool obey_mempolicy,
2397238d3c13SDavid Rientjes 					   struct hstate *h, int nid,
2398238d3c13SDavid Rientjes 					   unsigned long count, size_t len)
2399a3437870SNishanth Aravamudan {
2400a3437870SNishanth Aravamudan 	int err;
2401bad44b5bSDavid Rientjes 	NODEMASK_ALLOC(nodemask_t, nodes_allowed, GFP_KERNEL | __GFP_NORETRY);
2402a3437870SNishanth Aravamudan 
2403944d9fecSLuiz Capitulino 	if (hstate_is_gigantic(h) && !gigantic_page_supported()) {
2404adbe8726SEric B Munson 		err = -EINVAL;
2405adbe8726SEric B Munson 		goto out;
2406adbe8726SEric B Munson 	}
2407adbe8726SEric B Munson 
24089a305230SLee Schermerhorn 	if (nid == NUMA_NO_NODE) {
24099a305230SLee Schermerhorn 		/*
24109a305230SLee Schermerhorn 		 * global hstate attribute
24119a305230SLee Schermerhorn 		 */
24129a305230SLee Schermerhorn 		if (!(obey_mempolicy &&
24139a305230SLee Schermerhorn 				init_nodemask_of_mempolicy(nodes_allowed))) {
241406808b08SLee Schermerhorn 			NODEMASK_FREE(nodes_allowed);
24158cebfcd0SLai Jiangshan 			nodes_allowed = &node_states[N_MEMORY];
241606808b08SLee Schermerhorn 		}
24179a305230SLee Schermerhorn 	} else if (nodes_allowed) {
24189a305230SLee Schermerhorn 		/*
24199a305230SLee Schermerhorn 		 * per node hstate attribute: adjust count to global,
24209a305230SLee Schermerhorn 		 * but restrict alloc/free to the specified node.
24219a305230SLee Schermerhorn 		 */
24229a305230SLee Schermerhorn 		count += h->nr_huge_pages - h->nr_huge_pages_node[nid];
24239a305230SLee Schermerhorn 		init_nodemask_of_node(nodes_allowed, nid);
24249a305230SLee Schermerhorn 	} else
24258cebfcd0SLai Jiangshan 		nodes_allowed = &node_states[N_MEMORY];
24269a305230SLee Schermerhorn 
242706808b08SLee Schermerhorn 	h->max_huge_pages = set_max_huge_pages(h, count, nodes_allowed);
2428a3437870SNishanth Aravamudan 
24298cebfcd0SLai Jiangshan 	if (nodes_allowed != &node_states[N_MEMORY])
243006808b08SLee Schermerhorn 		NODEMASK_FREE(nodes_allowed);
243106808b08SLee Schermerhorn 
243206808b08SLee Schermerhorn 	return len;
2433adbe8726SEric B Munson out:
2434adbe8726SEric B Munson 	NODEMASK_FREE(nodes_allowed);
2435adbe8726SEric B Munson 	return err;
243606808b08SLee Schermerhorn }
243706808b08SLee Schermerhorn 
2438238d3c13SDavid Rientjes static ssize_t nr_hugepages_store_common(bool obey_mempolicy,
2439238d3c13SDavid Rientjes 					 struct kobject *kobj, const char *buf,
2440238d3c13SDavid Rientjes 					 size_t len)
2441238d3c13SDavid Rientjes {
2442238d3c13SDavid Rientjes 	struct hstate *h;
2443238d3c13SDavid Rientjes 	unsigned long count;
2444238d3c13SDavid Rientjes 	int nid;
2445238d3c13SDavid Rientjes 	int err;
2446238d3c13SDavid Rientjes 
2447238d3c13SDavid Rientjes 	err = kstrtoul(buf, 10, &count);
2448238d3c13SDavid Rientjes 	if (err)
2449238d3c13SDavid Rientjes 		return err;
2450238d3c13SDavid Rientjes 
2451238d3c13SDavid Rientjes 	h = kobj_to_hstate(kobj, &nid);
2452238d3c13SDavid Rientjes 	return __nr_hugepages_store_common(obey_mempolicy, h, nid, count, len);
2453238d3c13SDavid Rientjes }
2454238d3c13SDavid Rientjes 
245506808b08SLee Schermerhorn static ssize_t nr_hugepages_show(struct kobject *kobj,
245606808b08SLee Schermerhorn 				       struct kobj_attribute *attr, char *buf)
245706808b08SLee Schermerhorn {
245806808b08SLee Schermerhorn 	return nr_hugepages_show_common(kobj, attr, buf);
245906808b08SLee Schermerhorn }
246006808b08SLee Schermerhorn 
246106808b08SLee Schermerhorn static ssize_t nr_hugepages_store(struct kobject *kobj,
246206808b08SLee Schermerhorn 	       struct kobj_attribute *attr, const char *buf, size_t len)
246306808b08SLee Schermerhorn {
2464238d3c13SDavid Rientjes 	return nr_hugepages_store_common(false, kobj, buf, len);
2465a3437870SNishanth Aravamudan }
2466a3437870SNishanth Aravamudan HSTATE_ATTR(nr_hugepages);
2467a3437870SNishanth Aravamudan 
246806808b08SLee Schermerhorn #ifdef CONFIG_NUMA
246906808b08SLee Schermerhorn 
247006808b08SLee Schermerhorn /*
247106808b08SLee Schermerhorn  * hstate attribute for optionally mempolicy-based constraint on persistent
247206808b08SLee Schermerhorn  * huge page alloc/free.
247306808b08SLee Schermerhorn  */
247406808b08SLee Schermerhorn static ssize_t nr_hugepages_mempolicy_show(struct kobject *kobj,
247506808b08SLee Schermerhorn 				       struct kobj_attribute *attr, char *buf)
247606808b08SLee Schermerhorn {
247706808b08SLee Schermerhorn 	return nr_hugepages_show_common(kobj, attr, buf);
247806808b08SLee Schermerhorn }
247906808b08SLee Schermerhorn 
248006808b08SLee Schermerhorn static ssize_t nr_hugepages_mempolicy_store(struct kobject *kobj,
248106808b08SLee Schermerhorn 	       struct kobj_attribute *attr, const char *buf, size_t len)
248206808b08SLee Schermerhorn {
2483238d3c13SDavid Rientjes 	return nr_hugepages_store_common(true, kobj, buf, len);
248406808b08SLee Schermerhorn }
248506808b08SLee Schermerhorn HSTATE_ATTR(nr_hugepages_mempolicy);
248606808b08SLee Schermerhorn #endif
248706808b08SLee Schermerhorn 
248806808b08SLee Schermerhorn 
2489a3437870SNishanth Aravamudan static ssize_t nr_overcommit_hugepages_show(struct kobject *kobj,
2490a3437870SNishanth Aravamudan 					struct kobj_attribute *attr, char *buf)
2491a3437870SNishanth Aravamudan {
24929a305230SLee Schermerhorn 	struct hstate *h = kobj_to_hstate(kobj, NULL);
2493a3437870SNishanth Aravamudan 	return sprintf(buf, "%lu\n", h->nr_overcommit_huge_pages);
2494a3437870SNishanth Aravamudan }
2495adbe8726SEric B Munson 
2496a3437870SNishanth Aravamudan static ssize_t nr_overcommit_hugepages_store(struct kobject *kobj,
2497a3437870SNishanth Aravamudan 		struct kobj_attribute *attr, const char *buf, size_t count)
2498a3437870SNishanth Aravamudan {
2499a3437870SNishanth Aravamudan 	int err;
2500a3437870SNishanth Aravamudan 	unsigned long input;
25019a305230SLee Schermerhorn 	struct hstate *h = kobj_to_hstate(kobj, NULL);
2502a3437870SNishanth Aravamudan 
2503bae7f4aeSLuiz Capitulino 	if (hstate_is_gigantic(h))
2504adbe8726SEric B Munson 		return -EINVAL;
2505adbe8726SEric B Munson 
25063dbb95f7SJingoo Han 	err = kstrtoul(buf, 10, &input);
2507a3437870SNishanth Aravamudan 	if (err)
250873ae31e5SEric B Munson 		return err;
2509a3437870SNishanth Aravamudan 
2510a3437870SNishanth Aravamudan 	spin_lock(&hugetlb_lock);
2511a3437870SNishanth Aravamudan 	h->nr_overcommit_huge_pages = input;
2512a3437870SNishanth Aravamudan 	spin_unlock(&hugetlb_lock);
2513a3437870SNishanth Aravamudan 
2514a3437870SNishanth Aravamudan 	return count;
2515a3437870SNishanth Aravamudan }
2516a3437870SNishanth Aravamudan HSTATE_ATTR(nr_overcommit_hugepages);
2517a3437870SNishanth Aravamudan 
2518a3437870SNishanth Aravamudan static ssize_t free_hugepages_show(struct kobject *kobj,
2519a3437870SNishanth Aravamudan 					struct kobj_attribute *attr, char *buf)
2520a3437870SNishanth Aravamudan {
25219a305230SLee Schermerhorn 	struct hstate *h;
25229a305230SLee Schermerhorn 	unsigned long free_huge_pages;
25239a305230SLee Schermerhorn 	int nid;
25249a305230SLee Schermerhorn 
25259a305230SLee Schermerhorn 	h = kobj_to_hstate(kobj, &nid);
25269a305230SLee Schermerhorn 	if (nid == NUMA_NO_NODE)
25279a305230SLee Schermerhorn 		free_huge_pages = h->free_huge_pages;
25289a305230SLee Schermerhorn 	else
25299a305230SLee Schermerhorn 		free_huge_pages = h->free_huge_pages_node[nid];
25309a305230SLee Schermerhorn 
25319a305230SLee Schermerhorn 	return sprintf(buf, "%lu\n", free_huge_pages);
2532a3437870SNishanth Aravamudan }
2533a3437870SNishanth Aravamudan HSTATE_ATTR_RO(free_hugepages);
2534a3437870SNishanth Aravamudan 
2535a3437870SNishanth Aravamudan static ssize_t resv_hugepages_show(struct kobject *kobj,
2536a3437870SNishanth Aravamudan 					struct kobj_attribute *attr, char *buf)
2537a3437870SNishanth Aravamudan {
25389a305230SLee Schermerhorn 	struct hstate *h = kobj_to_hstate(kobj, NULL);
2539a3437870SNishanth Aravamudan 	return sprintf(buf, "%lu\n", h->resv_huge_pages);
2540a3437870SNishanth Aravamudan }
2541a3437870SNishanth Aravamudan HSTATE_ATTR_RO(resv_hugepages);
2542a3437870SNishanth Aravamudan 
2543a3437870SNishanth Aravamudan static ssize_t surplus_hugepages_show(struct kobject *kobj,
2544a3437870SNishanth Aravamudan 					struct kobj_attribute *attr, char *buf)
2545a3437870SNishanth Aravamudan {
25469a305230SLee Schermerhorn 	struct hstate *h;
25479a305230SLee Schermerhorn 	unsigned long surplus_huge_pages;
25489a305230SLee Schermerhorn 	int nid;
25499a305230SLee Schermerhorn 
25509a305230SLee Schermerhorn 	h = kobj_to_hstate(kobj, &nid);
25519a305230SLee Schermerhorn 	if (nid == NUMA_NO_NODE)
25529a305230SLee Schermerhorn 		surplus_huge_pages = h->surplus_huge_pages;
25539a305230SLee Schermerhorn 	else
25549a305230SLee Schermerhorn 		surplus_huge_pages = h->surplus_huge_pages_node[nid];
25559a305230SLee Schermerhorn 
25569a305230SLee Schermerhorn 	return sprintf(buf, "%lu\n", surplus_huge_pages);
2557a3437870SNishanth Aravamudan }
2558a3437870SNishanth Aravamudan HSTATE_ATTR_RO(surplus_hugepages);
2559a3437870SNishanth Aravamudan 
2560a3437870SNishanth Aravamudan static struct attribute *hstate_attrs[] = {
2561a3437870SNishanth Aravamudan 	&nr_hugepages_attr.attr,
2562a3437870SNishanth Aravamudan 	&nr_overcommit_hugepages_attr.attr,
2563a3437870SNishanth Aravamudan 	&free_hugepages_attr.attr,
2564a3437870SNishanth Aravamudan 	&resv_hugepages_attr.attr,
2565a3437870SNishanth Aravamudan 	&surplus_hugepages_attr.attr,
256606808b08SLee Schermerhorn #ifdef CONFIG_NUMA
256706808b08SLee Schermerhorn 	&nr_hugepages_mempolicy_attr.attr,
256806808b08SLee Schermerhorn #endif
2569a3437870SNishanth Aravamudan 	NULL,
2570a3437870SNishanth Aravamudan };
2571a3437870SNishanth Aravamudan 
2572a3437870SNishanth Aravamudan static struct attribute_group hstate_attr_group = {
2573a3437870SNishanth Aravamudan 	.attrs = hstate_attrs,
2574a3437870SNishanth Aravamudan };
2575a3437870SNishanth Aravamudan 
2576094e9539SJeff Mahoney static int hugetlb_sysfs_add_hstate(struct hstate *h, struct kobject *parent,
25779a305230SLee Schermerhorn 				    struct kobject **hstate_kobjs,
25789a305230SLee Schermerhorn 				    struct attribute_group *hstate_attr_group)
2579a3437870SNishanth Aravamudan {
2580a3437870SNishanth Aravamudan 	int retval;
2581972dc4deSAneesh Kumar K.V 	int hi = hstate_index(h);
2582a3437870SNishanth Aravamudan 
25839a305230SLee Schermerhorn 	hstate_kobjs[hi] = kobject_create_and_add(h->name, parent);
25849a305230SLee Schermerhorn 	if (!hstate_kobjs[hi])
2585a3437870SNishanth Aravamudan 		return -ENOMEM;
2586a3437870SNishanth Aravamudan 
25879a305230SLee Schermerhorn 	retval = sysfs_create_group(hstate_kobjs[hi], hstate_attr_group);
2588a3437870SNishanth Aravamudan 	if (retval)
25899a305230SLee Schermerhorn 		kobject_put(hstate_kobjs[hi]);
2590a3437870SNishanth Aravamudan 
2591a3437870SNishanth Aravamudan 	return retval;
2592a3437870SNishanth Aravamudan }
2593a3437870SNishanth Aravamudan 
2594a3437870SNishanth Aravamudan static void __init hugetlb_sysfs_init(void)
2595a3437870SNishanth Aravamudan {
2596a3437870SNishanth Aravamudan 	struct hstate *h;
2597a3437870SNishanth Aravamudan 	int err;
2598a3437870SNishanth Aravamudan 
2599a3437870SNishanth Aravamudan 	hugepages_kobj = kobject_create_and_add("hugepages", mm_kobj);
2600a3437870SNishanth Aravamudan 	if (!hugepages_kobj)
2601a3437870SNishanth Aravamudan 		return;
2602a3437870SNishanth Aravamudan 
2603a3437870SNishanth Aravamudan 	for_each_hstate(h) {
26049a305230SLee Schermerhorn 		err = hugetlb_sysfs_add_hstate(h, hugepages_kobj,
26059a305230SLee Schermerhorn 					 hstate_kobjs, &hstate_attr_group);
2606a3437870SNishanth Aravamudan 		if (err)
2607ffb22af5SAndrew Morton 			pr_err("Hugetlb: Unable to add hstate %s", h->name);
2608a3437870SNishanth Aravamudan 	}
2609a3437870SNishanth Aravamudan }
2610a3437870SNishanth Aravamudan 
26119a305230SLee Schermerhorn #ifdef CONFIG_NUMA
26129a305230SLee Schermerhorn 
26139a305230SLee Schermerhorn /*
26149a305230SLee Schermerhorn  * node_hstate/s - associate per node hstate attributes, via their kobjects,
261510fbcf4cSKay Sievers  * with node devices in node_devices[] using a parallel array.  The array
261610fbcf4cSKay Sievers  * index of a node device or _hstate == node id.
261710fbcf4cSKay Sievers  * This is here to avoid any static dependency of the node device driver, in
26189a305230SLee Schermerhorn  * the base kernel, on the hugetlb module.
26199a305230SLee Schermerhorn  */
26209a305230SLee Schermerhorn struct node_hstate {
26219a305230SLee Schermerhorn 	struct kobject		*hugepages_kobj;
26229a305230SLee Schermerhorn 	struct kobject		*hstate_kobjs[HUGE_MAX_HSTATE];
26239a305230SLee Schermerhorn };
2624b4e289a6SAlexander Kuleshov static struct node_hstate node_hstates[MAX_NUMNODES];
26259a305230SLee Schermerhorn 
26269a305230SLee Schermerhorn /*
262710fbcf4cSKay Sievers  * A subset of global hstate attributes for node devices
26289a305230SLee Schermerhorn  */
26299a305230SLee Schermerhorn static struct attribute *per_node_hstate_attrs[] = {
26309a305230SLee Schermerhorn 	&nr_hugepages_attr.attr,
26319a305230SLee Schermerhorn 	&free_hugepages_attr.attr,
26329a305230SLee Schermerhorn 	&surplus_hugepages_attr.attr,
26339a305230SLee Schermerhorn 	NULL,
26349a305230SLee Schermerhorn };
26359a305230SLee Schermerhorn 
26369a305230SLee Schermerhorn static struct attribute_group per_node_hstate_attr_group = {
26379a305230SLee Schermerhorn 	.attrs = per_node_hstate_attrs,
26389a305230SLee Schermerhorn };
26399a305230SLee Schermerhorn 
26409a305230SLee Schermerhorn /*
264110fbcf4cSKay Sievers  * kobj_to_node_hstate - lookup global hstate for node device hstate attr kobj.
26429a305230SLee Schermerhorn  * Returns node id via non-NULL nidp.
26439a305230SLee Schermerhorn  */
26449a305230SLee Schermerhorn static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp)
26459a305230SLee Schermerhorn {
26469a305230SLee Schermerhorn 	int nid;
26479a305230SLee Schermerhorn 
26489a305230SLee Schermerhorn 	for (nid = 0; nid < nr_node_ids; nid++) {
26499a305230SLee Schermerhorn 		struct node_hstate *nhs = &node_hstates[nid];
26509a305230SLee Schermerhorn 		int i;
26519a305230SLee Schermerhorn 		for (i = 0; i < HUGE_MAX_HSTATE; i++)
26529a305230SLee Schermerhorn 			if (nhs->hstate_kobjs[i] == kobj) {
26539a305230SLee Schermerhorn 				if (nidp)
26549a305230SLee Schermerhorn 					*nidp = nid;
26559a305230SLee Schermerhorn 				return &hstates[i];
26569a305230SLee Schermerhorn 			}
26579a305230SLee Schermerhorn 	}
26589a305230SLee Schermerhorn 
26599a305230SLee Schermerhorn 	BUG();
26609a305230SLee Schermerhorn 	return NULL;
26619a305230SLee Schermerhorn }
26629a305230SLee Schermerhorn 
26639a305230SLee Schermerhorn /*
266410fbcf4cSKay Sievers  * Unregister hstate attributes from a single node device.
26659a305230SLee Schermerhorn  * No-op if no hstate attributes attached.
26669a305230SLee Schermerhorn  */
26673cd8b44fSClaudiu Ghioc static void hugetlb_unregister_node(struct node *node)
26689a305230SLee Schermerhorn {
26699a305230SLee Schermerhorn 	struct hstate *h;
267010fbcf4cSKay Sievers 	struct node_hstate *nhs = &node_hstates[node->dev.id];
26719a305230SLee Schermerhorn 
26729a305230SLee Schermerhorn 	if (!nhs->hugepages_kobj)
26739b5e5d0fSLee Schermerhorn 		return;		/* no hstate attributes */
26749a305230SLee Schermerhorn 
2675972dc4deSAneesh Kumar K.V 	for_each_hstate(h) {
2676972dc4deSAneesh Kumar K.V 		int idx = hstate_index(h);
2677972dc4deSAneesh Kumar K.V 		if (nhs->hstate_kobjs[idx]) {
2678972dc4deSAneesh Kumar K.V 			kobject_put(nhs->hstate_kobjs[idx]);
2679972dc4deSAneesh Kumar K.V 			nhs->hstate_kobjs[idx] = NULL;
2680972dc4deSAneesh Kumar K.V 		}
26819a305230SLee Schermerhorn 	}
26829a305230SLee Schermerhorn 
26839a305230SLee Schermerhorn 	kobject_put(nhs->hugepages_kobj);
26849a305230SLee Schermerhorn 	nhs->hugepages_kobj = NULL;
26859a305230SLee Schermerhorn }
26869a305230SLee Schermerhorn 
26879a305230SLee Schermerhorn 
26889a305230SLee Schermerhorn /*
268910fbcf4cSKay Sievers  * Register hstate attributes for a single node device.
26909a305230SLee Schermerhorn  * No-op if attributes already registered.
26919a305230SLee Schermerhorn  */
26923cd8b44fSClaudiu Ghioc static void hugetlb_register_node(struct node *node)
26939a305230SLee Schermerhorn {
26949a305230SLee Schermerhorn 	struct hstate *h;
269510fbcf4cSKay Sievers 	struct node_hstate *nhs = &node_hstates[node->dev.id];
26969a305230SLee Schermerhorn 	int err;
26979a305230SLee Schermerhorn 
26989a305230SLee Schermerhorn 	if (nhs->hugepages_kobj)
26999a305230SLee Schermerhorn 		return;		/* already allocated */
27009a305230SLee Schermerhorn 
27019a305230SLee Schermerhorn 	nhs->hugepages_kobj = kobject_create_and_add("hugepages",
270210fbcf4cSKay Sievers 							&node->dev.kobj);
27039a305230SLee Schermerhorn 	if (!nhs->hugepages_kobj)
27049a305230SLee Schermerhorn 		return;
27059a305230SLee Schermerhorn 
27069a305230SLee Schermerhorn 	for_each_hstate(h) {
27079a305230SLee Schermerhorn 		err = hugetlb_sysfs_add_hstate(h, nhs->hugepages_kobj,
27089a305230SLee Schermerhorn 						nhs->hstate_kobjs,
27099a305230SLee Schermerhorn 						&per_node_hstate_attr_group);
27109a305230SLee Schermerhorn 		if (err) {
2711ffb22af5SAndrew Morton 			pr_err("Hugetlb: Unable to add hstate %s for node %d\n",
271210fbcf4cSKay Sievers 				h->name, node->dev.id);
27139a305230SLee Schermerhorn 			hugetlb_unregister_node(node);
27149a305230SLee Schermerhorn 			break;
27159a305230SLee Schermerhorn 		}
27169a305230SLee Schermerhorn 	}
27179a305230SLee Schermerhorn }
27189a305230SLee Schermerhorn 
27199a305230SLee Schermerhorn /*
27209b5e5d0fSLee Schermerhorn  * hugetlb init time:  register hstate attributes for all registered node
272110fbcf4cSKay Sievers  * devices of nodes that have memory.  All on-line nodes should have
272210fbcf4cSKay Sievers  * registered their associated device by this time.
27239a305230SLee Schermerhorn  */
27247d9ca000SLuiz Capitulino static void __init hugetlb_register_all_nodes(void)
27259a305230SLee Schermerhorn {
27269a305230SLee Schermerhorn 	int nid;
27279a305230SLee Schermerhorn 
27288cebfcd0SLai Jiangshan 	for_each_node_state(nid, N_MEMORY) {
27298732794bSWen Congyang 		struct node *node = node_devices[nid];
273010fbcf4cSKay Sievers 		if (node->dev.id == nid)
27319a305230SLee Schermerhorn 			hugetlb_register_node(node);
27329a305230SLee Schermerhorn 	}
27339a305230SLee Schermerhorn 
27349a305230SLee Schermerhorn 	/*
273510fbcf4cSKay Sievers 	 * Let the node device driver know we're here so it can
27369a305230SLee Schermerhorn 	 * [un]register hstate attributes on node hotplug.
27379a305230SLee Schermerhorn 	 */
27389a305230SLee Schermerhorn 	register_hugetlbfs_with_node(hugetlb_register_node,
27399a305230SLee Schermerhorn 				     hugetlb_unregister_node);
27409a305230SLee Schermerhorn }
27419a305230SLee Schermerhorn #else	/* !CONFIG_NUMA */
27429a305230SLee Schermerhorn 
27439a305230SLee Schermerhorn static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp)
27449a305230SLee Schermerhorn {
27459a305230SLee Schermerhorn 	BUG();
27469a305230SLee Schermerhorn 	if (nidp)
27479a305230SLee Schermerhorn 		*nidp = -1;
27489a305230SLee Schermerhorn 	return NULL;
27499a305230SLee Schermerhorn }
27509a305230SLee Schermerhorn 
27519a305230SLee Schermerhorn static void hugetlb_register_all_nodes(void) { }
27529a305230SLee Schermerhorn 
27539a305230SLee Schermerhorn #endif
27549a305230SLee Schermerhorn 
2755a3437870SNishanth Aravamudan static int __init hugetlb_init(void)
2756a3437870SNishanth Aravamudan {
27578382d914SDavidlohr Bueso 	int i;
27588382d914SDavidlohr Bueso 
2759457c1b27SNishanth Aravamudan 	if (!hugepages_supported())
27600ef89d25SBenjamin Herrenschmidt 		return 0;
2761a3437870SNishanth Aravamudan 
2762e11bfbfcSNick Piggin 	if (!size_to_hstate(default_hstate_size)) {
2763d715cf80SLiam R. Howlett 		if (default_hstate_size != 0) {
2764d715cf80SLiam R. Howlett 			pr_err("HugeTLB: unsupported default_hugepagesz %lu. Reverting to %lu\n",
2765d715cf80SLiam R. Howlett 			       default_hstate_size, HPAGE_SIZE);
2766d715cf80SLiam R. Howlett 		}
2767d715cf80SLiam R. Howlett 
2768e11bfbfcSNick Piggin 		default_hstate_size = HPAGE_SIZE;
2769e11bfbfcSNick Piggin 		if (!size_to_hstate(default_hstate_size))
2770a3437870SNishanth Aravamudan 			hugetlb_add_hstate(HUGETLB_PAGE_ORDER);
2771a3437870SNishanth Aravamudan 	}
2772972dc4deSAneesh Kumar K.V 	default_hstate_idx = hstate_index(size_to_hstate(default_hstate_size));
2773f8b74815SVaishali Thakkar 	if (default_hstate_max_huge_pages) {
2774f8b74815SVaishali Thakkar 		if (!default_hstate.max_huge_pages)
2775e11bfbfcSNick Piggin 			default_hstate.max_huge_pages = default_hstate_max_huge_pages;
2776f8b74815SVaishali Thakkar 	}
2777a3437870SNishanth Aravamudan 
2778a3437870SNishanth Aravamudan 	hugetlb_init_hstates();
2779aa888a74SAndi Kleen 	gather_bootmem_prealloc();
2780a3437870SNishanth Aravamudan 	report_hugepages();
2781a3437870SNishanth Aravamudan 
2782a3437870SNishanth Aravamudan 	hugetlb_sysfs_init();
27839a305230SLee Schermerhorn 	hugetlb_register_all_nodes();
27847179e7bfSJianguo Wu 	hugetlb_cgroup_file_init();
27859a305230SLee Schermerhorn 
27868382d914SDavidlohr Bueso #ifdef CONFIG_SMP
27878382d914SDavidlohr Bueso 	num_fault_mutexes = roundup_pow_of_two(8 * num_possible_cpus());
27888382d914SDavidlohr Bueso #else
27898382d914SDavidlohr Bueso 	num_fault_mutexes = 1;
27908382d914SDavidlohr Bueso #endif
2791c672c7f2SMike Kravetz 	hugetlb_fault_mutex_table =
27928382d914SDavidlohr Bueso 		kmalloc(sizeof(struct mutex) * num_fault_mutexes, GFP_KERNEL);
2793c672c7f2SMike Kravetz 	BUG_ON(!hugetlb_fault_mutex_table);
27948382d914SDavidlohr Bueso 
27958382d914SDavidlohr Bueso 	for (i = 0; i < num_fault_mutexes; i++)
2796c672c7f2SMike Kravetz 		mutex_init(&hugetlb_fault_mutex_table[i]);
2797a3437870SNishanth Aravamudan 	return 0;
2798a3437870SNishanth Aravamudan }
27993e89e1c5SPaul Gortmaker subsys_initcall(hugetlb_init);
2800a3437870SNishanth Aravamudan 
2801a3437870SNishanth Aravamudan /* Should be called on processing a hugepagesz=... option */
28029fee021dSVaishali Thakkar void __init hugetlb_bad_size(void)
28039fee021dSVaishali Thakkar {
28049fee021dSVaishali Thakkar 	parsed_valid_hugepagesz = false;
28059fee021dSVaishali Thakkar }
28069fee021dSVaishali Thakkar 
2807d00181b9SKirill A. Shutemov void __init hugetlb_add_hstate(unsigned int order)
2808a3437870SNishanth Aravamudan {
2809a3437870SNishanth Aravamudan 	struct hstate *h;
28108faa8b07SAndi Kleen 	unsigned long i;
28118faa8b07SAndi Kleen 
2812a3437870SNishanth Aravamudan 	if (size_to_hstate(PAGE_SIZE << order)) {
2813598d8091SJoe Perches 		pr_warn("hugepagesz= specified twice, ignoring\n");
2814a3437870SNishanth Aravamudan 		return;
2815a3437870SNishanth Aravamudan 	}
281647d38344SAneesh Kumar K.V 	BUG_ON(hugetlb_max_hstate >= HUGE_MAX_HSTATE);
2817a3437870SNishanth Aravamudan 	BUG_ON(order == 0);
281847d38344SAneesh Kumar K.V 	h = &hstates[hugetlb_max_hstate++];
2819a3437870SNishanth Aravamudan 	h->order = order;
2820a3437870SNishanth Aravamudan 	h->mask = ~((1ULL << (order + PAGE_SHIFT)) - 1);
28218faa8b07SAndi Kleen 	h->nr_huge_pages = 0;
28228faa8b07SAndi Kleen 	h->free_huge_pages = 0;
28238faa8b07SAndi Kleen 	for (i = 0; i < MAX_NUMNODES; ++i)
28248faa8b07SAndi Kleen 		INIT_LIST_HEAD(&h->hugepage_freelists[i]);
28250edaecfaSAneesh Kumar K.V 	INIT_LIST_HEAD(&h->hugepage_activelist);
282654f18d35SAndrew Morton 	h->next_nid_to_alloc = first_memory_node;
282754f18d35SAndrew Morton 	h->next_nid_to_free = first_memory_node;
2828a3437870SNishanth Aravamudan 	snprintf(h->name, HSTATE_NAME_LEN, "hugepages-%lukB",
2829a3437870SNishanth Aravamudan 					huge_page_size(h)/1024);
28308faa8b07SAndi Kleen 
2831a3437870SNishanth Aravamudan 	parsed_hstate = h;
2832a3437870SNishanth Aravamudan }
2833a3437870SNishanth Aravamudan 
2834e11bfbfcSNick Piggin static int __init hugetlb_nrpages_setup(char *s)
2835a3437870SNishanth Aravamudan {
2836a3437870SNishanth Aravamudan 	unsigned long *mhp;
28378faa8b07SAndi Kleen 	static unsigned long *last_mhp;
2838a3437870SNishanth Aravamudan 
28399fee021dSVaishali Thakkar 	if (!parsed_valid_hugepagesz) {
28409fee021dSVaishali Thakkar 		pr_warn("hugepages = %s preceded by "
28419fee021dSVaishali Thakkar 			"an unsupported hugepagesz, ignoring\n", s);
28429fee021dSVaishali Thakkar 		parsed_valid_hugepagesz = true;
28439fee021dSVaishali Thakkar 		return 1;
28449fee021dSVaishali Thakkar 	}
2845a3437870SNishanth Aravamudan 	/*
284647d38344SAneesh Kumar K.V 	 * !hugetlb_max_hstate means we haven't parsed a hugepagesz= parameter yet,
2847a3437870SNishanth Aravamudan 	 * so this hugepages= parameter goes to the "default hstate".
2848a3437870SNishanth Aravamudan 	 */
28499fee021dSVaishali Thakkar 	else if (!hugetlb_max_hstate)
2850a3437870SNishanth Aravamudan 		mhp = &default_hstate_max_huge_pages;
2851a3437870SNishanth Aravamudan 	else
2852a3437870SNishanth Aravamudan 		mhp = &parsed_hstate->max_huge_pages;
2853a3437870SNishanth Aravamudan 
28548faa8b07SAndi Kleen 	if (mhp == last_mhp) {
2855598d8091SJoe Perches 		pr_warn("hugepages= specified twice without interleaving hugepagesz=, ignoring\n");
28568faa8b07SAndi Kleen 		return 1;
28578faa8b07SAndi Kleen 	}
28588faa8b07SAndi Kleen 
2859a3437870SNishanth Aravamudan 	if (sscanf(s, "%lu", mhp) <= 0)
2860a3437870SNishanth Aravamudan 		*mhp = 0;
2861a3437870SNishanth Aravamudan 
28628faa8b07SAndi Kleen 	/*
28638faa8b07SAndi Kleen 	 * Global state is always initialized later in hugetlb_init.
28648faa8b07SAndi Kleen 	 * But we need to allocate >= MAX_ORDER hstates here early to still
28658faa8b07SAndi Kleen 	 * use the bootmem allocator.
28668faa8b07SAndi Kleen 	 */
286747d38344SAneesh Kumar K.V 	if (hugetlb_max_hstate && parsed_hstate->order >= MAX_ORDER)
28688faa8b07SAndi Kleen 		hugetlb_hstate_alloc_pages(parsed_hstate);
28698faa8b07SAndi Kleen 
28708faa8b07SAndi Kleen 	last_mhp = mhp;
28718faa8b07SAndi Kleen 
2872a3437870SNishanth Aravamudan 	return 1;
2873a3437870SNishanth Aravamudan }
2874e11bfbfcSNick Piggin __setup("hugepages=", hugetlb_nrpages_setup);
2875e11bfbfcSNick Piggin 
2876e11bfbfcSNick Piggin static int __init hugetlb_default_setup(char *s)
2877e11bfbfcSNick Piggin {
2878e11bfbfcSNick Piggin 	default_hstate_size = memparse(s, &s);
2879e11bfbfcSNick Piggin 	return 1;
2880e11bfbfcSNick Piggin }
2881e11bfbfcSNick Piggin __setup("default_hugepagesz=", hugetlb_default_setup);
2882a3437870SNishanth Aravamudan 
28838a213460SNishanth Aravamudan static unsigned int cpuset_mems_nr(unsigned int *array)
28848a213460SNishanth Aravamudan {
28858a213460SNishanth Aravamudan 	int node;
28868a213460SNishanth Aravamudan 	unsigned int nr = 0;
28878a213460SNishanth Aravamudan 
28888a213460SNishanth Aravamudan 	for_each_node_mask(node, cpuset_current_mems_allowed)
28898a213460SNishanth Aravamudan 		nr += array[node];
28908a213460SNishanth Aravamudan 
28918a213460SNishanth Aravamudan 	return nr;
28928a213460SNishanth Aravamudan }
28938a213460SNishanth Aravamudan 
28948a213460SNishanth Aravamudan #ifdef CONFIG_SYSCTL
289506808b08SLee Schermerhorn static int hugetlb_sysctl_handler_common(bool obey_mempolicy,
289606808b08SLee Schermerhorn 			 struct ctl_table *table, int write,
289706808b08SLee Schermerhorn 			 void __user *buffer, size_t *length, loff_t *ppos)
28981da177e4SLinus Torvalds {
2899e5ff2159SAndi Kleen 	struct hstate *h = &default_hstate;
2900238d3c13SDavid Rientjes 	unsigned long tmp = h->max_huge_pages;
290108d4a246SMichal Hocko 	int ret;
2902e5ff2159SAndi Kleen 
2903457c1b27SNishanth Aravamudan 	if (!hugepages_supported())
290486613628SJan Stancek 		return -EOPNOTSUPP;
2905457c1b27SNishanth Aravamudan 
2906e5ff2159SAndi Kleen 	table->data = &tmp;
2907e5ff2159SAndi Kleen 	table->maxlen = sizeof(unsigned long);
290808d4a246SMichal Hocko 	ret = proc_doulongvec_minmax(table, write, buffer, length, ppos);
290908d4a246SMichal Hocko 	if (ret)
291008d4a246SMichal Hocko 		goto out;
2911e5ff2159SAndi Kleen 
2912238d3c13SDavid Rientjes 	if (write)
2913238d3c13SDavid Rientjes 		ret = __nr_hugepages_store_common(obey_mempolicy, h,
2914238d3c13SDavid Rientjes 						  NUMA_NO_NODE, tmp, *length);
291508d4a246SMichal Hocko out:
291608d4a246SMichal Hocko 	return ret;
29171da177e4SLinus Torvalds }
2918396faf03SMel Gorman 
291906808b08SLee Schermerhorn int hugetlb_sysctl_handler(struct ctl_table *table, int write,
292006808b08SLee Schermerhorn 			  void __user *buffer, size_t *length, loff_t *ppos)
292106808b08SLee Schermerhorn {
292206808b08SLee Schermerhorn 
292306808b08SLee Schermerhorn 	return hugetlb_sysctl_handler_common(false, table, write,
292406808b08SLee Schermerhorn 							buffer, length, ppos);
292506808b08SLee Schermerhorn }
292606808b08SLee Schermerhorn 
292706808b08SLee Schermerhorn #ifdef CONFIG_NUMA
292806808b08SLee Schermerhorn int hugetlb_mempolicy_sysctl_handler(struct ctl_table *table, int write,
292906808b08SLee Schermerhorn 			  void __user *buffer, size_t *length, loff_t *ppos)
293006808b08SLee Schermerhorn {
293106808b08SLee Schermerhorn 	return hugetlb_sysctl_handler_common(true, table, write,
293206808b08SLee Schermerhorn 							buffer, length, ppos);
293306808b08SLee Schermerhorn }
293406808b08SLee Schermerhorn #endif /* CONFIG_NUMA */
293506808b08SLee Schermerhorn 
2936a3d0c6aaSNishanth Aravamudan int hugetlb_overcommit_handler(struct ctl_table *table, int write,
29378d65af78SAlexey Dobriyan 			void __user *buffer,
2938a3d0c6aaSNishanth Aravamudan 			size_t *length, loff_t *ppos)
2939a3d0c6aaSNishanth Aravamudan {
2940a5516438SAndi Kleen 	struct hstate *h = &default_hstate;
2941e5ff2159SAndi Kleen 	unsigned long tmp;
294208d4a246SMichal Hocko 	int ret;
2943e5ff2159SAndi Kleen 
2944457c1b27SNishanth Aravamudan 	if (!hugepages_supported())
294586613628SJan Stancek 		return -EOPNOTSUPP;
2946457c1b27SNishanth Aravamudan 
2947e5ff2159SAndi Kleen 	tmp = h->nr_overcommit_huge_pages;
2948e5ff2159SAndi Kleen 
2949bae7f4aeSLuiz Capitulino 	if (write && hstate_is_gigantic(h))
2950adbe8726SEric B Munson 		return -EINVAL;
2951adbe8726SEric B Munson 
2952e5ff2159SAndi Kleen 	table->data = &tmp;
2953e5ff2159SAndi Kleen 	table->maxlen = sizeof(unsigned long);
295408d4a246SMichal Hocko 	ret = proc_doulongvec_minmax(table, write, buffer, length, ppos);
295508d4a246SMichal Hocko 	if (ret)
295608d4a246SMichal Hocko 		goto out;
2957e5ff2159SAndi Kleen 
2958e5ff2159SAndi Kleen 	if (write) {
2959064d9efeSNishanth Aravamudan 		spin_lock(&hugetlb_lock);
2960e5ff2159SAndi Kleen 		h->nr_overcommit_huge_pages = tmp;
2961a3d0c6aaSNishanth Aravamudan 		spin_unlock(&hugetlb_lock);
2962e5ff2159SAndi Kleen 	}
296308d4a246SMichal Hocko out:
296408d4a246SMichal Hocko 	return ret;
2965a3d0c6aaSNishanth Aravamudan }
2966a3d0c6aaSNishanth Aravamudan 
29671da177e4SLinus Torvalds #endif /* CONFIG_SYSCTL */
29681da177e4SLinus Torvalds 
2969e1759c21SAlexey Dobriyan void hugetlb_report_meminfo(struct seq_file *m)
29701da177e4SLinus Torvalds {
2971a5516438SAndi Kleen 	struct hstate *h = &default_hstate;
2972457c1b27SNishanth Aravamudan 	if (!hugepages_supported())
2973457c1b27SNishanth Aravamudan 		return;
2974e1759c21SAlexey Dobriyan 	seq_printf(m,
29751da177e4SLinus Torvalds 			"HugePages_Total:   %5lu\n"
29761da177e4SLinus Torvalds 			"HugePages_Free:    %5lu\n"
2977b45b5bd6SDavid Gibson 			"HugePages_Rsvd:    %5lu\n"
29787893d1d5SAdam Litke 			"HugePages_Surp:    %5lu\n"
29794f98a2feSRik van Riel 			"Hugepagesize:   %8lu kB\n",
2980a5516438SAndi Kleen 			h->nr_huge_pages,
2981a5516438SAndi Kleen 			h->free_huge_pages,
2982a5516438SAndi Kleen 			h->resv_huge_pages,
2983a5516438SAndi Kleen 			h->surplus_huge_pages,
2984a5516438SAndi Kleen 			1UL << (huge_page_order(h) + PAGE_SHIFT - 10));
29851da177e4SLinus Torvalds }
29861da177e4SLinus Torvalds 
29871da177e4SLinus Torvalds int hugetlb_report_node_meminfo(int nid, char *buf)
29881da177e4SLinus Torvalds {
2989a5516438SAndi Kleen 	struct hstate *h = &default_hstate;
2990457c1b27SNishanth Aravamudan 	if (!hugepages_supported())
2991457c1b27SNishanth Aravamudan 		return 0;
29921da177e4SLinus Torvalds 	return sprintf(buf,
29931da177e4SLinus Torvalds 		"Node %d HugePages_Total: %5u\n"
2994a1de0919SNishanth Aravamudan 		"Node %d HugePages_Free:  %5u\n"
2995a1de0919SNishanth Aravamudan 		"Node %d HugePages_Surp:  %5u\n",
2996a5516438SAndi Kleen 		nid, h->nr_huge_pages_node[nid],
2997a5516438SAndi Kleen 		nid, h->free_huge_pages_node[nid],
2998a5516438SAndi Kleen 		nid, h->surplus_huge_pages_node[nid]);
29991da177e4SLinus Torvalds }
30001da177e4SLinus Torvalds 
3001949f7ec5SDavid Rientjes void hugetlb_show_meminfo(void)
3002949f7ec5SDavid Rientjes {
3003949f7ec5SDavid Rientjes 	struct hstate *h;
3004949f7ec5SDavid Rientjes 	int nid;
3005949f7ec5SDavid Rientjes 
3006457c1b27SNishanth Aravamudan 	if (!hugepages_supported())
3007457c1b27SNishanth Aravamudan 		return;
3008457c1b27SNishanth Aravamudan 
3009949f7ec5SDavid Rientjes 	for_each_node_state(nid, N_MEMORY)
3010949f7ec5SDavid Rientjes 		for_each_hstate(h)
3011949f7ec5SDavid Rientjes 			pr_info("Node %d hugepages_total=%u hugepages_free=%u hugepages_surp=%u hugepages_size=%lukB\n",
3012949f7ec5SDavid Rientjes 				nid,
3013949f7ec5SDavid Rientjes 				h->nr_huge_pages_node[nid],
3014949f7ec5SDavid Rientjes 				h->free_huge_pages_node[nid],
3015949f7ec5SDavid Rientjes 				h->surplus_huge_pages_node[nid],
3016949f7ec5SDavid Rientjes 				1UL << (huge_page_order(h) + PAGE_SHIFT - 10));
3017949f7ec5SDavid Rientjes }
3018949f7ec5SDavid Rientjes 
30195d317b2bSNaoya Horiguchi void hugetlb_report_usage(struct seq_file *m, struct mm_struct *mm)
30205d317b2bSNaoya Horiguchi {
30215d317b2bSNaoya Horiguchi 	seq_printf(m, "HugetlbPages:\t%8lu kB\n",
30225d317b2bSNaoya Horiguchi 		   atomic_long_read(&mm->hugetlb_usage) << (PAGE_SHIFT - 10));
30235d317b2bSNaoya Horiguchi }
30245d317b2bSNaoya Horiguchi 
30251da177e4SLinus Torvalds /* Return the number pages of memory we physically have, in PAGE_SIZE units. */
30261da177e4SLinus Torvalds unsigned long hugetlb_total_pages(void)
30271da177e4SLinus Torvalds {
3028d0028588SWanpeng Li 	struct hstate *h;
3029d0028588SWanpeng Li 	unsigned long nr_total_pages = 0;
3030d0028588SWanpeng Li 
3031d0028588SWanpeng Li 	for_each_hstate(h)
3032d0028588SWanpeng Li 		nr_total_pages += h->nr_huge_pages * pages_per_huge_page(h);
3033d0028588SWanpeng Li 	return nr_total_pages;
30341da177e4SLinus Torvalds }
30351da177e4SLinus Torvalds 
3036a5516438SAndi Kleen static int hugetlb_acct_memory(struct hstate *h, long delta)
3037fc1b8a73SMel Gorman {
3038fc1b8a73SMel Gorman 	int ret = -ENOMEM;
3039fc1b8a73SMel Gorman 
3040fc1b8a73SMel Gorman 	spin_lock(&hugetlb_lock);
3041fc1b8a73SMel Gorman 	/*
3042fc1b8a73SMel Gorman 	 * When cpuset is configured, it breaks the strict hugetlb page
3043fc1b8a73SMel Gorman 	 * reservation as the accounting is done on a global variable. Such
3044fc1b8a73SMel Gorman 	 * reservation is completely rubbish in the presence of cpuset because
3045fc1b8a73SMel Gorman 	 * the reservation is not checked against page availability for the
3046fc1b8a73SMel Gorman 	 * current cpuset. Application can still potentially OOM'ed by kernel
3047fc1b8a73SMel Gorman 	 * with lack of free htlb page in cpuset that the task is in.
3048fc1b8a73SMel Gorman 	 * Attempt to enforce strict accounting with cpuset is almost
3049fc1b8a73SMel Gorman 	 * impossible (or too ugly) because cpuset is too fluid that
3050fc1b8a73SMel Gorman 	 * task or memory node can be dynamically moved between cpusets.
3051fc1b8a73SMel Gorman 	 *
3052fc1b8a73SMel Gorman 	 * The change of semantics for shared hugetlb mapping with cpuset is
3053fc1b8a73SMel Gorman 	 * undesirable. However, in order to preserve some of the semantics,
3054fc1b8a73SMel Gorman 	 * we fall back to check against current free page availability as
3055fc1b8a73SMel Gorman 	 * a best attempt and hopefully to minimize the impact of changing
3056fc1b8a73SMel Gorman 	 * semantics that cpuset has.
3057fc1b8a73SMel Gorman 	 */
3058fc1b8a73SMel Gorman 	if (delta > 0) {
3059a5516438SAndi Kleen 		if (gather_surplus_pages(h, delta) < 0)
3060fc1b8a73SMel Gorman 			goto out;
3061fc1b8a73SMel Gorman 
3062a5516438SAndi Kleen 		if (delta > cpuset_mems_nr(h->free_huge_pages_node)) {
3063a5516438SAndi Kleen 			return_unused_surplus_pages(h, delta);
3064fc1b8a73SMel Gorman 			goto out;
3065fc1b8a73SMel Gorman 		}
3066fc1b8a73SMel Gorman 	}
3067fc1b8a73SMel Gorman 
3068fc1b8a73SMel Gorman 	ret = 0;
3069fc1b8a73SMel Gorman 	if (delta < 0)
3070a5516438SAndi Kleen 		return_unused_surplus_pages(h, (unsigned long) -delta);
3071fc1b8a73SMel Gorman 
3072fc1b8a73SMel Gorman out:
3073fc1b8a73SMel Gorman 	spin_unlock(&hugetlb_lock);
3074fc1b8a73SMel Gorman 	return ret;
3075fc1b8a73SMel Gorman }
3076fc1b8a73SMel Gorman 
307784afd99bSAndy Whitcroft static void hugetlb_vm_op_open(struct vm_area_struct *vma)
307884afd99bSAndy Whitcroft {
3079f522c3acSJoonsoo Kim 	struct resv_map *resv = vma_resv_map(vma);
308084afd99bSAndy Whitcroft 
308184afd99bSAndy Whitcroft 	/*
308284afd99bSAndy Whitcroft 	 * This new VMA should share its siblings reservation map if present.
308384afd99bSAndy Whitcroft 	 * The VMA will only ever have a valid reservation map pointer where
308484afd99bSAndy Whitcroft 	 * it is being copied for another still existing VMA.  As that VMA
308525985edcSLucas De Marchi 	 * has a reference to the reservation map it cannot disappear until
308684afd99bSAndy Whitcroft 	 * after this open call completes.  It is therefore safe to take a
308784afd99bSAndy Whitcroft 	 * new reference here without additional locking.
308884afd99bSAndy Whitcroft 	 */
30894e35f483SJoonsoo Kim 	if (resv && is_vma_resv_set(vma, HPAGE_RESV_OWNER))
3090f522c3acSJoonsoo Kim 		kref_get(&resv->refs);
309184afd99bSAndy Whitcroft }
309284afd99bSAndy Whitcroft 
3093a1e78772SMel Gorman static void hugetlb_vm_op_close(struct vm_area_struct *vma)
3094a1e78772SMel Gorman {
3095a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
3096f522c3acSJoonsoo Kim 	struct resv_map *resv = vma_resv_map(vma);
309790481622SDavid Gibson 	struct hugepage_subpool *spool = subpool_vma(vma);
30984e35f483SJoonsoo Kim 	unsigned long reserve, start, end;
30991c5ecae3SMike Kravetz 	long gbl_reserve;
310084afd99bSAndy Whitcroft 
31014e35f483SJoonsoo Kim 	if (!resv || !is_vma_resv_set(vma, HPAGE_RESV_OWNER))
31024e35f483SJoonsoo Kim 		return;
31034e35f483SJoonsoo Kim 
3104a5516438SAndi Kleen 	start = vma_hugecache_offset(h, vma, vma->vm_start);
3105a5516438SAndi Kleen 	end = vma_hugecache_offset(h, vma, vma->vm_end);
310684afd99bSAndy Whitcroft 
31074e35f483SJoonsoo Kim 	reserve = (end - start) - region_count(resv, start, end);
310884afd99bSAndy Whitcroft 
3109f031dd27SJoonsoo Kim 	kref_put(&resv->refs, resv_map_release);
311084afd99bSAndy Whitcroft 
31117251ff78SAdam Litke 	if (reserve) {
31121c5ecae3SMike Kravetz 		/*
31131c5ecae3SMike Kravetz 		 * Decrement reserve counts.  The global reserve count may be
31141c5ecae3SMike Kravetz 		 * adjusted if the subpool has a minimum size.
31151c5ecae3SMike Kravetz 		 */
31161c5ecae3SMike Kravetz 		gbl_reserve = hugepage_subpool_put_pages(spool, reserve);
31171c5ecae3SMike Kravetz 		hugetlb_acct_memory(h, -gbl_reserve);
31187251ff78SAdam Litke 	}
3119a1e78772SMel Gorman }
3120a1e78772SMel Gorman 
31211da177e4SLinus Torvalds /*
31221da177e4SLinus Torvalds  * We cannot handle pagefaults against hugetlb pages at all.  They cause
31231da177e4SLinus Torvalds  * handle_mm_fault() to try to instantiate regular-sized pages in the
31241da177e4SLinus Torvalds  * hugegpage VMA.  do_page_fault() is supposed to trap this, so BUG is we get
31251da177e4SLinus Torvalds  * this far.
31261da177e4SLinus Torvalds  */
312711bac800SDave Jiang static int hugetlb_vm_op_fault(struct vm_fault *vmf)
31281da177e4SLinus Torvalds {
31291da177e4SLinus Torvalds 	BUG();
3130d0217ac0SNick Piggin 	return 0;
31311da177e4SLinus Torvalds }
31321da177e4SLinus Torvalds 
3133f0f37e2fSAlexey Dobriyan const struct vm_operations_struct hugetlb_vm_ops = {
3134d0217ac0SNick Piggin 	.fault = hugetlb_vm_op_fault,
313584afd99bSAndy Whitcroft 	.open = hugetlb_vm_op_open,
3136a1e78772SMel Gorman 	.close = hugetlb_vm_op_close,
31371da177e4SLinus Torvalds };
31381da177e4SLinus Torvalds 
31391e8f889bSDavid Gibson static pte_t make_huge_pte(struct vm_area_struct *vma, struct page *page,
31401e8f889bSDavid Gibson 				int writable)
314163551ae0SDavid Gibson {
314263551ae0SDavid Gibson 	pte_t entry;
314363551ae0SDavid Gibson 
31441e8f889bSDavid Gibson 	if (writable) {
3145106c992aSGerald Schaefer 		entry = huge_pte_mkwrite(huge_pte_mkdirty(mk_huge_pte(page,
3146106c992aSGerald Schaefer 					 vma->vm_page_prot)));
314763551ae0SDavid Gibson 	} else {
3148106c992aSGerald Schaefer 		entry = huge_pte_wrprotect(mk_huge_pte(page,
3149106c992aSGerald Schaefer 					   vma->vm_page_prot));
315063551ae0SDavid Gibson 	}
315163551ae0SDavid Gibson 	entry = pte_mkyoung(entry);
315263551ae0SDavid Gibson 	entry = pte_mkhuge(entry);
3153d9ed9faaSChris Metcalf 	entry = arch_make_huge_pte(entry, vma, page, writable);
315463551ae0SDavid Gibson 
315563551ae0SDavid Gibson 	return entry;
315663551ae0SDavid Gibson }
315763551ae0SDavid Gibson 
31581e8f889bSDavid Gibson static void set_huge_ptep_writable(struct vm_area_struct *vma,
31591e8f889bSDavid Gibson 				   unsigned long address, pte_t *ptep)
31601e8f889bSDavid Gibson {
31611e8f889bSDavid Gibson 	pte_t entry;
31621e8f889bSDavid Gibson 
3163106c992aSGerald Schaefer 	entry = huge_pte_mkwrite(huge_pte_mkdirty(huge_ptep_get(ptep)));
316432f84528SChris Forbes 	if (huge_ptep_set_access_flags(vma, address, ptep, entry, 1))
31654b3073e1SRussell King 		update_mmu_cache(vma, address, ptep);
31661e8f889bSDavid Gibson }
31671e8f889bSDavid Gibson 
3168d5ed7444SAneesh Kumar K.V bool is_hugetlb_entry_migration(pte_t pte)
31694a705fefSNaoya Horiguchi {
31704a705fefSNaoya Horiguchi 	swp_entry_t swp;
31714a705fefSNaoya Horiguchi 
31724a705fefSNaoya Horiguchi 	if (huge_pte_none(pte) || pte_present(pte))
3173d5ed7444SAneesh Kumar K.V 		return false;
31744a705fefSNaoya Horiguchi 	swp = pte_to_swp_entry(pte);
31754a705fefSNaoya Horiguchi 	if (non_swap_entry(swp) && is_migration_entry(swp))
3176d5ed7444SAneesh Kumar K.V 		return true;
31774a705fefSNaoya Horiguchi 	else
3178d5ed7444SAneesh Kumar K.V 		return false;
31794a705fefSNaoya Horiguchi }
31804a705fefSNaoya Horiguchi 
31814a705fefSNaoya Horiguchi static int is_hugetlb_entry_hwpoisoned(pte_t pte)
31824a705fefSNaoya Horiguchi {
31834a705fefSNaoya Horiguchi 	swp_entry_t swp;
31844a705fefSNaoya Horiguchi 
31854a705fefSNaoya Horiguchi 	if (huge_pte_none(pte) || pte_present(pte))
31864a705fefSNaoya Horiguchi 		return 0;
31874a705fefSNaoya Horiguchi 	swp = pte_to_swp_entry(pte);
31884a705fefSNaoya Horiguchi 	if (non_swap_entry(swp) && is_hwpoison_entry(swp))
31894a705fefSNaoya Horiguchi 		return 1;
31904a705fefSNaoya Horiguchi 	else
31914a705fefSNaoya Horiguchi 		return 0;
31924a705fefSNaoya Horiguchi }
31931e8f889bSDavid Gibson 
319463551ae0SDavid Gibson int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
319563551ae0SDavid Gibson 			    struct vm_area_struct *vma)
319663551ae0SDavid Gibson {
319763551ae0SDavid Gibson 	pte_t *src_pte, *dst_pte, entry;
319863551ae0SDavid Gibson 	struct page *ptepage;
31991c59827dSHugh Dickins 	unsigned long addr;
32001e8f889bSDavid Gibson 	int cow;
3201a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
3202a5516438SAndi Kleen 	unsigned long sz = huge_page_size(h);
3203e8569dd2SAndreas Sandberg 	unsigned long mmun_start;	/* For mmu_notifiers */
3204e8569dd2SAndreas Sandberg 	unsigned long mmun_end;		/* For mmu_notifiers */
3205e8569dd2SAndreas Sandberg 	int ret = 0;
32061e8f889bSDavid Gibson 
32071e8f889bSDavid Gibson 	cow = (vma->vm_flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE;
320863551ae0SDavid Gibson 
3209e8569dd2SAndreas Sandberg 	mmun_start = vma->vm_start;
3210e8569dd2SAndreas Sandberg 	mmun_end = vma->vm_end;
3211e8569dd2SAndreas Sandberg 	if (cow)
3212e8569dd2SAndreas Sandberg 		mmu_notifier_invalidate_range_start(src, mmun_start, mmun_end);
3213e8569dd2SAndreas Sandberg 
3214a5516438SAndi Kleen 	for (addr = vma->vm_start; addr < vma->vm_end; addr += sz) {
3215cb900f41SKirill A. Shutemov 		spinlock_t *src_ptl, *dst_ptl;
32167868a208SPunit Agrawal 		src_pte = huge_pte_offset(src, addr, sz);
3217c74df32cSHugh Dickins 		if (!src_pte)
3218c74df32cSHugh Dickins 			continue;
3219a5516438SAndi Kleen 		dst_pte = huge_pte_alloc(dst, addr, sz);
3220e8569dd2SAndreas Sandberg 		if (!dst_pte) {
3221e8569dd2SAndreas Sandberg 			ret = -ENOMEM;
3222e8569dd2SAndreas Sandberg 			break;
3223e8569dd2SAndreas Sandberg 		}
3224c5c99429SLarry Woodman 
3225c5c99429SLarry Woodman 		/* If the pagetables are shared don't copy or take references */
3226c5c99429SLarry Woodman 		if (dst_pte == src_pte)
3227c5c99429SLarry Woodman 			continue;
3228c5c99429SLarry Woodman 
3229cb900f41SKirill A. Shutemov 		dst_ptl = huge_pte_lock(h, dst, dst_pte);
3230cb900f41SKirill A. Shutemov 		src_ptl = huge_pte_lockptr(h, src, src_pte);
3231cb900f41SKirill A. Shutemov 		spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
32324a705fefSNaoya Horiguchi 		entry = huge_ptep_get(src_pte);
32334a705fefSNaoya Horiguchi 		if (huge_pte_none(entry)) { /* skip none entry */
32344a705fefSNaoya Horiguchi 			;
32354a705fefSNaoya Horiguchi 		} else if (unlikely(is_hugetlb_entry_migration(entry) ||
32364a705fefSNaoya Horiguchi 				    is_hugetlb_entry_hwpoisoned(entry))) {
32374a705fefSNaoya Horiguchi 			swp_entry_t swp_entry = pte_to_swp_entry(entry);
32384a705fefSNaoya Horiguchi 
32394a705fefSNaoya Horiguchi 			if (is_write_migration_entry(swp_entry) && cow) {
32404a705fefSNaoya Horiguchi 				/*
32414a705fefSNaoya Horiguchi 				 * COW mappings require pages in both
32424a705fefSNaoya Horiguchi 				 * parent and child to be set to read.
32434a705fefSNaoya Horiguchi 				 */
32444a705fefSNaoya Horiguchi 				make_migration_entry_read(&swp_entry);
32454a705fefSNaoya Horiguchi 				entry = swp_entry_to_pte(swp_entry);
3246e5251fd4SPunit Agrawal 				set_huge_swap_pte_at(src, addr, src_pte,
3247e5251fd4SPunit Agrawal 						     entry, sz);
32484a705fefSNaoya Horiguchi 			}
3249e5251fd4SPunit Agrawal 			set_huge_swap_pte_at(dst, addr, dst_pte, entry, sz);
32504a705fefSNaoya Horiguchi 		} else {
325134ee645eSJoerg Roedel 			if (cow) {
32527f2e9525SGerald Schaefer 				huge_ptep_set_wrprotect(src, addr, src_pte);
325334ee645eSJoerg Roedel 				mmu_notifier_invalidate_range(src, mmun_start,
325434ee645eSJoerg Roedel 								   mmun_end);
325534ee645eSJoerg Roedel 			}
32560253d634SNaoya Horiguchi 			entry = huge_ptep_get(src_pte);
325763551ae0SDavid Gibson 			ptepage = pte_page(entry);
325863551ae0SDavid Gibson 			get_page(ptepage);
325953f9263bSKirill A. Shutemov 			page_dup_rmap(ptepage, true);
326063551ae0SDavid Gibson 			set_huge_pte_at(dst, addr, dst_pte, entry);
32615d317b2bSNaoya Horiguchi 			hugetlb_count_add(pages_per_huge_page(h), dst);
32621c59827dSHugh Dickins 		}
3263cb900f41SKirill A. Shutemov 		spin_unlock(src_ptl);
3264cb900f41SKirill A. Shutemov 		spin_unlock(dst_ptl);
326563551ae0SDavid Gibson 	}
326663551ae0SDavid Gibson 
3267e8569dd2SAndreas Sandberg 	if (cow)
3268e8569dd2SAndreas Sandberg 		mmu_notifier_invalidate_range_end(src, mmun_start, mmun_end);
3269e8569dd2SAndreas Sandberg 
3270e8569dd2SAndreas Sandberg 	return ret;
327163551ae0SDavid Gibson }
327263551ae0SDavid Gibson 
327324669e58SAneesh Kumar K.V void __unmap_hugepage_range(struct mmu_gather *tlb, struct vm_area_struct *vma,
327424669e58SAneesh Kumar K.V 			    unsigned long start, unsigned long end,
327524669e58SAneesh Kumar K.V 			    struct page *ref_page)
327663551ae0SDavid Gibson {
327763551ae0SDavid Gibson 	struct mm_struct *mm = vma->vm_mm;
327863551ae0SDavid Gibson 	unsigned long address;
3279c7546f8fSDavid Gibson 	pte_t *ptep;
328063551ae0SDavid Gibson 	pte_t pte;
3281cb900f41SKirill A. Shutemov 	spinlock_t *ptl;
328263551ae0SDavid Gibson 	struct page *page;
3283a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
3284a5516438SAndi Kleen 	unsigned long sz = huge_page_size(h);
32852ec74c3eSSagi Grimberg 	const unsigned long mmun_start = start;	/* For mmu_notifiers */
32862ec74c3eSSagi Grimberg 	const unsigned long mmun_end   = end;	/* For mmu_notifiers */
3287a5516438SAndi Kleen 
328863551ae0SDavid Gibson 	WARN_ON(!is_vm_hugetlb_page(vma));
3289a5516438SAndi Kleen 	BUG_ON(start & ~huge_page_mask(h));
3290a5516438SAndi Kleen 	BUG_ON(end & ~huge_page_mask(h));
329163551ae0SDavid Gibson 
329207e32661SAneesh Kumar K.V 	/*
329307e32661SAneesh Kumar K.V 	 * This is a hugetlb vma, all the pte entries should point
329407e32661SAneesh Kumar K.V 	 * to huge page.
329507e32661SAneesh Kumar K.V 	 */
329607e32661SAneesh Kumar K.V 	tlb_remove_check_page_size_change(tlb, sz);
329724669e58SAneesh Kumar K.V 	tlb_start_vma(tlb, vma);
32982ec74c3eSSagi Grimberg 	mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
3299569f48b8SHillf Danton 	address = start;
3300569f48b8SHillf Danton 	for (; address < end; address += sz) {
33017868a208SPunit Agrawal 		ptep = huge_pte_offset(mm, address, sz);
3302c7546f8fSDavid Gibson 		if (!ptep)
3303c7546f8fSDavid Gibson 			continue;
3304c7546f8fSDavid Gibson 
3305cb900f41SKirill A. Shutemov 		ptl = huge_pte_lock(h, mm, ptep);
330631d49da5SAneesh Kumar K.V 		if (huge_pmd_unshare(mm, &address, ptep)) {
330731d49da5SAneesh Kumar K.V 			spin_unlock(ptl);
330831d49da5SAneesh Kumar K.V 			continue;
330931d49da5SAneesh Kumar K.V 		}
331039dde65cSChen, Kenneth W 
33116629326bSHillf Danton 		pte = huge_ptep_get(ptep);
331231d49da5SAneesh Kumar K.V 		if (huge_pte_none(pte)) {
331331d49da5SAneesh Kumar K.V 			spin_unlock(ptl);
331431d49da5SAneesh Kumar K.V 			continue;
331531d49da5SAneesh Kumar K.V 		}
33166629326bSHillf Danton 
33176629326bSHillf Danton 		/*
33189fbc1f63SNaoya Horiguchi 		 * Migrating hugepage or HWPoisoned hugepage is already
33199fbc1f63SNaoya Horiguchi 		 * unmapped and its refcount is dropped, so just clear pte here.
33206629326bSHillf Danton 		 */
33219fbc1f63SNaoya Horiguchi 		if (unlikely(!pte_present(pte))) {
33229386fac3SPunit Agrawal 			huge_pte_clear(mm, address, ptep, sz);
332331d49da5SAneesh Kumar K.V 			spin_unlock(ptl);
332431d49da5SAneesh Kumar K.V 			continue;
33258c4894c6SNaoya Horiguchi 		}
33266629326bSHillf Danton 
33276629326bSHillf Danton 		page = pte_page(pte);
332804f2cbe3SMel Gorman 		/*
332904f2cbe3SMel Gorman 		 * If a reference page is supplied, it is because a specific
333004f2cbe3SMel Gorman 		 * page is being unmapped, not a range. Ensure the page we
333104f2cbe3SMel Gorman 		 * are about to unmap is the actual page of interest.
333204f2cbe3SMel Gorman 		 */
333304f2cbe3SMel Gorman 		if (ref_page) {
333431d49da5SAneesh Kumar K.V 			if (page != ref_page) {
333531d49da5SAneesh Kumar K.V 				spin_unlock(ptl);
333631d49da5SAneesh Kumar K.V 				continue;
333731d49da5SAneesh Kumar K.V 			}
333804f2cbe3SMel Gorman 			/*
333904f2cbe3SMel Gorman 			 * Mark the VMA as having unmapped its page so that
334004f2cbe3SMel Gorman 			 * future faults in this VMA will fail rather than
334104f2cbe3SMel Gorman 			 * looking like data was lost
334204f2cbe3SMel Gorman 			 */
334304f2cbe3SMel Gorman 			set_vma_resv_flags(vma, HPAGE_RESV_UNMAPPED);
334404f2cbe3SMel Gorman 		}
334504f2cbe3SMel Gorman 
3346c7546f8fSDavid Gibson 		pte = huge_ptep_get_and_clear(mm, address, ptep);
3347b528e4b6SAneesh Kumar K.V 		tlb_remove_huge_tlb_entry(h, tlb, ptep, address);
3348106c992aSGerald Schaefer 		if (huge_pte_dirty(pte))
33496649a386SKen Chen 			set_page_dirty(page);
33509e81130bSHillf Danton 
33515d317b2bSNaoya Horiguchi 		hugetlb_count_sub(pages_per_huge_page(h), mm);
3352d281ee61SKirill A. Shutemov 		page_remove_rmap(page, true);
335331d49da5SAneesh Kumar K.V 
3354cb900f41SKirill A. Shutemov 		spin_unlock(ptl);
3355e77b0852SAneesh Kumar K.V 		tlb_remove_page_size(tlb, page, huge_page_size(h));
335624669e58SAneesh Kumar K.V 		/*
335731d49da5SAneesh Kumar K.V 		 * Bail out after unmapping reference page if supplied
335824669e58SAneesh Kumar K.V 		 */
335931d49da5SAneesh Kumar K.V 		if (ref_page)
336031d49da5SAneesh Kumar K.V 			break;
3361fe1668aeSChen, Kenneth W 	}
33622ec74c3eSSagi Grimberg 	mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
336324669e58SAneesh Kumar K.V 	tlb_end_vma(tlb, vma);
33641da177e4SLinus Torvalds }
336563551ae0SDavid Gibson 
3366d833352aSMel Gorman void __unmap_hugepage_range_final(struct mmu_gather *tlb,
3367d833352aSMel Gorman 			  struct vm_area_struct *vma, unsigned long start,
3368d833352aSMel Gorman 			  unsigned long end, struct page *ref_page)
3369d833352aSMel Gorman {
3370d833352aSMel Gorman 	__unmap_hugepage_range(tlb, vma, start, end, ref_page);
3371d833352aSMel Gorman 
3372d833352aSMel Gorman 	/*
3373d833352aSMel Gorman 	 * Clear this flag so that x86's huge_pmd_share page_table_shareable
3374d833352aSMel Gorman 	 * test will fail on a vma being torn down, and not grab a page table
3375d833352aSMel Gorman 	 * on its way out.  We're lucky that the flag has such an appropriate
3376d833352aSMel Gorman 	 * name, and can in fact be safely cleared here. We could clear it
3377d833352aSMel Gorman 	 * before the __unmap_hugepage_range above, but all that's necessary
3378c8c06efaSDavidlohr Bueso 	 * is to clear it before releasing the i_mmap_rwsem. This works
3379d833352aSMel Gorman 	 * because in the context this is called, the VMA is about to be
3380c8c06efaSDavidlohr Bueso 	 * destroyed and the i_mmap_rwsem is held.
3381d833352aSMel Gorman 	 */
3382d833352aSMel Gorman 	vma->vm_flags &= ~VM_MAYSHARE;
3383d833352aSMel Gorman }
3384d833352aSMel Gorman 
3385502717f4SChen, Kenneth W void unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
338604f2cbe3SMel Gorman 			  unsigned long end, struct page *ref_page)
3387502717f4SChen, Kenneth W {
338824669e58SAneesh Kumar K.V 	struct mm_struct *mm;
338924669e58SAneesh Kumar K.V 	struct mmu_gather tlb;
339024669e58SAneesh Kumar K.V 
339124669e58SAneesh Kumar K.V 	mm = vma->vm_mm;
339224669e58SAneesh Kumar K.V 
33932b047252SLinus Torvalds 	tlb_gather_mmu(&tlb, mm, start, end);
339424669e58SAneesh Kumar K.V 	__unmap_hugepage_range(&tlb, vma, start, end, ref_page);
339524669e58SAneesh Kumar K.V 	tlb_finish_mmu(&tlb, start, end);
3396502717f4SChen, Kenneth W }
3397502717f4SChen, Kenneth W 
339804f2cbe3SMel Gorman /*
339904f2cbe3SMel Gorman  * This is called when the original mapper is failing to COW a MAP_PRIVATE
340004f2cbe3SMel Gorman  * mappping it owns the reserve page for. The intention is to unmap the page
340104f2cbe3SMel Gorman  * from other VMAs and let the children be SIGKILLed if they are faulting the
340204f2cbe3SMel Gorman  * same region.
340304f2cbe3SMel Gorman  */
34042f4612afSDavidlohr Bueso static void unmap_ref_private(struct mm_struct *mm, struct vm_area_struct *vma,
34052a4b3dedSHarvey Harrison 			      struct page *page, unsigned long address)
340604f2cbe3SMel Gorman {
34077526674dSAdam Litke 	struct hstate *h = hstate_vma(vma);
340804f2cbe3SMel Gorman 	struct vm_area_struct *iter_vma;
340904f2cbe3SMel Gorman 	struct address_space *mapping;
341004f2cbe3SMel Gorman 	pgoff_t pgoff;
341104f2cbe3SMel Gorman 
341204f2cbe3SMel Gorman 	/*
341304f2cbe3SMel Gorman 	 * vm_pgoff is in PAGE_SIZE units, hence the different calculation
341404f2cbe3SMel Gorman 	 * from page cache lookup which is in HPAGE_SIZE units.
341504f2cbe3SMel Gorman 	 */
34167526674dSAdam Litke 	address = address & huge_page_mask(h);
341736e4f20aSMichal Hocko 	pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) +
341836e4f20aSMichal Hocko 			vma->vm_pgoff;
341993c76a3dSAl Viro 	mapping = vma->vm_file->f_mapping;
342004f2cbe3SMel Gorman 
34214eb2b1dcSMel Gorman 	/*
34224eb2b1dcSMel Gorman 	 * Take the mapping lock for the duration of the table walk. As
34234eb2b1dcSMel Gorman 	 * this mapping should be shared between all the VMAs,
34244eb2b1dcSMel Gorman 	 * __unmap_hugepage_range() is called as the lock is already held
34254eb2b1dcSMel Gorman 	 */
342683cde9e8SDavidlohr Bueso 	i_mmap_lock_write(mapping);
34276b2dbba8SMichel Lespinasse 	vma_interval_tree_foreach(iter_vma, &mapping->i_mmap, pgoff, pgoff) {
342804f2cbe3SMel Gorman 		/* Do not unmap the current VMA */
342904f2cbe3SMel Gorman 		if (iter_vma == vma)
343004f2cbe3SMel Gorman 			continue;
343104f2cbe3SMel Gorman 
343204f2cbe3SMel Gorman 		/*
34332f84a899SMel Gorman 		 * Shared VMAs have their own reserves and do not affect
34342f84a899SMel Gorman 		 * MAP_PRIVATE accounting but it is possible that a shared
34352f84a899SMel Gorman 		 * VMA is using the same page so check and skip such VMAs.
34362f84a899SMel Gorman 		 */
34372f84a899SMel Gorman 		if (iter_vma->vm_flags & VM_MAYSHARE)
34382f84a899SMel Gorman 			continue;
34392f84a899SMel Gorman 
34402f84a899SMel Gorman 		/*
344104f2cbe3SMel Gorman 		 * Unmap the page from other VMAs without their own reserves.
344204f2cbe3SMel Gorman 		 * They get marked to be SIGKILLed if they fault in these
344304f2cbe3SMel Gorman 		 * areas. This is because a future no-page fault on this VMA
344404f2cbe3SMel Gorman 		 * could insert a zeroed page instead of the data existing
344504f2cbe3SMel Gorman 		 * from the time of fork. This would look like data corruption
344604f2cbe3SMel Gorman 		 */
344704f2cbe3SMel Gorman 		if (!is_vma_resv_set(iter_vma, HPAGE_RESV_OWNER))
344824669e58SAneesh Kumar K.V 			unmap_hugepage_range(iter_vma, address,
344924669e58SAneesh Kumar K.V 					     address + huge_page_size(h), page);
345004f2cbe3SMel Gorman 	}
345183cde9e8SDavidlohr Bueso 	i_mmap_unlock_write(mapping);
345204f2cbe3SMel Gorman }
345304f2cbe3SMel Gorman 
34540fe6e20bSNaoya Horiguchi /*
34550fe6e20bSNaoya Horiguchi  * Hugetlb_cow() should be called with page lock of the original hugepage held.
3456ef009b25SMichal Hocko  * Called with hugetlb_instantiation_mutex held and pte_page locked so we
3457ef009b25SMichal Hocko  * cannot race with other handlers or page migration.
3458ef009b25SMichal Hocko  * Keep the pte_same checks anyway to make transition from the mutex easier.
34590fe6e20bSNaoya Horiguchi  */
34601e8f889bSDavid Gibson static int hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma,
34613999f52eSAneesh Kumar K.V 		       unsigned long address, pte_t *ptep,
3462cb900f41SKirill A. Shutemov 		       struct page *pagecache_page, spinlock_t *ptl)
34631e8f889bSDavid Gibson {
34643999f52eSAneesh Kumar K.V 	pte_t pte;
3465a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
34661e8f889bSDavid Gibson 	struct page *old_page, *new_page;
3467ad4404a2SDavidlohr Bueso 	int ret = 0, outside_reserve = 0;
34682ec74c3eSSagi Grimberg 	unsigned long mmun_start;	/* For mmu_notifiers */
34692ec74c3eSSagi Grimberg 	unsigned long mmun_end;		/* For mmu_notifiers */
34701e8f889bSDavid Gibson 
34713999f52eSAneesh Kumar K.V 	pte = huge_ptep_get(ptep);
34721e8f889bSDavid Gibson 	old_page = pte_page(pte);
34731e8f889bSDavid Gibson 
347404f2cbe3SMel Gorman retry_avoidcopy:
34751e8f889bSDavid Gibson 	/* If no-one else is actually using this page, avoid the copy
34761e8f889bSDavid Gibson 	 * and just make the page writable */
347737a2140dSJoonsoo Kim 	if (page_mapcount(old_page) == 1 && PageAnon(old_page)) {
34785a49973dSHugh Dickins 		page_move_anon_rmap(old_page, vma);
34791e8f889bSDavid Gibson 		set_huge_ptep_writable(vma, address, ptep);
348083c54070SNick Piggin 		return 0;
34811e8f889bSDavid Gibson 	}
34821e8f889bSDavid Gibson 
348304f2cbe3SMel Gorman 	/*
348404f2cbe3SMel Gorman 	 * If the process that created a MAP_PRIVATE mapping is about to
348504f2cbe3SMel Gorman 	 * perform a COW due to a shared page count, attempt to satisfy
348604f2cbe3SMel Gorman 	 * the allocation without using the existing reserves. The pagecache
348704f2cbe3SMel Gorman 	 * page is used to determine if the reserve at this address was
348804f2cbe3SMel Gorman 	 * consumed or not. If reserves were used, a partial faulted mapping
348904f2cbe3SMel Gorman 	 * at the time of fork() could consume its reserves on COW instead
349004f2cbe3SMel Gorman 	 * of the full address range.
349104f2cbe3SMel Gorman 	 */
34925944d011SJoonsoo Kim 	if (is_vma_resv_set(vma, HPAGE_RESV_OWNER) &&
349304f2cbe3SMel Gorman 			old_page != pagecache_page)
349404f2cbe3SMel Gorman 		outside_reserve = 1;
349504f2cbe3SMel Gorman 
349609cbfeafSKirill A. Shutemov 	get_page(old_page);
3497b76c8cfbSLarry Woodman 
3498ad4404a2SDavidlohr Bueso 	/*
3499ad4404a2SDavidlohr Bueso 	 * Drop page table lock as buddy allocator may be called. It will
3500ad4404a2SDavidlohr Bueso 	 * be acquired again before returning to the caller, as expected.
3501ad4404a2SDavidlohr Bueso 	 */
3502cb900f41SKirill A. Shutemov 	spin_unlock(ptl);
350304f2cbe3SMel Gorman 	new_page = alloc_huge_page(vma, address, outside_reserve);
35041e8f889bSDavid Gibson 
35052fc39cecSAdam Litke 	if (IS_ERR(new_page)) {
350604f2cbe3SMel Gorman 		/*
350704f2cbe3SMel Gorman 		 * If a process owning a MAP_PRIVATE mapping fails to COW,
350804f2cbe3SMel Gorman 		 * it is due to references held by a child and an insufficient
350904f2cbe3SMel Gorman 		 * huge page pool. To guarantee the original mappers
351004f2cbe3SMel Gorman 		 * reliability, unmap the page from child processes. The child
351104f2cbe3SMel Gorman 		 * may get SIGKILLed if it later faults.
351204f2cbe3SMel Gorman 		 */
351304f2cbe3SMel Gorman 		if (outside_reserve) {
351409cbfeafSKirill A. Shutemov 			put_page(old_page);
351504f2cbe3SMel Gorman 			BUG_ON(huge_pte_none(pte));
35162f4612afSDavidlohr Bueso 			unmap_ref_private(mm, vma, old_page, address);
351704f2cbe3SMel Gorman 			BUG_ON(huge_pte_none(pte));
3518cb900f41SKirill A. Shutemov 			spin_lock(ptl);
35197868a208SPunit Agrawal 			ptep = huge_pte_offset(mm, address & huge_page_mask(h),
35207868a208SPunit Agrawal 					       huge_page_size(h));
3521a9af0c5dSNaoya Horiguchi 			if (likely(ptep &&
3522a9af0c5dSNaoya Horiguchi 				   pte_same(huge_ptep_get(ptep), pte)))
352304f2cbe3SMel Gorman 				goto retry_avoidcopy;
3524a734bcc8SHillf Danton 			/*
3525cb900f41SKirill A. Shutemov 			 * race occurs while re-acquiring page table
3526cb900f41SKirill A. Shutemov 			 * lock, and our job is done.
3527a734bcc8SHillf Danton 			 */
3528a734bcc8SHillf Danton 			return 0;
352904f2cbe3SMel Gorman 		}
353004f2cbe3SMel Gorman 
3531ad4404a2SDavidlohr Bueso 		ret = (PTR_ERR(new_page) == -ENOMEM) ?
3532ad4404a2SDavidlohr Bueso 			VM_FAULT_OOM : VM_FAULT_SIGBUS;
3533ad4404a2SDavidlohr Bueso 		goto out_release_old;
35341e8f889bSDavid Gibson 	}
35351e8f889bSDavid Gibson 
35360fe6e20bSNaoya Horiguchi 	/*
35370fe6e20bSNaoya Horiguchi 	 * When the original hugepage is shared one, it does not have
35380fe6e20bSNaoya Horiguchi 	 * anon_vma prepared.
35390fe6e20bSNaoya Horiguchi 	 */
354044e2aa93SDean Nelson 	if (unlikely(anon_vma_prepare(vma))) {
3541ad4404a2SDavidlohr Bueso 		ret = VM_FAULT_OOM;
3542ad4404a2SDavidlohr Bueso 		goto out_release_all;
354344e2aa93SDean Nelson 	}
35440fe6e20bSNaoya Horiguchi 
354547ad8475SAndrea Arcangeli 	copy_user_huge_page(new_page, old_page, address, vma,
354647ad8475SAndrea Arcangeli 			    pages_per_huge_page(h));
35470ed361deSNick Piggin 	__SetPageUptodate(new_page);
3548bcc54222SNaoya Horiguchi 	set_page_huge_active(new_page);
35491e8f889bSDavid Gibson 
35502ec74c3eSSagi Grimberg 	mmun_start = address & huge_page_mask(h);
35512ec74c3eSSagi Grimberg 	mmun_end = mmun_start + huge_page_size(h);
35522ec74c3eSSagi Grimberg 	mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
3553ad4404a2SDavidlohr Bueso 
3554b76c8cfbSLarry Woodman 	/*
3555cb900f41SKirill A. Shutemov 	 * Retake the page table lock to check for racing updates
3556b76c8cfbSLarry Woodman 	 * before the page tables are altered
3557b76c8cfbSLarry Woodman 	 */
3558cb900f41SKirill A. Shutemov 	spin_lock(ptl);
35597868a208SPunit Agrawal 	ptep = huge_pte_offset(mm, address & huge_page_mask(h),
35607868a208SPunit Agrawal 			       huge_page_size(h));
3561a9af0c5dSNaoya Horiguchi 	if (likely(ptep && pte_same(huge_ptep_get(ptep), pte))) {
356207443a85SJoonsoo Kim 		ClearPagePrivate(new_page);
356307443a85SJoonsoo Kim 
35641e8f889bSDavid Gibson 		/* Break COW */
35658fe627ecSGerald Schaefer 		huge_ptep_clear_flush(vma, address, ptep);
356634ee645eSJoerg Roedel 		mmu_notifier_invalidate_range(mm, mmun_start, mmun_end);
35671e8f889bSDavid Gibson 		set_huge_pte_at(mm, address, ptep,
35681e8f889bSDavid Gibson 				make_huge_pte(vma, new_page, 1));
3569d281ee61SKirill A. Shutemov 		page_remove_rmap(old_page, true);
3570cd67f0d2SNaoya Horiguchi 		hugepage_add_new_anon_rmap(new_page, vma, address);
35711e8f889bSDavid Gibson 		/* Make the old page be freed below */
35721e8f889bSDavid Gibson 		new_page = old_page;
35731e8f889bSDavid Gibson 	}
3574cb900f41SKirill A. Shutemov 	spin_unlock(ptl);
35752ec74c3eSSagi Grimberg 	mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
3576ad4404a2SDavidlohr Bueso out_release_all:
357796b96a96SMike Kravetz 	restore_reserve_on_error(h, vma, address, new_page);
357809cbfeafSKirill A. Shutemov 	put_page(new_page);
3579ad4404a2SDavidlohr Bueso out_release_old:
358009cbfeafSKirill A. Shutemov 	put_page(old_page);
35818312034fSJoonsoo Kim 
3582ad4404a2SDavidlohr Bueso 	spin_lock(ptl); /* Caller expects lock to be held */
3583ad4404a2SDavidlohr Bueso 	return ret;
35841e8f889bSDavid Gibson }
35851e8f889bSDavid Gibson 
358604f2cbe3SMel Gorman /* Return the pagecache page at a given address within a VMA */
3587a5516438SAndi Kleen static struct page *hugetlbfs_pagecache_page(struct hstate *h,
3588a5516438SAndi Kleen 			struct vm_area_struct *vma, unsigned long address)
358904f2cbe3SMel Gorman {
359004f2cbe3SMel Gorman 	struct address_space *mapping;
3591e7c4b0bfSAndy Whitcroft 	pgoff_t idx;
359204f2cbe3SMel Gorman 
359304f2cbe3SMel Gorman 	mapping = vma->vm_file->f_mapping;
3594a5516438SAndi Kleen 	idx = vma_hugecache_offset(h, vma, address);
359504f2cbe3SMel Gorman 
359604f2cbe3SMel Gorman 	return find_lock_page(mapping, idx);
359704f2cbe3SMel Gorman }
359804f2cbe3SMel Gorman 
35993ae77f43SHugh Dickins /*
36003ae77f43SHugh Dickins  * Return whether there is a pagecache page to back given address within VMA.
36013ae77f43SHugh Dickins  * Caller follow_hugetlb_page() holds page_table_lock so we cannot lock_page.
36023ae77f43SHugh Dickins  */
36033ae77f43SHugh Dickins static bool hugetlbfs_pagecache_present(struct hstate *h,
36042a15efc9SHugh Dickins 			struct vm_area_struct *vma, unsigned long address)
36052a15efc9SHugh Dickins {
36062a15efc9SHugh Dickins 	struct address_space *mapping;
36072a15efc9SHugh Dickins 	pgoff_t idx;
36082a15efc9SHugh Dickins 	struct page *page;
36092a15efc9SHugh Dickins 
36102a15efc9SHugh Dickins 	mapping = vma->vm_file->f_mapping;
36112a15efc9SHugh Dickins 	idx = vma_hugecache_offset(h, vma, address);
36122a15efc9SHugh Dickins 
36132a15efc9SHugh Dickins 	page = find_get_page(mapping, idx);
36142a15efc9SHugh Dickins 	if (page)
36152a15efc9SHugh Dickins 		put_page(page);
36162a15efc9SHugh Dickins 	return page != NULL;
36172a15efc9SHugh Dickins }
36182a15efc9SHugh Dickins 
3619ab76ad54SMike Kravetz int huge_add_to_page_cache(struct page *page, struct address_space *mapping,
3620ab76ad54SMike Kravetz 			   pgoff_t idx)
3621ab76ad54SMike Kravetz {
3622ab76ad54SMike Kravetz 	struct inode *inode = mapping->host;
3623ab76ad54SMike Kravetz 	struct hstate *h = hstate_inode(inode);
3624ab76ad54SMike Kravetz 	int err = add_to_page_cache(page, mapping, idx, GFP_KERNEL);
3625ab76ad54SMike Kravetz 
3626ab76ad54SMike Kravetz 	if (err)
3627ab76ad54SMike Kravetz 		return err;
3628ab76ad54SMike Kravetz 	ClearPagePrivate(page);
3629ab76ad54SMike Kravetz 
3630ab76ad54SMike Kravetz 	spin_lock(&inode->i_lock);
3631ab76ad54SMike Kravetz 	inode->i_blocks += blocks_per_huge_page(h);
3632ab76ad54SMike Kravetz 	spin_unlock(&inode->i_lock);
3633ab76ad54SMike Kravetz 	return 0;
3634ab76ad54SMike Kravetz }
3635ab76ad54SMike Kravetz 
3636a1ed3ddaSRobert P. J. Day static int hugetlb_no_page(struct mm_struct *mm, struct vm_area_struct *vma,
36378382d914SDavidlohr Bueso 			   struct address_space *mapping, pgoff_t idx,
3638788c7df4SHugh Dickins 			   unsigned long address, pte_t *ptep, unsigned int flags)
3639ac9b9c66SHugh Dickins {
3640a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
3641ac9b9c66SHugh Dickins 	int ret = VM_FAULT_SIGBUS;
3642409eb8c2SHillf Danton 	int anon_rmap = 0;
36434c887265SAdam Litke 	unsigned long size;
36444c887265SAdam Litke 	struct page *page;
36451e8f889bSDavid Gibson 	pte_t new_pte;
3646cb900f41SKirill A. Shutemov 	spinlock_t *ptl;
36474c887265SAdam Litke 
364804f2cbe3SMel Gorman 	/*
364904f2cbe3SMel Gorman 	 * Currently, we are forced to kill the process in the event the
365004f2cbe3SMel Gorman 	 * original mapper has unmapped pages from the child due to a failed
365125985edcSLucas De Marchi 	 * COW. Warn that such a situation has occurred as it may not be obvious
365204f2cbe3SMel Gorman 	 */
365304f2cbe3SMel Gorman 	if (is_vma_resv_set(vma, HPAGE_RESV_UNMAPPED)) {
3654910154d5SGeoffrey Thomas 		pr_warn_ratelimited("PID %d killed due to inadequate hugepage pool\n",
365504f2cbe3SMel Gorman 			   current->pid);
365604f2cbe3SMel Gorman 		return ret;
365704f2cbe3SMel Gorman 	}
365804f2cbe3SMel Gorman 
36594c887265SAdam Litke 	/*
36604c887265SAdam Litke 	 * Use page lock to guard against racing truncation
36614c887265SAdam Litke 	 * before we get page_table_lock.
36624c887265SAdam Litke 	 */
36636bda666aSChristoph Lameter retry:
36646bda666aSChristoph Lameter 	page = find_lock_page(mapping, idx);
36656bda666aSChristoph Lameter 	if (!page) {
3666a5516438SAndi Kleen 		size = i_size_read(mapping->host) >> huge_page_shift(h);
3667ebed4bfcSHugh Dickins 		if (idx >= size)
3668ebed4bfcSHugh Dickins 			goto out;
36691a1aad8aSMike Kravetz 
36701a1aad8aSMike Kravetz 		/*
36711a1aad8aSMike Kravetz 		 * Check for page in userfault range
36721a1aad8aSMike Kravetz 		 */
36731a1aad8aSMike Kravetz 		if (userfaultfd_missing(vma)) {
36741a1aad8aSMike Kravetz 			u32 hash;
36751a1aad8aSMike Kravetz 			struct vm_fault vmf = {
36761a1aad8aSMike Kravetz 				.vma = vma,
36771a1aad8aSMike Kravetz 				.address = address,
36781a1aad8aSMike Kravetz 				.flags = flags,
36791a1aad8aSMike Kravetz 				/*
36801a1aad8aSMike Kravetz 				 * Hard to debug if it ends up being
36811a1aad8aSMike Kravetz 				 * used by a callee that assumes
36821a1aad8aSMike Kravetz 				 * something about the other
36831a1aad8aSMike Kravetz 				 * uninitialized fields... same as in
36841a1aad8aSMike Kravetz 				 * memory.c
36851a1aad8aSMike Kravetz 				 */
36861a1aad8aSMike Kravetz 			};
36871a1aad8aSMike Kravetz 
36881a1aad8aSMike Kravetz 			/*
36891a1aad8aSMike Kravetz 			 * hugetlb_fault_mutex must be dropped before
36901a1aad8aSMike Kravetz 			 * handling userfault.  Reacquire after handling
36911a1aad8aSMike Kravetz 			 * fault to make calling code simpler.
36921a1aad8aSMike Kravetz 			 */
36931a1aad8aSMike Kravetz 			hash = hugetlb_fault_mutex_hash(h, mm, vma, mapping,
36941a1aad8aSMike Kravetz 							idx, address);
36951a1aad8aSMike Kravetz 			mutex_unlock(&hugetlb_fault_mutex_table[hash]);
36961a1aad8aSMike Kravetz 			ret = handle_userfault(&vmf, VM_UFFD_MISSING);
36971a1aad8aSMike Kravetz 			mutex_lock(&hugetlb_fault_mutex_table[hash]);
36981a1aad8aSMike Kravetz 			goto out;
36991a1aad8aSMike Kravetz 		}
37001a1aad8aSMike Kravetz 
370104f2cbe3SMel Gorman 		page = alloc_huge_page(vma, address, 0);
37022fc39cecSAdam Litke 		if (IS_ERR(page)) {
370376dcee75SAneesh Kumar K.V 			ret = PTR_ERR(page);
370476dcee75SAneesh Kumar K.V 			if (ret == -ENOMEM)
370576dcee75SAneesh Kumar K.V 				ret = VM_FAULT_OOM;
370676dcee75SAneesh Kumar K.V 			else
370776dcee75SAneesh Kumar K.V 				ret = VM_FAULT_SIGBUS;
37086bda666aSChristoph Lameter 			goto out;
37096bda666aSChristoph Lameter 		}
371047ad8475SAndrea Arcangeli 		clear_huge_page(page, address, pages_per_huge_page(h));
37110ed361deSNick Piggin 		__SetPageUptodate(page);
3712bcc54222SNaoya Horiguchi 		set_page_huge_active(page);
3713ac9b9c66SHugh Dickins 
3714f83a275dSMel Gorman 		if (vma->vm_flags & VM_MAYSHARE) {
3715ab76ad54SMike Kravetz 			int err = huge_add_to_page_cache(page, mapping, idx);
37166bda666aSChristoph Lameter 			if (err) {
37176bda666aSChristoph Lameter 				put_page(page);
37186bda666aSChristoph Lameter 				if (err == -EEXIST)
37196bda666aSChristoph Lameter 					goto retry;
37206bda666aSChristoph Lameter 				goto out;
37216bda666aSChristoph Lameter 			}
372223be7468SMel Gorman 		} else {
37236bda666aSChristoph Lameter 			lock_page(page);
37240fe6e20bSNaoya Horiguchi 			if (unlikely(anon_vma_prepare(vma))) {
37250fe6e20bSNaoya Horiguchi 				ret = VM_FAULT_OOM;
37260fe6e20bSNaoya Horiguchi 				goto backout_unlocked;
372723be7468SMel Gorman 			}
3728409eb8c2SHillf Danton 			anon_rmap = 1;
37290fe6e20bSNaoya Horiguchi 		}
37300fe6e20bSNaoya Horiguchi 	} else {
373157303d80SAndy Whitcroft 		/*
3732998b4382SNaoya Horiguchi 		 * If memory error occurs between mmap() and fault, some process
3733998b4382SNaoya Horiguchi 		 * don't have hwpoisoned swap entry for errored virtual address.
3734998b4382SNaoya Horiguchi 		 * So we need to block hugepage fault by PG_hwpoison bit check.
3735fd6a03edSNaoya Horiguchi 		 */
3736fd6a03edSNaoya Horiguchi 		if (unlikely(PageHWPoison(page))) {
3737aa50d3a7SAndi Kleen 			ret = VM_FAULT_HWPOISON |
3738972dc4deSAneesh Kumar K.V 				VM_FAULT_SET_HINDEX(hstate_index(h));
3739fd6a03edSNaoya Horiguchi 			goto backout_unlocked;
37406bda666aSChristoph Lameter 		}
3741998b4382SNaoya Horiguchi 	}
37421e8f889bSDavid Gibson 
374357303d80SAndy Whitcroft 	/*
374457303d80SAndy Whitcroft 	 * If we are going to COW a private mapping later, we examine the
374557303d80SAndy Whitcroft 	 * pending reservations for this page now. This will ensure that
374657303d80SAndy Whitcroft 	 * any allocations necessary to record that reservation occur outside
374757303d80SAndy Whitcroft 	 * the spinlock.
374857303d80SAndy Whitcroft 	 */
37495e911373SMike Kravetz 	if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
37502b26736cSAndy Whitcroft 		if (vma_needs_reservation(h, vma, address) < 0) {
37512b26736cSAndy Whitcroft 			ret = VM_FAULT_OOM;
37522b26736cSAndy Whitcroft 			goto backout_unlocked;
37532b26736cSAndy Whitcroft 		}
37545e911373SMike Kravetz 		/* Just decrements count, does not deallocate */
3755feba16e2SMike Kravetz 		vma_end_reservation(h, vma, address);
37565e911373SMike Kravetz 	}
375757303d80SAndy Whitcroft 
37588bea8052SAneesh Kumar K.V 	ptl = huge_pte_lock(h, mm, ptep);
3759a5516438SAndi Kleen 	size = i_size_read(mapping->host) >> huge_page_shift(h);
37604c887265SAdam Litke 	if (idx >= size)
37614c887265SAdam Litke 		goto backout;
37624c887265SAdam Litke 
376383c54070SNick Piggin 	ret = 0;
37647f2e9525SGerald Schaefer 	if (!huge_pte_none(huge_ptep_get(ptep)))
37654c887265SAdam Litke 		goto backout;
37664c887265SAdam Litke 
376707443a85SJoonsoo Kim 	if (anon_rmap) {
376807443a85SJoonsoo Kim 		ClearPagePrivate(page);
3769409eb8c2SHillf Danton 		hugepage_add_new_anon_rmap(page, vma, address);
3770ac714904SChoi Gi-yong 	} else
377153f9263bSKirill A. Shutemov 		page_dup_rmap(page, true);
37721e8f889bSDavid Gibson 	new_pte = make_huge_pte(vma, page, ((vma->vm_flags & VM_WRITE)
37731e8f889bSDavid Gibson 				&& (vma->vm_flags & VM_SHARED)));
37741e8f889bSDavid Gibson 	set_huge_pte_at(mm, address, ptep, new_pte);
37751e8f889bSDavid Gibson 
37765d317b2bSNaoya Horiguchi 	hugetlb_count_add(pages_per_huge_page(h), mm);
3777788c7df4SHugh Dickins 	if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
37781e8f889bSDavid Gibson 		/* Optimization, do the COW without a second fault */
37793999f52eSAneesh Kumar K.V 		ret = hugetlb_cow(mm, vma, address, ptep, page, ptl);
37801e8f889bSDavid Gibson 	}
37811e8f889bSDavid Gibson 
3782cb900f41SKirill A. Shutemov 	spin_unlock(ptl);
37834c887265SAdam Litke 	unlock_page(page);
37844c887265SAdam Litke out:
3785ac9b9c66SHugh Dickins 	return ret;
37864c887265SAdam Litke 
37874c887265SAdam Litke backout:
3788cb900f41SKirill A. Shutemov 	spin_unlock(ptl);
37892b26736cSAndy Whitcroft backout_unlocked:
37904c887265SAdam Litke 	unlock_page(page);
379196b96a96SMike Kravetz 	restore_reserve_on_error(h, vma, address, page);
37924c887265SAdam Litke 	put_page(page);
37934c887265SAdam Litke 	goto out;
3794ac9b9c66SHugh Dickins }
3795ac9b9c66SHugh Dickins 
37968382d914SDavidlohr Bueso #ifdef CONFIG_SMP
3797c672c7f2SMike Kravetz u32 hugetlb_fault_mutex_hash(struct hstate *h, struct mm_struct *mm,
37988382d914SDavidlohr Bueso 			    struct vm_area_struct *vma,
37998382d914SDavidlohr Bueso 			    struct address_space *mapping,
38008382d914SDavidlohr Bueso 			    pgoff_t idx, unsigned long address)
38018382d914SDavidlohr Bueso {
38028382d914SDavidlohr Bueso 	unsigned long key[2];
38038382d914SDavidlohr Bueso 	u32 hash;
38048382d914SDavidlohr Bueso 
38058382d914SDavidlohr Bueso 	if (vma->vm_flags & VM_SHARED) {
38068382d914SDavidlohr Bueso 		key[0] = (unsigned long) mapping;
38078382d914SDavidlohr Bueso 		key[1] = idx;
38088382d914SDavidlohr Bueso 	} else {
38098382d914SDavidlohr Bueso 		key[0] = (unsigned long) mm;
38108382d914SDavidlohr Bueso 		key[1] = address >> huge_page_shift(h);
38118382d914SDavidlohr Bueso 	}
38128382d914SDavidlohr Bueso 
38138382d914SDavidlohr Bueso 	hash = jhash2((u32 *)&key, sizeof(key)/sizeof(u32), 0);
38148382d914SDavidlohr Bueso 
38158382d914SDavidlohr Bueso 	return hash & (num_fault_mutexes - 1);
38168382d914SDavidlohr Bueso }
38178382d914SDavidlohr Bueso #else
38188382d914SDavidlohr Bueso /*
38198382d914SDavidlohr Bueso  * For uniprocesor systems we always use a single mutex, so just
38208382d914SDavidlohr Bueso  * return 0 and avoid the hashing overhead.
38218382d914SDavidlohr Bueso  */
3822c672c7f2SMike Kravetz u32 hugetlb_fault_mutex_hash(struct hstate *h, struct mm_struct *mm,
38238382d914SDavidlohr Bueso 			    struct vm_area_struct *vma,
38248382d914SDavidlohr Bueso 			    struct address_space *mapping,
38258382d914SDavidlohr Bueso 			    pgoff_t idx, unsigned long address)
38268382d914SDavidlohr Bueso {
38278382d914SDavidlohr Bueso 	return 0;
38288382d914SDavidlohr Bueso }
38298382d914SDavidlohr Bueso #endif
38308382d914SDavidlohr Bueso 
383186e5216fSAdam Litke int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
3832788c7df4SHugh Dickins 			unsigned long address, unsigned int flags)
383386e5216fSAdam Litke {
38348382d914SDavidlohr Bueso 	pte_t *ptep, entry;
3835cb900f41SKirill A. Shutemov 	spinlock_t *ptl;
38361e8f889bSDavid Gibson 	int ret;
38378382d914SDavidlohr Bueso 	u32 hash;
38388382d914SDavidlohr Bueso 	pgoff_t idx;
38390fe6e20bSNaoya Horiguchi 	struct page *page = NULL;
384057303d80SAndy Whitcroft 	struct page *pagecache_page = NULL;
3841a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
38428382d914SDavidlohr Bueso 	struct address_space *mapping;
38430f792cf9SNaoya Horiguchi 	int need_wait_lock = 0;
384486e5216fSAdam Litke 
38451e16a539SKAMEZAWA Hiroyuki 	address &= huge_page_mask(h);
38461e16a539SKAMEZAWA Hiroyuki 
38477868a208SPunit Agrawal 	ptep = huge_pte_offset(mm, address, huge_page_size(h));
3848fd6a03edSNaoya Horiguchi 	if (ptep) {
3849fd6a03edSNaoya Horiguchi 		entry = huge_ptep_get(ptep);
3850290408d4SNaoya Horiguchi 		if (unlikely(is_hugetlb_entry_migration(entry))) {
3851cb900f41SKirill A. Shutemov 			migration_entry_wait_huge(vma, mm, ptep);
3852290408d4SNaoya Horiguchi 			return 0;
3853290408d4SNaoya Horiguchi 		} else if (unlikely(is_hugetlb_entry_hwpoisoned(entry)))
3854aa50d3a7SAndi Kleen 			return VM_FAULT_HWPOISON_LARGE |
3855972dc4deSAneesh Kumar K.V 				VM_FAULT_SET_HINDEX(hstate_index(h));
38560d777df5SNaoya Horiguchi 	} else {
3857a5516438SAndi Kleen 		ptep = huge_pte_alloc(mm, address, huge_page_size(h));
385886e5216fSAdam Litke 		if (!ptep)
385986e5216fSAdam Litke 			return VM_FAULT_OOM;
38600d777df5SNaoya Horiguchi 	}
386186e5216fSAdam Litke 
38628382d914SDavidlohr Bueso 	mapping = vma->vm_file->f_mapping;
38638382d914SDavidlohr Bueso 	idx = vma_hugecache_offset(h, vma, address);
38648382d914SDavidlohr Bueso 
38653935baa9SDavid Gibson 	/*
38663935baa9SDavid Gibson 	 * Serialize hugepage allocation and instantiation, so that we don't
38673935baa9SDavid Gibson 	 * get spurious allocation failures if two CPUs race to instantiate
38683935baa9SDavid Gibson 	 * the same page in the page cache.
38693935baa9SDavid Gibson 	 */
3870c672c7f2SMike Kravetz 	hash = hugetlb_fault_mutex_hash(h, mm, vma, mapping, idx, address);
3871c672c7f2SMike Kravetz 	mutex_lock(&hugetlb_fault_mutex_table[hash]);
38728382d914SDavidlohr Bueso 
38737f2e9525SGerald Schaefer 	entry = huge_ptep_get(ptep);
38747f2e9525SGerald Schaefer 	if (huge_pte_none(entry)) {
38758382d914SDavidlohr Bueso 		ret = hugetlb_no_page(mm, vma, mapping, idx, address, ptep, flags);
3876b4d1d99fSDavid Gibson 		goto out_mutex;
38773935baa9SDavid Gibson 	}
387886e5216fSAdam Litke 
387983c54070SNick Piggin 	ret = 0;
38801e8f889bSDavid Gibson 
388157303d80SAndy Whitcroft 	/*
38820f792cf9SNaoya Horiguchi 	 * entry could be a migration/hwpoison entry at this point, so this
38830f792cf9SNaoya Horiguchi 	 * check prevents the kernel from going below assuming that we have
38840f792cf9SNaoya Horiguchi 	 * a active hugepage in pagecache. This goto expects the 2nd page fault,
38850f792cf9SNaoya Horiguchi 	 * and is_hugetlb_entry_(migration|hwpoisoned) check will properly
38860f792cf9SNaoya Horiguchi 	 * handle it.
38870f792cf9SNaoya Horiguchi 	 */
38880f792cf9SNaoya Horiguchi 	if (!pte_present(entry))
38890f792cf9SNaoya Horiguchi 		goto out_mutex;
38900f792cf9SNaoya Horiguchi 
38910f792cf9SNaoya Horiguchi 	/*
389257303d80SAndy Whitcroft 	 * If we are going to COW the mapping later, we examine the pending
389357303d80SAndy Whitcroft 	 * reservations for this page now. This will ensure that any
389457303d80SAndy Whitcroft 	 * allocations necessary to record that reservation occur outside the
389557303d80SAndy Whitcroft 	 * spinlock. For private mappings, we also lookup the pagecache
389657303d80SAndy Whitcroft 	 * page now as it is used to determine if a reservation has been
389757303d80SAndy Whitcroft 	 * consumed.
389857303d80SAndy Whitcroft 	 */
3899106c992aSGerald Schaefer 	if ((flags & FAULT_FLAG_WRITE) && !huge_pte_write(entry)) {
39002b26736cSAndy Whitcroft 		if (vma_needs_reservation(h, vma, address) < 0) {
39012b26736cSAndy Whitcroft 			ret = VM_FAULT_OOM;
3902b4d1d99fSDavid Gibson 			goto out_mutex;
39032b26736cSAndy Whitcroft 		}
39045e911373SMike Kravetz 		/* Just decrements count, does not deallocate */
3905feba16e2SMike Kravetz 		vma_end_reservation(h, vma, address);
390657303d80SAndy Whitcroft 
3907f83a275dSMel Gorman 		if (!(vma->vm_flags & VM_MAYSHARE))
390857303d80SAndy Whitcroft 			pagecache_page = hugetlbfs_pagecache_page(h,
390957303d80SAndy Whitcroft 								vma, address);
391057303d80SAndy Whitcroft 	}
391157303d80SAndy Whitcroft 
39120f792cf9SNaoya Horiguchi 	ptl = huge_pte_lock(h, mm, ptep);
39130fe6e20bSNaoya Horiguchi 
39141e8f889bSDavid Gibson 	/* Check for a racing update before calling hugetlb_cow */
3915b4d1d99fSDavid Gibson 	if (unlikely(!pte_same(entry, huge_ptep_get(ptep))))
3916cb900f41SKirill A. Shutemov 		goto out_ptl;
3917b4d1d99fSDavid Gibson 
39180f792cf9SNaoya Horiguchi 	/*
39190f792cf9SNaoya Horiguchi 	 * hugetlb_cow() requires page locks of pte_page(entry) and
39200f792cf9SNaoya Horiguchi 	 * pagecache_page, so here we need take the former one
39210f792cf9SNaoya Horiguchi 	 * when page != pagecache_page or !pagecache_page.
39220f792cf9SNaoya Horiguchi 	 */
39230f792cf9SNaoya Horiguchi 	page = pte_page(entry);
39240f792cf9SNaoya Horiguchi 	if (page != pagecache_page)
39250f792cf9SNaoya Horiguchi 		if (!trylock_page(page)) {
39260f792cf9SNaoya Horiguchi 			need_wait_lock = 1;
39270f792cf9SNaoya Horiguchi 			goto out_ptl;
39280f792cf9SNaoya Horiguchi 		}
39290f792cf9SNaoya Horiguchi 
39300f792cf9SNaoya Horiguchi 	get_page(page);
3931b4d1d99fSDavid Gibson 
3932788c7df4SHugh Dickins 	if (flags & FAULT_FLAG_WRITE) {
3933106c992aSGerald Schaefer 		if (!huge_pte_write(entry)) {
39343999f52eSAneesh Kumar K.V 			ret = hugetlb_cow(mm, vma, address, ptep,
3935cb900f41SKirill A. Shutemov 					  pagecache_page, ptl);
39360f792cf9SNaoya Horiguchi 			goto out_put_page;
3937b4d1d99fSDavid Gibson 		}
3938106c992aSGerald Schaefer 		entry = huge_pte_mkdirty(entry);
3939b4d1d99fSDavid Gibson 	}
3940b4d1d99fSDavid Gibson 	entry = pte_mkyoung(entry);
3941788c7df4SHugh Dickins 	if (huge_ptep_set_access_flags(vma, address, ptep, entry,
3942788c7df4SHugh Dickins 						flags & FAULT_FLAG_WRITE))
39434b3073e1SRussell King 		update_mmu_cache(vma, address, ptep);
39440f792cf9SNaoya Horiguchi out_put_page:
39450f792cf9SNaoya Horiguchi 	if (page != pagecache_page)
39460f792cf9SNaoya Horiguchi 		unlock_page(page);
39470f792cf9SNaoya Horiguchi 	put_page(page);
3948cb900f41SKirill A. Shutemov out_ptl:
3949cb900f41SKirill A. Shutemov 	spin_unlock(ptl);
395057303d80SAndy Whitcroft 
395157303d80SAndy Whitcroft 	if (pagecache_page) {
395257303d80SAndy Whitcroft 		unlock_page(pagecache_page);
395357303d80SAndy Whitcroft 		put_page(pagecache_page);
395457303d80SAndy Whitcroft 	}
3955b4d1d99fSDavid Gibson out_mutex:
3956c672c7f2SMike Kravetz 	mutex_unlock(&hugetlb_fault_mutex_table[hash]);
39570f792cf9SNaoya Horiguchi 	/*
39580f792cf9SNaoya Horiguchi 	 * Generally it's safe to hold refcount during waiting page lock. But
39590f792cf9SNaoya Horiguchi 	 * here we just wait to defer the next page fault to avoid busy loop and
39600f792cf9SNaoya Horiguchi 	 * the page is not used after unlocked before returning from the current
39610f792cf9SNaoya Horiguchi 	 * page fault. So we are safe from accessing freed page, even if we wait
39620f792cf9SNaoya Horiguchi 	 * here without taking refcount.
39630f792cf9SNaoya Horiguchi 	 */
39640f792cf9SNaoya Horiguchi 	if (need_wait_lock)
39650f792cf9SNaoya Horiguchi 		wait_on_page_locked(page);
39661e8f889bSDavid Gibson 	return ret;
396786e5216fSAdam Litke }
396886e5216fSAdam Litke 
39698fb5debcSMike Kravetz /*
39708fb5debcSMike Kravetz  * Used by userfaultfd UFFDIO_COPY.  Based on mcopy_atomic_pte with
39718fb5debcSMike Kravetz  * modifications for huge pages.
39728fb5debcSMike Kravetz  */
39738fb5debcSMike Kravetz int hugetlb_mcopy_atomic_pte(struct mm_struct *dst_mm,
39748fb5debcSMike Kravetz 			    pte_t *dst_pte,
39758fb5debcSMike Kravetz 			    struct vm_area_struct *dst_vma,
39768fb5debcSMike Kravetz 			    unsigned long dst_addr,
39778fb5debcSMike Kravetz 			    unsigned long src_addr,
39788fb5debcSMike Kravetz 			    struct page **pagep)
39798fb5debcSMike Kravetz {
39801c9e8defSMike Kravetz 	int vm_shared = dst_vma->vm_flags & VM_SHARED;
39818fb5debcSMike Kravetz 	struct hstate *h = hstate_vma(dst_vma);
39828fb5debcSMike Kravetz 	pte_t _dst_pte;
39838fb5debcSMike Kravetz 	spinlock_t *ptl;
39848fb5debcSMike Kravetz 	int ret;
39858fb5debcSMike Kravetz 	struct page *page;
39868fb5debcSMike Kravetz 
39878fb5debcSMike Kravetz 	if (!*pagep) {
39888fb5debcSMike Kravetz 		ret = -ENOMEM;
39898fb5debcSMike Kravetz 		page = alloc_huge_page(dst_vma, dst_addr, 0);
39908fb5debcSMike Kravetz 		if (IS_ERR(page))
39918fb5debcSMike Kravetz 			goto out;
39928fb5debcSMike Kravetz 
39938fb5debcSMike Kravetz 		ret = copy_huge_page_from_user(page,
39948fb5debcSMike Kravetz 						(const void __user *) src_addr,
3995810a56b9SMike Kravetz 						pages_per_huge_page(h), false);
39968fb5debcSMike Kravetz 
39978fb5debcSMike Kravetz 		/* fallback to copy_from_user outside mmap_sem */
39988fb5debcSMike Kravetz 		if (unlikely(ret)) {
39998fb5debcSMike Kravetz 			ret = -EFAULT;
40008fb5debcSMike Kravetz 			*pagep = page;
40018fb5debcSMike Kravetz 			/* don't free the page */
40028fb5debcSMike Kravetz 			goto out;
40038fb5debcSMike Kravetz 		}
40048fb5debcSMike Kravetz 	} else {
40058fb5debcSMike Kravetz 		page = *pagep;
40068fb5debcSMike Kravetz 		*pagep = NULL;
40078fb5debcSMike Kravetz 	}
40088fb5debcSMike Kravetz 
40098fb5debcSMike Kravetz 	/*
40108fb5debcSMike Kravetz 	 * The memory barrier inside __SetPageUptodate makes sure that
40118fb5debcSMike Kravetz 	 * preceding stores to the page contents become visible before
40128fb5debcSMike Kravetz 	 * the set_pte_at() write.
40138fb5debcSMike Kravetz 	 */
40148fb5debcSMike Kravetz 	__SetPageUptodate(page);
40158fb5debcSMike Kravetz 	set_page_huge_active(page);
40168fb5debcSMike Kravetz 
40171c9e8defSMike Kravetz 	/*
40181c9e8defSMike Kravetz 	 * If shared, add to page cache
40191c9e8defSMike Kravetz 	 */
40201c9e8defSMike Kravetz 	if (vm_shared) {
40211c9e8defSMike Kravetz 		struct address_space *mapping = dst_vma->vm_file->f_mapping;
40221c9e8defSMike Kravetz 		pgoff_t idx = vma_hugecache_offset(h, dst_vma, dst_addr);
40231c9e8defSMike Kravetz 
40241c9e8defSMike Kravetz 		ret = huge_add_to_page_cache(page, mapping, idx);
40251c9e8defSMike Kravetz 		if (ret)
40261c9e8defSMike Kravetz 			goto out_release_nounlock;
40271c9e8defSMike Kravetz 	}
40281c9e8defSMike Kravetz 
40298fb5debcSMike Kravetz 	ptl = huge_pte_lockptr(h, dst_mm, dst_pte);
40308fb5debcSMike Kravetz 	spin_lock(ptl);
40318fb5debcSMike Kravetz 
40328fb5debcSMike Kravetz 	ret = -EEXIST;
40338fb5debcSMike Kravetz 	if (!huge_pte_none(huge_ptep_get(dst_pte)))
40348fb5debcSMike Kravetz 		goto out_release_unlock;
40358fb5debcSMike Kravetz 
40361c9e8defSMike Kravetz 	if (vm_shared) {
40371c9e8defSMike Kravetz 		page_dup_rmap(page, true);
40381c9e8defSMike Kravetz 	} else {
40398fb5debcSMike Kravetz 		ClearPagePrivate(page);
40408fb5debcSMike Kravetz 		hugepage_add_new_anon_rmap(page, dst_vma, dst_addr);
40411c9e8defSMike Kravetz 	}
40428fb5debcSMike Kravetz 
40438fb5debcSMike Kravetz 	_dst_pte = make_huge_pte(dst_vma, page, dst_vma->vm_flags & VM_WRITE);
40448fb5debcSMike Kravetz 	if (dst_vma->vm_flags & VM_WRITE)
40458fb5debcSMike Kravetz 		_dst_pte = huge_pte_mkdirty(_dst_pte);
40468fb5debcSMike Kravetz 	_dst_pte = pte_mkyoung(_dst_pte);
40478fb5debcSMike Kravetz 
40488fb5debcSMike Kravetz 	set_huge_pte_at(dst_mm, dst_addr, dst_pte, _dst_pte);
40498fb5debcSMike Kravetz 
40508fb5debcSMike Kravetz 	(void)huge_ptep_set_access_flags(dst_vma, dst_addr, dst_pte, _dst_pte,
40518fb5debcSMike Kravetz 					dst_vma->vm_flags & VM_WRITE);
40528fb5debcSMike Kravetz 	hugetlb_count_add(pages_per_huge_page(h), dst_mm);
40538fb5debcSMike Kravetz 
40548fb5debcSMike Kravetz 	/* No need to invalidate - it was non-present before */
40558fb5debcSMike Kravetz 	update_mmu_cache(dst_vma, dst_addr, dst_pte);
40568fb5debcSMike Kravetz 
40578fb5debcSMike Kravetz 	spin_unlock(ptl);
40581c9e8defSMike Kravetz 	if (vm_shared)
40591c9e8defSMike Kravetz 		unlock_page(page);
40608fb5debcSMike Kravetz 	ret = 0;
40618fb5debcSMike Kravetz out:
40628fb5debcSMike Kravetz 	return ret;
40638fb5debcSMike Kravetz out_release_unlock:
40648fb5debcSMike Kravetz 	spin_unlock(ptl);
40651c9e8defSMike Kravetz out_release_nounlock:
40661c9e8defSMike Kravetz 	if (vm_shared)
40671c9e8defSMike Kravetz 		unlock_page(page);
40688fb5debcSMike Kravetz 	put_page(page);
40698fb5debcSMike Kravetz 	goto out;
40708fb5debcSMike Kravetz }
40718fb5debcSMike Kravetz 
407228a35716SMichel Lespinasse long follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma,
407363551ae0SDavid Gibson 			 struct page **pages, struct vm_area_struct **vmas,
407428a35716SMichel Lespinasse 			 unsigned long *position, unsigned long *nr_pages,
407587ffc118SAndrea Arcangeli 			 long i, unsigned int flags, int *nonblocking)
407663551ae0SDavid Gibson {
4077d5d4b0aaSChen, Kenneth W 	unsigned long pfn_offset;
4078d5d4b0aaSChen, Kenneth W 	unsigned long vaddr = *position;
407928a35716SMichel Lespinasse 	unsigned long remainder = *nr_pages;
4080a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
408163551ae0SDavid Gibson 
408263551ae0SDavid Gibson 	while (vaddr < vma->vm_end && remainder) {
408363551ae0SDavid Gibson 		pte_t *pte;
4084cb900f41SKirill A. Shutemov 		spinlock_t *ptl = NULL;
40852a15efc9SHugh Dickins 		int absent;
408663551ae0SDavid Gibson 		struct page *page;
408763551ae0SDavid Gibson 
40884c887265SAdam Litke 		/*
408902057967SDavid Rientjes 		 * If we have a pending SIGKILL, don't keep faulting pages and
409002057967SDavid Rientjes 		 * potentially allocating memory.
409102057967SDavid Rientjes 		 */
409202057967SDavid Rientjes 		if (unlikely(fatal_signal_pending(current))) {
409302057967SDavid Rientjes 			remainder = 0;
409402057967SDavid Rientjes 			break;
409502057967SDavid Rientjes 		}
409602057967SDavid Rientjes 
409702057967SDavid Rientjes 		/*
40984c887265SAdam Litke 		 * Some archs (sparc64, sh*) have multiple pte_ts to
40992a15efc9SHugh Dickins 		 * each hugepage.  We have to make sure we get the
41004c887265SAdam Litke 		 * first, for the page indexing below to work.
4101cb900f41SKirill A. Shutemov 		 *
4102cb900f41SKirill A. Shutemov 		 * Note that page table lock is not held when pte is null.
41034c887265SAdam Litke 		 */
41047868a208SPunit Agrawal 		pte = huge_pte_offset(mm, vaddr & huge_page_mask(h),
41057868a208SPunit Agrawal 				      huge_page_size(h));
4106cb900f41SKirill A. Shutemov 		if (pte)
4107cb900f41SKirill A. Shutemov 			ptl = huge_pte_lock(h, mm, pte);
41082a15efc9SHugh Dickins 		absent = !pte || huge_pte_none(huge_ptep_get(pte));
410963551ae0SDavid Gibson 
41102a15efc9SHugh Dickins 		/*
41112a15efc9SHugh Dickins 		 * When coredumping, it suits get_dump_page if we just return
41123ae77f43SHugh Dickins 		 * an error where there's an empty slot with no huge pagecache
41133ae77f43SHugh Dickins 		 * to back it.  This way, we avoid allocating a hugepage, and
41143ae77f43SHugh Dickins 		 * the sparse dumpfile avoids allocating disk blocks, but its
41153ae77f43SHugh Dickins 		 * huge holes still show up with zeroes where they need to be.
41162a15efc9SHugh Dickins 		 */
41173ae77f43SHugh Dickins 		if (absent && (flags & FOLL_DUMP) &&
41183ae77f43SHugh Dickins 		    !hugetlbfs_pagecache_present(h, vma, vaddr)) {
4119cb900f41SKirill A. Shutemov 			if (pte)
4120cb900f41SKirill A. Shutemov 				spin_unlock(ptl);
41212a15efc9SHugh Dickins 			remainder = 0;
41222a15efc9SHugh Dickins 			break;
41232a15efc9SHugh Dickins 		}
41242a15efc9SHugh Dickins 
41259cc3a5bdSNaoya Horiguchi 		/*
41269cc3a5bdSNaoya Horiguchi 		 * We need call hugetlb_fault for both hugepages under migration
41279cc3a5bdSNaoya Horiguchi 		 * (in which case hugetlb_fault waits for the migration,) and
41289cc3a5bdSNaoya Horiguchi 		 * hwpoisoned hugepages (in which case we need to prevent the
41299cc3a5bdSNaoya Horiguchi 		 * caller from accessing to them.) In order to do this, we use
41309cc3a5bdSNaoya Horiguchi 		 * here is_swap_pte instead of is_hugetlb_entry_migration and
41319cc3a5bdSNaoya Horiguchi 		 * is_hugetlb_entry_hwpoisoned. This is because it simply covers
41329cc3a5bdSNaoya Horiguchi 		 * both cases, and because we can't follow correct pages
41339cc3a5bdSNaoya Horiguchi 		 * directly from any kind of swap entries.
41349cc3a5bdSNaoya Horiguchi 		 */
41359cc3a5bdSNaoya Horiguchi 		if (absent || is_swap_pte(huge_ptep_get(pte)) ||
4136106c992aSGerald Schaefer 		    ((flags & FOLL_WRITE) &&
4137106c992aSGerald Schaefer 		      !huge_pte_write(huge_ptep_get(pte)))) {
41384c887265SAdam Litke 			int ret;
413987ffc118SAndrea Arcangeli 			unsigned int fault_flags = 0;
41404c887265SAdam Litke 
4141cb900f41SKirill A. Shutemov 			if (pte)
4142cb900f41SKirill A. Shutemov 				spin_unlock(ptl);
414387ffc118SAndrea Arcangeli 			if (flags & FOLL_WRITE)
414487ffc118SAndrea Arcangeli 				fault_flags |= FAULT_FLAG_WRITE;
414587ffc118SAndrea Arcangeli 			if (nonblocking)
414687ffc118SAndrea Arcangeli 				fault_flags |= FAULT_FLAG_ALLOW_RETRY;
414787ffc118SAndrea Arcangeli 			if (flags & FOLL_NOWAIT)
414887ffc118SAndrea Arcangeli 				fault_flags |= FAULT_FLAG_ALLOW_RETRY |
414987ffc118SAndrea Arcangeli 					FAULT_FLAG_RETRY_NOWAIT;
415087ffc118SAndrea Arcangeli 			if (flags & FOLL_TRIED) {
415187ffc118SAndrea Arcangeli 				VM_WARN_ON_ONCE(fault_flags &
415287ffc118SAndrea Arcangeli 						FAULT_FLAG_ALLOW_RETRY);
415387ffc118SAndrea Arcangeli 				fault_flags |= FAULT_FLAG_TRIED;
415487ffc118SAndrea Arcangeli 			}
415587ffc118SAndrea Arcangeli 			ret = hugetlb_fault(mm, vma, vaddr, fault_flags);
415687ffc118SAndrea Arcangeli 			if (ret & VM_FAULT_ERROR) {
41579a291a7cSJames Morse 				int err = vm_fault_to_errno(ret, flags);
41589a291a7cSJames Morse 
41599a291a7cSJames Morse 				if (err)
41609a291a7cSJames Morse 					return err;
41619a291a7cSJames Morse 
41621c59827dSHugh Dickins 				remainder = 0;
41631c59827dSHugh Dickins 				break;
41641c59827dSHugh Dickins 			}
416587ffc118SAndrea Arcangeli 			if (ret & VM_FAULT_RETRY) {
416687ffc118SAndrea Arcangeli 				if (nonblocking)
416787ffc118SAndrea Arcangeli 					*nonblocking = 0;
416887ffc118SAndrea Arcangeli 				*nr_pages = 0;
416987ffc118SAndrea Arcangeli 				/*
417087ffc118SAndrea Arcangeli 				 * VM_FAULT_RETRY must not return an
417187ffc118SAndrea Arcangeli 				 * error, it will return zero
417287ffc118SAndrea Arcangeli 				 * instead.
417387ffc118SAndrea Arcangeli 				 *
417487ffc118SAndrea Arcangeli 				 * No need to update "position" as the
417587ffc118SAndrea Arcangeli 				 * caller will not check it after
417687ffc118SAndrea Arcangeli 				 * *nr_pages is set to 0.
417787ffc118SAndrea Arcangeli 				 */
417887ffc118SAndrea Arcangeli 				return i;
417987ffc118SAndrea Arcangeli 			}
418087ffc118SAndrea Arcangeli 			continue;
418187ffc118SAndrea Arcangeli 		}
418263551ae0SDavid Gibson 
4183a5516438SAndi Kleen 		pfn_offset = (vaddr & ~huge_page_mask(h)) >> PAGE_SHIFT;
41847f2e9525SGerald Schaefer 		page = pte_page(huge_ptep_get(pte));
4185d5d4b0aaSChen, Kenneth W same_page:
4186d6692183SChen, Kenneth W 		if (pages) {
418769d177c2SAndy Whitcroft 			pages[i] = mem_map_offset(page, pfn_offset);
4188ddc58f27SKirill A. Shutemov 			get_page(pages[i]);
4189d6692183SChen, Kenneth W 		}
419063551ae0SDavid Gibson 
419163551ae0SDavid Gibson 		if (vmas)
419263551ae0SDavid Gibson 			vmas[i] = vma;
419363551ae0SDavid Gibson 
419463551ae0SDavid Gibson 		vaddr += PAGE_SIZE;
4195d5d4b0aaSChen, Kenneth W 		++pfn_offset;
419663551ae0SDavid Gibson 		--remainder;
419763551ae0SDavid Gibson 		++i;
4198d5d4b0aaSChen, Kenneth W 		if (vaddr < vma->vm_end && remainder &&
4199a5516438SAndi Kleen 				pfn_offset < pages_per_huge_page(h)) {
4200d5d4b0aaSChen, Kenneth W 			/*
4201d5d4b0aaSChen, Kenneth W 			 * We use pfn_offset to avoid touching the pageframes
4202d5d4b0aaSChen, Kenneth W 			 * of this compound page.
4203d5d4b0aaSChen, Kenneth W 			 */
4204d5d4b0aaSChen, Kenneth W 			goto same_page;
4205d5d4b0aaSChen, Kenneth W 		}
4206cb900f41SKirill A. Shutemov 		spin_unlock(ptl);
420763551ae0SDavid Gibson 	}
420828a35716SMichel Lespinasse 	*nr_pages = remainder;
420987ffc118SAndrea Arcangeli 	/*
421087ffc118SAndrea Arcangeli 	 * setting position is actually required only if remainder is
421187ffc118SAndrea Arcangeli 	 * not zero but it's faster not to add a "if (remainder)"
421287ffc118SAndrea Arcangeli 	 * branch.
421387ffc118SAndrea Arcangeli 	 */
421463551ae0SDavid Gibson 	*position = vaddr;
421563551ae0SDavid Gibson 
42162a15efc9SHugh Dickins 	return i ? i : -EFAULT;
421763551ae0SDavid Gibson }
42188f860591SZhang, Yanmin 
42195491ae7bSAneesh Kumar K.V #ifndef __HAVE_ARCH_FLUSH_HUGETLB_TLB_RANGE
42205491ae7bSAneesh Kumar K.V /*
42215491ae7bSAneesh Kumar K.V  * ARCHes with special requirements for evicting HUGETLB backing TLB entries can
42225491ae7bSAneesh Kumar K.V  * implement this.
42235491ae7bSAneesh Kumar K.V  */
42245491ae7bSAneesh Kumar K.V #define flush_hugetlb_tlb_range(vma, addr, end)	flush_tlb_range(vma, addr, end)
42255491ae7bSAneesh Kumar K.V #endif
42265491ae7bSAneesh Kumar K.V 
42277da4d641SPeter Zijlstra unsigned long hugetlb_change_protection(struct vm_area_struct *vma,
42288f860591SZhang, Yanmin 		unsigned long address, unsigned long end, pgprot_t newprot)
42298f860591SZhang, Yanmin {
42308f860591SZhang, Yanmin 	struct mm_struct *mm = vma->vm_mm;
42318f860591SZhang, Yanmin 	unsigned long start = address;
42328f860591SZhang, Yanmin 	pte_t *ptep;
42338f860591SZhang, Yanmin 	pte_t pte;
4234a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
42357da4d641SPeter Zijlstra 	unsigned long pages = 0;
42368f860591SZhang, Yanmin 
42378f860591SZhang, Yanmin 	BUG_ON(address >= end);
42388f860591SZhang, Yanmin 	flush_cache_range(vma, address, end);
42398f860591SZhang, Yanmin 
4240a5338093SRik van Riel 	mmu_notifier_invalidate_range_start(mm, start, end);
424183cde9e8SDavidlohr Bueso 	i_mmap_lock_write(vma->vm_file->f_mapping);
4242a5516438SAndi Kleen 	for (; address < end; address += huge_page_size(h)) {
4243cb900f41SKirill A. Shutemov 		spinlock_t *ptl;
42447868a208SPunit Agrawal 		ptep = huge_pte_offset(mm, address, huge_page_size(h));
42458f860591SZhang, Yanmin 		if (!ptep)
42468f860591SZhang, Yanmin 			continue;
4247cb900f41SKirill A. Shutemov 		ptl = huge_pte_lock(h, mm, ptep);
42487da4d641SPeter Zijlstra 		if (huge_pmd_unshare(mm, &address, ptep)) {
42497da4d641SPeter Zijlstra 			pages++;
4250cb900f41SKirill A. Shutemov 			spin_unlock(ptl);
425139dde65cSChen, Kenneth W 			continue;
42527da4d641SPeter Zijlstra 		}
4253a8bda28dSNaoya Horiguchi 		pte = huge_ptep_get(ptep);
4254a8bda28dSNaoya Horiguchi 		if (unlikely(is_hugetlb_entry_hwpoisoned(pte))) {
4255a8bda28dSNaoya Horiguchi 			spin_unlock(ptl);
4256a8bda28dSNaoya Horiguchi 			continue;
4257a8bda28dSNaoya Horiguchi 		}
4258a8bda28dSNaoya Horiguchi 		if (unlikely(is_hugetlb_entry_migration(pte))) {
4259a8bda28dSNaoya Horiguchi 			swp_entry_t entry = pte_to_swp_entry(pte);
4260a8bda28dSNaoya Horiguchi 
4261a8bda28dSNaoya Horiguchi 			if (is_write_migration_entry(entry)) {
4262a8bda28dSNaoya Horiguchi 				pte_t newpte;
4263a8bda28dSNaoya Horiguchi 
4264a8bda28dSNaoya Horiguchi 				make_migration_entry_read(&entry);
4265a8bda28dSNaoya Horiguchi 				newpte = swp_entry_to_pte(entry);
4266e5251fd4SPunit Agrawal 				set_huge_swap_pte_at(mm, address, ptep,
4267e5251fd4SPunit Agrawal 						     newpte, huge_page_size(h));
4268a8bda28dSNaoya Horiguchi 				pages++;
4269a8bda28dSNaoya Horiguchi 			}
4270a8bda28dSNaoya Horiguchi 			spin_unlock(ptl);
4271a8bda28dSNaoya Horiguchi 			continue;
4272a8bda28dSNaoya Horiguchi 		}
4273a8bda28dSNaoya Horiguchi 		if (!huge_pte_none(pte)) {
42748f860591SZhang, Yanmin 			pte = huge_ptep_get_and_clear(mm, address, ptep);
4275106c992aSGerald Schaefer 			pte = pte_mkhuge(huge_pte_modify(pte, newprot));
4276be7517d6STony Lu 			pte = arch_make_huge_pte(pte, vma, NULL, 0);
42778f860591SZhang, Yanmin 			set_huge_pte_at(mm, address, ptep, pte);
42787da4d641SPeter Zijlstra 			pages++;
42798f860591SZhang, Yanmin 		}
4280cb900f41SKirill A. Shutemov 		spin_unlock(ptl);
42818f860591SZhang, Yanmin 	}
4282d833352aSMel Gorman 	/*
4283c8c06efaSDavidlohr Bueso 	 * Must flush TLB before releasing i_mmap_rwsem: x86's huge_pmd_unshare
4284d833352aSMel Gorman 	 * may have cleared our pud entry and done put_page on the page table:
4285c8c06efaSDavidlohr Bueso 	 * once we release i_mmap_rwsem, another task can do the final put_page
4286d833352aSMel Gorman 	 * and that page table be reused and filled with junk.
4287d833352aSMel Gorman 	 */
42885491ae7bSAneesh Kumar K.V 	flush_hugetlb_tlb_range(vma, start, end);
428934ee645eSJoerg Roedel 	mmu_notifier_invalidate_range(mm, start, end);
429083cde9e8SDavidlohr Bueso 	i_mmap_unlock_write(vma->vm_file->f_mapping);
4291a5338093SRik van Riel 	mmu_notifier_invalidate_range_end(mm, start, end);
42927da4d641SPeter Zijlstra 
42937da4d641SPeter Zijlstra 	return pages << h->order;
42948f860591SZhang, Yanmin }
42958f860591SZhang, Yanmin 
4296a1e78772SMel Gorman int hugetlb_reserve_pages(struct inode *inode,
4297a1e78772SMel Gorman 					long from, long to,
42985a6fe125SMel Gorman 					struct vm_area_struct *vma,
4299ca16d140SKOSAKI Motohiro 					vm_flags_t vm_flags)
4300e4e574b7SAdam Litke {
430117c9d12eSMel Gorman 	long ret, chg;
4302a5516438SAndi Kleen 	struct hstate *h = hstate_inode(inode);
430390481622SDavid Gibson 	struct hugepage_subpool *spool = subpool_inode(inode);
43049119a41eSJoonsoo Kim 	struct resv_map *resv_map;
43051c5ecae3SMike Kravetz 	long gbl_reserve;
4306e4e574b7SAdam Litke 
4307a1e78772SMel Gorman 	/*
430817c9d12eSMel Gorman 	 * Only apply hugepage reservation if asked. At fault time, an
430917c9d12eSMel Gorman 	 * attempt will be made for VM_NORESERVE to allocate a page
431090481622SDavid Gibson 	 * without using reserves
431117c9d12eSMel Gorman 	 */
4312ca16d140SKOSAKI Motohiro 	if (vm_flags & VM_NORESERVE)
431317c9d12eSMel Gorman 		return 0;
431417c9d12eSMel Gorman 
431517c9d12eSMel Gorman 	/*
4316a1e78772SMel Gorman 	 * Shared mappings base their reservation on the number of pages that
4317a1e78772SMel Gorman 	 * are already allocated on behalf of the file. Private mappings need
4318a1e78772SMel Gorman 	 * to reserve the full area even if read-only as mprotect() may be
4319a1e78772SMel Gorman 	 * called to make the mapping read-write. Assume !vma is a shm mapping
4320a1e78772SMel Gorman 	 */
43219119a41eSJoonsoo Kim 	if (!vma || vma->vm_flags & VM_MAYSHARE) {
43224e35f483SJoonsoo Kim 		resv_map = inode_resv_map(inode);
43239119a41eSJoonsoo Kim 
43241406ec9bSJoonsoo Kim 		chg = region_chg(resv_map, from, to);
43259119a41eSJoonsoo Kim 
43269119a41eSJoonsoo Kim 	} else {
43279119a41eSJoonsoo Kim 		resv_map = resv_map_alloc();
43285a6fe125SMel Gorman 		if (!resv_map)
43295a6fe125SMel Gorman 			return -ENOMEM;
43305a6fe125SMel Gorman 
433117c9d12eSMel Gorman 		chg = to - from;
433217c9d12eSMel Gorman 
43335a6fe125SMel Gorman 		set_vma_resv_map(vma, resv_map);
43345a6fe125SMel Gorman 		set_vma_resv_flags(vma, HPAGE_RESV_OWNER);
43355a6fe125SMel Gorman 	}
43365a6fe125SMel Gorman 
4337c50ac050SDave Hansen 	if (chg < 0) {
4338c50ac050SDave Hansen 		ret = chg;
4339c50ac050SDave Hansen 		goto out_err;
4340c50ac050SDave Hansen 	}
434117c9d12eSMel Gorman 
43421c5ecae3SMike Kravetz 	/*
43431c5ecae3SMike Kravetz 	 * There must be enough pages in the subpool for the mapping. If
43441c5ecae3SMike Kravetz 	 * the subpool has a minimum size, there may be some global
43451c5ecae3SMike Kravetz 	 * reservations already in place (gbl_reserve).
43461c5ecae3SMike Kravetz 	 */
43471c5ecae3SMike Kravetz 	gbl_reserve = hugepage_subpool_get_pages(spool, chg);
43481c5ecae3SMike Kravetz 	if (gbl_reserve < 0) {
4349c50ac050SDave Hansen 		ret = -ENOSPC;
4350c50ac050SDave Hansen 		goto out_err;
4351c50ac050SDave Hansen 	}
435217c9d12eSMel Gorman 
435317c9d12eSMel Gorman 	/*
435417c9d12eSMel Gorman 	 * Check enough hugepages are available for the reservation.
435590481622SDavid Gibson 	 * Hand the pages back to the subpool if there are not
435617c9d12eSMel Gorman 	 */
43571c5ecae3SMike Kravetz 	ret = hugetlb_acct_memory(h, gbl_reserve);
435817c9d12eSMel Gorman 	if (ret < 0) {
43591c5ecae3SMike Kravetz 		/* put back original number of pages, chg */
43601c5ecae3SMike Kravetz 		(void)hugepage_subpool_put_pages(spool, chg);
4361c50ac050SDave Hansen 		goto out_err;
436217c9d12eSMel Gorman 	}
436317c9d12eSMel Gorman 
436417c9d12eSMel Gorman 	/*
436517c9d12eSMel Gorman 	 * Account for the reservations made. Shared mappings record regions
436617c9d12eSMel Gorman 	 * that have reservations as they are shared by multiple VMAs.
436717c9d12eSMel Gorman 	 * When the last VMA disappears, the region map says how much
436817c9d12eSMel Gorman 	 * the reservation was and the page cache tells how much of
436917c9d12eSMel Gorman 	 * the reservation was consumed. Private mappings are per-VMA and
437017c9d12eSMel Gorman 	 * only the consumed reservations are tracked. When the VMA
437117c9d12eSMel Gorman 	 * disappears, the original reservation is the VMA size and the
437217c9d12eSMel Gorman 	 * consumed reservations are stored in the map. Hence, nothing
437317c9d12eSMel Gorman 	 * else has to be done for private mappings here
437417c9d12eSMel Gorman 	 */
437533039678SMike Kravetz 	if (!vma || vma->vm_flags & VM_MAYSHARE) {
437633039678SMike Kravetz 		long add = region_add(resv_map, from, to);
437733039678SMike Kravetz 
437833039678SMike Kravetz 		if (unlikely(chg > add)) {
437933039678SMike Kravetz 			/*
438033039678SMike Kravetz 			 * pages in this range were added to the reserve
438133039678SMike Kravetz 			 * map between region_chg and region_add.  This
438233039678SMike Kravetz 			 * indicates a race with alloc_huge_page.  Adjust
438333039678SMike Kravetz 			 * the subpool and reserve counts modified above
438433039678SMike Kravetz 			 * based on the difference.
438533039678SMike Kravetz 			 */
438633039678SMike Kravetz 			long rsv_adjust;
438733039678SMike Kravetz 
438833039678SMike Kravetz 			rsv_adjust = hugepage_subpool_put_pages(spool,
438933039678SMike Kravetz 								chg - add);
439033039678SMike Kravetz 			hugetlb_acct_memory(h, -rsv_adjust);
439133039678SMike Kravetz 		}
439233039678SMike Kravetz 	}
4393a43a8c39SChen, Kenneth W 	return 0;
4394c50ac050SDave Hansen out_err:
43955e911373SMike Kravetz 	if (!vma || vma->vm_flags & VM_MAYSHARE)
4396ff8c0c53SMike Kravetz 		/* Don't call region_abort if region_chg failed */
4397ff8c0c53SMike Kravetz 		if (chg >= 0)
43985e911373SMike Kravetz 			region_abort(resv_map, from, to);
4399f031dd27SJoonsoo Kim 	if (vma && is_vma_resv_set(vma, HPAGE_RESV_OWNER))
4400f031dd27SJoonsoo Kim 		kref_put(&resv_map->refs, resv_map_release);
4401c50ac050SDave Hansen 	return ret;
4402a43a8c39SChen, Kenneth W }
4403a43a8c39SChen, Kenneth W 
4404b5cec28dSMike Kravetz long hugetlb_unreserve_pages(struct inode *inode, long start, long end,
4405b5cec28dSMike Kravetz 								long freed)
4406a43a8c39SChen, Kenneth W {
4407a5516438SAndi Kleen 	struct hstate *h = hstate_inode(inode);
44084e35f483SJoonsoo Kim 	struct resv_map *resv_map = inode_resv_map(inode);
44099119a41eSJoonsoo Kim 	long chg = 0;
441090481622SDavid Gibson 	struct hugepage_subpool *spool = subpool_inode(inode);
44111c5ecae3SMike Kravetz 	long gbl_reserve;
441245c682a6SKen Chen 
4413b5cec28dSMike Kravetz 	if (resv_map) {
4414b5cec28dSMike Kravetz 		chg = region_del(resv_map, start, end);
4415b5cec28dSMike Kravetz 		/*
4416b5cec28dSMike Kravetz 		 * region_del() can fail in the rare case where a region
4417b5cec28dSMike Kravetz 		 * must be split and another region descriptor can not be
4418b5cec28dSMike Kravetz 		 * allocated.  If end == LONG_MAX, it will not fail.
4419b5cec28dSMike Kravetz 		 */
4420b5cec28dSMike Kravetz 		if (chg < 0)
4421b5cec28dSMike Kravetz 			return chg;
4422b5cec28dSMike Kravetz 	}
4423b5cec28dSMike Kravetz 
442445c682a6SKen Chen 	spin_lock(&inode->i_lock);
4425e4c6f8beSEric Sandeen 	inode->i_blocks -= (blocks_per_huge_page(h) * freed);
442645c682a6SKen Chen 	spin_unlock(&inode->i_lock);
442745c682a6SKen Chen 
44281c5ecae3SMike Kravetz 	/*
44291c5ecae3SMike Kravetz 	 * If the subpool has a minimum size, the number of global
44301c5ecae3SMike Kravetz 	 * reservations to be released may be adjusted.
44311c5ecae3SMike Kravetz 	 */
44321c5ecae3SMike Kravetz 	gbl_reserve = hugepage_subpool_put_pages(spool, (chg - freed));
44331c5ecae3SMike Kravetz 	hugetlb_acct_memory(h, -gbl_reserve);
4434b5cec28dSMike Kravetz 
4435b5cec28dSMike Kravetz 	return 0;
4436a43a8c39SChen, Kenneth W }
443793f70f90SNaoya Horiguchi 
44383212b535SSteve Capper #ifdef CONFIG_ARCH_WANT_HUGE_PMD_SHARE
44393212b535SSteve Capper static unsigned long page_table_shareable(struct vm_area_struct *svma,
44403212b535SSteve Capper 				struct vm_area_struct *vma,
44413212b535SSteve Capper 				unsigned long addr, pgoff_t idx)
44423212b535SSteve Capper {
44433212b535SSteve Capper 	unsigned long saddr = ((idx - svma->vm_pgoff) << PAGE_SHIFT) +
44443212b535SSteve Capper 				svma->vm_start;
44453212b535SSteve Capper 	unsigned long sbase = saddr & PUD_MASK;
44463212b535SSteve Capper 	unsigned long s_end = sbase + PUD_SIZE;
44473212b535SSteve Capper 
44483212b535SSteve Capper 	/* Allow segments to share if only one is marked locked */
4449de60f5f1SEric B Munson 	unsigned long vm_flags = vma->vm_flags & VM_LOCKED_CLEAR_MASK;
4450de60f5f1SEric B Munson 	unsigned long svm_flags = svma->vm_flags & VM_LOCKED_CLEAR_MASK;
44513212b535SSteve Capper 
44523212b535SSteve Capper 	/*
44533212b535SSteve Capper 	 * match the virtual addresses, permission and the alignment of the
44543212b535SSteve Capper 	 * page table page.
44553212b535SSteve Capper 	 */
44563212b535SSteve Capper 	if (pmd_index(addr) != pmd_index(saddr) ||
44573212b535SSteve Capper 	    vm_flags != svm_flags ||
44583212b535SSteve Capper 	    sbase < svma->vm_start || svma->vm_end < s_end)
44593212b535SSteve Capper 		return 0;
44603212b535SSteve Capper 
44613212b535SSteve Capper 	return saddr;
44623212b535SSteve Capper }
44633212b535SSteve Capper 
446431aafb45SNicholas Krause static bool vma_shareable(struct vm_area_struct *vma, unsigned long addr)
44653212b535SSteve Capper {
44663212b535SSteve Capper 	unsigned long base = addr & PUD_MASK;
44673212b535SSteve Capper 	unsigned long end = base + PUD_SIZE;
44683212b535SSteve Capper 
44693212b535SSteve Capper 	/*
44703212b535SSteve Capper 	 * check on proper vm_flags and page table alignment
44713212b535SSteve Capper 	 */
44723212b535SSteve Capper 	if (vma->vm_flags & VM_MAYSHARE &&
44733212b535SSteve Capper 	    vma->vm_start <= base && end <= vma->vm_end)
447431aafb45SNicholas Krause 		return true;
447531aafb45SNicholas Krause 	return false;
44763212b535SSteve Capper }
44773212b535SSteve Capper 
44783212b535SSteve Capper /*
44793212b535SSteve Capper  * Search for a shareable pmd page for hugetlb. In any case calls pmd_alloc()
44803212b535SSteve Capper  * and returns the corresponding pte. While this is not necessary for the
44813212b535SSteve Capper  * !shared pmd case because we can allocate the pmd later as well, it makes the
44823212b535SSteve Capper  * code much cleaner. pmd allocation is essential for the shared case because
4483c8c06efaSDavidlohr Bueso  * pud has to be populated inside the same i_mmap_rwsem section - otherwise
44843212b535SSteve Capper  * racing tasks could either miss the sharing (see huge_pte_offset) or select a
44853212b535SSteve Capper  * bad pmd for sharing.
44863212b535SSteve Capper  */
44873212b535SSteve Capper pte_t *huge_pmd_share(struct mm_struct *mm, unsigned long addr, pud_t *pud)
44883212b535SSteve Capper {
44893212b535SSteve Capper 	struct vm_area_struct *vma = find_vma(mm, addr);
44903212b535SSteve Capper 	struct address_space *mapping = vma->vm_file->f_mapping;
44913212b535SSteve Capper 	pgoff_t idx = ((addr - vma->vm_start) >> PAGE_SHIFT) +
44923212b535SSteve Capper 			vma->vm_pgoff;
44933212b535SSteve Capper 	struct vm_area_struct *svma;
44943212b535SSteve Capper 	unsigned long saddr;
44953212b535SSteve Capper 	pte_t *spte = NULL;
44963212b535SSteve Capper 	pte_t *pte;
4497cb900f41SKirill A. Shutemov 	spinlock_t *ptl;
44983212b535SSteve Capper 
44993212b535SSteve Capper 	if (!vma_shareable(vma, addr))
45003212b535SSteve Capper 		return (pte_t *)pmd_alloc(mm, pud, addr);
45013212b535SSteve Capper 
450283cde9e8SDavidlohr Bueso 	i_mmap_lock_write(mapping);
45033212b535SSteve Capper 	vma_interval_tree_foreach(svma, &mapping->i_mmap, idx, idx) {
45043212b535SSteve Capper 		if (svma == vma)
45053212b535SSteve Capper 			continue;
45063212b535SSteve Capper 
45073212b535SSteve Capper 		saddr = page_table_shareable(svma, vma, addr, idx);
45083212b535SSteve Capper 		if (saddr) {
45097868a208SPunit Agrawal 			spte = huge_pte_offset(svma->vm_mm, saddr,
45107868a208SPunit Agrawal 					       vma_mmu_pagesize(svma));
45113212b535SSteve Capper 			if (spte) {
45123212b535SSteve Capper 				get_page(virt_to_page(spte));
45133212b535SSteve Capper 				break;
45143212b535SSteve Capper 			}
45153212b535SSteve Capper 		}
45163212b535SSteve Capper 	}
45173212b535SSteve Capper 
45183212b535SSteve Capper 	if (!spte)
45193212b535SSteve Capper 		goto out;
45203212b535SSteve Capper 
45218bea8052SAneesh Kumar K.V 	ptl = huge_pte_lock(hstate_vma(vma), mm, spte);
4522dc6c9a35SKirill A. Shutemov 	if (pud_none(*pud)) {
45233212b535SSteve Capper 		pud_populate(mm, pud,
45243212b535SSteve Capper 				(pmd_t *)((unsigned long)spte & PAGE_MASK));
4525c17b1f42SKirill A. Shutemov 		mm_inc_nr_pmds(mm);
4526dc6c9a35SKirill A. Shutemov 	} else {
45273212b535SSteve Capper 		put_page(virt_to_page(spte));
4528dc6c9a35SKirill A. Shutemov 	}
4529cb900f41SKirill A. Shutemov 	spin_unlock(ptl);
45303212b535SSteve Capper out:
45313212b535SSteve Capper 	pte = (pte_t *)pmd_alloc(mm, pud, addr);
453283cde9e8SDavidlohr Bueso 	i_mmap_unlock_write(mapping);
45333212b535SSteve Capper 	return pte;
45343212b535SSteve Capper }
45353212b535SSteve Capper 
45363212b535SSteve Capper /*
45373212b535SSteve Capper  * unmap huge page backed by shared pte.
45383212b535SSteve Capper  *
45393212b535SSteve Capper  * Hugetlb pte page is ref counted at the time of mapping.  If pte is shared
45403212b535SSteve Capper  * indicated by page_count > 1, unmap is achieved by clearing pud and
45413212b535SSteve Capper  * decrementing the ref count. If count == 1, the pte page is not shared.
45423212b535SSteve Capper  *
4543cb900f41SKirill A. Shutemov  * called with page table lock held.
45443212b535SSteve Capper  *
45453212b535SSteve Capper  * returns: 1 successfully unmapped a shared pte page
45463212b535SSteve Capper  *	    0 the underlying pte page is not shared, or it is the last user
45473212b535SSteve Capper  */
45483212b535SSteve Capper int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep)
45493212b535SSteve Capper {
45503212b535SSteve Capper 	pgd_t *pgd = pgd_offset(mm, *addr);
4551c2febafcSKirill A. Shutemov 	p4d_t *p4d = p4d_offset(pgd, *addr);
4552c2febafcSKirill A. Shutemov 	pud_t *pud = pud_offset(p4d, *addr);
45533212b535SSteve Capper 
45543212b535SSteve Capper 	BUG_ON(page_count(virt_to_page(ptep)) == 0);
45553212b535SSteve Capper 	if (page_count(virt_to_page(ptep)) == 1)
45563212b535SSteve Capper 		return 0;
45573212b535SSteve Capper 
45583212b535SSteve Capper 	pud_clear(pud);
45593212b535SSteve Capper 	put_page(virt_to_page(ptep));
4560dc6c9a35SKirill A. Shutemov 	mm_dec_nr_pmds(mm);
45613212b535SSteve Capper 	*addr = ALIGN(*addr, HPAGE_SIZE * PTRS_PER_PTE) - HPAGE_SIZE;
45623212b535SSteve Capper 	return 1;
45633212b535SSteve Capper }
45649e5fc74cSSteve Capper #define want_pmd_share()	(1)
45659e5fc74cSSteve Capper #else /* !CONFIG_ARCH_WANT_HUGE_PMD_SHARE */
45669e5fc74cSSteve Capper pte_t *huge_pmd_share(struct mm_struct *mm, unsigned long addr, pud_t *pud)
45679e5fc74cSSteve Capper {
45689e5fc74cSSteve Capper 	return NULL;
45699e5fc74cSSteve Capper }
4570e81f2d22SZhang Zhen 
4571e81f2d22SZhang Zhen int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep)
4572e81f2d22SZhang Zhen {
4573e81f2d22SZhang Zhen 	return 0;
4574e81f2d22SZhang Zhen }
45759e5fc74cSSteve Capper #define want_pmd_share()	(0)
45763212b535SSteve Capper #endif /* CONFIG_ARCH_WANT_HUGE_PMD_SHARE */
45773212b535SSteve Capper 
45789e5fc74cSSteve Capper #ifdef CONFIG_ARCH_WANT_GENERAL_HUGETLB
45799e5fc74cSSteve Capper pte_t *huge_pte_alloc(struct mm_struct *mm,
45809e5fc74cSSteve Capper 			unsigned long addr, unsigned long sz)
45819e5fc74cSSteve Capper {
45829e5fc74cSSteve Capper 	pgd_t *pgd;
4583c2febafcSKirill A. Shutemov 	p4d_t *p4d;
45849e5fc74cSSteve Capper 	pud_t *pud;
45859e5fc74cSSteve Capper 	pte_t *pte = NULL;
45869e5fc74cSSteve Capper 
45879e5fc74cSSteve Capper 	pgd = pgd_offset(mm, addr);
4588c2febafcSKirill A. Shutemov 	p4d = p4d_offset(pgd, addr);
4589c2febafcSKirill A. Shutemov 	pud = pud_alloc(mm, p4d, addr);
45909e5fc74cSSteve Capper 	if (pud) {
45919e5fc74cSSteve Capper 		if (sz == PUD_SIZE) {
45929e5fc74cSSteve Capper 			pte = (pte_t *)pud;
45939e5fc74cSSteve Capper 		} else {
45949e5fc74cSSteve Capper 			BUG_ON(sz != PMD_SIZE);
45959e5fc74cSSteve Capper 			if (want_pmd_share() && pud_none(*pud))
45969e5fc74cSSteve Capper 				pte = huge_pmd_share(mm, addr, pud);
45979e5fc74cSSteve Capper 			else
45989e5fc74cSSteve Capper 				pte = (pte_t *)pmd_alloc(mm, pud, addr);
45999e5fc74cSSteve Capper 		}
46009e5fc74cSSteve Capper 	}
46014e666314SMichal Hocko 	BUG_ON(pte && pte_present(*pte) && !pte_huge(*pte));
46029e5fc74cSSteve Capper 
46039e5fc74cSSteve Capper 	return pte;
46049e5fc74cSSteve Capper }
46059e5fc74cSSteve Capper 
46067868a208SPunit Agrawal pte_t *huge_pte_offset(struct mm_struct *mm,
46077868a208SPunit Agrawal 		       unsigned long addr, unsigned long sz)
46089e5fc74cSSteve Capper {
46099e5fc74cSSteve Capper 	pgd_t *pgd;
4610c2febafcSKirill A. Shutemov 	p4d_t *p4d;
46119e5fc74cSSteve Capper 	pud_t *pud;
4612c2febafcSKirill A. Shutemov 	pmd_t *pmd;
46139e5fc74cSSteve Capper 
46149e5fc74cSSteve Capper 	pgd = pgd_offset(mm, addr);
4615c2febafcSKirill A. Shutemov 	if (!pgd_present(*pgd))
4616c2febafcSKirill A. Shutemov 		return NULL;
4617c2febafcSKirill A. Shutemov 	p4d = p4d_offset(pgd, addr);
4618c2febafcSKirill A. Shutemov 	if (!p4d_present(*p4d))
4619c2febafcSKirill A. Shutemov 		return NULL;
4620c2febafcSKirill A. Shutemov 	pud = pud_offset(p4d, addr);
4621c2febafcSKirill A. Shutemov 	if (!pud_present(*pud))
4622c2febafcSKirill A. Shutemov 		return NULL;
46239e5fc74cSSteve Capper 	if (pud_huge(*pud))
46249e5fc74cSSteve Capper 		return (pte_t *)pud;
46259e5fc74cSSteve Capper 	pmd = pmd_offset(pud, addr);
46269e5fc74cSSteve Capper 	return (pte_t *) pmd;
46279e5fc74cSSteve Capper }
46289e5fc74cSSteve Capper 
462961f77edaSNaoya Horiguchi #endif /* CONFIG_ARCH_WANT_GENERAL_HUGETLB */
463061f77edaSNaoya Horiguchi 
463161f77edaSNaoya Horiguchi /*
463261f77edaSNaoya Horiguchi  * These functions are overwritable if your architecture needs its own
463361f77edaSNaoya Horiguchi  * behavior.
463461f77edaSNaoya Horiguchi  */
463561f77edaSNaoya Horiguchi struct page * __weak
463661f77edaSNaoya Horiguchi follow_huge_addr(struct mm_struct *mm, unsigned long address,
463761f77edaSNaoya Horiguchi 			      int write)
463861f77edaSNaoya Horiguchi {
463961f77edaSNaoya Horiguchi 	return ERR_PTR(-EINVAL);
464061f77edaSNaoya Horiguchi }
464161f77edaSNaoya Horiguchi 
464261f77edaSNaoya Horiguchi struct page * __weak
46434dc71451SAneesh Kumar K.V follow_huge_pd(struct vm_area_struct *vma,
46444dc71451SAneesh Kumar K.V 	       unsigned long address, hugepd_t hpd, int flags, int pdshift)
46454dc71451SAneesh Kumar K.V {
46464dc71451SAneesh Kumar K.V 	WARN(1, "hugepd follow called with no support for hugepage directory format\n");
46474dc71451SAneesh Kumar K.V 	return NULL;
46484dc71451SAneesh Kumar K.V }
46494dc71451SAneesh Kumar K.V 
46504dc71451SAneesh Kumar K.V struct page * __weak
46519e5fc74cSSteve Capper follow_huge_pmd(struct mm_struct *mm, unsigned long address,
4652e66f17ffSNaoya Horiguchi 		pmd_t *pmd, int flags)
46539e5fc74cSSteve Capper {
4654e66f17ffSNaoya Horiguchi 	struct page *page = NULL;
4655e66f17ffSNaoya Horiguchi 	spinlock_t *ptl;
4656c9d398faSNaoya Horiguchi 	pte_t pte;
4657e66f17ffSNaoya Horiguchi retry:
4658e66f17ffSNaoya Horiguchi 	ptl = pmd_lockptr(mm, pmd);
4659e66f17ffSNaoya Horiguchi 	spin_lock(ptl);
4660e66f17ffSNaoya Horiguchi 	/*
4661e66f17ffSNaoya Horiguchi 	 * make sure that the address range covered by this pmd is not
4662e66f17ffSNaoya Horiguchi 	 * unmapped from other threads.
4663e66f17ffSNaoya Horiguchi 	 */
4664e66f17ffSNaoya Horiguchi 	if (!pmd_huge(*pmd))
4665e66f17ffSNaoya Horiguchi 		goto out;
4666c9d398faSNaoya Horiguchi 	pte = huge_ptep_get((pte_t *)pmd);
4667c9d398faSNaoya Horiguchi 	if (pte_present(pte)) {
466897534127SGerald Schaefer 		page = pmd_page(*pmd) + ((address & ~PMD_MASK) >> PAGE_SHIFT);
4669e66f17ffSNaoya Horiguchi 		if (flags & FOLL_GET)
4670e66f17ffSNaoya Horiguchi 			get_page(page);
4671e66f17ffSNaoya Horiguchi 	} else {
4672c9d398faSNaoya Horiguchi 		if (is_hugetlb_entry_migration(pte)) {
4673e66f17ffSNaoya Horiguchi 			spin_unlock(ptl);
4674e66f17ffSNaoya Horiguchi 			__migration_entry_wait(mm, (pte_t *)pmd, ptl);
4675e66f17ffSNaoya Horiguchi 			goto retry;
4676e66f17ffSNaoya Horiguchi 		}
4677e66f17ffSNaoya Horiguchi 		/*
4678e66f17ffSNaoya Horiguchi 		 * hwpoisoned entry is treated as no_page_table in
4679e66f17ffSNaoya Horiguchi 		 * follow_page_mask().
4680e66f17ffSNaoya Horiguchi 		 */
4681e66f17ffSNaoya Horiguchi 	}
4682e66f17ffSNaoya Horiguchi out:
4683e66f17ffSNaoya Horiguchi 	spin_unlock(ptl);
46849e5fc74cSSteve Capper 	return page;
46859e5fc74cSSteve Capper }
46869e5fc74cSSteve Capper 
468761f77edaSNaoya Horiguchi struct page * __weak
46889e5fc74cSSteve Capper follow_huge_pud(struct mm_struct *mm, unsigned long address,
4689e66f17ffSNaoya Horiguchi 		pud_t *pud, int flags)
46909e5fc74cSSteve Capper {
4691e66f17ffSNaoya Horiguchi 	if (flags & FOLL_GET)
4692e66f17ffSNaoya Horiguchi 		return NULL;
46939e5fc74cSSteve Capper 
4694e66f17ffSNaoya Horiguchi 	return pte_page(*(pte_t *)pud) + ((address & ~PUD_MASK) >> PAGE_SHIFT);
46959e5fc74cSSteve Capper }
46969e5fc74cSSteve Capper 
4697faaa5b62SAnshuman Khandual struct page * __weak
4698faaa5b62SAnshuman Khandual follow_huge_pgd(struct mm_struct *mm, unsigned long address, pgd_t *pgd, int flags)
4699faaa5b62SAnshuman Khandual {
4700faaa5b62SAnshuman Khandual 	if (flags & FOLL_GET)
4701faaa5b62SAnshuman Khandual 		return NULL;
4702faaa5b62SAnshuman Khandual 
4703faaa5b62SAnshuman Khandual 	return pte_page(*(pte_t *)pgd) + ((address & ~PGDIR_MASK) >> PAGE_SHIFT);
4704faaa5b62SAnshuman Khandual }
4705faaa5b62SAnshuman Khandual 
470631caf665SNaoya Horiguchi bool isolate_huge_page(struct page *page, struct list_head *list)
470731caf665SNaoya Horiguchi {
4708bcc54222SNaoya Horiguchi 	bool ret = true;
4709bcc54222SNaoya Horiguchi 
4710309381feSSasha Levin 	VM_BUG_ON_PAGE(!PageHead(page), page);
471131caf665SNaoya Horiguchi 	spin_lock(&hugetlb_lock);
4712bcc54222SNaoya Horiguchi 	if (!page_huge_active(page) || !get_page_unless_zero(page)) {
4713bcc54222SNaoya Horiguchi 		ret = false;
4714bcc54222SNaoya Horiguchi 		goto unlock;
4715bcc54222SNaoya Horiguchi 	}
4716bcc54222SNaoya Horiguchi 	clear_page_huge_active(page);
471731caf665SNaoya Horiguchi 	list_move_tail(&page->lru, list);
4718bcc54222SNaoya Horiguchi unlock:
471931caf665SNaoya Horiguchi 	spin_unlock(&hugetlb_lock);
4720bcc54222SNaoya Horiguchi 	return ret;
472131caf665SNaoya Horiguchi }
472231caf665SNaoya Horiguchi 
472331caf665SNaoya Horiguchi void putback_active_hugepage(struct page *page)
472431caf665SNaoya Horiguchi {
4725309381feSSasha Levin 	VM_BUG_ON_PAGE(!PageHead(page), page);
472631caf665SNaoya Horiguchi 	spin_lock(&hugetlb_lock);
4727bcc54222SNaoya Horiguchi 	set_page_huge_active(page);
472831caf665SNaoya Horiguchi 	list_move_tail(&page->lru, &(page_hstate(page))->hugepage_activelist);
472931caf665SNaoya Horiguchi 	spin_unlock(&hugetlb_lock);
473031caf665SNaoya Horiguchi 	put_page(page);
473131caf665SNaoya Horiguchi }
4732