xref: /openbmc/linux/mm/hugetlb.c (revision 06808b08)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * Generic hugetlb support.
31da177e4SLinus Torvalds  * (C) William Irwin, April 2004
41da177e4SLinus Torvalds  */
51da177e4SLinus Torvalds #include <linux/gfp.h>
61da177e4SLinus Torvalds #include <linux/list.h>
71da177e4SLinus Torvalds #include <linux/init.h>
81da177e4SLinus Torvalds #include <linux/module.h>
91da177e4SLinus Torvalds #include <linux/mm.h>
10e1759c21SAlexey Dobriyan #include <linux/seq_file.h>
111da177e4SLinus Torvalds #include <linux/sysctl.h>
121da177e4SLinus Torvalds #include <linux/highmem.h>
13cddb8a5cSAndrea Arcangeli #include <linux/mmu_notifier.h>
141da177e4SLinus Torvalds #include <linux/nodemask.h>
1563551ae0SDavid Gibson #include <linux/pagemap.h>
165da7ca86SChristoph Lameter #include <linux/mempolicy.h>
17aea47ff3SChristoph Lameter #include <linux/cpuset.h>
183935baa9SDavid Gibson #include <linux/mutex.h>
19aa888a74SAndi Kleen #include <linux/bootmem.h>
20a3437870SNishanth Aravamudan #include <linux/sysfs.h>
21d6606683SLinus Torvalds 
2263551ae0SDavid Gibson #include <asm/page.h>
2363551ae0SDavid Gibson #include <asm/pgtable.h>
2478a34ae2SAdrian Bunk #include <asm/io.h>
2563551ae0SDavid Gibson 
2663551ae0SDavid Gibson #include <linux/hugetlb.h>
277835e98bSNick Piggin #include "internal.h"
281da177e4SLinus Torvalds 
291da177e4SLinus Torvalds const unsigned long hugetlb_zero = 0, hugetlb_infinity = ~0UL;
30396faf03SMel Gorman static gfp_t htlb_alloc_mask = GFP_HIGHUSER;
31396faf03SMel Gorman unsigned long hugepages_treat_as_movable;
32a5516438SAndi Kleen 
33e5ff2159SAndi Kleen static int max_hstate;
34e5ff2159SAndi Kleen unsigned int default_hstate_idx;
35e5ff2159SAndi Kleen struct hstate hstates[HUGE_MAX_HSTATE];
36e5ff2159SAndi Kleen 
3753ba51d2SJon Tollefson __initdata LIST_HEAD(huge_boot_pages);
3853ba51d2SJon Tollefson 
39e5ff2159SAndi Kleen /* for command line parsing */
40e5ff2159SAndi Kleen static struct hstate * __initdata parsed_hstate;
41e5ff2159SAndi Kleen static unsigned long __initdata default_hstate_max_huge_pages;
42e11bfbfcSNick Piggin static unsigned long __initdata default_hstate_size;
43e5ff2159SAndi Kleen 
44e5ff2159SAndi Kleen #define for_each_hstate(h) \
45e5ff2159SAndi Kleen 	for ((h) = hstates; (h) < &hstates[max_hstate]; (h)++)
46396faf03SMel Gorman 
473935baa9SDavid Gibson /*
483935baa9SDavid Gibson  * Protects updates to hugepage_freelists, nr_huge_pages, and free_huge_pages
493935baa9SDavid Gibson  */
503935baa9SDavid Gibson static DEFINE_SPINLOCK(hugetlb_lock);
510bd0f9fbSEric Paris 
52e7c4b0bfSAndy Whitcroft /*
5396822904SAndy Whitcroft  * Region tracking -- allows tracking of reservations and instantiated pages
5496822904SAndy Whitcroft  *                    across the pages in a mapping.
5584afd99bSAndy Whitcroft  *
5684afd99bSAndy Whitcroft  * The region data structures are protected by a combination of the mmap_sem
5784afd99bSAndy Whitcroft  * and the hugetlb_instantion_mutex.  To access or modify a region the caller
5884afd99bSAndy Whitcroft  * must either hold the mmap_sem for write, or the mmap_sem for read and
5984afd99bSAndy Whitcroft  * the hugetlb_instantiation mutex:
6084afd99bSAndy Whitcroft  *
6184afd99bSAndy Whitcroft  * 	down_write(&mm->mmap_sem);
6284afd99bSAndy Whitcroft  * or
6384afd99bSAndy Whitcroft  * 	down_read(&mm->mmap_sem);
6484afd99bSAndy Whitcroft  * 	mutex_lock(&hugetlb_instantiation_mutex);
6596822904SAndy Whitcroft  */
6696822904SAndy Whitcroft struct file_region {
6796822904SAndy Whitcroft 	struct list_head link;
6896822904SAndy Whitcroft 	long from;
6996822904SAndy Whitcroft 	long to;
7096822904SAndy Whitcroft };
7196822904SAndy Whitcroft 
7296822904SAndy Whitcroft static long region_add(struct list_head *head, long f, long t)
7396822904SAndy Whitcroft {
7496822904SAndy Whitcroft 	struct file_region *rg, *nrg, *trg;
7596822904SAndy Whitcroft 
7696822904SAndy Whitcroft 	/* Locate the region we are either in or before. */
7796822904SAndy Whitcroft 	list_for_each_entry(rg, head, link)
7896822904SAndy Whitcroft 		if (f <= rg->to)
7996822904SAndy Whitcroft 			break;
8096822904SAndy Whitcroft 
8196822904SAndy Whitcroft 	/* Round our left edge to the current segment if it encloses us. */
8296822904SAndy Whitcroft 	if (f > rg->from)
8396822904SAndy Whitcroft 		f = rg->from;
8496822904SAndy Whitcroft 
8596822904SAndy Whitcroft 	/* Check for and consume any regions we now overlap with. */
8696822904SAndy Whitcroft 	nrg = rg;
8796822904SAndy Whitcroft 	list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
8896822904SAndy Whitcroft 		if (&rg->link == head)
8996822904SAndy Whitcroft 			break;
9096822904SAndy Whitcroft 		if (rg->from > t)
9196822904SAndy Whitcroft 			break;
9296822904SAndy Whitcroft 
9396822904SAndy Whitcroft 		/* If this area reaches higher then extend our area to
9496822904SAndy Whitcroft 		 * include it completely.  If this is not the first area
9596822904SAndy Whitcroft 		 * which we intend to reuse, free it. */
9696822904SAndy Whitcroft 		if (rg->to > t)
9796822904SAndy Whitcroft 			t = rg->to;
9896822904SAndy Whitcroft 		if (rg != nrg) {
9996822904SAndy Whitcroft 			list_del(&rg->link);
10096822904SAndy Whitcroft 			kfree(rg);
10196822904SAndy Whitcroft 		}
10296822904SAndy Whitcroft 	}
10396822904SAndy Whitcroft 	nrg->from = f;
10496822904SAndy Whitcroft 	nrg->to = t;
10596822904SAndy Whitcroft 	return 0;
10696822904SAndy Whitcroft }
10796822904SAndy Whitcroft 
10896822904SAndy Whitcroft static long region_chg(struct list_head *head, long f, long t)
10996822904SAndy Whitcroft {
11096822904SAndy Whitcroft 	struct file_region *rg, *nrg;
11196822904SAndy Whitcroft 	long chg = 0;
11296822904SAndy Whitcroft 
11396822904SAndy Whitcroft 	/* Locate the region we are before or in. */
11496822904SAndy Whitcroft 	list_for_each_entry(rg, head, link)
11596822904SAndy Whitcroft 		if (f <= rg->to)
11696822904SAndy Whitcroft 			break;
11796822904SAndy Whitcroft 
11896822904SAndy Whitcroft 	/* If we are below the current region then a new region is required.
11996822904SAndy Whitcroft 	 * Subtle, allocate a new region at the position but make it zero
12096822904SAndy Whitcroft 	 * size such that we can guarantee to record the reservation. */
12196822904SAndy Whitcroft 	if (&rg->link == head || t < rg->from) {
12296822904SAndy Whitcroft 		nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
12396822904SAndy Whitcroft 		if (!nrg)
12496822904SAndy Whitcroft 			return -ENOMEM;
12596822904SAndy Whitcroft 		nrg->from = f;
12696822904SAndy Whitcroft 		nrg->to   = f;
12796822904SAndy Whitcroft 		INIT_LIST_HEAD(&nrg->link);
12896822904SAndy Whitcroft 		list_add(&nrg->link, rg->link.prev);
12996822904SAndy Whitcroft 
13096822904SAndy Whitcroft 		return t - f;
13196822904SAndy Whitcroft 	}
13296822904SAndy Whitcroft 
13396822904SAndy Whitcroft 	/* Round our left edge to the current segment if it encloses us. */
13496822904SAndy Whitcroft 	if (f > rg->from)
13596822904SAndy Whitcroft 		f = rg->from;
13696822904SAndy Whitcroft 	chg = t - f;
13796822904SAndy Whitcroft 
13896822904SAndy Whitcroft 	/* Check for and consume any regions we now overlap with. */
13996822904SAndy Whitcroft 	list_for_each_entry(rg, rg->link.prev, link) {
14096822904SAndy Whitcroft 		if (&rg->link == head)
14196822904SAndy Whitcroft 			break;
14296822904SAndy Whitcroft 		if (rg->from > t)
14396822904SAndy Whitcroft 			return chg;
14496822904SAndy Whitcroft 
14596822904SAndy Whitcroft 		/* We overlap with this area, if it extends futher than
14696822904SAndy Whitcroft 		 * us then we must extend ourselves.  Account for its
14796822904SAndy Whitcroft 		 * existing reservation. */
14896822904SAndy Whitcroft 		if (rg->to > t) {
14996822904SAndy Whitcroft 			chg += rg->to - t;
15096822904SAndy Whitcroft 			t = rg->to;
15196822904SAndy Whitcroft 		}
15296822904SAndy Whitcroft 		chg -= rg->to - rg->from;
15396822904SAndy Whitcroft 	}
15496822904SAndy Whitcroft 	return chg;
15596822904SAndy Whitcroft }
15696822904SAndy Whitcroft 
15796822904SAndy Whitcroft static long region_truncate(struct list_head *head, long end)
15896822904SAndy Whitcroft {
15996822904SAndy Whitcroft 	struct file_region *rg, *trg;
16096822904SAndy Whitcroft 	long chg = 0;
16196822904SAndy Whitcroft 
16296822904SAndy Whitcroft 	/* Locate the region we are either in or before. */
16396822904SAndy Whitcroft 	list_for_each_entry(rg, head, link)
16496822904SAndy Whitcroft 		if (end <= rg->to)
16596822904SAndy Whitcroft 			break;
16696822904SAndy Whitcroft 	if (&rg->link == head)
16796822904SAndy Whitcroft 		return 0;
16896822904SAndy Whitcroft 
16996822904SAndy Whitcroft 	/* If we are in the middle of a region then adjust it. */
17096822904SAndy Whitcroft 	if (end > rg->from) {
17196822904SAndy Whitcroft 		chg = rg->to - end;
17296822904SAndy Whitcroft 		rg->to = end;
17396822904SAndy Whitcroft 		rg = list_entry(rg->link.next, typeof(*rg), link);
17496822904SAndy Whitcroft 	}
17596822904SAndy Whitcroft 
17696822904SAndy Whitcroft 	/* Drop any remaining regions. */
17796822904SAndy Whitcroft 	list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
17896822904SAndy Whitcroft 		if (&rg->link == head)
17996822904SAndy Whitcroft 			break;
18096822904SAndy Whitcroft 		chg += rg->to - rg->from;
18196822904SAndy Whitcroft 		list_del(&rg->link);
18296822904SAndy Whitcroft 		kfree(rg);
18396822904SAndy Whitcroft 	}
18496822904SAndy Whitcroft 	return chg;
18596822904SAndy Whitcroft }
18696822904SAndy Whitcroft 
18784afd99bSAndy Whitcroft static long region_count(struct list_head *head, long f, long t)
18884afd99bSAndy Whitcroft {
18984afd99bSAndy Whitcroft 	struct file_region *rg;
19084afd99bSAndy Whitcroft 	long chg = 0;
19184afd99bSAndy Whitcroft 
19284afd99bSAndy Whitcroft 	/* Locate each segment we overlap with, and count that overlap. */
19384afd99bSAndy Whitcroft 	list_for_each_entry(rg, head, link) {
19484afd99bSAndy Whitcroft 		int seg_from;
19584afd99bSAndy Whitcroft 		int seg_to;
19684afd99bSAndy Whitcroft 
19784afd99bSAndy Whitcroft 		if (rg->to <= f)
19884afd99bSAndy Whitcroft 			continue;
19984afd99bSAndy Whitcroft 		if (rg->from >= t)
20084afd99bSAndy Whitcroft 			break;
20184afd99bSAndy Whitcroft 
20284afd99bSAndy Whitcroft 		seg_from = max(rg->from, f);
20384afd99bSAndy Whitcroft 		seg_to = min(rg->to, t);
20484afd99bSAndy Whitcroft 
20584afd99bSAndy Whitcroft 		chg += seg_to - seg_from;
20684afd99bSAndy Whitcroft 	}
20784afd99bSAndy Whitcroft 
20884afd99bSAndy Whitcroft 	return chg;
20984afd99bSAndy Whitcroft }
21084afd99bSAndy Whitcroft 
21196822904SAndy Whitcroft /*
212e7c4b0bfSAndy Whitcroft  * Convert the address within this vma to the page offset within
213e7c4b0bfSAndy Whitcroft  * the mapping, in pagecache page units; huge pages here.
214e7c4b0bfSAndy Whitcroft  */
215a5516438SAndi Kleen static pgoff_t vma_hugecache_offset(struct hstate *h,
216a5516438SAndi Kleen 			struct vm_area_struct *vma, unsigned long address)
217e7c4b0bfSAndy Whitcroft {
218a5516438SAndi Kleen 	return ((address - vma->vm_start) >> huge_page_shift(h)) +
219a5516438SAndi Kleen 			(vma->vm_pgoff >> huge_page_order(h));
220e7c4b0bfSAndy Whitcroft }
221e7c4b0bfSAndy Whitcroft 
22284afd99bSAndy Whitcroft /*
22308fba699SMel Gorman  * Return the size of the pages allocated when backing a VMA. In the majority
22408fba699SMel Gorman  * cases this will be same size as used by the page table entries.
22508fba699SMel Gorman  */
22608fba699SMel Gorman unsigned long vma_kernel_pagesize(struct vm_area_struct *vma)
22708fba699SMel Gorman {
22808fba699SMel Gorman 	struct hstate *hstate;
22908fba699SMel Gorman 
23008fba699SMel Gorman 	if (!is_vm_hugetlb_page(vma))
23108fba699SMel Gorman 		return PAGE_SIZE;
23208fba699SMel Gorman 
23308fba699SMel Gorman 	hstate = hstate_vma(vma);
23408fba699SMel Gorman 
23508fba699SMel Gorman 	return 1UL << (hstate->order + PAGE_SHIFT);
23608fba699SMel Gorman }
237f340ca0fSJoerg Roedel EXPORT_SYMBOL_GPL(vma_kernel_pagesize);
23808fba699SMel Gorman 
23908fba699SMel Gorman /*
2403340289dSMel Gorman  * Return the page size being used by the MMU to back a VMA. In the majority
2413340289dSMel Gorman  * of cases, the page size used by the kernel matches the MMU size. On
2423340289dSMel Gorman  * architectures where it differs, an architecture-specific version of this
2433340289dSMel Gorman  * function is required.
2443340289dSMel Gorman  */
2453340289dSMel Gorman #ifndef vma_mmu_pagesize
2463340289dSMel Gorman unsigned long vma_mmu_pagesize(struct vm_area_struct *vma)
2473340289dSMel Gorman {
2483340289dSMel Gorman 	return vma_kernel_pagesize(vma);
2493340289dSMel Gorman }
2503340289dSMel Gorman #endif
2513340289dSMel Gorman 
2523340289dSMel Gorman /*
25384afd99bSAndy Whitcroft  * Flags for MAP_PRIVATE reservations.  These are stored in the bottom
25484afd99bSAndy Whitcroft  * bits of the reservation map pointer, which are always clear due to
25584afd99bSAndy Whitcroft  * alignment.
25684afd99bSAndy Whitcroft  */
25784afd99bSAndy Whitcroft #define HPAGE_RESV_OWNER    (1UL << 0)
25884afd99bSAndy Whitcroft #define HPAGE_RESV_UNMAPPED (1UL << 1)
25904f2cbe3SMel Gorman #define HPAGE_RESV_MASK (HPAGE_RESV_OWNER | HPAGE_RESV_UNMAPPED)
26084afd99bSAndy Whitcroft 
261a1e78772SMel Gorman /*
262a1e78772SMel Gorman  * These helpers are used to track how many pages are reserved for
263a1e78772SMel Gorman  * faults in a MAP_PRIVATE mapping. Only the process that called mmap()
264a1e78772SMel Gorman  * is guaranteed to have their future faults succeed.
265a1e78772SMel Gorman  *
266a1e78772SMel Gorman  * With the exception of reset_vma_resv_huge_pages() which is called at fork(),
267a1e78772SMel Gorman  * the reserve counters are updated with the hugetlb_lock held. It is safe
268a1e78772SMel Gorman  * to reset the VMA at fork() time as it is not in use yet and there is no
269a1e78772SMel Gorman  * chance of the global counters getting corrupted as a result of the values.
27084afd99bSAndy Whitcroft  *
27184afd99bSAndy Whitcroft  * The private mapping reservation is represented in a subtly different
27284afd99bSAndy Whitcroft  * manner to a shared mapping.  A shared mapping has a region map associated
27384afd99bSAndy Whitcroft  * with the underlying file, this region map represents the backing file
27484afd99bSAndy Whitcroft  * pages which have ever had a reservation assigned which this persists even
27584afd99bSAndy Whitcroft  * after the page is instantiated.  A private mapping has a region map
27684afd99bSAndy Whitcroft  * associated with the original mmap which is attached to all VMAs which
27784afd99bSAndy Whitcroft  * reference it, this region map represents those offsets which have consumed
27884afd99bSAndy Whitcroft  * reservation ie. where pages have been instantiated.
279a1e78772SMel Gorman  */
280e7c4b0bfSAndy Whitcroft static unsigned long get_vma_private_data(struct vm_area_struct *vma)
281e7c4b0bfSAndy Whitcroft {
282e7c4b0bfSAndy Whitcroft 	return (unsigned long)vma->vm_private_data;
283e7c4b0bfSAndy Whitcroft }
284e7c4b0bfSAndy Whitcroft 
285e7c4b0bfSAndy Whitcroft static void set_vma_private_data(struct vm_area_struct *vma,
286e7c4b0bfSAndy Whitcroft 							unsigned long value)
287e7c4b0bfSAndy Whitcroft {
288e7c4b0bfSAndy Whitcroft 	vma->vm_private_data = (void *)value;
289e7c4b0bfSAndy Whitcroft }
290e7c4b0bfSAndy Whitcroft 
29184afd99bSAndy Whitcroft struct resv_map {
29284afd99bSAndy Whitcroft 	struct kref refs;
29384afd99bSAndy Whitcroft 	struct list_head regions;
29484afd99bSAndy Whitcroft };
29584afd99bSAndy Whitcroft 
2962a4b3dedSHarvey Harrison static struct resv_map *resv_map_alloc(void)
29784afd99bSAndy Whitcroft {
29884afd99bSAndy Whitcroft 	struct resv_map *resv_map = kmalloc(sizeof(*resv_map), GFP_KERNEL);
29984afd99bSAndy Whitcroft 	if (!resv_map)
30084afd99bSAndy Whitcroft 		return NULL;
30184afd99bSAndy Whitcroft 
30284afd99bSAndy Whitcroft 	kref_init(&resv_map->refs);
30384afd99bSAndy Whitcroft 	INIT_LIST_HEAD(&resv_map->regions);
30484afd99bSAndy Whitcroft 
30584afd99bSAndy Whitcroft 	return resv_map;
30684afd99bSAndy Whitcroft }
30784afd99bSAndy Whitcroft 
3082a4b3dedSHarvey Harrison static void resv_map_release(struct kref *ref)
30984afd99bSAndy Whitcroft {
31084afd99bSAndy Whitcroft 	struct resv_map *resv_map = container_of(ref, struct resv_map, refs);
31184afd99bSAndy Whitcroft 
31284afd99bSAndy Whitcroft 	/* Clear out any active regions before we release the map. */
31384afd99bSAndy Whitcroft 	region_truncate(&resv_map->regions, 0);
31484afd99bSAndy Whitcroft 	kfree(resv_map);
31584afd99bSAndy Whitcroft }
31684afd99bSAndy Whitcroft 
31784afd99bSAndy Whitcroft static struct resv_map *vma_resv_map(struct vm_area_struct *vma)
318a1e78772SMel Gorman {
319a1e78772SMel Gorman 	VM_BUG_ON(!is_vm_hugetlb_page(vma));
320f83a275dSMel Gorman 	if (!(vma->vm_flags & VM_MAYSHARE))
32184afd99bSAndy Whitcroft 		return (struct resv_map *)(get_vma_private_data(vma) &
32284afd99bSAndy Whitcroft 							~HPAGE_RESV_MASK);
3232a4b3dedSHarvey Harrison 	return NULL;
324a1e78772SMel Gorman }
325a1e78772SMel Gorman 
32684afd99bSAndy Whitcroft static void set_vma_resv_map(struct vm_area_struct *vma, struct resv_map *map)
327a1e78772SMel Gorman {
328a1e78772SMel Gorman 	VM_BUG_ON(!is_vm_hugetlb_page(vma));
329f83a275dSMel Gorman 	VM_BUG_ON(vma->vm_flags & VM_MAYSHARE);
330a1e78772SMel Gorman 
33184afd99bSAndy Whitcroft 	set_vma_private_data(vma, (get_vma_private_data(vma) &
33284afd99bSAndy Whitcroft 				HPAGE_RESV_MASK) | (unsigned long)map);
33304f2cbe3SMel Gorman }
33404f2cbe3SMel Gorman 
33504f2cbe3SMel Gorman static void set_vma_resv_flags(struct vm_area_struct *vma, unsigned long flags)
33604f2cbe3SMel Gorman {
33704f2cbe3SMel Gorman 	VM_BUG_ON(!is_vm_hugetlb_page(vma));
338f83a275dSMel Gorman 	VM_BUG_ON(vma->vm_flags & VM_MAYSHARE);
339e7c4b0bfSAndy Whitcroft 
340e7c4b0bfSAndy Whitcroft 	set_vma_private_data(vma, get_vma_private_data(vma) | flags);
34104f2cbe3SMel Gorman }
34204f2cbe3SMel Gorman 
34304f2cbe3SMel Gorman static int is_vma_resv_set(struct vm_area_struct *vma, unsigned long flag)
34404f2cbe3SMel Gorman {
34504f2cbe3SMel Gorman 	VM_BUG_ON(!is_vm_hugetlb_page(vma));
346e7c4b0bfSAndy Whitcroft 
347e7c4b0bfSAndy Whitcroft 	return (get_vma_private_data(vma) & flag) != 0;
348a1e78772SMel Gorman }
349a1e78772SMel Gorman 
350a1e78772SMel Gorman /* Decrement the reserved pages in the hugepage pool by one */
351a5516438SAndi Kleen static void decrement_hugepage_resv_vma(struct hstate *h,
352a5516438SAndi Kleen 			struct vm_area_struct *vma)
353a1e78772SMel Gorman {
354c37f9fb1SAndy Whitcroft 	if (vma->vm_flags & VM_NORESERVE)
355c37f9fb1SAndy Whitcroft 		return;
356c37f9fb1SAndy Whitcroft 
357f83a275dSMel Gorman 	if (vma->vm_flags & VM_MAYSHARE) {
358a1e78772SMel Gorman 		/* Shared mappings always use reserves */
359a5516438SAndi Kleen 		h->resv_huge_pages--;
36084afd99bSAndy Whitcroft 	} else if (is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
361a1e78772SMel Gorman 		/*
362a1e78772SMel Gorman 		 * Only the process that called mmap() has reserves for
363a1e78772SMel Gorman 		 * private mappings.
364a1e78772SMel Gorman 		 */
365a5516438SAndi Kleen 		h->resv_huge_pages--;
366a1e78772SMel Gorman 	}
367a1e78772SMel Gorman }
368a1e78772SMel Gorman 
36904f2cbe3SMel Gorman /* Reset counters to 0 and clear all HPAGE_RESV_* flags */
370a1e78772SMel Gorman void reset_vma_resv_huge_pages(struct vm_area_struct *vma)
371a1e78772SMel Gorman {
372a1e78772SMel Gorman 	VM_BUG_ON(!is_vm_hugetlb_page(vma));
373f83a275dSMel Gorman 	if (!(vma->vm_flags & VM_MAYSHARE))
374a1e78772SMel Gorman 		vma->vm_private_data = (void *)0;
375a1e78772SMel Gorman }
376a1e78772SMel Gorman 
377a1e78772SMel Gorman /* Returns true if the VMA has associated reserve pages */
3787f09ca51SMel Gorman static int vma_has_reserves(struct vm_area_struct *vma)
379a1e78772SMel Gorman {
380f83a275dSMel Gorman 	if (vma->vm_flags & VM_MAYSHARE)
381a1e78772SMel Gorman 		return 1;
3827f09ca51SMel Gorman 	if (is_vma_resv_set(vma, HPAGE_RESV_OWNER))
3837f09ca51SMel Gorman 		return 1;
3847f09ca51SMel Gorman 	return 0;
385a1e78772SMel Gorman }
386a1e78772SMel Gorman 
38769d177c2SAndy Whitcroft static void clear_gigantic_page(struct page *page,
38869d177c2SAndy Whitcroft 			unsigned long addr, unsigned long sz)
38969d177c2SAndy Whitcroft {
39069d177c2SAndy Whitcroft 	int i;
39169d177c2SAndy Whitcroft 	struct page *p = page;
39269d177c2SAndy Whitcroft 
39369d177c2SAndy Whitcroft 	might_sleep();
39469d177c2SAndy Whitcroft 	for (i = 0; i < sz/PAGE_SIZE; i++, p = mem_map_next(p, page, i)) {
39569d177c2SAndy Whitcroft 		cond_resched();
39669d177c2SAndy Whitcroft 		clear_user_highpage(p, addr + i * PAGE_SIZE);
39769d177c2SAndy Whitcroft 	}
39869d177c2SAndy Whitcroft }
399a5516438SAndi Kleen static void clear_huge_page(struct page *page,
400a5516438SAndi Kleen 			unsigned long addr, unsigned long sz)
40179ac6ba4SDavid Gibson {
40279ac6ba4SDavid Gibson 	int i;
40379ac6ba4SDavid Gibson 
404ebdd4aeaSHannes Eder 	if (unlikely(sz > MAX_ORDER_NR_PAGES)) {
405ebdd4aeaSHannes Eder 		clear_gigantic_page(page, addr, sz);
406ebdd4aeaSHannes Eder 		return;
407ebdd4aeaSHannes Eder 	}
40869d177c2SAndy Whitcroft 
40979ac6ba4SDavid Gibson 	might_sleep();
410a5516438SAndi Kleen 	for (i = 0; i < sz/PAGE_SIZE; i++) {
41179ac6ba4SDavid Gibson 		cond_resched();
412281e0e3bSRalf Baechle 		clear_user_highpage(page + i, addr + i * PAGE_SIZE);
41379ac6ba4SDavid Gibson 	}
41479ac6ba4SDavid Gibson }
41579ac6ba4SDavid Gibson 
41669d177c2SAndy Whitcroft static void copy_gigantic_page(struct page *dst, struct page *src,
41769d177c2SAndy Whitcroft 			   unsigned long addr, struct vm_area_struct *vma)
41869d177c2SAndy Whitcroft {
41969d177c2SAndy Whitcroft 	int i;
42069d177c2SAndy Whitcroft 	struct hstate *h = hstate_vma(vma);
42169d177c2SAndy Whitcroft 	struct page *dst_base = dst;
42269d177c2SAndy Whitcroft 	struct page *src_base = src;
42369d177c2SAndy Whitcroft 	might_sleep();
42469d177c2SAndy Whitcroft 	for (i = 0; i < pages_per_huge_page(h); ) {
42569d177c2SAndy Whitcroft 		cond_resched();
42669d177c2SAndy Whitcroft 		copy_user_highpage(dst, src, addr + i*PAGE_SIZE, vma);
42769d177c2SAndy Whitcroft 
42869d177c2SAndy Whitcroft 		i++;
42969d177c2SAndy Whitcroft 		dst = mem_map_next(dst, dst_base, i);
43069d177c2SAndy Whitcroft 		src = mem_map_next(src, src_base, i);
43169d177c2SAndy Whitcroft 	}
43269d177c2SAndy Whitcroft }
43379ac6ba4SDavid Gibson static void copy_huge_page(struct page *dst, struct page *src,
4349de455b2SAtsushi Nemoto 			   unsigned long addr, struct vm_area_struct *vma)
43579ac6ba4SDavid Gibson {
43679ac6ba4SDavid Gibson 	int i;
437a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
43879ac6ba4SDavid Gibson 
439ebdd4aeaSHannes Eder 	if (unlikely(pages_per_huge_page(h) > MAX_ORDER_NR_PAGES)) {
440ebdd4aeaSHannes Eder 		copy_gigantic_page(dst, src, addr, vma);
441ebdd4aeaSHannes Eder 		return;
442ebdd4aeaSHannes Eder 	}
44369d177c2SAndy Whitcroft 
44479ac6ba4SDavid Gibson 	might_sleep();
445a5516438SAndi Kleen 	for (i = 0; i < pages_per_huge_page(h); i++) {
44679ac6ba4SDavid Gibson 		cond_resched();
4479de455b2SAtsushi Nemoto 		copy_user_highpage(dst + i, src + i, addr + i*PAGE_SIZE, vma);
44879ac6ba4SDavid Gibson 	}
44979ac6ba4SDavid Gibson }
45079ac6ba4SDavid Gibson 
451a5516438SAndi Kleen static void enqueue_huge_page(struct hstate *h, struct page *page)
4521da177e4SLinus Torvalds {
4531da177e4SLinus Torvalds 	int nid = page_to_nid(page);
454a5516438SAndi Kleen 	list_add(&page->lru, &h->hugepage_freelists[nid]);
455a5516438SAndi Kleen 	h->free_huge_pages++;
456a5516438SAndi Kleen 	h->free_huge_pages_node[nid]++;
4571da177e4SLinus Torvalds }
4581da177e4SLinus Torvalds 
459a5516438SAndi Kleen static struct page *dequeue_huge_page_vma(struct hstate *h,
460a5516438SAndi Kleen 				struct vm_area_struct *vma,
46104f2cbe3SMel Gorman 				unsigned long address, int avoid_reserve)
4621da177e4SLinus Torvalds {
46331a5c6e4SNishanth Aravamudan 	int nid;
4641da177e4SLinus Torvalds 	struct page *page = NULL;
465480eccf9SLee Schermerhorn 	struct mempolicy *mpol;
46619770b32SMel Gorman 	nodemask_t *nodemask;
467396faf03SMel Gorman 	struct zonelist *zonelist = huge_zonelist(vma, address,
46819770b32SMel Gorman 					htlb_alloc_mask, &mpol, &nodemask);
469dd1a239fSMel Gorman 	struct zone *zone;
470dd1a239fSMel Gorman 	struct zoneref *z;
4711da177e4SLinus Torvalds 
472a1e78772SMel Gorman 	/*
473a1e78772SMel Gorman 	 * A child process with MAP_PRIVATE mappings created by their parent
474a1e78772SMel Gorman 	 * have no page reserves. This check ensures that reservations are
475a1e78772SMel Gorman 	 * not "stolen". The child may still get SIGKILLed
476a1e78772SMel Gorman 	 */
4777f09ca51SMel Gorman 	if (!vma_has_reserves(vma) &&
478a5516438SAndi Kleen 			h->free_huge_pages - h->resv_huge_pages == 0)
479a1e78772SMel Gorman 		return NULL;
480a1e78772SMel Gorman 
48104f2cbe3SMel Gorman 	/* If reserves cannot be used, ensure enough pages are in the pool */
482a5516438SAndi Kleen 	if (avoid_reserve && h->free_huge_pages - h->resv_huge_pages == 0)
48304f2cbe3SMel Gorman 		return NULL;
48404f2cbe3SMel Gorman 
48519770b32SMel Gorman 	for_each_zone_zonelist_nodemask(zone, z, zonelist,
48619770b32SMel Gorman 						MAX_NR_ZONES - 1, nodemask) {
48754a6eb5cSMel Gorman 		nid = zone_to_nid(zone);
48854a6eb5cSMel Gorman 		if (cpuset_zone_allowed_softwall(zone, htlb_alloc_mask) &&
489a5516438SAndi Kleen 		    !list_empty(&h->hugepage_freelists[nid])) {
490a5516438SAndi Kleen 			page = list_entry(h->hugepage_freelists[nid].next,
4911da177e4SLinus Torvalds 					  struct page, lru);
4921da177e4SLinus Torvalds 			list_del(&page->lru);
493a5516438SAndi Kleen 			h->free_huge_pages--;
494a5516438SAndi Kleen 			h->free_huge_pages_node[nid]--;
49504f2cbe3SMel Gorman 
49604f2cbe3SMel Gorman 			if (!avoid_reserve)
497a5516438SAndi Kleen 				decrement_hugepage_resv_vma(h, vma);
498a1e78772SMel Gorman 
4995ab3ee7bSKen Chen 			break;
5001da177e4SLinus Torvalds 		}
5013abf7afdSAndrew Morton 	}
50252cd3b07SLee Schermerhorn 	mpol_cond_put(mpol);
5031da177e4SLinus Torvalds 	return page;
5041da177e4SLinus Torvalds }
5051da177e4SLinus Torvalds 
506a5516438SAndi Kleen static void update_and_free_page(struct hstate *h, struct page *page)
5076af2acb6SAdam Litke {
5086af2acb6SAdam Litke 	int i;
509a5516438SAndi Kleen 
51018229df5SAndy Whitcroft 	VM_BUG_ON(h->order >= MAX_ORDER);
51118229df5SAndy Whitcroft 
512a5516438SAndi Kleen 	h->nr_huge_pages--;
513a5516438SAndi Kleen 	h->nr_huge_pages_node[page_to_nid(page)]--;
514a5516438SAndi Kleen 	for (i = 0; i < pages_per_huge_page(h); i++) {
5156af2acb6SAdam Litke 		page[i].flags &= ~(1 << PG_locked | 1 << PG_error | 1 << PG_referenced |
5166af2acb6SAdam Litke 				1 << PG_dirty | 1 << PG_active | 1 << PG_reserved |
5176af2acb6SAdam Litke 				1 << PG_private | 1<< PG_writeback);
5186af2acb6SAdam Litke 	}
5196af2acb6SAdam Litke 	set_compound_page_dtor(page, NULL);
5206af2acb6SAdam Litke 	set_page_refcounted(page);
5217f2e9525SGerald Schaefer 	arch_release_hugepage(page);
522a5516438SAndi Kleen 	__free_pages(page, huge_page_order(h));
5236af2acb6SAdam Litke }
5246af2acb6SAdam Litke 
525e5ff2159SAndi Kleen struct hstate *size_to_hstate(unsigned long size)
526e5ff2159SAndi Kleen {
527e5ff2159SAndi Kleen 	struct hstate *h;
528e5ff2159SAndi Kleen 
529e5ff2159SAndi Kleen 	for_each_hstate(h) {
530e5ff2159SAndi Kleen 		if (huge_page_size(h) == size)
531e5ff2159SAndi Kleen 			return h;
532e5ff2159SAndi Kleen 	}
533e5ff2159SAndi Kleen 	return NULL;
534e5ff2159SAndi Kleen }
535e5ff2159SAndi Kleen 
53627a85ef1SDavid Gibson static void free_huge_page(struct page *page)
53727a85ef1SDavid Gibson {
538a5516438SAndi Kleen 	/*
539a5516438SAndi Kleen 	 * Can't pass hstate in here because it is called from the
540a5516438SAndi Kleen 	 * compound page destructor.
541a5516438SAndi Kleen 	 */
542e5ff2159SAndi Kleen 	struct hstate *h = page_hstate(page);
5437893d1d5SAdam Litke 	int nid = page_to_nid(page);
544c79fb75eSAdam Litke 	struct address_space *mapping;
54527a85ef1SDavid Gibson 
546c79fb75eSAdam Litke 	mapping = (struct address_space *) page_private(page);
547e5df70abSAndy Whitcroft 	set_page_private(page, 0);
5487893d1d5SAdam Litke 	BUG_ON(page_count(page));
54927a85ef1SDavid Gibson 	INIT_LIST_HEAD(&page->lru);
55027a85ef1SDavid Gibson 
55127a85ef1SDavid Gibson 	spin_lock(&hugetlb_lock);
552aa888a74SAndi Kleen 	if (h->surplus_huge_pages_node[nid] && huge_page_order(h) < MAX_ORDER) {
553a5516438SAndi Kleen 		update_and_free_page(h, page);
554a5516438SAndi Kleen 		h->surplus_huge_pages--;
555a5516438SAndi Kleen 		h->surplus_huge_pages_node[nid]--;
5567893d1d5SAdam Litke 	} else {
557a5516438SAndi Kleen 		enqueue_huge_page(h, page);
5587893d1d5SAdam Litke 	}
55927a85ef1SDavid Gibson 	spin_unlock(&hugetlb_lock);
560c79fb75eSAdam Litke 	if (mapping)
5619a119c05SAdam Litke 		hugetlb_put_quota(mapping, 1);
56227a85ef1SDavid Gibson }
56327a85ef1SDavid Gibson 
564a5516438SAndi Kleen static void prep_new_huge_page(struct hstate *h, struct page *page, int nid)
565b7ba30c6SAndi Kleen {
566b7ba30c6SAndi Kleen 	set_compound_page_dtor(page, free_huge_page);
567b7ba30c6SAndi Kleen 	spin_lock(&hugetlb_lock);
568a5516438SAndi Kleen 	h->nr_huge_pages++;
569a5516438SAndi Kleen 	h->nr_huge_pages_node[nid]++;
570b7ba30c6SAndi Kleen 	spin_unlock(&hugetlb_lock);
571b7ba30c6SAndi Kleen 	put_page(page); /* free it into the hugepage allocator */
572b7ba30c6SAndi Kleen }
573b7ba30c6SAndi Kleen 
57420a0307cSWu Fengguang static void prep_compound_gigantic_page(struct page *page, unsigned long order)
57520a0307cSWu Fengguang {
57620a0307cSWu Fengguang 	int i;
57720a0307cSWu Fengguang 	int nr_pages = 1 << order;
57820a0307cSWu Fengguang 	struct page *p = page + 1;
57920a0307cSWu Fengguang 
58020a0307cSWu Fengguang 	/* we rely on prep_new_huge_page to set the destructor */
58120a0307cSWu Fengguang 	set_compound_order(page, order);
58220a0307cSWu Fengguang 	__SetPageHead(page);
58320a0307cSWu Fengguang 	for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
58420a0307cSWu Fengguang 		__SetPageTail(p);
58520a0307cSWu Fengguang 		p->first_page = page;
58620a0307cSWu Fengguang 	}
58720a0307cSWu Fengguang }
58820a0307cSWu Fengguang 
58920a0307cSWu Fengguang int PageHuge(struct page *page)
59020a0307cSWu Fengguang {
59120a0307cSWu Fengguang 	compound_page_dtor *dtor;
59220a0307cSWu Fengguang 
59320a0307cSWu Fengguang 	if (!PageCompound(page))
59420a0307cSWu Fengguang 		return 0;
59520a0307cSWu Fengguang 
59620a0307cSWu Fengguang 	page = compound_head(page);
59720a0307cSWu Fengguang 	dtor = get_compound_page_dtor(page);
59820a0307cSWu Fengguang 
59920a0307cSWu Fengguang 	return dtor == free_huge_page;
60020a0307cSWu Fengguang }
60120a0307cSWu Fengguang 
602a5516438SAndi Kleen static struct page *alloc_fresh_huge_page_node(struct hstate *h, int nid)
6031da177e4SLinus Torvalds {
6041da177e4SLinus Torvalds 	struct page *page;
605f96efd58SJoe Jin 
606aa888a74SAndi Kleen 	if (h->order >= MAX_ORDER)
607aa888a74SAndi Kleen 		return NULL;
608aa888a74SAndi Kleen 
6096484eb3eSMel Gorman 	page = alloc_pages_exact_node(nid,
610551883aeSNishanth Aravamudan 		htlb_alloc_mask|__GFP_COMP|__GFP_THISNODE|
611551883aeSNishanth Aravamudan 						__GFP_REPEAT|__GFP_NOWARN,
612a5516438SAndi Kleen 		huge_page_order(h));
6131da177e4SLinus Torvalds 	if (page) {
6147f2e9525SGerald Schaefer 		if (arch_prepare_hugepage(page)) {
615caff3a2cSGerald Schaefer 			__free_pages(page, huge_page_order(h));
6167b8ee84dSHarvey Harrison 			return NULL;
6177f2e9525SGerald Schaefer 		}
618a5516438SAndi Kleen 		prep_new_huge_page(h, page, nid);
6191da177e4SLinus Torvalds 	}
62063b4613cSNishanth Aravamudan 
62163b4613cSNishanth Aravamudan 	return page;
62263b4613cSNishanth Aravamudan }
62363b4613cSNishanth Aravamudan 
6245ced66c9SAndi Kleen /*
6256ae11b27SLee Schermerhorn  * common helper functions for hstate_next_node_to_{alloc|free}.
6266ae11b27SLee Schermerhorn  * We may have allocated or freed a huge page based on a different
6276ae11b27SLee Schermerhorn  * nodes_allowed previously, so h->next_node_to_{alloc|free} might
6286ae11b27SLee Schermerhorn  * be outside of *nodes_allowed.  Ensure that we use an allowed
6296ae11b27SLee Schermerhorn  * node for alloc or free.
6309a76db09SLee Schermerhorn  */
6316ae11b27SLee Schermerhorn static int next_node_allowed(int nid, nodemask_t *nodes_allowed)
6329a76db09SLee Schermerhorn {
6336ae11b27SLee Schermerhorn 	nid = next_node(nid, *nodes_allowed);
6349a76db09SLee Schermerhorn 	if (nid == MAX_NUMNODES)
6356ae11b27SLee Schermerhorn 		nid = first_node(*nodes_allowed);
6369a76db09SLee Schermerhorn 	VM_BUG_ON(nid >= MAX_NUMNODES);
6379a76db09SLee Schermerhorn 
6389a76db09SLee Schermerhorn 	return nid;
6399a76db09SLee Schermerhorn }
6409a76db09SLee Schermerhorn 
6416ae11b27SLee Schermerhorn static int get_valid_node_allowed(int nid, nodemask_t *nodes_allowed)
6425ced66c9SAndi Kleen {
6436ae11b27SLee Schermerhorn 	if (!node_isset(nid, *nodes_allowed))
6446ae11b27SLee Schermerhorn 		nid = next_node_allowed(nid, nodes_allowed);
6459a76db09SLee Schermerhorn 	return nid;
6465ced66c9SAndi Kleen }
6475ced66c9SAndi Kleen 
6486ae11b27SLee Schermerhorn /*
6496ae11b27SLee Schermerhorn  * returns the previously saved node ["this node"] from which to
6506ae11b27SLee Schermerhorn  * allocate a persistent huge page for the pool and advance the
6516ae11b27SLee Schermerhorn  * next node from which to allocate, handling wrap at end of node
6526ae11b27SLee Schermerhorn  * mask.
6536ae11b27SLee Schermerhorn  */
6546ae11b27SLee Schermerhorn static int hstate_next_node_to_alloc(struct hstate *h,
6556ae11b27SLee Schermerhorn 					nodemask_t *nodes_allowed)
6566ae11b27SLee Schermerhorn {
6576ae11b27SLee Schermerhorn 	int nid;
6586ae11b27SLee Schermerhorn 
6596ae11b27SLee Schermerhorn 	VM_BUG_ON(!nodes_allowed);
6606ae11b27SLee Schermerhorn 
6616ae11b27SLee Schermerhorn 	nid = get_valid_node_allowed(h->next_nid_to_alloc, nodes_allowed);
6626ae11b27SLee Schermerhorn 	h->next_nid_to_alloc = next_node_allowed(nid, nodes_allowed);
6636ae11b27SLee Schermerhorn 
6646ae11b27SLee Schermerhorn 	return nid;
6656ae11b27SLee Schermerhorn }
6666ae11b27SLee Schermerhorn 
6676ae11b27SLee Schermerhorn static int alloc_fresh_huge_page(struct hstate *h, nodemask_t *nodes_allowed)
66863b4613cSNishanth Aravamudan {
66963b4613cSNishanth Aravamudan 	struct page *page;
67063b4613cSNishanth Aravamudan 	int start_nid;
67163b4613cSNishanth Aravamudan 	int next_nid;
67263b4613cSNishanth Aravamudan 	int ret = 0;
67363b4613cSNishanth Aravamudan 
6746ae11b27SLee Schermerhorn 	start_nid = hstate_next_node_to_alloc(h, nodes_allowed);
675e8c5c824SLee Schermerhorn 	next_nid = start_nid;
67663b4613cSNishanth Aravamudan 
67763b4613cSNishanth Aravamudan 	do {
678e8c5c824SLee Schermerhorn 		page = alloc_fresh_huge_page_node(h, next_nid);
6799a76db09SLee Schermerhorn 		if (page) {
68063b4613cSNishanth Aravamudan 			ret = 1;
6819a76db09SLee Schermerhorn 			break;
6829a76db09SLee Schermerhorn 		}
6836ae11b27SLee Schermerhorn 		next_nid = hstate_next_node_to_alloc(h, nodes_allowed);
6849a76db09SLee Schermerhorn 	} while (next_nid != start_nid);
68563b4613cSNishanth Aravamudan 
6863b116300SAdam Litke 	if (ret)
6873b116300SAdam Litke 		count_vm_event(HTLB_BUDDY_PGALLOC);
6883b116300SAdam Litke 	else
6893b116300SAdam Litke 		count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
6903b116300SAdam Litke 
69163b4613cSNishanth Aravamudan 	return ret;
6921da177e4SLinus Torvalds }
6931da177e4SLinus Torvalds 
694e8c5c824SLee Schermerhorn /*
6956ae11b27SLee Schermerhorn  * helper for free_pool_huge_page() - return the previously saved
6966ae11b27SLee Schermerhorn  * node ["this node"] from which to free a huge page.  Advance the
6976ae11b27SLee Schermerhorn  * next node id whether or not we find a free huge page to free so
6986ae11b27SLee Schermerhorn  * that the next attempt to free addresses the next node.
699e8c5c824SLee Schermerhorn  */
7006ae11b27SLee Schermerhorn static int hstate_next_node_to_free(struct hstate *h, nodemask_t *nodes_allowed)
701e8c5c824SLee Schermerhorn {
7026ae11b27SLee Schermerhorn 	int nid;
7039a76db09SLee Schermerhorn 
7046ae11b27SLee Schermerhorn 	VM_BUG_ON(!nodes_allowed);
7056ae11b27SLee Schermerhorn 
7066ae11b27SLee Schermerhorn 	nid = get_valid_node_allowed(h->next_nid_to_free, nodes_allowed);
7076ae11b27SLee Schermerhorn 	h->next_nid_to_free = next_node_allowed(nid, nodes_allowed);
7086ae11b27SLee Schermerhorn 
7099a76db09SLee Schermerhorn 	return nid;
710e8c5c824SLee Schermerhorn }
711e8c5c824SLee Schermerhorn 
712e8c5c824SLee Schermerhorn /*
713e8c5c824SLee Schermerhorn  * Free huge page from pool from next node to free.
714e8c5c824SLee Schermerhorn  * Attempt to keep persistent huge pages more or less
715e8c5c824SLee Schermerhorn  * balanced over allowed nodes.
716e8c5c824SLee Schermerhorn  * Called with hugetlb_lock locked.
717e8c5c824SLee Schermerhorn  */
7186ae11b27SLee Schermerhorn static int free_pool_huge_page(struct hstate *h, nodemask_t *nodes_allowed,
7196ae11b27SLee Schermerhorn 							 bool acct_surplus)
720e8c5c824SLee Schermerhorn {
721e8c5c824SLee Schermerhorn 	int start_nid;
722e8c5c824SLee Schermerhorn 	int next_nid;
723e8c5c824SLee Schermerhorn 	int ret = 0;
724e8c5c824SLee Schermerhorn 
7256ae11b27SLee Schermerhorn 	start_nid = hstate_next_node_to_free(h, nodes_allowed);
726e8c5c824SLee Schermerhorn 	next_nid = start_nid;
727e8c5c824SLee Schermerhorn 
728e8c5c824SLee Schermerhorn 	do {
729685f3457SLee Schermerhorn 		/*
730685f3457SLee Schermerhorn 		 * If we're returning unused surplus pages, only examine
731685f3457SLee Schermerhorn 		 * nodes with surplus pages.
732685f3457SLee Schermerhorn 		 */
733685f3457SLee Schermerhorn 		if ((!acct_surplus || h->surplus_huge_pages_node[next_nid]) &&
734685f3457SLee Schermerhorn 		    !list_empty(&h->hugepage_freelists[next_nid])) {
735e8c5c824SLee Schermerhorn 			struct page *page =
736e8c5c824SLee Schermerhorn 				list_entry(h->hugepage_freelists[next_nid].next,
737e8c5c824SLee Schermerhorn 					  struct page, lru);
738e8c5c824SLee Schermerhorn 			list_del(&page->lru);
739e8c5c824SLee Schermerhorn 			h->free_huge_pages--;
740e8c5c824SLee Schermerhorn 			h->free_huge_pages_node[next_nid]--;
741685f3457SLee Schermerhorn 			if (acct_surplus) {
742685f3457SLee Schermerhorn 				h->surplus_huge_pages--;
743685f3457SLee Schermerhorn 				h->surplus_huge_pages_node[next_nid]--;
744685f3457SLee Schermerhorn 			}
745e8c5c824SLee Schermerhorn 			update_and_free_page(h, page);
746e8c5c824SLee Schermerhorn 			ret = 1;
7479a76db09SLee Schermerhorn 			break;
748e8c5c824SLee Schermerhorn 		}
7496ae11b27SLee Schermerhorn 		next_nid = hstate_next_node_to_free(h, nodes_allowed);
7509a76db09SLee Schermerhorn 	} while (next_nid != start_nid);
751e8c5c824SLee Schermerhorn 
752e8c5c824SLee Schermerhorn 	return ret;
753e8c5c824SLee Schermerhorn }
754e8c5c824SLee Schermerhorn 
755a5516438SAndi Kleen static struct page *alloc_buddy_huge_page(struct hstate *h,
756a5516438SAndi Kleen 			struct vm_area_struct *vma, unsigned long address)
7577893d1d5SAdam Litke {
7587893d1d5SAdam Litke 	struct page *page;
759d1c3fb1fSNishanth Aravamudan 	unsigned int nid;
7607893d1d5SAdam Litke 
761aa888a74SAndi Kleen 	if (h->order >= MAX_ORDER)
762aa888a74SAndi Kleen 		return NULL;
763aa888a74SAndi Kleen 
764d1c3fb1fSNishanth Aravamudan 	/*
765d1c3fb1fSNishanth Aravamudan 	 * Assume we will successfully allocate the surplus page to
766d1c3fb1fSNishanth Aravamudan 	 * prevent racing processes from causing the surplus to exceed
767d1c3fb1fSNishanth Aravamudan 	 * overcommit
768d1c3fb1fSNishanth Aravamudan 	 *
769d1c3fb1fSNishanth Aravamudan 	 * This however introduces a different race, where a process B
770d1c3fb1fSNishanth Aravamudan 	 * tries to grow the static hugepage pool while alloc_pages() is
771d1c3fb1fSNishanth Aravamudan 	 * called by process A. B will only examine the per-node
772d1c3fb1fSNishanth Aravamudan 	 * counters in determining if surplus huge pages can be
773d1c3fb1fSNishanth Aravamudan 	 * converted to normal huge pages in adjust_pool_surplus(). A
774d1c3fb1fSNishanth Aravamudan 	 * won't be able to increment the per-node counter, until the
775d1c3fb1fSNishanth Aravamudan 	 * lock is dropped by B, but B doesn't drop hugetlb_lock until
776d1c3fb1fSNishanth Aravamudan 	 * no more huge pages can be converted from surplus to normal
777d1c3fb1fSNishanth Aravamudan 	 * state (and doesn't try to convert again). Thus, we have a
778d1c3fb1fSNishanth Aravamudan 	 * case where a surplus huge page exists, the pool is grown, and
779d1c3fb1fSNishanth Aravamudan 	 * the surplus huge page still exists after, even though it
780d1c3fb1fSNishanth Aravamudan 	 * should just have been converted to a normal huge page. This
781d1c3fb1fSNishanth Aravamudan 	 * does not leak memory, though, as the hugepage will be freed
782d1c3fb1fSNishanth Aravamudan 	 * once it is out of use. It also does not allow the counters to
783d1c3fb1fSNishanth Aravamudan 	 * go out of whack in adjust_pool_surplus() as we don't modify
784d1c3fb1fSNishanth Aravamudan 	 * the node values until we've gotten the hugepage and only the
785d1c3fb1fSNishanth Aravamudan 	 * per-node value is checked there.
786d1c3fb1fSNishanth Aravamudan 	 */
787d1c3fb1fSNishanth Aravamudan 	spin_lock(&hugetlb_lock);
788a5516438SAndi Kleen 	if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages) {
789d1c3fb1fSNishanth Aravamudan 		spin_unlock(&hugetlb_lock);
790d1c3fb1fSNishanth Aravamudan 		return NULL;
791d1c3fb1fSNishanth Aravamudan 	} else {
792a5516438SAndi Kleen 		h->nr_huge_pages++;
793a5516438SAndi Kleen 		h->surplus_huge_pages++;
794d1c3fb1fSNishanth Aravamudan 	}
795d1c3fb1fSNishanth Aravamudan 	spin_unlock(&hugetlb_lock);
796d1c3fb1fSNishanth Aravamudan 
797551883aeSNishanth Aravamudan 	page = alloc_pages(htlb_alloc_mask|__GFP_COMP|
798551883aeSNishanth Aravamudan 					__GFP_REPEAT|__GFP_NOWARN,
799a5516438SAndi Kleen 					huge_page_order(h));
800d1c3fb1fSNishanth Aravamudan 
801caff3a2cSGerald Schaefer 	if (page && arch_prepare_hugepage(page)) {
802caff3a2cSGerald Schaefer 		__free_pages(page, huge_page_order(h));
803caff3a2cSGerald Schaefer 		return NULL;
804caff3a2cSGerald Schaefer 	}
805caff3a2cSGerald Schaefer 
8067893d1d5SAdam Litke 	spin_lock(&hugetlb_lock);
807d1c3fb1fSNishanth Aravamudan 	if (page) {
8082668db91SAdam Litke 		/*
8092668db91SAdam Litke 		 * This page is now managed by the hugetlb allocator and has
8102668db91SAdam Litke 		 * no users -- drop the buddy allocator's reference.
8112668db91SAdam Litke 		 */
8122668db91SAdam Litke 		put_page_testzero(page);
8132668db91SAdam Litke 		VM_BUG_ON(page_count(page));
814d1c3fb1fSNishanth Aravamudan 		nid = page_to_nid(page);
815d1c3fb1fSNishanth Aravamudan 		set_compound_page_dtor(page, free_huge_page);
816d1c3fb1fSNishanth Aravamudan 		/*
817d1c3fb1fSNishanth Aravamudan 		 * We incremented the global counters already
818d1c3fb1fSNishanth Aravamudan 		 */
819a5516438SAndi Kleen 		h->nr_huge_pages_node[nid]++;
820a5516438SAndi Kleen 		h->surplus_huge_pages_node[nid]++;
8213b116300SAdam Litke 		__count_vm_event(HTLB_BUDDY_PGALLOC);
822d1c3fb1fSNishanth Aravamudan 	} else {
823a5516438SAndi Kleen 		h->nr_huge_pages--;
824a5516438SAndi Kleen 		h->surplus_huge_pages--;
8253b116300SAdam Litke 		__count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
8267893d1d5SAdam Litke 	}
827d1c3fb1fSNishanth Aravamudan 	spin_unlock(&hugetlb_lock);
8287893d1d5SAdam Litke 
8297893d1d5SAdam Litke 	return page;
8307893d1d5SAdam Litke }
8317893d1d5SAdam Litke 
832e4e574b7SAdam Litke /*
833e4e574b7SAdam Litke  * Increase the hugetlb pool such that it can accomodate a reservation
834e4e574b7SAdam Litke  * of size 'delta'.
835e4e574b7SAdam Litke  */
836a5516438SAndi Kleen static int gather_surplus_pages(struct hstate *h, int delta)
837e4e574b7SAdam Litke {
838e4e574b7SAdam Litke 	struct list_head surplus_list;
839e4e574b7SAdam Litke 	struct page *page, *tmp;
840e4e574b7SAdam Litke 	int ret, i;
841e4e574b7SAdam Litke 	int needed, allocated;
842e4e574b7SAdam Litke 
843a5516438SAndi Kleen 	needed = (h->resv_huge_pages + delta) - h->free_huge_pages;
844ac09b3a1SAdam Litke 	if (needed <= 0) {
845a5516438SAndi Kleen 		h->resv_huge_pages += delta;
846e4e574b7SAdam Litke 		return 0;
847ac09b3a1SAdam Litke 	}
848e4e574b7SAdam Litke 
849e4e574b7SAdam Litke 	allocated = 0;
850e4e574b7SAdam Litke 	INIT_LIST_HEAD(&surplus_list);
851e4e574b7SAdam Litke 
852e4e574b7SAdam Litke 	ret = -ENOMEM;
853e4e574b7SAdam Litke retry:
854e4e574b7SAdam Litke 	spin_unlock(&hugetlb_lock);
855e4e574b7SAdam Litke 	for (i = 0; i < needed; i++) {
856a5516438SAndi Kleen 		page = alloc_buddy_huge_page(h, NULL, 0);
857e4e574b7SAdam Litke 		if (!page) {
858e4e574b7SAdam Litke 			/*
859e4e574b7SAdam Litke 			 * We were not able to allocate enough pages to
860e4e574b7SAdam Litke 			 * satisfy the entire reservation so we free what
861e4e574b7SAdam Litke 			 * we've allocated so far.
862e4e574b7SAdam Litke 			 */
863e4e574b7SAdam Litke 			spin_lock(&hugetlb_lock);
864e4e574b7SAdam Litke 			needed = 0;
865e4e574b7SAdam Litke 			goto free;
866e4e574b7SAdam Litke 		}
867e4e574b7SAdam Litke 
868e4e574b7SAdam Litke 		list_add(&page->lru, &surplus_list);
869e4e574b7SAdam Litke 	}
870e4e574b7SAdam Litke 	allocated += needed;
871e4e574b7SAdam Litke 
872e4e574b7SAdam Litke 	/*
873e4e574b7SAdam Litke 	 * After retaking hugetlb_lock, we need to recalculate 'needed'
874e4e574b7SAdam Litke 	 * because either resv_huge_pages or free_huge_pages may have changed.
875e4e574b7SAdam Litke 	 */
876e4e574b7SAdam Litke 	spin_lock(&hugetlb_lock);
877a5516438SAndi Kleen 	needed = (h->resv_huge_pages + delta) -
878a5516438SAndi Kleen 			(h->free_huge_pages + allocated);
879e4e574b7SAdam Litke 	if (needed > 0)
880e4e574b7SAdam Litke 		goto retry;
881e4e574b7SAdam Litke 
882e4e574b7SAdam Litke 	/*
883e4e574b7SAdam Litke 	 * The surplus_list now contains _at_least_ the number of extra pages
884e4e574b7SAdam Litke 	 * needed to accomodate the reservation.  Add the appropriate number
885e4e574b7SAdam Litke 	 * of pages to the hugetlb pool and free the extras back to the buddy
886ac09b3a1SAdam Litke 	 * allocator.  Commit the entire reservation here to prevent another
887ac09b3a1SAdam Litke 	 * process from stealing the pages as they are added to the pool but
888ac09b3a1SAdam Litke 	 * before they are reserved.
889e4e574b7SAdam Litke 	 */
890e4e574b7SAdam Litke 	needed += allocated;
891a5516438SAndi Kleen 	h->resv_huge_pages += delta;
892e4e574b7SAdam Litke 	ret = 0;
893e4e574b7SAdam Litke free:
89419fc3f0aSAdam Litke 	/* Free the needed pages to the hugetlb pool */
89519fc3f0aSAdam Litke 	list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
89619fc3f0aSAdam Litke 		if ((--needed) < 0)
89719fc3f0aSAdam Litke 			break;
89819fc3f0aSAdam Litke 		list_del(&page->lru);
899a5516438SAndi Kleen 		enqueue_huge_page(h, page);
90019fc3f0aSAdam Litke 	}
90119fc3f0aSAdam Litke 
90219fc3f0aSAdam Litke 	/* Free unnecessary surplus pages to the buddy allocator */
90319fc3f0aSAdam Litke 	if (!list_empty(&surplus_list)) {
90419fc3f0aSAdam Litke 		spin_unlock(&hugetlb_lock);
905e4e574b7SAdam Litke 		list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
906e4e574b7SAdam Litke 			list_del(&page->lru);
907af767cbdSAdam Litke 			/*
9082668db91SAdam Litke 			 * The page has a reference count of zero already, so
9092668db91SAdam Litke 			 * call free_huge_page directly instead of using
9102668db91SAdam Litke 			 * put_page.  This must be done with hugetlb_lock
911af767cbdSAdam Litke 			 * unlocked which is safe because free_huge_page takes
912af767cbdSAdam Litke 			 * hugetlb_lock before deciding how to free the page.
913af767cbdSAdam Litke 			 */
9142668db91SAdam Litke 			free_huge_page(page);
915af767cbdSAdam Litke 		}
91619fc3f0aSAdam Litke 		spin_lock(&hugetlb_lock);
917e4e574b7SAdam Litke 	}
918e4e574b7SAdam Litke 
919e4e574b7SAdam Litke 	return ret;
920e4e574b7SAdam Litke }
921e4e574b7SAdam Litke 
922e4e574b7SAdam Litke /*
923e4e574b7SAdam Litke  * When releasing a hugetlb pool reservation, any surplus pages that were
924e4e574b7SAdam Litke  * allocated to satisfy the reservation must be explicitly freed if they were
925e4e574b7SAdam Litke  * never used.
926685f3457SLee Schermerhorn  * Called with hugetlb_lock held.
927e4e574b7SAdam Litke  */
928a5516438SAndi Kleen static void return_unused_surplus_pages(struct hstate *h,
929a5516438SAndi Kleen 					unsigned long unused_resv_pages)
930e4e574b7SAdam Litke {
931e4e574b7SAdam Litke 	unsigned long nr_pages;
932e4e574b7SAdam Litke 
933ac09b3a1SAdam Litke 	/* Uncommit the reservation */
934a5516438SAndi Kleen 	h->resv_huge_pages -= unused_resv_pages;
935ac09b3a1SAdam Litke 
936aa888a74SAndi Kleen 	/* Cannot return gigantic pages currently */
937aa888a74SAndi Kleen 	if (h->order >= MAX_ORDER)
938aa888a74SAndi Kleen 		return;
939aa888a74SAndi Kleen 
940a5516438SAndi Kleen 	nr_pages = min(unused_resv_pages, h->surplus_huge_pages);
941e4e574b7SAdam Litke 
942685f3457SLee Schermerhorn 	/*
943685f3457SLee Schermerhorn 	 * We want to release as many surplus pages as possible, spread
944685f3457SLee Schermerhorn 	 * evenly across all nodes. Iterate across all nodes until we
945685f3457SLee Schermerhorn 	 * can no longer free unreserved surplus pages. This occurs when
946685f3457SLee Schermerhorn 	 * the nodes with surplus pages have no free pages.
947685f3457SLee Schermerhorn 	 * free_pool_huge_page() will balance the the frees across the
948685f3457SLee Schermerhorn 	 * on-line nodes for us and will handle the hstate accounting.
949685f3457SLee Schermerhorn 	 */
950685f3457SLee Schermerhorn 	while (nr_pages--) {
9516ae11b27SLee Schermerhorn 		if (!free_pool_huge_page(h, &node_online_map, 1))
952685f3457SLee Schermerhorn 			break;
953e4e574b7SAdam Litke 	}
954e4e574b7SAdam Litke }
955e4e574b7SAdam Litke 
956c37f9fb1SAndy Whitcroft /*
957c37f9fb1SAndy Whitcroft  * Determine if the huge page at addr within the vma has an associated
958c37f9fb1SAndy Whitcroft  * reservation.  Where it does not we will need to logically increase
959c37f9fb1SAndy Whitcroft  * reservation and actually increase quota before an allocation can occur.
960c37f9fb1SAndy Whitcroft  * Where any new reservation would be required the reservation change is
961c37f9fb1SAndy Whitcroft  * prepared, but not committed.  Once the page has been quota'd allocated
962c37f9fb1SAndy Whitcroft  * an instantiated the change should be committed via vma_commit_reservation.
963c37f9fb1SAndy Whitcroft  * No action is required on failure.
964c37f9fb1SAndy Whitcroft  */
965e2f17d94SRoel Kluin static long vma_needs_reservation(struct hstate *h,
966a5516438SAndi Kleen 			struct vm_area_struct *vma, unsigned long addr)
967c37f9fb1SAndy Whitcroft {
968c37f9fb1SAndy Whitcroft 	struct address_space *mapping = vma->vm_file->f_mapping;
969c37f9fb1SAndy Whitcroft 	struct inode *inode = mapping->host;
970c37f9fb1SAndy Whitcroft 
971f83a275dSMel Gorman 	if (vma->vm_flags & VM_MAYSHARE) {
972a5516438SAndi Kleen 		pgoff_t idx = vma_hugecache_offset(h, vma, addr);
973c37f9fb1SAndy Whitcroft 		return region_chg(&inode->i_mapping->private_list,
974c37f9fb1SAndy Whitcroft 							idx, idx + 1);
975c37f9fb1SAndy Whitcroft 
97684afd99bSAndy Whitcroft 	} else if (!is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
977c37f9fb1SAndy Whitcroft 		return 1;
978c37f9fb1SAndy Whitcroft 
97984afd99bSAndy Whitcroft 	} else  {
980e2f17d94SRoel Kluin 		long err;
981a5516438SAndi Kleen 		pgoff_t idx = vma_hugecache_offset(h, vma, addr);
98284afd99bSAndy Whitcroft 		struct resv_map *reservations = vma_resv_map(vma);
98384afd99bSAndy Whitcroft 
98484afd99bSAndy Whitcroft 		err = region_chg(&reservations->regions, idx, idx + 1);
98584afd99bSAndy Whitcroft 		if (err < 0)
98684afd99bSAndy Whitcroft 			return err;
987c37f9fb1SAndy Whitcroft 		return 0;
988c37f9fb1SAndy Whitcroft 	}
98984afd99bSAndy Whitcroft }
990a5516438SAndi Kleen static void vma_commit_reservation(struct hstate *h,
991a5516438SAndi Kleen 			struct vm_area_struct *vma, unsigned long addr)
992c37f9fb1SAndy Whitcroft {
993c37f9fb1SAndy Whitcroft 	struct address_space *mapping = vma->vm_file->f_mapping;
994c37f9fb1SAndy Whitcroft 	struct inode *inode = mapping->host;
995c37f9fb1SAndy Whitcroft 
996f83a275dSMel Gorman 	if (vma->vm_flags & VM_MAYSHARE) {
997a5516438SAndi Kleen 		pgoff_t idx = vma_hugecache_offset(h, vma, addr);
998c37f9fb1SAndy Whitcroft 		region_add(&inode->i_mapping->private_list, idx, idx + 1);
99984afd99bSAndy Whitcroft 
100084afd99bSAndy Whitcroft 	} else if (is_vma_resv_set(vma, HPAGE_RESV_OWNER)) {
1001a5516438SAndi Kleen 		pgoff_t idx = vma_hugecache_offset(h, vma, addr);
100284afd99bSAndy Whitcroft 		struct resv_map *reservations = vma_resv_map(vma);
100384afd99bSAndy Whitcroft 
100484afd99bSAndy Whitcroft 		/* Mark this page used in the map. */
100584afd99bSAndy Whitcroft 		region_add(&reservations->regions, idx, idx + 1);
1006c37f9fb1SAndy Whitcroft 	}
1007c37f9fb1SAndy Whitcroft }
1008c37f9fb1SAndy Whitcroft 
1009348ea204SAdam Litke static struct page *alloc_huge_page(struct vm_area_struct *vma,
101004f2cbe3SMel Gorman 				    unsigned long addr, int avoid_reserve)
1011348ea204SAdam Litke {
1012a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
1013348ea204SAdam Litke 	struct page *page;
10142fc39cecSAdam Litke 	struct address_space *mapping = vma->vm_file->f_mapping;
1015a1e78772SMel Gorman 	struct inode *inode = mapping->host;
1016e2f17d94SRoel Kluin 	long chg;
10172fc39cecSAdam Litke 
1018a1e78772SMel Gorman 	/*
1019a1e78772SMel Gorman 	 * Processes that did not create the mapping will have no reserves and
1020a1e78772SMel Gorman 	 * will not have accounted against quota. Check that the quota can be
1021a1e78772SMel Gorman 	 * made before satisfying the allocation
1022c37f9fb1SAndy Whitcroft 	 * MAP_NORESERVE mappings may also need pages and quota allocated
1023c37f9fb1SAndy Whitcroft 	 * if no reserve mapping overlaps.
1024a1e78772SMel Gorman 	 */
1025a5516438SAndi Kleen 	chg = vma_needs_reservation(h, vma, addr);
1026c37f9fb1SAndy Whitcroft 	if (chg < 0)
1027c37f9fb1SAndy Whitcroft 		return ERR_PTR(chg);
1028c37f9fb1SAndy Whitcroft 	if (chg)
1029a1e78772SMel Gorman 		if (hugetlb_get_quota(inode->i_mapping, chg))
1030a1e78772SMel Gorman 			return ERR_PTR(-ENOSPC);
103190d8b7e6SAdam Litke 
1032a1e78772SMel Gorman 	spin_lock(&hugetlb_lock);
1033a5516438SAndi Kleen 	page = dequeue_huge_page_vma(h, vma, addr, avoid_reserve);
1034a1e78772SMel Gorman 	spin_unlock(&hugetlb_lock);
1035a1e78772SMel Gorman 
1036a1e78772SMel Gorman 	if (!page) {
1037a5516438SAndi Kleen 		page = alloc_buddy_huge_page(h, vma, addr);
1038a1e78772SMel Gorman 		if (!page) {
1039a1e78772SMel Gorman 			hugetlb_put_quota(inode->i_mapping, chg);
1040a1e78772SMel Gorman 			return ERR_PTR(-VM_FAULT_OOM);
1041a1e78772SMel Gorman 		}
1042a1e78772SMel Gorman 	}
1043a1e78772SMel Gorman 
1044348ea204SAdam Litke 	set_page_refcounted(page);
10452fc39cecSAdam Litke 	set_page_private(page, (unsigned long) mapping);
1046a1e78772SMel Gorman 
1047a5516438SAndi Kleen 	vma_commit_reservation(h, vma, addr);
1048c37f9fb1SAndy Whitcroft 
10497893d1d5SAdam Litke 	return page;
1050b45b5bd6SDavid Gibson }
1051b45b5bd6SDavid Gibson 
105291f47662SCyrill Gorcunov int __weak alloc_bootmem_huge_page(struct hstate *h)
1053aa888a74SAndi Kleen {
1054aa888a74SAndi Kleen 	struct huge_bootmem_page *m;
1055aa888a74SAndi Kleen 	int nr_nodes = nodes_weight(node_online_map);
1056aa888a74SAndi Kleen 
1057aa888a74SAndi Kleen 	while (nr_nodes) {
1058aa888a74SAndi Kleen 		void *addr;
1059aa888a74SAndi Kleen 
1060aa888a74SAndi Kleen 		addr = __alloc_bootmem_node_nopanic(
10616ae11b27SLee Schermerhorn 				NODE_DATA(hstate_next_node_to_alloc(h,
10626ae11b27SLee Schermerhorn 							&node_online_map)),
1063aa888a74SAndi Kleen 				huge_page_size(h), huge_page_size(h), 0);
1064aa888a74SAndi Kleen 
1065aa888a74SAndi Kleen 		if (addr) {
1066aa888a74SAndi Kleen 			/*
1067aa888a74SAndi Kleen 			 * Use the beginning of the huge page to store the
1068aa888a74SAndi Kleen 			 * huge_bootmem_page struct (until gather_bootmem
1069aa888a74SAndi Kleen 			 * puts them into the mem_map).
1070aa888a74SAndi Kleen 			 */
1071aa888a74SAndi Kleen 			m = addr;
1072aa888a74SAndi Kleen 			goto found;
1073aa888a74SAndi Kleen 		}
1074aa888a74SAndi Kleen 		nr_nodes--;
1075aa888a74SAndi Kleen 	}
1076aa888a74SAndi Kleen 	return 0;
1077aa888a74SAndi Kleen 
1078aa888a74SAndi Kleen found:
1079aa888a74SAndi Kleen 	BUG_ON((unsigned long)virt_to_phys(m) & (huge_page_size(h) - 1));
1080aa888a74SAndi Kleen 	/* Put them into a private list first because mem_map is not up yet */
1081aa888a74SAndi Kleen 	list_add(&m->list, &huge_boot_pages);
1082aa888a74SAndi Kleen 	m->hstate = h;
1083aa888a74SAndi Kleen 	return 1;
1084aa888a74SAndi Kleen }
1085aa888a74SAndi Kleen 
108618229df5SAndy Whitcroft static void prep_compound_huge_page(struct page *page, int order)
108718229df5SAndy Whitcroft {
108818229df5SAndy Whitcroft 	if (unlikely(order > (MAX_ORDER - 1)))
108918229df5SAndy Whitcroft 		prep_compound_gigantic_page(page, order);
109018229df5SAndy Whitcroft 	else
109118229df5SAndy Whitcroft 		prep_compound_page(page, order);
109218229df5SAndy Whitcroft }
109318229df5SAndy Whitcroft 
1094aa888a74SAndi Kleen /* Put bootmem huge pages into the standard lists after mem_map is up */
1095aa888a74SAndi Kleen static void __init gather_bootmem_prealloc(void)
1096aa888a74SAndi Kleen {
1097aa888a74SAndi Kleen 	struct huge_bootmem_page *m;
1098aa888a74SAndi Kleen 
1099aa888a74SAndi Kleen 	list_for_each_entry(m, &huge_boot_pages, list) {
1100aa888a74SAndi Kleen 		struct page *page = virt_to_page(m);
1101aa888a74SAndi Kleen 		struct hstate *h = m->hstate;
1102aa888a74SAndi Kleen 		__ClearPageReserved(page);
1103aa888a74SAndi Kleen 		WARN_ON(page_count(page) != 1);
110418229df5SAndy Whitcroft 		prep_compound_huge_page(page, h->order);
1105aa888a74SAndi Kleen 		prep_new_huge_page(h, page, page_to_nid(page));
1106aa888a74SAndi Kleen 	}
1107aa888a74SAndi Kleen }
1108aa888a74SAndi Kleen 
11098faa8b07SAndi Kleen static void __init hugetlb_hstate_alloc_pages(struct hstate *h)
11101da177e4SLinus Torvalds {
11111da177e4SLinus Torvalds 	unsigned long i;
11121da177e4SLinus Torvalds 
1113e5ff2159SAndi Kleen 	for (i = 0; i < h->max_huge_pages; ++i) {
1114aa888a74SAndi Kleen 		if (h->order >= MAX_ORDER) {
1115aa888a74SAndi Kleen 			if (!alloc_bootmem_huge_page(h))
1116aa888a74SAndi Kleen 				break;
11176ae11b27SLee Schermerhorn 		} else if (!alloc_fresh_huge_page(h, &node_online_map))
11181da177e4SLinus Torvalds 			break;
11191da177e4SLinus Torvalds 	}
11208faa8b07SAndi Kleen 	h->max_huge_pages = i;
1121e5ff2159SAndi Kleen }
1122e5ff2159SAndi Kleen 
1123e5ff2159SAndi Kleen static void __init hugetlb_init_hstates(void)
1124e5ff2159SAndi Kleen {
1125e5ff2159SAndi Kleen 	struct hstate *h;
1126e5ff2159SAndi Kleen 
1127e5ff2159SAndi Kleen 	for_each_hstate(h) {
11288faa8b07SAndi Kleen 		/* oversize hugepages were init'ed in early boot */
11298faa8b07SAndi Kleen 		if (h->order < MAX_ORDER)
11308faa8b07SAndi Kleen 			hugetlb_hstate_alloc_pages(h);
1131e5ff2159SAndi Kleen 	}
1132e5ff2159SAndi Kleen }
1133e5ff2159SAndi Kleen 
11344abd32dbSAndi Kleen static char * __init memfmt(char *buf, unsigned long n)
11354abd32dbSAndi Kleen {
11364abd32dbSAndi Kleen 	if (n >= (1UL << 30))
11374abd32dbSAndi Kleen 		sprintf(buf, "%lu GB", n >> 30);
11384abd32dbSAndi Kleen 	else if (n >= (1UL << 20))
11394abd32dbSAndi Kleen 		sprintf(buf, "%lu MB", n >> 20);
11404abd32dbSAndi Kleen 	else
11414abd32dbSAndi Kleen 		sprintf(buf, "%lu KB", n >> 10);
11424abd32dbSAndi Kleen 	return buf;
11434abd32dbSAndi Kleen }
11444abd32dbSAndi Kleen 
1145e5ff2159SAndi Kleen static void __init report_hugepages(void)
1146e5ff2159SAndi Kleen {
1147e5ff2159SAndi Kleen 	struct hstate *h;
1148e5ff2159SAndi Kleen 
1149e5ff2159SAndi Kleen 	for_each_hstate(h) {
11504abd32dbSAndi Kleen 		char buf[32];
11514abd32dbSAndi Kleen 		printk(KERN_INFO "HugeTLB registered %s page size, "
11524abd32dbSAndi Kleen 				 "pre-allocated %ld pages\n",
11534abd32dbSAndi Kleen 			memfmt(buf, huge_page_size(h)),
11544abd32dbSAndi Kleen 			h->free_huge_pages);
1155e5ff2159SAndi Kleen 	}
1156e5ff2159SAndi Kleen }
1157e5ff2159SAndi Kleen 
11581da177e4SLinus Torvalds #ifdef CONFIG_HIGHMEM
11596ae11b27SLee Schermerhorn static void try_to_free_low(struct hstate *h, unsigned long count,
11606ae11b27SLee Schermerhorn 						nodemask_t *nodes_allowed)
11611da177e4SLinus Torvalds {
11624415cc8dSChristoph Lameter 	int i;
11634415cc8dSChristoph Lameter 
1164aa888a74SAndi Kleen 	if (h->order >= MAX_ORDER)
1165aa888a74SAndi Kleen 		return;
1166aa888a74SAndi Kleen 
11676ae11b27SLee Schermerhorn 	for_each_node_mask(i, *nodes_allowed) {
11681da177e4SLinus Torvalds 		struct page *page, *next;
1169a5516438SAndi Kleen 		struct list_head *freel = &h->hugepage_freelists[i];
1170a5516438SAndi Kleen 		list_for_each_entry_safe(page, next, freel, lru) {
1171a5516438SAndi Kleen 			if (count >= h->nr_huge_pages)
11726b0c880dSAdam Litke 				return;
11731da177e4SLinus Torvalds 			if (PageHighMem(page))
11741da177e4SLinus Torvalds 				continue;
11751da177e4SLinus Torvalds 			list_del(&page->lru);
1176e5ff2159SAndi Kleen 			update_and_free_page(h, page);
1177a5516438SAndi Kleen 			h->free_huge_pages--;
1178a5516438SAndi Kleen 			h->free_huge_pages_node[page_to_nid(page)]--;
11791da177e4SLinus Torvalds 		}
11801da177e4SLinus Torvalds 	}
11811da177e4SLinus Torvalds }
11821da177e4SLinus Torvalds #else
11836ae11b27SLee Schermerhorn static inline void try_to_free_low(struct hstate *h, unsigned long count,
11846ae11b27SLee Schermerhorn 						nodemask_t *nodes_allowed)
11851da177e4SLinus Torvalds {
11861da177e4SLinus Torvalds }
11871da177e4SLinus Torvalds #endif
11881da177e4SLinus Torvalds 
118920a0307cSWu Fengguang /*
119020a0307cSWu Fengguang  * Increment or decrement surplus_huge_pages.  Keep node-specific counters
119120a0307cSWu Fengguang  * balanced by operating on them in a round-robin fashion.
119220a0307cSWu Fengguang  * Returns 1 if an adjustment was made.
119320a0307cSWu Fengguang  */
11946ae11b27SLee Schermerhorn static int adjust_pool_surplus(struct hstate *h, nodemask_t *nodes_allowed,
11956ae11b27SLee Schermerhorn 				int delta)
119620a0307cSWu Fengguang {
1197e8c5c824SLee Schermerhorn 	int start_nid, next_nid;
119820a0307cSWu Fengguang 	int ret = 0;
119920a0307cSWu Fengguang 
120020a0307cSWu Fengguang 	VM_BUG_ON(delta != -1 && delta != 1);
120120a0307cSWu Fengguang 
1202e8c5c824SLee Schermerhorn 	if (delta < 0)
12036ae11b27SLee Schermerhorn 		start_nid = hstate_next_node_to_alloc(h, nodes_allowed);
1204e8c5c824SLee Schermerhorn 	else
12056ae11b27SLee Schermerhorn 		start_nid = hstate_next_node_to_free(h, nodes_allowed);
1206e8c5c824SLee Schermerhorn 	next_nid = start_nid;
1207e8c5c824SLee Schermerhorn 
1208e8c5c824SLee Schermerhorn 	do {
1209e8c5c824SLee Schermerhorn 		int nid = next_nid;
1210e8c5c824SLee Schermerhorn 		if (delta < 0)  {
1211e8c5c824SLee Schermerhorn 			/*
1212e8c5c824SLee Schermerhorn 			 * To shrink on this node, there must be a surplus page
1213e8c5c824SLee Schermerhorn 			 */
12149a76db09SLee Schermerhorn 			if (!h->surplus_huge_pages_node[nid]) {
12156ae11b27SLee Schermerhorn 				next_nid = hstate_next_node_to_alloc(h,
12166ae11b27SLee Schermerhorn 								nodes_allowed);
121720a0307cSWu Fengguang 				continue;
1218e8c5c824SLee Schermerhorn 			}
12199a76db09SLee Schermerhorn 		}
1220e8c5c824SLee Schermerhorn 		if (delta > 0) {
1221e8c5c824SLee Schermerhorn 			/*
1222e8c5c824SLee Schermerhorn 			 * Surplus cannot exceed the total number of pages
1223e8c5c824SLee Schermerhorn 			 */
1224e8c5c824SLee Schermerhorn 			if (h->surplus_huge_pages_node[nid] >=
12259a76db09SLee Schermerhorn 						h->nr_huge_pages_node[nid]) {
12266ae11b27SLee Schermerhorn 				next_nid = hstate_next_node_to_free(h,
12276ae11b27SLee Schermerhorn 								nodes_allowed);
122820a0307cSWu Fengguang 				continue;
1229e8c5c824SLee Schermerhorn 			}
12309a76db09SLee Schermerhorn 		}
123120a0307cSWu Fengguang 
123220a0307cSWu Fengguang 		h->surplus_huge_pages += delta;
123320a0307cSWu Fengguang 		h->surplus_huge_pages_node[nid] += delta;
123420a0307cSWu Fengguang 		ret = 1;
123520a0307cSWu Fengguang 		break;
1236e8c5c824SLee Schermerhorn 	} while (next_nid != start_nid);
123720a0307cSWu Fengguang 
123820a0307cSWu Fengguang 	return ret;
123920a0307cSWu Fengguang }
124020a0307cSWu Fengguang 
1241a5516438SAndi Kleen #define persistent_huge_pages(h) (h->nr_huge_pages - h->surplus_huge_pages)
12426ae11b27SLee Schermerhorn static unsigned long set_max_huge_pages(struct hstate *h, unsigned long count,
12436ae11b27SLee Schermerhorn 						nodemask_t *nodes_allowed)
12441da177e4SLinus Torvalds {
12457893d1d5SAdam Litke 	unsigned long min_count, ret;
12461da177e4SLinus Torvalds 
1247aa888a74SAndi Kleen 	if (h->order >= MAX_ORDER)
1248aa888a74SAndi Kleen 		return h->max_huge_pages;
1249aa888a74SAndi Kleen 
12507893d1d5SAdam Litke 	/*
12517893d1d5SAdam Litke 	 * Increase the pool size
12527893d1d5SAdam Litke 	 * First take pages out of surplus state.  Then make up the
12537893d1d5SAdam Litke 	 * remaining difference by allocating fresh huge pages.
1254d1c3fb1fSNishanth Aravamudan 	 *
1255d1c3fb1fSNishanth Aravamudan 	 * We might race with alloc_buddy_huge_page() here and be unable
1256d1c3fb1fSNishanth Aravamudan 	 * to convert a surplus huge page to a normal huge page. That is
1257d1c3fb1fSNishanth Aravamudan 	 * not critical, though, it just means the overall size of the
1258d1c3fb1fSNishanth Aravamudan 	 * pool might be one hugepage larger than it needs to be, but
1259d1c3fb1fSNishanth Aravamudan 	 * within all the constraints specified by the sysctls.
12607893d1d5SAdam Litke 	 */
12611da177e4SLinus Torvalds 	spin_lock(&hugetlb_lock);
1262a5516438SAndi Kleen 	while (h->surplus_huge_pages && count > persistent_huge_pages(h)) {
12636ae11b27SLee Schermerhorn 		if (!adjust_pool_surplus(h, nodes_allowed, -1))
12647893d1d5SAdam Litke 			break;
12657893d1d5SAdam Litke 	}
12667893d1d5SAdam Litke 
1267a5516438SAndi Kleen 	while (count > persistent_huge_pages(h)) {
12687893d1d5SAdam Litke 		/*
12697893d1d5SAdam Litke 		 * If this allocation races such that we no longer need the
12707893d1d5SAdam Litke 		 * page, free_huge_page will handle it by freeing the page
12717893d1d5SAdam Litke 		 * and reducing the surplus.
12727893d1d5SAdam Litke 		 */
12737893d1d5SAdam Litke 		spin_unlock(&hugetlb_lock);
12746ae11b27SLee Schermerhorn 		ret = alloc_fresh_huge_page(h, nodes_allowed);
12757893d1d5SAdam Litke 		spin_lock(&hugetlb_lock);
12767893d1d5SAdam Litke 		if (!ret)
12777893d1d5SAdam Litke 			goto out;
12787893d1d5SAdam Litke 
12797893d1d5SAdam Litke 	}
12807893d1d5SAdam Litke 
12817893d1d5SAdam Litke 	/*
12827893d1d5SAdam Litke 	 * Decrease the pool size
12837893d1d5SAdam Litke 	 * First return free pages to the buddy allocator (being careful
12847893d1d5SAdam Litke 	 * to keep enough around to satisfy reservations).  Then place
12857893d1d5SAdam Litke 	 * pages into surplus state as needed so the pool will shrink
12867893d1d5SAdam Litke 	 * to the desired size as pages become free.
1287d1c3fb1fSNishanth Aravamudan 	 *
1288d1c3fb1fSNishanth Aravamudan 	 * By placing pages into the surplus state independent of the
1289d1c3fb1fSNishanth Aravamudan 	 * overcommit value, we are allowing the surplus pool size to
1290d1c3fb1fSNishanth Aravamudan 	 * exceed overcommit. There are few sane options here. Since
1291d1c3fb1fSNishanth Aravamudan 	 * alloc_buddy_huge_page() is checking the global counter,
1292d1c3fb1fSNishanth Aravamudan 	 * though, we'll note that we're not allowed to exceed surplus
1293d1c3fb1fSNishanth Aravamudan 	 * and won't grow the pool anywhere else. Not until one of the
1294d1c3fb1fSNishanth Aravamudan 	 * sysctls are changed, or the surplus pages go out of use.
12957893d1d5SAdam Litke 	 */
1296a5516438SAndi Kleen 	min_count = h->resv_huge_pages + h->nr_huge_pages - h->free_huge_pages;
12976b0c880dSAdam Litke 	min_count = max(count, min_count);
12986ae11b27SLee Schermerhorn 	try_to_free_low(h, min_count, nodes_allowed);
1299a5516438SAndi Kleen 	while (min_count < persistent_huge_pages(h)) {
13006ae11b27SLee Schermerhorn 		if (!free_pool_huge_page(h, nodes_allowed, 0))
13011da177e4SLinus Torvalds 			break;
13021da177e4SLinus Torvalds 	}
1303a5516438SAndi Kleen 	while (count < persistent_huge_pages(h)) {
13046ae11b27SLee Schermerhorn 		if (!adjust_pool_surplus(h, nodes_allowed, 1))
13057893d1d5SAdam Litke 			break;
13067893d1d5SAdam Litke 	}
13077893d1d5SAdam Litke out:
1308a5516438SAndi Kleen 	ret = persistent_huge_pages(h);
13091da177e4SLinus Torvalds 	spin_unlock(&hugetlb_lock);
13107893d1d5SAdam Litke 	return ret;
13111da177e4SLinus Torvalds }
13121da177e4SLinus Torvalds 
1313a3437870SNishanth Aravamudan #define HSTATE_ATTR_RO(_name) \
1314a3437870SNishanth Aravamudan 	static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
1315a3437870SNishanth Aravamudan 
1316a3437870SNishanth Aravamudan #define HSTATE_ATTR(_name) \
1317a3437870SNishanth Aravamudan 	static struct kobj_attribute _name##_attr = \
1318a3437870SNishanth Aravamudan 		__ATTR(_name, 0644, _name##_show, _name##_store)
1319a3437870SNishanth Aravamudan 
1320a3437870SNishanth Aravamudan static struct kobject *hugepages_kobj;
1321a3437870SNishanth Aravamudan static struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
1322a3437870SNishanth Aravamudan 
1323a3437870SNishanth Aravamudan static struct hstate *kobj_to_hstate(struct kobject *kobj)
1324a3437870SNishanth Aravamudan {
1325a3437870SNishanth Aravamudan 	int i;
1326a3437870SNishanth Aravamudan 	for (i = 0; i < HUGE_MAX_HSTATE; i++)
1327a3437870SNishanth Aravamudan 		if (hstate_kobjs[i] == kobj)
1328a3437870SNishanth Aravamudan 			return &hstates[i];
1329a3437870SNishanth Aravamudan 	BUG();
1330a3437870SNishanth Aravamudan 	return NULL;
1331a3437870SNishanth Aravamudan }
1332a3437870SNishanth Aravamudan 
133306808b08SLee Schermerhorn static ssize_t nr_hugepages_show_common(struct kobject *kobj,
1334a3437870SNishanth Aravamudan 					struct kobj_attribute *attr, char *buf)
1335a3437870SNishanth Aravamudan {
1336a3437870SNishanth Aravamudan 	struct hstate *h = kobj_to_hstate(kobj);
1337a3437870SNishanth Aravamudan 	return sprintf(buf, "%lu\n", h->nr_huge_pages);
1338a3437870SNishanth Aravamudan }
133906808b08SLee Schermerhorn static ssize_t nr_hugepages_store_common(bool obey_mempolicy,
134006808b08SLee Schermerhorn 			struct kobject *kobj, struct kobj_attribute *attr,
134106808b08SLee Schermerhorn 			const char *buf, size_t len)
1342a3437870SNishanth Aravamudan {
1343a3437870SNishanth Aravamudan 	int err;
134406808b08SLee Schermerhorn 	unsigned long count;
1345a3437870SNishanth Aravamudan 	struct hstate *h = kobj_to_hstate(kobj);
134606808b08SLee Schermerhorn 	NODEMASK_ALLOC(nodemask_t, nodes_allowed);
1347a3437870SNishanth Aravamudan 
134806808b08SLee Schermerhorn 	err = strict_strtoul(buf, 10, &count);
1349a3437870SNishanth Aravamudan 	if (err)
1350a3437870SNishanth Aravamudan 		return 0;
1351a3437870SNishanth Aravamudan 
135206808b08SLee Schermerhorn 	if (!(obey_mempolicy && init_nodemask_of_mempolicy(nodes_allowed))) {
135306808b08SLee Schermerhorn 		NODEMASK_FREE(nodes_allowed);
135406808b08SLee Schermerhorn 		nodes_allowed = &node_online_map;
135506808b08SLee Schermerhorn 	}
135606808b08SLee Schermerhorn 	h->max_huge_pages = set_max_huge_pages(h, count, nodes_allowed);
1357a3437870SNishanth Aravamudan 
135806808b08SLee Schermerhorn 	if (nodes_allowed != &node_online_map)
135906808b08SLee Schermerhorn 		NODEMASK_FREE(nodes_allowed);
136006808b08SLee Schermerhorn 
136106808b08SLee Schermerhorn 	return len;
136206808b08SLee Schermerhorn }
136306808b08SLee Schermerhorn 
136406808b08SLee Schermerhorn static ssize_t nr_hugepages_show(struct kobject *kobj,
136506808b08SLee Schermerhorn 				       struct kobj_attribute *attr, char *buf)
136606808b08SLee Schermerhorn {
136706808b08SLee Schermerhorn 	return nr_hugepages_show_common(kobj, attr, buf);
136806808b08SLee Schermerhorn }
136906808b08SLee Schermerhorn 
137006808b08SLee Schermerhorn static ssize_t nr_hugepages_store(struct kobject *kobj,
137106808b08SLee Schermerhorn 	       struct kobj_attribute *attr, const char *buf, size_t len)
137206808b08SLee Schermerhorn {
137306808b08SLee Schermerhorn 	return nr_hugepages_store_common(false, kobj, attr, buf, len);
1374a3437870SNishanth Aravamudan }
1375a3437870SNishanth Aravamudan HSTATE_ATTR(nr_hugepages);
1376a3437870SNishanth Aravamudan 
137706808b08SLee Schermerhorn #ifdef CONFIG_NUMA
137806808b08SLee Schermerhorn 
137906808b08SLee Schermerhorn /*
138006808b08SLee Schermerhorn  * hstate attribute for optionally mempolicy-based constraint on persistent
138106808b08SLee Schermerhorn  * huge page alloc/free.
138206808b08SLee Schermerhorn  */
138306808b08SLee Schermerhorn static ssize_t nr_hugepages_mempolicy_show(struct kobject *kobj,
138406808b08SLee Schermerhorn 				       struct kobj_attribute *attr, char *buf)
138506808b08SLee Schermerhorn {
138606808b08SLee Schermerhorn 	return nr_hugepages_show_common(kobj, attr, buf);
138706808b08SLee Schermerhorn }
138806808b08SLee Schermerhorn 
138906808b08SLee Schermerhorn static ssize_t nr_hugepages_mempolicy_store(struct kobject *kobj,
139006808b08SLee Schermerhorn 	       struct kobj_attribute *attr, const char *buf, size_t len)
139106808b08SLee Schermerhorn {
139206808b08SLee Schermerhorn 	return nr_hugepages_store_common(true, kobj, attr, buf, len);
139306808b08SLee Schermerhorn }
139406808b08SLee Schermerhorn HSTATE_ATTR(nr_hugepages_mempolicy);
139506808b08SLee Schermerhorn #endif
139606808b08SLee Schermerhorn 
139706808b08SLee Schermerhorn 
1398a3437870SNishanth Aravamudan static ssize_t nr_overcommit_hugepages_show(struct kobject *kobj,
1399a3437870SNishanth Aravamudan 					struct kobj_attribute *attr, char *buf)
1400a3437870SNishanth Aravamudan {
1401a3437870SNishanth Aravamudan 	struct hstate *h = kobj_to_hstate(kobj);
1402a3437870SNishanth Aravamudan 	return sprintf(buf, "%lu\n", h->nr_overcommit_huge_pages);
1403a3437870SNishanth Aravamudan }
1404a3437870SNishanth Aravamudan static ssize_t nr_overcommit_hugepages_store(struct kobject *kobj,
1405a3437870SNishanth Aravamudan 		struct kobj_attribute *attr, const char *buf, size_t count)
1406a3437870SNishanth Aravamudan {
1407a3437870SNishanth Aravamudan 	int err;
1408a3437870SNishanth Aravamudan 	unsigned long input;
1409a3437870SNishanth Aravamudan 	struct hstate *h = kobj_to_hstate(kobj);
1410a3437870SNishanth Aravamudan 
1411a3437870SNishanth Aravamudan 	err = strict_strtoul(buf, 10, &input);
1412a3437870SNishanth Aravamudan 	if (err)
1413a3437870SNishanth Aravamudan 		return 0;
1414a3437870SNishanth Aravamudan 
1415a3437870SNishanth Aravamudan 	spin_lock(&hugetlb_lock);
1416a3437870SNishanth Aravamudan 	h->nr_overcommit_huge_pages = input;
1417a3437870SNishanth Aravamudan 	spin_unlock(&hugetlb_lock);
1418a3437870SNishanth Aravamudan 
1419a3437870SNishanth Aravamudan 	return count;
1420a3437870SNishanth Aravamudan }
1421a3437870SNishanth Aravamudan HSTATE_ATTR(nr_overcommit_hugepages);
1422a3437870SNishanth Aravamudan 
1423a3437870SNishanth Aravamudan static ssize_t free_hugepages_show(struct kobject *kobj,
1424a3437870SNishanth Aravamudan 					struct kobj_attribute *attr, char *buf)
1425a3437870SNishanth Aravamudan {
1426a3437870SNishanth Aravamudan 	struct hstate *h = kobj_to_hstate(kobj);
1427a3437870SNishanth Aravamudan 	return sprintf(buf, "%lu\n", h->free_huge_pages);
1428a3437870SNishanth Aravamudan }
1429a3437870SNishanth Aravamudan HSTATE_ATTR_RO(free_hugepages);
1430a3437870SNishanth Aravamudan 
1431a3437870SNishanth Aravamudan static ssize_t resv_hugepages_show(struct kobject *kobj,
1432a3437870SNishanth Aravamudan 					struct kobj_attribute *attr, char *buf)
1433a3437870SNishanth Aravamudan {
1434a3437870SNishanth Aravamudan 	struct hstate *h = kobj_to_hstate(kobj);
1435a3437870SNishanth Aravamudan 	return sprintf(buf, "%lu\n", h->resv_huge_pages);
1436a3437870SNishanth Aravamudan }
1437a3437870SNishanth Aravamudan HSTATE_ATTR_RO(resv_hugepages);
1438a3437870SNishanth Aravamudan 
1439a3437870SNishanth Aravamudan static ssize_t surplus_hugepages_show(struct kobject *kobj,
1440a3437870SNishanth Aravamudan 					struct kobj_attribute *attr, char *buf)
1441a3437870SNishanth Aravamudan {
1442a3437870SNishanth Aravamudan 	struct hstate *h = kobj_to_hstate(kobj);
1443a3437870SNishanth Aravamudan 	return sprintf(buf, "%lu\n", h->surplus_huge_pages);
1444a3437870SNishanth Aravamudan }
1445a3437870SNishanth Aravamudan HSTATE_ATTR_RO(surplus_hugepages);
1446a3437870SNishanth Aravamudan 
1447a3437870SNishanth Aravamudan static struct attribute *hstate_attrs[] = {
1448a3437870SNishanth Aravamudan 	&nr_hugepages_attr.attr,
1449a3437870SNishanth Aravamudan 	&nr_overcommit_hugepages_attr.attr,
1450a3437870SNishanth Aravamudan 	&free_hugepages_attr.attr,
1451a3437870SNishanth Aravamudan 	&resv_hugepages_attr.attr,
1452a3437870SNishanth Aravamudan 	&surplus_hugepages_attr.attr,
145306808b08SLee Schermerhorn #ifdef CONFIG_NUMA
145406808b08SLee Schermerhorn 	&nr_hugepages_mempolicy_attr.attr,
145506808b08SLee Schermerhorn #endif
1456a3437870SNishanth Aravamudan 	NULL,
1457a3437870SNishanth Aravamudan };
1458a3437870SNishanth Aravamudan 
1459a3437870SNishanth Aravamudan static struct attribute_group hstate_attr_group = {
1460a3437870SNishanth Aravamudan 	.attrs = hstate_attrs,
1461a3437870SNishanth Aravamudan };
1462a3437870SNishanth Aravamudan 
1463a3437870SNishanth Aravamudan static int __init hugetlb_sysfs_add_hstate(struct hstate *h)
1464a3437870SNishanth Aravamudan {
1465a3437870SNishanth Aravamudan 	int retval;
1466a3437870SNishanth Aravamudan 
1467a3437870SNishanth Aravamudan 	hstate_kobjs[h - hstates] = kobject_create_and_add(h->name,
1468a3437870SNishanth Aravamudan 							hugepages_kobj);
1469a3437870SNishanth Aravamudan 	if (!hstate_kobjs[h - hstates])
1470a3437870SNishanth Aravamudan 		return -ENOMEM;
1471a3437870SNishanth Aravamudan 
1472a3437870SNishanth Aravamudan 	retval = sysfs_create_group(hstate_kobjs[h - hstates],
1473a3437870SNishanth Aravamudan 							&hstate_attr_group);
1474a3437870SNishanth Aravamudan 	if (retval)
1475a3437870SNishanth Aravamudan 		kobject_put(hstate_kobjs[h - hstates]);
1476a3437870SNishanth Aravamudan 
1477a3437870SNishanth Aravamudan 	return retval;
1478a3437870SNishanth Aravamudan }
1479a3437870SNishanth Aravamudan 
1480a3437870SNishanth Aravamudan static void __init hugetlb_sysfs_init(void)
1481a3437870SNishanth Aravamudan {
1482a3437870SNishanth Aravamudan 	struct hstate *h;
1483a3437870SNishanth Aravamudan 	int err;
1484a3437870SNishanth Aravamudan 
1485a3437870SNishanth Aravamudan 	hugepages_kobj = kobject_create_and_add("hugepages", mm_kobj);
1486a3437870SNishanth Aravamudan 	if (!hugepages_kobj)
1487a3437870SNishanth Aravamudan 		return;
1488a3437870SNishanth Aravamudan 
1489a3437870SNishanth Aravamudan 	for_each_hstate(h) {
1490a3437870SNishanth Aravamudan 		err = hugetlb_sysfs_add_hstate(h);
1491a3437870SNishanth Aravamudan 		if (err)
1492a3437870SNishanth Aravamudan 			printk(KERN_ERR "Hugetlb: Unable to add hstate %s",
1493a3437870SNishanth Aravamudan 								h->name);
1494a3437870SNishanth Aravamudan 	}
1495a3437870SNishanth Aravamudan }
1496a3437870SNishanth Aravamudan 
1497a3437870SNishanth Aravamudan static void __exit hugetlb_exit(void)
1498a3437870SNishanth Aravamudan {
1499a3437870SNishanth Aravamudan 	struct hstate *h;
1500a3437870SNishanth Aravamudan 
1501a3437870SNishanth Aravamudan 	for_each_hstate(h) {
1502a3437870SNishanth Aravamudan 		kobject_put(hstate_kobjs[h - hstates]);
1503a3437870SNishanth Aravamudan 	}
1504a3437870SNishanth Aravamudan 
1505a3437870SNishanth Aravamudan 	kobject_put(hugepages_kobj);
1506a3437870SNishanth Aravamudan }
1507a3437870SNishanth Aravamudan module_exit(hugetlb_exit);
1508a3437870SNishanth Aravamudan 
1509a3437870SNishanth Aravamudan static int __init hugetlb_init(void)
1510a3437870SNishanth Aravamudan {
15110ef89d25SBenjamin Herrenschmidt 	/* Some platform decide whether they support huge pages at boot
15120ef89d25SBenjamin Herrenschmidt 	 * time. On these, such as powerpc, HPAGE_SHIFT is set to 0 when
15130ef89d25SBenjamin Herrenschmidt 	 * there is no such support
15140ef89d25SBenjamin Herrenschmidt 	 */
15150ef89d25SBenjamin Herrenschmidt 	if (HPAGE_SHIFT == 0)
15160ef89d25SBenjamin Herrenschmidt 		return 0;
1517a3437870SNishanth Aravamudan 
1518e11bfbfcSNick Piggin 	if (!size_to_hstate(default_hstate_size)) {
1519e11bfbfcSNick Piggin 		default_hstate_size = HPAGE_SIZE;
1520e11bfbfcSNick Piggin 		if (!size_to_hstate(default_hstate_size))
1521a3437870SNishanth Aravamudan 			hugetlb_add_hstate(HUGETLB_PAGE_ORDER);
1522a3437870SNishanth Aravamudan 	}
1523e11bfbfcSNick Piggin 	default_hstate_idx = size_to_hstate(default_hstate_size) - hstates;
1524e11bfbfcSNick Piggin 	if (default_hstate_max_huge_pages)
1525e11bfbfcSNick Piggin 		default_hstate.max_huge_pages = default_hstate_max_huge_pages;
1526a3437870SNishanth Aravamudan 
1527a3437870SNishanth Aravamudan 	hugetlb_init_hstates();
1528a3437870SNishanth Aravamudan 
1529aa888a74SAndi Kleen 	gather_bootmem_prealloc();
1530aa888a74SAndi Kleen 
1531a3437870SNishanth Aravamudan 	report_hugepages();
1532a3437870SNishanth Aravamudan 
1533a3437870SNishanth Aravamudan 	hugetlb_sysfs_init();
1534a3437870SNishanth Aravamudan 
1535a3437870SNishanth Aravamudan 	return 0;
1536a3437870SNishanth Aravamudan }
1537a3437870SNishanth Aravamudan module_init(hugetlb_init);
1538a3437870SNishanth Aravamudan 
1539a3437870SNishanth Aravamudan /* Should be called on processing a hugepagesz=... option */
1540a3437870SNishanth Aravamudan void __init hugetlb_add_hstate(unsigned order)
1541a3437870SNishanth Aravamudan {
1542a3437870SNishanth Aravamudan 	struct hstate *h;
15438faa8b07SAndi Kleen 	unsigned long i;
15448faa8b07SAndi Kleen 
1545a3437870SNishanth Aravamudan 	if (size_to_hstate(PAGE_SIZE << order)) {
1546a3437870SNishanth Aravamudan 		printk(KERN_WARNING "hugepagesz= specified twice, ignoring\n");
1547a3437870SNishanth Aravamudan 		return;
1548a3437870SNishanth Aravamudan 	}
1549a3437870SNishanth Aravamudan 	BUG_ON(max_hstate >= HUGE_MAX_HSTATE);
1550a3437870SNishanth Aravamudan 	BUG_ON(order == 0);
1551a3437870SNishanth Aravamudan 	h = &hstates[max_hstate++];
1552a3437870SNishanth Aravamudan 	h->order = order;
1553a3437870SNishanth Aravamudan 	h->mask = ~((1ULL << (order + PAGE_SHIFT)) - 1);
15548faa8b07SAndi Kleen 	h->nr_huge_pages = 0;
15558faa8b07SAndi Kleen 	h->free_huge_pages = 0;
15568faa8b07SAndi Kleen 	for (i = 0; i < MAX_NUMNODES; ++i)
15578faa8b07SAndi Kleen 		INIT_LIST_HEAD(&h->hugepage_freelists[i]);
1558e8c5c824SLee Schermerhorn 	h->next_nid_to_alloc = first_node(node_online_map);
1559e8c5c824SLee Schermerhorn 	h->next_nid_to_free = first_node(node_online_map);
1560a3437870SNishanth Aravamudan 	snprintf(h->name, HSTATE_NAME_LEN, "hugepages-%lukB",
1561a3437870SNishanth Aravamudan 					huge_page_size(h)/1024);
15628faa8b07SAndi Kleen 
1563a3437870SNishanth Aravamudan 	parsed_hstate = h;
1564a3437870SNishanth Aravamudan }
1565a3437870SNishanth Aravamudan 
1566e11bfbfcSNick Piggin static int __init hugetlb_nrpages_setup(char *s)
1567a3437870SNishanth Aravamudan {
1568a3437870SNishanth Aravamudan 	unsigned long *mhp;
15698faa8b07SAndi Kleen 	static unsigned long *last_mhp;
1570a3437870SNishanth Aravamudan 
1571a3437870SNishanth Aravamudan 	/*
1572a3437870SNishanth Aravamudan 	 * !max_hstate means we haven't parsed a hugepagesz= parameter yet,
1573a3437870SNishanth Aravamudan 	 * so this hugepages= parameter goes to the "default hstate".
1574a3437870SNishanth Aravamudan 	 */
1575a3437870SNishanth Aravamudan 	if (!max_hstate)
1576a3437870SNishanth Aravamudan 		mhp = &default_hstate_max_huge_pages;
1577a3437870SNishanth Aravamudan 	else
1578a3437870SNishanth Aravamudan 		mhp = &parsed_hstate->max_huge_pages;
1579a3437870SNishanth Aravamudan 
15808faa8b07SAndi Kleen 	if (mhp == last_mhp) {
15818faa8b07SAndi Kleen 		printk(KERN_WARNING "hugepages= specified twice without "
15828faa8b07SAndi Kleen 			"interleaving hugepagesz=, ignoring\n");
15838faa8b07SAndi Kleen 		return 1;
15848faa8b07SAndi Kleen 	}
15858faa8b07SAndi Kleen 
1586a3437870SNishanth Aravamudan 	if (sscanf(s, "%lu", mhp) <= 0)
1587a3437870SNishanth Aravamudan 		*mhp = 0;
1588a3437870SNishanth Aravamudan 
15898faa8b07SAndi Kleen 	/*
15908faa8b07SAndi Kleen 	 * Global state is always initialized later in hugetlb_init.
15918faa8b07SAndi Kleen 	 * But we need to allocate >= MAX_ORDER hstates here early to still
15928faa8b07SAndi Kleen 	 * use the bootmem allocator.
15938faa8b07SAndi Kleen 	 */
15948faa8b07SAndi Kleen 	if (max_hstate && parsed_hstate->order >= MAX_ORDER)
15958faa8b07SAndi Kleen 		hugetlb_hstate_alloc_pages(parsed_hstate);
15968faa8b07SAndi Kleen 
15978faa8b07SAndi Kleen 	last_mhp = mhp;
15988faa8b07SAndi Kleen 
1599a3437870SNishanth Aravamudan 	return 1;
1600a3437870SNishanth Aravamudan }
1601e11bfbfcSNick Piggin __setup("hugepages=", hugetlb_nrpages_setup);
1602e11bfbfcSNick Piggin 
1603e11bfbfcSNick Piggin static int __init hugetlb_default_setup(char *s)
1604e11bfbfcSNick Piggin {
1605e11bfbfcSNick Piggin 	default_hstate_size = memparse(s, &s);
1606e11bfbfcSNick Piggin 	return 1;
1607e11bfbfcSNick Piggin }
1608e11bfbfcSNick Piggin __setup("default_hugepagesz=", hugetlb_default_setup);
1609a3437870SNishanth Aravamudan 
16108a213460SNishanth Aravamudan static unsigned int cpuset_mems_nr(unsigned int *array)
16118a213460SNishanth Aravamudan {
16128a213460SNishanth Aravamudan 	int node;
16138a213460SNishanth Aravamudan 	unsigned int nr = 0;
16148a213460SNishanth Aravamudan 
16158a213460SNishanth Aravamudan 	for_each_node_mask(node, cpuset_current_mems_allowed)
16168a213460SNishanth Aravamudan 		nr += array[node];
16178a213460SNishanth Aravamudan 
16188a213460SNishanth Aravamudan 	return nr;
16198a213460SNishanth Aravamudan }
16208a213460SNishanth Aravamudan 
16218a213460SNishanth Aravamudan #ifdef CONFIG_SYSCTL
162206808b08SLee Schermerhorn static int hugetlb_sysctl_handler_common(bool obey_mempolicy,
162306808b08SLee Schermerhorn 			 struct ctl_table *table, int write,
162406808b08SLee Schermerhorn 			 void __user *buffer, size_t *length, loff_t *ppos)
16251da177e4SLinus Torvalds {
1626e5ff2159SAndi Kleen 	struct hstate *h = &default_hstate;
1627e5ff2159SAndi Kleen 	unsigned long tmp;
1628e5ff2159SAndi Kleen 
1629e5ff2159SAndi Kleen 	if (!write)
1630e5ff2159SAndi Kleen 		tmp = h->max_huge_pages;
1631e5ff2159SAndi Kleen 
1632e5ff2159SAndi Kleen 	table->data = &tmp;
1633e5ff2159SAndi Kleen 	table->maxlen = sizeof(unsigned long);
16348d65af78SAlexey Dobriyan 	proc_doulongvec_minmax(table, write, buffer, length, ppos);
1635e5ff2159SAndi Kleen 
163606808b08SLee Schermerhorn 	if (write) {
163706808b08SLee Schermerhorn 		NODEMASK_ALLOC(nodemask_t, nodes_allowed);
163806808b08SLee Schermerhorn 		if (!(obey_mempolicy &&
163906808b08SLee Schermerhorn 			       init_nodemask_of_mempolicy(nodes_allowed))) {
164006808b08SLee Schermerhorn 			NODEMASK_FREE(nodes_allowed);
164106808b08SLee Schermerhorn 			nodes_allowed = &node_states[N_HIGH_MEMORY];
164206808b08SLee Schermerhorn 		}
164306808b08SLee Schermerhorn 		h->max_huge_pages = set_max_huge_pages(h, tmp, nodes_allowed);
164406808b08SLee Schermerhorn 
164506808b08SLee Schermerhorn 		if (nodes_allowed != &node_states[N_HIGH_MEMORY])
164606808b08SLee Schermerhorn 			NODEMASK_FREE(nodes_allowed);
164706808b08SLee Schermerhorn 	}
1648e5ff2159SAndi Kleen 
16491da177e4SLinus Torvalds 	return 0;
16501da177e4SLinus Torvalds }
1651396faf03SMel Gorman 
165206808b08SLee Schermerhorn int hugetlb_sysctl_handler(struct ctl_table *table, int write,
165306808b08SLee Schermerhorn 			  void __user *buffer, size_t *length, loff_t *ppos)
165406808b08SLee Schermerhorn {
165506808b08SLee Schermerhorn 
165606808b08SLee Schermerhorn 	return hugetlb_sysctl_handler_common(false, table, write,
165706808b08SLee Schermerhorn 							buffer, length, ppos);
165806808b08SLee Schermerhorn }
165906808b08SLee Schermerhorn 
166006808b08SLee Schermerhorn #ifdef CONFIG_NUMA
166106808b08SLee Schermerhorn int hugetlb_mempolicy_sysctl_handler(struct ctl_table *table, int write,
166206808b08SLee Schermerhorn 			  void __user *buffer, size_t *length, loff_t *ppos)
166306808b08SLee Schermerhorn {
166406808b08SLee Schermerhorn 	return hugetlb_sysctl_handler_common(true, table, write,
166506808b08SLee Schermerhorn 							buffer, length, ppos);
166606808b08SLee Schermerhorn }
166706808b08SLee Schermerhorn #endif /* CONFIG_NUMA */
166806808b08SLee Schermerhorn 
1669396faf03SMel Gorman int hugetlb_treat_movable_handler(struct ctl_table *table, int write,
16708d65af78SAlexey Dobriyan 			void __user *buffer,
1671396faf03SMel Gorman 			size_t *length, loff_t *ppos)
1672396faf03SMel Gorman {
16738d65af78SAlexey Dobriyan 	proc_dointvec(table, write, buffer, length, ppos);
1674396faf03SMel Gorman 	if (hugepages_treat_as_movable)
1675396faf03SMel Gorman 		htlb_alloc_mask = GFP_HIGHUSER_MOVABLE;
1676396faf03SMel Gorman 	else
1677396faf03SMel Gorman 		htlb_alloc_mask = GFP_HIGHUSER;
1678396faf03SMel Gorman 	return 0;
1679396faf03SMel Gorman }
1680396faf03SMel Gorman 
1681a3d0c6aaSNishanth Aravamudan int hugetlb_overcommit_handler(struct ctl_table *table, int write,
16828d65af78SAlexey Dobriyan 			void __user *buffer,
1683a3d0c6aaSNishanth Aravamudan 			size_t *length, loff_t *ppos)
1684a3d0c6aaSNishanth Aravamudan {
1685a5516438SAndi Kleen 	struct hstate *h = &default_hstate;
1686e5ff2159SAndi Kleen 	unsigned long tmp;
1687e5ff2159SAndi Kleen 
1688e5ff2159SAndi Kleen 	if (!write)
1689e5ff2159SAndi Kleen 		tmp = h->nr_overcommit_huge_pages;
1690e5ff2159SAndi Kleen 
1691e5ff2159SAndi Kleen 	table->data = &tmp;
1692e5ff2159SAndi Kleen 	table->maxlen = sizeof(unsigned long);
16938d65af78SAlexey Dobriyan 	proc_doulongvec_minmax(table, write, buffer, length, ppos);
1694e5ff2159SAndi Kleen 
1695e5ff2159SAndi Kleen 	if (write) {
1696064d9efeSNishanth Aravamudan 		spin_lock(&hugetlb_lock);
1697e5ff2159SAndi Kleen 		h->nr_overcommit_huge_pages = tmp;
1698a3d0c6aaSNishanth Aravamudan 		spin_unlock(&hugetlb_lock);
1699e5ff2159SAndi Kleen 	}
1700e5ff2159SAndi Kleen 
1701a3d0c6aaSNishanth Aravamudan 	return 0;
1702a3d0c6aaSNishanth Aravamudan }
1703a3d0c6aaSNishanth Aravamudan 
17041da177e4SLinus Torvalds #endif /* CONFIG_SYSCTL */
17051da177e4SLinus Torvalds 
1706e1759c21SAlexey Dobriyan void hugetlb_report_meminfo(struct seq_file *m)
17071da177e4SLinus Torvalds {
1708a5516438SAndi Kleen 	struct hstate *h = &default_hstate;
1709e1759c21SAlexey Dobriyan 	seq_printf(m,
17101da177e4SLinus Torvalds 			"HugePages_Total:   %5lu\n"
17111da177e4SLinus Torvalds 			"HugePages_Free:    %5lu\n"
1712b45b5bd6SDavid Gibson 			"HugePages_Rsvd:    %5lu\n"
17137893d1d5SAdam Litke 			"HugePages_Surp:    %5lu\n"
17144f98a2feSRik van Riel 			"Hugepagesize:   %8lu kB\n",
1715a5516438SAndi Kleen 			h->nr_huge_pages,
1716a5516438SAndi Kleen 			h->free_huge_pages,
1717a5516438SAndi Kleen 			h->resv_huge_pages,
1718a5516438SAndi Kleen 			h->surplus_huge_pages,
1719a5516438SAndi Kleen 			1UL << (huge_page_order(h) + PAGE_SHIFT - 10));
17201da177e4SLinus Torvalds }
17211da177e4SLinus Torvalds 
17221da177e4SLinus Torvalds int hugetlb_report_node_meminfo(int nid, char *buf)
17231da177e4SLinus Torvalds {
1724a5516438SAndi Kleen 	struct hstate *h = &default_hstate;
17251da177e4SLinus Torvalds 	return sprintf(buf,
17261da177e4SLinus Torvalds 		"Node %d HugePages_Total: %5u\n"
1727a1de0919SNishanth Aravamudan 		"Node %d HugePages_Free:  %5u\n"
1728a1de0919SNishanth Aravamudan 		"Node %d HugePages_Surp:  %5u\n",
1729a5516438SAndi Kleen 		nid, h->nr_huge_pages_node[nid],
1730a5516438SAndi Kleen 		nid, h->free_huge_pages_node[nid],
1731a5516438SAndi Kleen 		nid, h->surplus_huge_pages_node[nid]);
17321da177e4SLinus Torvalds }
17331da177e4SLinus Torvalds 
17341da177e4SLinus Torvalds /* Return the number pages of memory we physically have, in PAGE_SIZE units. */
17351da177e4SLinus Torvalds unsigned long hugetlb_total_pages(void)
17361da177e4SLinus Torvalds {
1737a5516438SAndi Kleen 	struct hstate *h = &default_hstate;
1738a5516438SAndi Kleen 	return h->nr_huge_pages * pages_per_huge_page(h);
17391da177e4SLinus Torvalds }
17401da177e4SLinus Torvalds 
1741a5516438SAndi Kleen static int hugetlb_acct_memory(struct hstate *h, long delta)
1742fc1b8a73SMel Gorman {
1743fc1b8a73SMel Gorman 	int ret = -ENOMEM;
1744fc1b8a73SMel Gorman 
1745fc1b8a73SMel Gorman 	spin_lock(&hugetlb_lock);
1746fc1b8a73SMel Gorman 	/*
1747fc1b8a73SMel Gorman 	 * When cpuset is configured, it breaks the strict hugetlb page
1748fc1b8a73SMel Gorman 	 * reservation as the accounting is done on a global variable. Such
1749fc1b8a73SMel Gorman 	 * reservation is completely rubbish in the presence of cpuset because
1750fc1b8a73SMel Gorman 	 * the reservation is not checked against page availability for the
1751fc1b8a73SMel Gorman 	 * current cpuset. Application can still potentially OOM'ed by kernel
1752fc1b8a73SMel Gorman 	 * with lack of free htlb page in cpuset that the task is in.
1753fc1b8a73SMel Gorman 	 * Attempt to enforce strict accounting with cpuset is almost
1754fc1b8a73SMel Gorman 	 * impossible (or too ugly) because cpuset is too fluid that
1755fc1b8a73SMel Gorman 	 * task or memory node can be dynamically moved between cpusets.
1756fc1b8a73SMel Gorman 	 *
1757fc1b8a73SMel Gorman 	 * The change of semantics for shared hugetlb mapping with cpuset is
1758fc1b8a73SMel Gorman 	 * undesirable. However, in order to preserve some of the semantics,
1759fc1b8a73SMel Gorman 	 * we fall back to check against current free page availability as
1760fc1b8a73SMel Gorman 	 * a best attempt and hopefully to minimize the impact of changing
1761fc1b8a73SMel Gorman 	 * semantics that cpuset has.
1762fc1b8a73SMel Gorman 	 */
1763fc1b8a73SMel Gorman 	if (delta > 0) {
1764a5516438SAndi Kleen 		if (gather_surplus_pages(h, delta) < 0)
1765fc1b8a73SMel Gorman 			goto out;
1766fc1b8a73SMel Gorman 
1767a5516438SAndi Kleen 		if (delta > cpuset_mems_nr(h->free_huge_pages_node)) {
1768a5516438SAndi Kleen 			return_unused_surplus_pages(h, delta);
1769fc1b8a73SMel Gorman 			goto out;
1770fc1b8a73SMel Gorman 		}
1771fc1b8a73SMel Gorman 	}
1772fc1b8a73SMel Gorman 
1773fc1b8a73SMel Gorman 	ret = 0;
1774fc1b8a73SMel Gorman 	if (delta < 0)
1775a5516438SAndi Kleen 		return_unused_surplus_pages(h, (unsigned long) -delta);
1776fc1b8a73SMel Gorman 
1777fc1b8a73SMel Gorman out:
1778fc1b8a73SMel Gorman 	spin_unlock(&hugetlb_lock);
1779fc1b8a73SMel Gorman 	return ret;
1780fc1b8a73SMel Gorman }
1781fc1b8a73SMel Gorman 
178284afd99bSAndy Whitcroft static void hugetlb_vm_op_open(struct vm_area_struct *vma)
178384afd99bSAndy Whitcroft {
178484afd99bSAndy Whitcroft 	struct resv_map *reservations = vma_resv_map(vma);
178584afd99bSAndy Whitcroft 
178684afd99bSAndy Whitcroft 	/*
178784afd99bSAndy Whitcroft 	 * This new VMA should share its siblings reservation map if present.
178884afd99bSAndy Whitcroft 	 * The VMA will only ever have a valid reservation map pointer where
178984afd99bSAndy Whitcroft 	 * it is being copied for another still existing VMA.  As that VMA
179084afd99bSAndy Whitcroft 	 * has a reference to the reservation map it cannot dissappear until
179184afd99bSAndy Whitcroft 	 * after this open call completes.  It is therefore safe to take a
179284afd99bSAndy Whitcroft 	 * new reference here without additional locking.
179384afd99bSAndy Whitcroft 	 */
179484afd99bSAndy Whitcroft 	if (reservations)
179584afd99bSAndy Whitcroft 		kref_get(&reservations->refs);
179684afd99bSAndy Whitcroft }
179784afd99bSAndy Whitcroft 
1798a1e78772SMel Gorman static void hugetlb_vm_op_close(struct vm_area_struct *vma)
1799a1e78772SMel Gorman {
1800a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
180184afd99bSAndy Whitcroft 	struct resv_map *reservations = vma_resv_map(vma);
180284afd99bSAndy Whitcroft 	unsigned long reserve;
180384afd99bSAndy Whitcroft 	unsigned long start;
180484afd99bSAndy Whitcroft 	unsigned long end;
180584afd99bSAndy Whitcroft 
180684afd99bSAndy Whitcroft 	if (reservations) {
1807a5516438SAndi Kleen 		start = vma_hugecache_offset(h, vma, vma->vm_start);
1808a5516438SAndi Kleen 		end = vma_hugecache_offset(h, vma, vma->vm_end);
180984afd99bSAndy Whitcroft 
181084afd99bSAndy Whitcroft 		reserve = (end - start) -
181184afd99bSAndy Whitcroft 			region_count(&reservations->regions, start, end);
181284afd99bSAndy Whitcroft 
181384afd99bSAndy Whitcroft 		kref_put(&reservations->refs, resv_map_release);
181484afd99bSAndy Whitcroft 
18157251ff78SAdam Litke 		if (reserve) {
1816a5516438SAndi Kleen 			hugetlb_acct_memory(h, -reserve);
18177251ff78SAdam Litke 			hugetlb_put_quota(vma->vm_file->f_mapping, reserve);
18187251ff78SAdam Litke 		}
1819a1e78772SMel Gorman 	}
182084afd99bSAndy Whitcroft }
1821a1e78772SMel Gorman 
18221da177e4SLinus Torvalds /*
18231da177e4SLinus Torvalds  * We cannot handle pagefaults against hugetlb pages at all.  They cause
18241da177e4SLinus Torvalds  * handle_mm_fault() to try to instantiate regular-sized pages in the
18251da177e4SLinus Torvalds  * hugegpage VMA.  do_page_fault() is supposed to trap this, so BUG is we get
18261da177e4SLinus Torvalds  * this far.
18271da177e4SLinus Torvalds  */
1828d0217ac0SNick Piggin static int hugetlb_vm_op_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
18291da177e4SLinus Torvalds {
18301da177e4SLinus Torvalds 	BUG();
1831d0217ac0SNick Piggin 	return 0;
18321da177e4SLinus Torvalds }
18331da177e4SLinus Torvalds 
1834f0f37e2fSAlexey Dobriyan const struct vm_operations_struct hugetlb_vm_ops = {
1835d0217ac0SNick Piggin 	.fault = hugetlb_vm_op_fault,
183684afd99bSAndy Whitcroft 	.open = hugetlb_vm_op_open,
1837a1e78772SMel Gorman 	.close = hugetlb_vm_op_close,
18381da177e4SLinus Torvalds };
18391da177e4SLinus Torvalds 
18401e8f889bSDavid Gibson static pte_t make_huge_pte(struct vm_area_struct *vma, struct page *page,
18411e8f889bSDavid Gibson 				int writable)
184263551ae0SDavid Gibson {
184363551ae0SDavid Gibson 	pte_t entry;
184463551ae0SDavid Gibson 
18451e8f889bSDavid Gibson 	if (writable) {
184663551ae0SDavid Gibson 		entry =
184763551ae0SDavid Gibson 		    pte_mkwrite(pte_mkdirty(mk_pte(page, vma->vm_page_prot)));
184863551ae0SDavid Gibson 	} else {
18497f2e9525SGerald Schaefer 		entry = huge_pte_wrprotect(mk_pte(page, vma->vm_page_prot));
185063551ae0SDavid Gibson 	}
185163551ae0SDavid Gibson 	entry = pte_mkyoung(entry);
185263551ae0SDavid Gibson 	entry = pte_mkhuge(entry);
185363551ae0SDavid Gibson 
185463551ae0SDavid Gibson 	return entry;
185563551ae0SDavid Gibson }
185663551ae0SDavid Gibson 
18571e8f889bSDavid Gibson static void set_huge_ptep_writable(struct vm_area_struct *vma,
18581e8f889bSDavid Gibson 				   unsigned long address, pte_t *ptep)
18591e8f889bSDavid Gibson {
18601e8f889bSDavid Gibson 	pte_t entry;
18611e8f889bSDavid Gibson 
18627f2e9525SGerald Schaefer 	entry = pte_mkwrite(pte_mkdirty(huge_ptep_get(ptep)));
18637f2e9525SGerald Schaefer 	if (huge_ptep_set_access_flags(vma, address, ptep, entry, 1)) {
18641e8f889bSDavid Gibson 		update_mmu_cache(vma, address, entry);
18651e8f889bSDavid Gibson 	}
18668dab5241SBenjamin Herrenschmidt }
18671e8f889bSDavid Gibson 
18681e8f889bSDavid Gibson 
186963551ae0SDavid Gibson int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
187063551ae0SDavid Gibson 			    struct vm_area_struct *vma)
187163551ae0SDavid Gibson {
187263551ae0SDavid Gibson 	pte_t *src_pte, *dst_pte, entry;
187363551ae0SDavid Gibson 	struct page *ptepage;
18741c59827dSHugh Dickins 	unsigned long addr;
18751e8f889bSDavid Gibson 	int cow;
1876a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
1877a5516438SAndi Kleen 	unsigned long sz = huge_page_size(h);
18781e8f889bSDavid Gibson 
18791e8f889bSDavid Gibson 	cow = (vma->vm_flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE;
188063551ae0SDavid Gibson 
1881a5516438SAndi Kleen 	for (addr = vma->vm_start; addr < vma->vm_end; addr += sz) {
1882c74df32cSHugh Dickins 		src_pte = huge_pte_offset(src, addr);
1883c74df32cSHugh Dickins 		if (!src_pte)
1884c74df32cSHugh Dickins 			continue;
1885a5516438SAndi Kleen 		dst_pte = huge_pte_alloc(dst, addr, sz);
188663551ae0SDavid Gibson 		if (!dst_pte)
188763551ae0SDavid Gibson 			goto nomem;
1888c5c99429SLarry Woodman 
1889c5c99429SLarry Woodman 		/* If the pagetables are shared don't copy or take references */
1890c5c99429SLarry Woodman 		if (dst_pte == src_pte)
1891c5c99429SLarry Woodman 			continue;
1892c5c99429SLarry Woodman 
1893c74df32cSHugh Dickins 		spin_lock(&dst->page_table_lock);
189446478758SNick Piggin 		spin_lock_nested(&src->page_table_lock, SINGLE_DEPTH_NESTING);
18957f2e9525SGerald Schaefer 		if (!huge_pte_none(huge_ptep_get(src_pte))) {
18961e8f889bSDavid Gibson 			if (cow)
18977f2e9525SGerald Schaefer 				huge_ptep_set_wrprotect(src, addr, src_pte);
18987f2e9525SGerald Schaefer 			entry = huge_ptep_get(src_pte);
189963551ae0SDavid Gibson 			ptepage = pte_page(entry);
190063551ae0SDavid Gibson 			get_page(ptepage);
190163551ae0SDavid Gibson 			set_huge_pte_at(dst, addr, dst_pte, entry);
19021c59827dSHugh Dickins 		}
19031c59827dSHugh Dickins 		spin_unlock(&src->page_table_lock);
1904c74df32cSHugh Dickins 		spin_unlock(&dst->page_table_lock);
190563551ae0SDavid Gibson 	}
190663551ae0SDavid Gibson 	return 0;
190763551ae0SDavid Gibson 
190863551ae0SDavid Gibson nomem:
190963551ae0SDavid Gibson 	return -ENOMEM;
191063551ae0SDavid Gibson }
191163551ae0SDavid Gibson 
1912502717f4SChen, Kenneth W void __unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
191304f2cbe3SMel Gorman 			    unsigned long end, struct page *ref_page)
191463551ae0SDavid Gibson {
191563551ae0SDavid Gibson 	struct mm_struct *mm = vma->vm_mm;
191663551ae0SDavid Gibson 	unsigned long address;
1917c7546f8fSDavid Gibson 	pte_t *ptep;
191863551ae0SDavid Gibson 	pte_t pte;
191963551ae0SDavid Gibson 	struct page *page;
1920fe1668aeSChen, Kenneth W 	struct page *tmp;
1921a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
1922a5516438SAndi Kleen 	unsigned long sz = huge_page_size(h);
1923a5516438SAndi Kleen 
1924c0a499c2SChen, Kenneth W 	/*
1925c0a499c2SChen, Kenneth W 	 * A page gathering list, protected by per file i_mmap_lock. The
1926c0a499c2SChen, Kenneth W 	 * lock is used to avoid list corruption from multiple unmapping
1927c0a499c2SChen, Kenneth W 	 * of the same page since we are using page->lru.
1928c0a499c2SChen, Kenneth W 	 */
1929fe1668aeSChen, Kenneth W 	LIST_HEAD(page_list);
193063551ae0SDavid Gibson 
193163551ae0SDavid Gibson 	WARN_ON(!is_vm_hugetlb_page(vma));
1932a5516438SAndi Kleen 	BUG_ON(start & ~huge_page_mask(h));
1933a5516438SAndi Kleen 	BUG_ON(end & ~huge_page_mask(h));
193463551ae0SDavid Gibson 
1935cddb8a5cSAndrea Arcangeli 	mmu_notifier_invalidate_range_start(mm, start, end);
1936508034a3SHugh Dickins 	spin_lock(&mm->page_table_lock);
1937a5516438SAndi Kleen 	for (address = start; address < end; address += sz) {
1938c7546f8fSDavid Gibson 		ptep = huge_pte_offset(mm, address);
1939c7546f8fSDavid Gibson 		if (!ptep)
1940c7546f8fSDavid Gibson 			continue;
1941c7546f8fSDavid Gibson 
194239dde65cSChen, Kenneth W 		if (huge_pmd_unshare(mm, &address, ptep))
194339dde65cSChen, Kenneth W 			continue;
194439dde65cSChen, Kenneth W 
194504f2cbe3SMel Gorman 		/*
194604f2cbe3SMel Gorman 		 * If a reference page is supplied, it is because a specific
194704f2cbe3SMel Gorman 		 * page is being unmapped, not a range. Ensure the page we
194804f2cbe3SMel Gorman 		 * are about to unmap is the actual page of interest.
194904f2cbe3SMel Gorman 		 */
195004f2cbe3SMel Gorman 		if (ref_page) {
195104f2cbe3SMel Gorman 			pte = huge_ptep_get(ptep);
195204f2cbe3SMel Gorman 			if (huge_pte_none(pte))
195304f2cbe3SMel Gorman 				continue;
195404f2cbe3SMel Gorman 			page = pte_page(pte);
195504f2cbe3SMel Gorman 			if (page != ref_page)
195604f2cbe3SMel Gorman 				continue;
195704f2cbe3SMel Gorman 
195804f2cbe3SMel Gorman 			/*
195904f2cbe3SMel Gorman 			 * Mark the VMA as having unmapped its page so that
196004f2cbe3SMel Gorman 			 * future faults in this VMA will fail rather than
196104f2cbe3SMel Gorman 			 * looking like data was lost
196204f2cbe3SMel Gorman 			 */
196304f2cbe3SMel Gorman 			set_vma_resv_flags(vma, HPAGE_RESV_UNMAPPED);
196404f2cbe3SMel Gorman 		}
196504f2cbe3SMel Gorman 
1966c7546f8fSDavid Gibson 		pte = huge_ptep_get_and_clear(mm, address, ptep);
19677f2e9525SGerald Schaefer 		if (huge_pte_none(pte))
196863551ae0SDavid Gibson 			continue;
1969c7546f8fSDavid Gibson 
197063551ae0SDavid Gibson 		page = pte_page(pte);
19716649a386SKen Chen 		if (pte_dirty(pte))
19726649a386SKen Chen 			set_page_dirty(page);
1973fe1668aeSChen, Kenneth W 		list_add(&page->lru, &page_list);
197463551ae0SDavid Gibson 	}
19751da177e4SLinus Torvalds 	spin_unlock(&mm->page_table_lock);
1976508034a3SHugh Dickins 	flush_tlb_range(vma, start, end);
1977cddb8a5cSAndrea Arcangeli 	mmu_notifier_invalidate_range_end(mm, start, end);
1978fe1668aeSChen, Kenneth W 	list_for_each_entry_safe(page, tmp, &page_list, lru) {
1979fe1668aeSChen, Kenneth W 		list_del(&page->lru);
1980fe1668aeSChen, Kenneth W 		put_page(page);
1981fe1668aeSChen, Kenneth W 	}
19821da177e4SLinus Torvalds }
198363551ae0SDavid Gibson 
1984502717f4SChen, Kenneth W void unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
198504f2cbe3SMel Gorman 			  unsigned long end, struct page *ref_page)
1986502717f4SChen, Kenneth W {
1987502717f4SChen, Kenneth W 	spin_lock(&vma->vm_file->f_mapping->i_mmap_lock);
198804f2cbe3SMel Gorman 	__unmap_hugepage_range(vma, start, end, ref_page);
1989502717f4SChen, Kenneth W 	spin_unlock(&vma->vm_file->f_mapping->i_mmap_lock);
1990502717f4SChen, Kenneth W }
1991502717f4SChen, Kenneth W 
199204f2cbe3SMel Gorman /*
199304f2cbe3SMel Gorman  * This is called when the original mapper is failing to COW a MAP_PRIVATE
199404f2cbe3SMel Gorman  * mappping it owns the reserve page for. The intention is to unmap the page
199504f2cbe3SMel Gorman  * from other VMAs and let the children be SIGKILLed if they are faulting the
199604f2cbe3SMel Gorman  * same region.
199704f2cbe3SMel Gorman  */
19982a4b3dedSHarvey Harrison static int unmap_ref_private(struct mm_struct *mm, struct vm_area_struct *vma,
19992a4b3dedSHarvey Harrison 				struct page *page, unsigned long address)
200004f2cbe3SMel Gorman {
20017526674dSAdam Litke 	struct hstate *h = hstate_vma(vma);
200204f2cbe3SMel Gorman 	struct vm_area_struct *iter_vma;
200304f2cbe3SMel Gorman 	struct address_space *mapping;
200404f2cbe3SMel Gorman 	struct prio_tree_iter iter;
200504f2cbe3SMel Gorman 	pgoff_t pgoff;
200604f2cbe3SMel Gorman 
200704f2cbe3SMel Gorman 	/*
200804f2cbe3SMel Gorman 	 * vm_pgoff is in PAGE_SIZE units, hence the different calculation
200904f2cbe3SMel Gorman 	 * from page cache lookup which is in HPAGE_SIZE units.
201004f2cbe3SMel Gorman 	 */
20117526674dSAdam Litke 	address = address & huge_page_mask(h);
201204f2cbe3SMel Gorman 	pgoff = ((address - vma->vm_start) >> PAGE_SHIFT)
201304f2cbe3SMel Gorman 		+ (vma->vm_pgoff >> PAGE_SHIFT);
201404f2cbe3SMel Gorman 	mapping = (struct address_space *)page_private(page);
201504f2cbe3SMel Gorman 
201604f2cbe3SMel Gorman 	vma_prio_tree_foreach(iter_vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
201704f2cbe3SMel Gorman 		/* Do not unmap the current VMA */
201804f2cbe3SMel Gorman 		if (iter_vma == vma)
201904f2cbe3SMel Gorman 			continue;
202004f2cbe3SMel Gorman 
202104f2cbe3SMel Gorman 		/*
202204f2cbe3SMel Gorman 		 * Unmap the page from other VMAs without their own reserves.
202304f2cbe3SMel Gorman 		 * They get marked to be SIGKILLed if they fault in these
202404f2cbe3SMel Gorman 		 * areas. This is because a future no-page fault on this VMA
202504f2cbe3SMel Gorman 		 * could insert a zeroed page instead of the data existing
202604f2cbe3SMel Gorman 		 * from the time of fork. This would look like data corruption
202704f2cbe3SMel Gorman 		 */
202804f2cbe3SMel Gorman 		if (!is_vma_resv_set(iter_vma, HPAGE_RESV_OWNER))
202904f2cbe3SMel Gorman 			unmap_hugepage_range(iter_vma,
20307526674dSAdam Litke 				address, address + huge_page_size(h),
203104f2cbe3SMel Gorman 				page);
203204f2cbe3SMel Gorman 	}
203304f2cbe3SMel Gorman 
203404f2cbe3SMel Gorman 	return 1;
203504f2cbe3SMel Gorman }
203604f2cbe3SMel Gorman 
20371e8f889bSDavid Gibson static int hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma,
203804f2cbe3SMel Gorman 			unsigned long address, pte_t *ptep, pte_t pte,
203904f2cbe3SMel Gorman 			struct page *pagecache_page)
20401e8f889bSDavid Gibson {
2041a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
20421e8f889bSDavid Gibson 	struct page *old_page, *new_page;
204379ac6ba4SDavid Gibson 	int avoidcopy;
204404f2cbe3SMel Gorman 	int outside_reserve = 0;
20451e8f889bSDavid Gibson 
20461e8f889bSDavid Gibson 	old_page = pte_page(pte);
20471e8f889bSDavid Gibson 
204804f2cbe3SMel Gorman retry_avoidcopy:
20491e8f889bSDavid Gibson 	/* If no-one else is actually using this page, avoid the copy
20501e8f889bSDavid Gibson 	 * and just make the page writable */
20511e8f889bSDavid Gibson 	avoidcopy = (page_count(old_page) == 1);
20521e8f889bSDavid Gibson 	if (avoidcopy) {
20531e8f889bSDavid Gibson 		set_huge_ptep_writable(vma, address, ptep);
205483c54070SNick Piggin 		return 0;
20551e8f889bSDavid Gibson 	}
20561e8f889bSDavid Gibson 
205704f2cbe3SMel Gorman 	/*
205804f2cbe3SMel Gorman 	 * If the process that created a MAP_PRIVATE mapping is about to
205904f2cbe3SMel Gorman 	 * perform a COW due to a shared page count, attempt to satisfy
206004f2cbe3SMel Gorman 	 * the allocation without using the existing reserves. The pagecache
206104f2cbe3SMel Gorman 	 * page is used to determine if the reserve at this address was
206204f2cbe3SMel Gorman 	 * consumed or not. If reserves were used, a partial faulted mapping
206304f2cbe3SMel Gorman 	 * at the time of fork() could consume its reserves on COW instead
206404f2cbe3SMel Gorman 	 * of the full address range.
206504f2cbe3SMel Gorman 	 */
2066f83a275dSMel Gorman 	if (!(vma->vm_flags & VM_MAYSHARE) &&
206704f2cbe3SMel Gorman 			is_vma_resv_set(vma, HPAGE_RESV_OWNER) &&
206804f2cbe3SMel Gorman 			old_page != pagecache_page)
206904f2cbe3SMel Gorman 		outside_reserve = 1;
207004f2cbe3SMel Gorman 
20711e8f889bSDavid Gibson 	page_cache_get(old_page);
207204f2cbe3SMel Gorman 	new_page = alloc_huge_page(vma, address, outside_reserve);
20731e8f889bSDavid Gibson 
20742fc39cecSAdam Litke 	if (IS_ERR(new_page)) {
20751e8f889bSDavid Gibson 		page_cache_release(old_page);
207604f2cbe3SMel Gorman 
207704f2cbe3SMel Gorman 		/*
207804f2cbe3SMel Gorman 		 * If a process owning a MAP_PRIVATE mapping fails to COW,
207904f2cbe3SMel Gorman 		 * it is due to references held by a child and an insufficient
208004f2cbe3SMel Gorman 		 * huge page pool. To guarantee the original mappers
208104f2cbe3SMel Gorman 		 * reliability, unmap the page from child processes. The child
208204f2cbe3SMel Gorman 		 * may get SIGKILLed if it later faults.
208304f2cbe3SMel Gorman 		 */
208404f2cbe3SMel Gorman 		if (outside_reserve) {
208504f2cbe3SMel Gorman 			BUG_ON(huge_pte_none(pte));
208604f2cbe3SMel Gorman 			if (unmap_ref_private(mm, vma, old_page, address)) {
208704f2cbe3SMel Gorman 				BUG_ON(page_count(old_page) != 1);
208804f2cbe3SMel Gorman 				BUG_ON(huge_pte_none(pte));
208904f2cbe3SMel Gorman 				goto retry_avoidcopy;
209004f2cbe3SMel Gorman 			}
209104f2cbe3SMel Gorman 			WARN_ON_ONCE(1);
209204f2cbe3SMel Gorman 		}
209304f2cbe3SMel Gorman 
20942fc39cecSAdam Litke 		return -PTR_ERR(new_page);
20951e8f889bSDavid Gibson 	}
20961e8f889bSDavid Gibson 
20971e8f889bSDavid Gibson 	spin_unlock(&mm->page_table_lock);
20989de455b2SAtsushi Nemoto 	copy_huge_page(new_page, old_page, address, vma);
20990ed361deSNick Piggin 	__SetPageUptodate(new_page);
21001e8f889bSDavid Gibson 	spin_lock(&mm->page_table_lock);
21011e8f889bSDavid Gibson 
2102a5516438SAndi Kleen 	ptep = huge_pte_offset(mm, address & huge_page_mask(h));
21037f2e9525SGerald Schaefer 	if (likely(pte_same(huge_ptep_get(ptep), pte))) {
21041e8f889bSDavid Gibson 		/* Break COW */
21058fe627ecSGerald Schaefer 		huge_ptep_clear_flush(vma, address, ptep);
21061e8f889bSDavid Gibson 		set_huge_pte_at(mm, address, ptep,
21071e8f889bSDavid Gibson 				make_huge_pte(vma, new_page, 1));
21081e8f889bSDavid Gibson 		/* Make the old page be freed below */
21091e8f889bSDavid Gibson 		new_page = old_page;
21101e8f889bSDavid Gibson 	}
21111e8f889bSDavid Gibson 	page_cache_release(new_page);
21121e8f889bSDavid Gibson 	page_cache_release(old_page);
211383c54070SNick Piggin 	return 0;
21141e8f889bSDavid Gibson }
21151e8f889bSDavid Gibson 
211604f2cbe3SMel Gorman /* Return the pagecache page at a given address within a VMA */
2117a5516438SAndi Kleen static struct page *hugetlbfs_pagecache_page(struct hstate *h,
2118a5516438SAndi Kleen 			struct vm_area_struct *vma, unsigned long address)
211904f2cbe3SMel Gorman {
212004f2cbe3SMel Gorman 	struct address_space *mapping;
2121e7c4b0bfSAndy Whitcroft 	pgoff_t idx;
212204f2cbe3SMel Gorman 
212304f2cbe3SMel Gorman 	mapping = vma->vm_file->f_mapping;
2124a5516438SAndi Kleen 	idx = vma_hugecache_offset(h, vma, address);
212504f2cbe3SMel Gorman 
212604f2cbe3SMel Gorman 	return find_lock_page(mapping, idx);
212704f2cbe3SMel Gorman }
212804f2cbe3SMel Gorman 
21293ae77f43SHugh Dickins /*
21303ae77f43SHugh Dickins  * Return whether there is a pagecache page to back given address within VMA.
21313ae77f43SHugh Dickins  * Caller follow_hugetlb_page() holds page_table_lock so we cannot lock_page.
21323ae77f43SHugh Dickins  */
21333ae77f43SHugh Dickins static bool hugetlbfs_pagecache_present(struct hstate *h,
21342a15efc9SHugh Dickins 			struct vm_area_struct *vma, unsigned long address)
21352a15efc9SHugh Dickins {
21362a15efc9SHugh Dickins 	struct address_space *mapping;
21372a15efc9SHugh Dickins 	pgoff_t idx;
21382a15efc9SHugh Dickins 	struct page *page;
21392a15efc9SHugh Dickins 
21402a15efc9SHugh Dickins 	mapping = vma->vm_file->f_mapping;
21412a15efc9SHugh Dickins 	idx = vma_hugecache_offset(h, vma, address);
21422a15efc9SHugh Dickins 
21432a15efc9SHugh Dickins 	page = find_get_page(mapping, idx);
21442a15efc9SHugh Dickins 	if (page)
21452a15efc9SHugh Dickins 		put_page(page);
21462a15efc9SHugh Dickins 	return page != NULL;
21472a15efc9SHugh Dickins }
21482a15efc9SHugh Dickins 
2149a1ed3ddaSRobert P. J. Day static int hugetlb_no_page(struct mm_struct *mm, struct vm_area_struct *vma,
2150788c7df4SHugh Dickins 			unsigned long address, pte_t *ptep, unsigned int flags)
2151ac9b9c66SHugh Dickins {
2152a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
2153ac9b9c66SHugh Dickins 	int ret = VM_FAULT_SIGBUS;
2154e7c4b0bfSAndy Whitcroft 	pgoff_t idx;
21554c887265SAdam Litke 	unsigned long size;
21564c887265SAdam Litke 	struct page *page;
21574c887265SAdam Litke 	struct address_space *mapping;
21581e8f889bSDavid Gibson 	pte_t new_pte;
21594c887265SAdam Litke 
216004f2cbe3SMel Gorman 	/*
216104f2cbe3SMel Gorman 	 * Currently, we are forced to kill the process in the event the
216204f2cbe3SMel Gorman 	 * original mapper has unmapped pages from the child due to a failed
216304f2cbe3SMel Gorman 	 * COW. Warn that such a situation has occured as it may not be obvious
216404f2cbe3SMel Gorman 	 */
216504f2cbe3SMel Gorman 	if (is_vma_resv_set(vma, HPAGE_RESV_UNMAPPED)) {
216604f2cbe3SMel Gorman 		printk(KERN_WARNING
216704f2cbe3SMel Gorman 			"PID %d killed due to inadequate hugepage pool\n",
216804f2cbe3SMel Gorman 			current->pid);
216904f2cbe3SMel Gorman 		return ret;
217004f2cbe3SMel Gorman 	}
217104f2cbe3SMel Gorman 
21724c887265SAdam Litke 	mapping = vma->vm_file->f_mapping;
2173a5516438SAndi Kleen 	idx = vma_hugecache_offset(h, vma, address);
21744c887265SAdam Litke 
21754c887265SAdam Litke 	/*
21764c887265SAdam Litke 	 * Use page lock to guard against racing truncation
21774c887265SAdam Litke 	 * before we get page_table_lock.
21784c887265SAdam Litke 	 */
21796bda666aSChristoph Lameter retry:
21806bda666aSChristoph Lameter 	page = find_lock_page(mapping, idx);
21816bda666aSChristoph Lameter 	if (!page) {
2182a5516438SAndi Kleen 		size = i_size_read(mapping->host) >> huge_page_shift(h);
2183ebed4bfcSHugh Dickins 		if (idx >= size)
2184ebed4bfcSHugh Dickins 			goto out;
218504f2cbe3SMel Gorman 		page = alloc_huge_page(vma, address, 0);
21862fc39cecSAdam Litke 		if (IS_ERR(page)) {
21872fc39cecSAdam Litke 			ret = -PTR_ERR(page);
21886bda666aSChristoph Lameter 			goto out;
21896bda666aSChristoph Lameter 		}
2190a5516438SAndi Kleen 		clear_huge_page(page, address, huge_page_size(h));
21910ed361deSNick Piggin 		__SetPageUptodate(page);
2192ac9b9c66SHugh Dickins 
2193f83a275dSMel Gorman 		if (vma->vm_flags & VM_MAYSHARE) {
21946bda666aSChristoph Lameter 			int err;
219545c682a6SKen Chen 			struct inode *inode = mapping->host;
21966bda666aSChristoph Lameter 
21976bda666aSChristoph Lameter 			err = add_to_page_cache(page, mapping, idx, GFP_KERNEL);
21986bda666aSChristoph Lameter 			if (err) {
21996bda666aSChristoph Lameter 				put_page(page);
22006bda666aSChristoph Lameter 				if (err == -EEXIST)
22016bda666aSChristoph Lameter 					goto retry;
22026bda666aSChristoph Lameter 				goto out;
22036bda666aSChristoph Lameter 			}
220445c682a6SKen Chen 
220545c682a6SKen Chen 			spin_lock(&inode->i_lock);
2206a5516438SAndi Kleen 			inode->i_blocks += blocks_per_huge_page(h);
220745c682a6SKen Chen 			spin_unlock(&inode->i_lock);
22086bda666aSChristoph Lameter 		} else
22096bda666aSChristoph Lameter 			lock_page(page);
22106bda666aSChristoph Lameter 	}
22111e8f889bSDavid Gibson 
221257303d80SAndy Whitcroft 	/*
221357303d80SAndy Whitcroft 	 * If we are going to COW a private mapping later, we examine the
221457303d80SAndy Whitcroft 	 * pending reservations for this page now. This will ensure that
221557303d80SAndy Whitcroft 	 * any allocations necessary to record that reservation occur outside
221657303d80SAndy Whitcroft 	 * the spinlock.
221757303d80SAndy Whitcroft 	 */
2218788c7df4SHugh Dickins 	if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED))
22192b26736cSAndy Whitcroft 		if (vma_needs_reservation(h, vma, address) < 0) {
22202b26736cSAndy Whitcroft 			ret = VM_FAULT_OOM;
22212b26736cSAndy Whitcroft 			goto backout_unlocked;
22222b26736cSAndy Whitcroft 		}
222357303d80SAndy Whitcroft 
2224ac9b9c66SHugh Dickins 	spin_lock(&mm->page_table_lock);
2225a5516438SAndi Kleen 	size = i_size_read(mapping->host) >> huge_page_shift(h);
22264c887265SAdam Litke 	if (idx >= size)
22274c887265SAdam Litke 		goto backout;
22284c887265SAdam Litke 
222983c54070SNick Piggin 	ret = 0;
22307f2e9525SGerald Schaefer 	if (!huge_pte_none(huge_ptep_get(ptep)))
22314c887265SAdam Litke 		goto backout;
22324c887265SAdam Litke 
22331e8f889bSDavid Gibson 	new_pte = make_huge_pte(vma, page, ((vma->vm_flags & VM_WRITE)
22341e8f889bSDavid Gibson 				&& (vma->vm_flags & VM_SHARED)));
22351e8f889bSDavid Gibson 	set_huge_pte_at(mm, address, ptep, new_pte);
22361e8f889bSDavid Gibson 
2237788c7df4SHugh Dickins 	if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
22381e8f889bSDavid Gibson 		/* Optimization, do the COW without a second fault */
223904f2cbe3SMel Gorman 		ret = hugetlb_cow(mm, vma, address, ptep, new_pte, page);
22401e8f889bSDavid Gibson 	}
22411e8f889bSDavid Gibson 
2242ac9b9c66SHugh Dickins 	spin_unlock(&mm->page_table_lock);
22434c887265SAdam Litke 	unlock_page(page);
22444c887265SAdam Litke out:
2245ac9b9c66SHugh Dickins 	return ret;
22464c887265SAdam Litke 
22474c887265SAdam Litke backout:
22484c887265SAdam Litke 	spin_unlock(&mm->page_table_lock);
22492b26736cSAndy Whitcroft backout_unlocked:
22504c887265SAdam Litke 	unlock_page(page);
22514c887265SAdam Litke 	put_page(page);
22524c887265SAdam Litke 	goto out;
2253ac9b9c66SHugh Dickins }
2254ac9b9c66SHugh Dickins 
225586e5216fSAdam Litke int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
2256788c7df4SHugh Dickins 			unsigned long address, unsigned int flags)
225786e5216fSAdam Litke {
225886e5216fSAdam Litke 	pte_t *ptep;
225986e5216fSAdam Litke 	pte_t entry;
22601e8f889bSDavid Gibson 	int ret;
226157303d80SAndy Whitcroft 	struct page *pagecache_page = NULL;
22623935baa9SDavid Gibson 	static DEFINE_MUTEX(hugetlb_instantiation_mutex);
2263a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
226486e5216fSAdam Litke 
2265a5516438SAndi Kleen 	ptep = huge_pte_alloc(mm, address, huge_page_size(h));
226686e5216fSAdam Litke 	if (!ptep)
226786e5216fSAdam Litke 		return VM_FAULT_OOM;
226886e5216fSAdam Litke 
22693935baa9SDavid Gibson 	/*
22703935baa9SDavid Gibson 	 * Serialize hugepage allocation and instantiation, so that we don't
22713935baa9SDavid Gibson 	 * get spurious allocation failures if two CPUs race to instantiate
22723935baa9SDavid Gibson 	 * the same page in the page cache.
22733935baa9SDavid Gibson 	 */
22743935baa9SDavid Gibson 	mutex_lock(&hugetlb_instantiation_mutex);
22757f2e9525SGerald Schaefer 	entry = huge_ptep_get(ptep);
22767f2e9525SGerald Schaefer 	if (huge_pte_none(entry)) {
2277788c7df4SHugh Dickins 		ret = hugetlb_no_page(mm, vma, address, ptep, flags);
2278b4d1d99fSDavid Gibson 		goto out_mutex;
22793935baa9SDavid Gibson 	}
228086e5216fSAdam Litke 
228183c54070SNick Piggin 	ret = 0;
22821e8f889bSDavid Gibson 
228357303d80SAndy Whitcroft 	/*
228457303d80SAndy Whitcroft 	 * If we are going to COW the mapping later, we examine the pending
228557303d80SAndy Whitcroft 	 * reservations for this page now. This will ensure that any
228657303d80SAndy Whitcroft 	 * allocations necessary to record that reservation occur outside the
228757303d80SAndy Whitcroft 	 * spinlock. For private mappings, we also lookup the pagecache
228857303d80SAndy Whitcroft 	 * page now as it is used to determine if a reservation has been
228957303d80SAndy Whitcroft 	 * consumed.
229057303d80SAndy Whitcroft 	 */
2291788c7df4SHugh Dickins 	if ((flags & FAULT_FLAG_WRITE) && !pte_write(entry)) {
22922b26736cSAndy Whitcroft 		if (vma_needs_reservation(h, vma, address) < 0) {
22932b26736cSAndy Whitcroft 			ret = VM_FAULT_OOM;
2294b4d1d99fSDavid Gibson 			goto out_mutex;
22952b26736cSAndy Whitcroft 		}
229657303d80SAndy Whitcroft 
2297f83a275dSMel Gorman 		if (!(vma->vm_flags & VM_MAYSHARE))
229857303d80SAndy Whitcroft 			pagecache_page = hugetlbfs_pagecache_page(h,
229957303d80SAndy Whitcroft 								vma, address);
230057303d80SAndy Whitcroft 	}
230157303d80SAndy Whitcroft 
23021e8f889bSDavid Gibson 	spin_lock(&mm->page_table_lock);
23031e8f889bSDavid Gibson 	/* Check for a racing update before calling hugetlb_cow */
2304b4d1d99fSDavid Gibson 	if (unlikely(!pte_same(entry, huge_ptep_get(ptep))))
2305b4d1d99fSDavid Gibson 		goto out_page_table_lock;
2306b4d1d99fSDavid Gibson 
2307b4d1d99fSDavid Gibson 
2308788c7df4SHugh Dickins 	if (flags & FAULT_FLAG_WRITE) {
2309b4d1d99fSDavid Gibson 		if (!pte_write(entry)) {
231057303d80SAndy Whitcroft 			ret = hugetlb_cow(mm, vma, address, ptep, entry,
231157303d80SAndy Whitcroft 							pagecache_page);
2312b4d1d99fSDavid Gibson 			goto out_page_table_lock;
2313b4d1d99fSDavid Gibson 		}
2314b4d1d99fSDavid Gibson 		entry = pte_mkdirty(entry);
2315b4d1d99fSDavid Gibson 	}
2316b4d1d99fSDavid Gibson 	entry = pte_mkyoung(entry);
2317788c7df4SHugh Dickins 	if (huge_ptep_set_access_flags(vma, address, ptep, entry,
2318788c7df4SHugh Dickins 						flags & FAULT_FLAG_WRITE))
2319b4d1d99fSDavid Gibson 		update_mmu_cache(vma, address, entry);
2320b4d1d99fSDavid Gibson 
2321b4d1d99fSDavid Gibson out_page_table_lock:
23221e8f889bSDavid Gibson 	spin_unlock(&mm->page_table_lock);
232357303d80SAndy Whitcroft 
232457303d80SAndy Whitcroft 	if (pagecache_page) {
232557303d80SAndy Whitcroft 		unlock_page(pagecache_page);
232657303d80SAndy Whitcroft 		put_page(pagecache_page);
232757303d80SAndy Whitcroft 	}
232857303d80SAndy Whitcroft 
2329b4d1d99fSDavid Gibson out_mutex:
23303935baa9SDavid Gibson 	mutex_unlock(&hugetlb_instantiation_mutex);
23311e8f889bSDavid Gibson 
23321e8f889bSDavid Gibson 	return ret;
233386e5216fSAdam Litke }
233486e5216fSAdam Litke 
2335ceb86879SAndi Kleen /* Can be overriden by architectures */
2336ceb86879SAndi Kleen __attribute__((weak)) struct page *
2337ceb86879SAndi Kleen follow_huge_pud(struct mm_struct *mm, unsigned long address,
2338ceb86879SAndi Kleen 	       pud_t *pud, int write)
2339ceb86879SAndi Kleen {
2340ceb86879SAndi Kleen 	BUG();
2341ceb86879SAndi Kleen 	return NULL;
2342ceb86879SAndi Kleen }
2343ceb86879SAndi Kleen 
234463551ae0SDavid Gibson int follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma,
234563551ae0SDavid Gibson 			struct page **pages, struct vm_area_struct **vmas,
23465b23dbe8SAdam Litke 			unsigned long *position, int *length, int i,
23472a15efc9SHugh Dickins 			unsigned int flags)
234863551ae0SDavid Gibson {
2349d5d4b0aaSChen, Kenneth W 	unsigned long pfn_offset;
2350d5d4b0aaSChen, Kenneth W 	unsigned long vaddr = *position;
235163551ae0SDavid Gibson 	int remainder = *length;
2352a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
235363551ae0SDavid Gibson 
23541c59827dSHugh Dickins 	spin_lock(&mm->page_table_lock);
235563551ae0SDavid Gibson 	while (vaddr < vma->vm_end && remainder) {
235663551ae0SDavid Gibson 		pte_t *pte;
23572a15efc9SHugh Dickins 		int absent;
235863551ae0SDavid Gibson 		struct page *page;
235963551ae0SDavid Gibson 
23604c887265SAdam Litke 		/*
23614c887265SAdam Litke 		 * Some archs (sparc64, sh*) have multiple pte_ts to
23622a15efc9SHugh Dickins 		 * each hugepage.  We have to make sure we get the
23634c887265SAdam Litke 		 * first, for the page indexing below to work.
23644c887265SAdam Litke 		 */
2365a5516438SAndi Kleen 		pte = huge_pte_offset(mm, vaddr & huge_page_mask(h));
23662a15efc9SHugh Dickins 		absent = !pte || huge_pte_none(huge_ptep_get(pte));
236763551ae0SDavid Gibson 
23682a15efc9SHugh Dickins 		/*
23692a15efc9SHugh Dickins 		 * When coredumping, it suits get_dump_page if we just return
23703ae77f43SHugh Dickins 		 * an error where there's an empty slot with no huge pagecache
23713ae77f43SHugh Dickins 		 * to back it.  This way, we avoid allocating a hugepage, and
23723ae77f43SHugh Dickins 		 * the sparse dumpfile avoids allocating disk blocks, but its
23733ae77f43SHugh Dickins 		 * huge holes still show up with zeroes where they need to be.
23742a15efc9SHugh Dickins 		 */
23753ae77f43SHugh Dickins 		if (absent && (flags & FOLL_DUMP) &&
23763ae77f43SHugh Dickins 		    !hugetlbfs_pagecache_present(h, vma, vaddr)) {
23772a15efc9SHugh Dickins 			remainder = 0;
23782a15efc9SHugh Dickins 			break;
23792a15efc9SHugh Dickins 		}
23802a15efc9SHugh Dickins 
23812a15efc9SHugh Dickins 		if (absent ||
23822a15efc9SHugh Dickins 		    ((flags & FOLL_WRITE) && !pte_write(huge_ptep_get(pte)))) {
23834c887265SAdam Litke 			int ret;
23844c887265SAdam Litke 
23854c887265SAdam Litke 			spin_unlock(&mm->page_table_lock);
23862a15efc9SHugh Dickins 			ret = hugetlb_fault(mm, vma, vaddr,
23872a15efc9SHugh Dickins 				(flags & FOLL_WRITE) ? FAULT_FLAG_WRITE : 0);
23884c887265SAdam Litke 			spin_lock(&mm->page_table_lock);
2389a89182c7SAdam Litke 			if (!(ret & VM_FAULT_ERROR))
23904c887265SAdam Litke 				continue;
23914c887265SAdam Litke 
23921c59827dSHugh Dickins 			remainder = 0;
23931c59827dSHugh Dickins 			break;
23941c59827dSHugh Dickins 		}
239563551ae0SDavid Gibson 
2396a5516438SAndi Kleen 		pfn_offset = (vaddr & ~huge_page_mask(h)) >> PAGE_SHIFT;
23977f2e9525SGerald Schaefer 		page = pte_page(huge_ptep_get(pte));
2398d5d4b0aaSChen, Kenneth W same_page:
2399d6692183SChen, Kenneth W 		if (pages) {
240069d177c2SAndy Whitcroft 			pages[i] = mem_map_offset(page, pfn_offset);
24014b2e38adSKOSAKI Motohiro 			get_page(pages[i]);
2402d6692183SChen, Kenneth W 		}
240363551ae0SDavid Gibson 
240463551ae0SDavid Gibson 		if (vmas)
240563551ae0SDavid Gibson 			vmas[i] = vma;
240663551ae0SDavid Gibson 
240763551ae0SDavid Gibson 		vaddr += PAGE_SIZE;
2408d5d4b0aaSChen, Kenneth W 		++pfn_offset;
240963551ae0SDavid Gibson 		--remainder;
241063551ae0SDavid Gibson 		++i;
2411d5d4b0aaSChen, Kenneth W 		if (vaddr < vma->vm_end && remainder &&
2412a5516438SAndi Kleen 				pfn_offset < pages_per_huge_page(h)) {
2413d5d4b0aaSChen, Kenneth W 			/*
2414d5d4b0aaSChen, Kenneth W 			 * We use pfn_offset to avoid touching the pageframes
2415d5d4b0aaSChen, Kenneth W 			 * of this compound page.
2416d5d4b0aaSChen, Kenneth W 			 */
2417d5d4b0aaSChen, Kenneth W 			goto same_page;
2418d5d4b0aaSChen, Kenneth W 		}
241963551ae0SDavid Gibson 	}
24201c59827dSHugh Dickins 	spin_unlock(&mm->page_table_lock);
242163551ae0SDavid Gibson 	*length = remainder;
242263551ae0SDavid Gibson 	*position = vaddr;
242363551ae0SDavid Gibson 
24242a15efc9SHugh Dickins 	return i ? i : -EFAULT;
242563551ae0SDavid Gibson }
24268f860591SZhang, Yanmin 
24278f860591SZhang, Yanmin void hugetlb_change_protection(struct vm_area_struct *vma,
24288f860591SZhang, Yanmin 		unsigned long address, unsigned long end, pgprot_t newprot)
24298f860591SZhang, Yanmin {
24308f860591SZhang, Yanmin 	struct mm_struct *mm = vma->vm_mm;
24318f860591SZhang, Yanmin 	unsigned long start = address;
24328f860591SZhang, Yanmin 	pte_t *ptep;
24338f860591SZhang, Yanmin 	pte_t pte;
2434a5516438SAndi Kleen 	struct hstate *h = hstate_vma(vma);
24358f860591SZhang, Yanmin 
24368f860591SZhang, Yanmin 	BUG_ON(address >= end);
24378f860591SZhang, Yanmin 	flush_cache_range(vma, address, end);
24388f860591SZhang, Yanmin 
243939dde65cSChen, Kenneth W 	spin_lock(&vma->vm_file->f_mapping->i_mmap_lock);
24408f860591SZhang, Yanmin 	spin_lock(&mm->page_table_lock);
2441a5516438SAndi Kleen 	for (; address < end; address += huge_page_size(h)) {
24428f860591SZhang, Yanmin 		ptep = huge_pte_offset(mm, address);
24438f860591SZhang, Yanmin 		if (!ptep)
24448f860591SZhang, Yanmin 			continue;
244539dde65cSChen, Kenneth W 		if (huge_pmd_unshare(mm, &address, ptep))
244639dde65cSChen, Kenneth W 			continue;
24477f2e9525SGerald Schaefer 		if (!huge_pte_none(huge_ptep_get(ptep))) {
24488f860591SZhang, Yanmin 			pte = huge_ptep_get_and_clear(mm, address, ptep);
24498f860591SZhang, Yanmin 			pte = pte_mkhuge(pte_modify(pte, newprot));
24508f860591SZhang, Yanmin 			set_huge_pte_at(mm, address, ptep, pte);
24518f860591SZhang, Yanmin 		}
24528f860591SZhang, Yanmin 	}
24538f860591SZhang, Yanmin 	spin_unlock(&mm->page_table_lock);
245439dde65cSChen, Kenneth W 	spin_unlock(&vma->vm_file->f_mapping->i_mmap_lock);
24558f860591SZhang, Yanmin 
24568f860591SZhang, Yanmin 	flush_tlb_range(vma, start, end);
24578f860591SZhang, Yanmin }
24588f860591SZhang, Yanmin 
2459a1e78772SMel Gorman int hugetlb_reserve_pages(struct inode *inode,
2460a1e78772SMel Gorman 					long from, long to,
24615a6fe125SMel Gorman 					struct vm_area_struct *vma,
24625a6fe125SMel Gorman 					int acctflag)
2463e4e574b7SAdam Litke {
246417c9d12eSMel Gorman 	long ret, chg;
2465a5516438SAndi Kleen 	struct hstate *h = hstate_inode(inode);
2466e4e574b7SAdam Litke 
2467a1e78772SMel Gorman 	/*
246817c9d12eSMel Gorman 	 * Only apply hugepage reservation if asked. At fault time, an
246917c9d12eSMel Gorman 	 * attempt will be made for VM_NORESERVE to allocate a page
247017c9d12eSMel Gorman 	 * and filesystem quota without using reserves
247117c9d12eSMel Gorman 	 */
247217c9d12eSMel Gorman 	if (acctflag & VM_NORESERVE)
247317c9d12eSMel Gorman 		return 0;
247417c9d12eSMel Gorman 
247517c9d12eSMel Gorman 	/*
2476a1e78772SMel Gorman 	 * Shared mappings base their reservation on the number of pages that
2477a1e78772SMel Gorman 	 * are already allocated on behalf of the file. Private mappings need
2478a1e78772SMel Gorman 	 * to reserve the full area even if read-only as mprotect() may be
2479a1e78772SMel Gorman 	 * called to make the mapping read-write. Assume !vma is a shm mapping
2480a1e78772SMel Gorman 	 */
2481f83a275dSMel Gorman 	if (!vma || vma->vm_flags & VM_MAYSHARE)
2482e4e574b7SAdam Litke 		chg = region_chg(&inode->i_mapping->private_list, from, to);
24835a6fe125SMel Gorman 	else {
24845a6fe125SMel Gorman 		struct resv_map *resv_map = resv_map_alloc();
24855a6fe125SMel Gorman 		if (!resv_map)
24865a6fe125SMel Gorman 			return -ENOMEM;
24875a6fe125SMel Gorman 
248817c9d12eSMel Gorman 		chg = to - from;
248917c9d12eSMel Gorman 
24905a6fe125SMel Gorman 		set_vma_resv_map(vma, resv_map);
24915a6fe125SMel Gorman 		set_vma_resv_flags(vma, HPAGE_RESV_OWNER);
24925a6fe125SMel Gorman 	}
24935a6fe125SMel Gorman 
249417c9d12eSMel Gorman 	if (chg < 0)
249517c9d12eSMel Gorman 		return chg;
249617c9d12eSMel Gorman 
249717c9d12eSMel Gorman 	/* There must be enough filesystem quota for the mapping */
249817c9d12eSMel Gorman 	if (hugetlb_get_quota(inode->i_mapping, chg))
249917c9d12eSMel Gorman 		return -ENOSPC;
250017c9d12eSMel Gorman 
250117c9d12eSMel Gorman 	/*
250217c9d12eSMel Gorman 	 * Check enough hugepages are available for the reservation.
250317c9d12eSMel Gorman 	 * Hand back the quota if there are not
250417c9d12eSMel Gorman 	 */
250517c9d12eSMel Gorman 	ret = hugetlb_acct_memory(h, chg);
250617c9d12eSMel Gorman 	if (ret < 0) {
250717c9d12eSMel Gorman 		hugetlb_put_quota(inode->i_mapping, chg);
250817c9d12eSMel Gorman 		return ret;
250917c9d12eSMel Gorman 	}
251017c9d12eSMel Gorman 
251117c9d12eSMel Gorman 	/*
251217c9d12eSMel Gorman 	 * Account for the reservations made. Shared mappings record regions
251317c9d12eSMel Gorman 	 * that have reservations as they are shared by multiple VMAs.
251417c9d12eSMel Gorman 	 * When the last VMA disappears, the region map says how much
251517c9d12eSMel Gorman 	 * the reservation was and the page cache tells how much of
251617c9d12eSMel Gorman 	 * the reservation was consumed. Private mappings are per-VMA and
251717c9d12eSMel Gorman 	 * only the consumed reservations are tracked. When the VMA
251817c9d12eSMel Gorman 	 * disappears, the original reservation is the VMA size and the
251917c9d12eSMel Gorman 	 * consumed reservations are stored in the map. Hence, nothing
252017c9d12eSMel Gorman 	 * else has to be done for private mappings here
252117c9d12eSMel Gorman 	 */
2522f83a275dSMel Gorman 	if (!vma || vma->vm_flags & VM_MAYSHARE)
252317c9d12eSMel Gorman 		region_add(&inode->i_mapping->private_list, from, to);
2524a43a8c39SChen, Kenneth W 	return 0;
2525a43a8c39SChen, Kenneth W }
2526a43a8c39SChen, Kenneth W 
2527a43a8c39SChen, Kenneth W void hugetlb_unreserve_pages(struct inode *inode, long offset, long freed)
2528a43a8c39SChen, Kenneth W {
2529a5516438SAndi Kleen 	struct hstate *h = hstate_inode(inode);
2530a43a8c39SChen, Kenneth W 	long chg = region_truncate(&inode->i_mapping->private_list, offset);
253145c682a6SKen Chen 
253245c682a6SKen Chen 	spin_lock(&inode->i_lock);
2533e4c6f8beSEric Sandeen 	inode->i_blocks -= (blocks_per_huge_page(h) * freed);
253445c682a6SKen Chen 	spin_unlock(&inode->i_lock);
253545c682a6SKen Chen 
253690d8b7e6SAdam Litke 	hugetlb_put_quota(inode->i_mapping, (chg - freed));
2537a5516438SAndi Kleen 	hugetlb_acct_memory(h, -(chg - freed));
2538a43a8c39SChen, Kenneth W }
2539