blob: cf8225108b2f366b2fbcbf17a35df82d63216d40 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Generic hugetlb support.
3 * (C) William Irwin, April 2004
4 */
5#include <linux/gfp.h>
6#include <linux/list.h>
7#include <linux/init.h>
8#include <linux/module.h>
9#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/sysctl.h>
11#include <linux/highmem.h>
12#include <linux/nodemask.h>
David Gibson63551ae2005-06-21 17:14:44 -070013#include <linux/pagemap.h>
14#include <asm/page.h>
15#include <asm/pgtable.h>
16
17#include <linux/hugetlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19const unsigned long hugetlb_zero = 0, hugetlb_infinity = ~0UL;
20static unsigned long nr_huge_pages, free_huge_pages;
21unsigned long max_huge_pages;
22static struct list_head hugepage_freelists[MAX_NUMNODES];
23static unsigned int nr_huge_pages_node[MAX_NUMNODES];
24static unsigned int free_huge_pages_node[MAX_NUMNODES];
Eric Paris0bd0f9f2005-11-21 21:32:28 -080025
26/*
27 * Protects updates to hugepage_freelists, nr_huge_pages, and free_huge_pages
28 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static DEFINE_SPINLOCK(hugetlb_lock);
30
31static void enqueue_huge_page(struct page *page)
32{
33 int nid = page_to_nid(page);
34 list_add(&page->lru, &hugepage_freelists[nid]);
35 free_huge_pages++;
36 free_huge_pages_node[nid]++;
37}
38
39static struct page *dequeue_huge_page(void)
40{
41 int nid = numa_node_id();
42 struct page *page = NULL;
43
44 if (list_empty(&hugepage_freelists[nid])) {
45 for (nid = 0; nid < MAX_NUMNODES; ++nid)
46 if (!list_empty(&hugepage_freelists[nid]))
47 break;
48 }
49 if (nid >= 0 && nid < MAX_NUMNODES &&
50 !list_empty(&hugepage_freelists[nid])) {
51 page = list_entry(hugepage_freelists[nid].next,
52 struct page, lru);
53 list_del(&page->lru);
54 free_huge_pages--;
55 free_huge_pages_node[nid]--;
56 }
57 return page;
58}
59
60static struct page *alloc_fresh_huge_page(void)
61{
62 static int nid = 0;
63 struct page *page;
64 page = alloc_pages_node(nid, GFP_HIGHUSER|__GFP_COMP|__GFP_NOWARN,
65 HUGETLB_PAGE_ORDER);
66 nid = (nid + 1) % num_online_nodes();
67 if (page) {
Eric Paris0bd0f9f2005-11-21 21:32:28 -080068 spin_lock(&hugetlb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 nr_huge_pages++;
70 nr_huge_pages_node[page_to_nid(page)]++;
Eric Paris0bd0f9f2005-11-21 21:32:28 -080071 spin_unlock(&hugetlb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 }
73 return page;
74}
75
76void free_huge_page(struct page *page)
77{
78 BUG_ON(page_count(page));
79
80 INIT_LIST_HEAD(&page->lru);
81 page[1].mapping = NULL;
82
83 spin_lock(&hugetlb_lock);
84 enqueue_huge_page(page);
85 spin_unlock(&hugetlb_lock);
86}
87
88struct page *alloc_huge_page(void)
89{
90 struct page *page;
91 int i;
92
93 spin_lock(&hugetlb_lock);
94 page = dequeue_huge_page();
95 if (!page) {
96 spin_unlock(&hugetlb_lock);
97 return NULL;
98 }
99 spin_unlock(&hugetlb_lock);
100 set_page_count(page, 1);
101 page[1].mapping = (void *)free_huge_page;
102 for (i = 0; i < (HPAGE_SIZE/PAGE_SIZE); ++i)
103 clear_highpage(&page[i]);
104 return page;
105}
106
107static int __init hugetlb_init(void)
108{
109 unsigned long i;
110 struct page *page;
111
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100112 if (HPAGE_SHIFT == 0)
113 return 0;
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 for (i = 0; i < MAX_NUMNODES; ++i)
116 INIT_LIST_HEAD(&hugepage_freelists[i]);
117
118 for (i = 0; i < max_huge_pages; ++i) {
119 page = alloc_fresh_huge_page();
120 if (!page)
121 break;
122 spin_lock(&hugetlb_lock);
123 enqueue_huge_page(page);
124 spin_unlock(&hugetlb_lock);
125 }
126 max_huge_pages = free_huge_pages = nr_huge_pages = i;
127 printk("Total HugeTLB memory allocated, %ld\n", free_huge_pages);
128 return 0;
129}
130module_init(hugetlb_init);
131
132static int __init hugetlb_setup(char *s)
133{
134 if (sscanf(s, "%lu", &max_huge_pages) <= 0)
135 max_huge_pages = 0;
136 return 1;
137}
138__setup("hugepages=", hugetlb_setup);
139
140#ifdef CONFIG_SYSCTL
141static void update_and_free_page(struct page *page)
142{
143 int i;
144 nr_huge_pages--;
145 nr_huge_pages_node[page_zone(page)->zone_pgdat->node_id]--;
146 for (i = 0; i < (HPAGE_SIZE / PAGE_SIZE); i++) {
147 page[i].flags &= ~(1 << PG_locked | 1 << PG_error | 1 << PG_referenced |
148 1 << PG_dirty | 1 << PG_active | 1 << PG_reserved |
149 1 << PG_private | 1<< PG_writeback);
150 set_page_count(&page[i], 0);
151 }
152 set_page_count(page, 1);
153 __free_pages(page, HUGETLB_PAGE_ORDER);
154}
155
156#ifdef CONFIG_HIGHMEM
157static void try_to_free_low(unsigned long count)
158{
159 int i, nid;
160 for (i = 0; i < MAX_NUMNODES; ++i) {
161 struct page *page, *next;
162 list_for_each_entry_safe(page, next, &hugepage_freelists[i], lru) {
163 if (PageHighMem(page))
164 continue;
165 list_del(&page->lru);
166 update_and_free_page(page);
167 nid = page_zone(page)->zone_pgdat->node_id;
168 free_huge_pages--;
169 free_huge_pages_node[nid]--;
170 if (count >= nr_huge_pages)
171 return;
172 }
173 }
174}
175#else
176static inline void try_to_free_low(unsigned long count)
177{
178}
179#endif
180
181static unsigned long set_max_huge_pages(unsigned long count)
182{
183 while (count > nr_huge_pages) {
184 struct page *page = alloc_fresh_huge_page();
185 if (!page)
186 return nr_huge_pages;
187 spin_lock(&hugetlb_lock);
188 enqueue_huge_page(page);
189 spin_unlock(&hugetlb_lock);
190 }
191 if (count >= nr_huge_pages)
192 return nr_huge_pages;
193
194 spin_lock(&hugetlb_lock);
195 try_to_free_low(count);
196 while (count < nr_huge_pages) {
197 struct page *page = dequeue_huge_page();
198 if (!page)
199 break;
200 update_and_free_page(page);
201 }
202 spin_unlock(&hugetlb_lock);
203 return nr_huge_pages;
204}
205
206int hugetlb_sysctl_handler(struct ctl_table *table, int write,
207 struct file *file, void __user *buffer,
208 size_t *length, loff_t *ppos)
209{
210 proc_doulongvec_minmax(table, write, file, buffer, length, ppos);
211 max_huge_pages = set_max_huge_pages(max_huge_pages);
212 return 0;
213}
214#endif /* CONFIG_SYSCTL */
215
216int hugetlb_report_meminfo(char *buf)
217{
218 return sprintf(buf,
219 "HugePages_Total: %5lu\n"
220 "HugePages_Free: %5lu\n"
221 "Hugepagesize: %5lu kB\n",
222 nr_huge_pages,
223 free_huge_pages,
224 HPAGE_SIZE/1024);
225}
226
227int hugetlb_report_node_meminfo(int nid, char *buf)
228{
229 return sprintf(buf,
230 "Node %d HugePages_Total: %5u\n"
231 "Node %d HugePages_Free: %5u\n",
232 nid, nr_huge_pages_node[nid],
233 nid, free_huge_pages_node[nid]);
234}
235
236int is_hugepage_mem_enough(size_t size)
237{
238 return (size + ~HPAGE_MASK)/HPAGE_SIZE <= free_huge_pages;
239}
240
241/* Return the number pages of memory we physically have, in PAGE_SIZE units. */
242unsigned long hugetlb_total_pages(void)
243{
244 return nr_huge_pages * (HPAGE_SIZE / PAGE_SIZE);
245}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247/*
248 * We cannot handle pagefaults against hugetlb pages at all. They cause
249 * handle_mm_fault() to try to instantiate regular-sized pages in the
250 * hugegpage VMA. do_page_fault() is supposed to trap this, so BUG is we get
251 * this far.
252 */
253static struct page *hugetlb_nopage(struct vm_area_struct *vma,
254 unsigned long address, int *unused)
255{
256 BUG();
257 return NULL;
258}
259
260struct vm_operations_struct hugetlb_vm_ops = {
261 .nopage = hugetlb_nopage,
262};
263
David Gibson63551ae2005-06-21 17:14:44 -0700264static pte_t make_huge_pte(struct vm_area_struct *vma, struct page *page)
265{
266 pte_t entry;
267
268 if (vma->vm_flags & VM_WRITE) {
269 entry =
270 pte_mkwrite(pte_mkdirty(mk_pte(page, vma->vm_page_prot)));
271 } else {
272 entry = pte_wrprotect(mk_pte(page, vma->vm_page_prot));
273 }
274 entry = pte_mkyoung(entry);
275 entry = pte_mkhuge(entry);
276
277 return entry;
278}
279
280int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
281 struct vm_area_struct *vma)
282{
283 pte_t *src_pte, *dst_pte, entry;
284 struct page *ptepage;
Hugh Dickins1c598272005-10-19 21:23:43 -0700285 unsigned long addr;
David Gibson63551ae2005-06-21 17:14:44 -0700286
Hugh Dickins1c598272005-10-19 21:23:43 -0700287 for (addr = vma->vm_start; addr < vma->vm_end; addr += HPAGE_SIZE) {
Hugh Dickinsc74df322005-10-29 18:16:23 -0700288 src_pte = huge_pte_offset(src, addr);
289 if (!src_pte)
290 continue;
David Gibson63551ae2005-06-21 17:14:44 -0700291 dst_pte = huge_pte_alloc(dst, addr);
292 if (!dst_pte)
293 goto nomem;
Hugh Dickinsc74df322005-10-29 18:16:23 -0700294 spin_lock(&dst->page_table_lock);
Hugh Dickins1c598272005-10-19 21:23:43 -0700295 spin_lock(&src->page_table_lock);
Hugh Dickinsc74df322005-10-29 18:16:23 -0700296 if (!pte_none(*src_pte)) {
Hugh Dickins1c598272005-10-19 21:23:43 -0700297 entry = *src_pte;
298 ptepage = pte_page(entry);
299 get_page(ptepage);
Hugh Dickins42946212005-10-29 18:16:05 -0700300 add_mm_counter(dst, file_rss, HPAGE_SIZE / PAGE_SIZE);
Hugh Dickins1c598272005-10-19 21:23:43 -0700301 set_huge_pte_at(dst, addr, dst_pte, entry);
302 }
303 spin_unlock(&src->page_table_lock);
Hugh Dickinsc74df322005-10-29 18:16:23 -0700304 spin_unlock(&dst->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -0700305 }
306 return 0;
307
308nomem:
309 return -ENOMEM;
310}
311
312void unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
313 unsigned long end)
314{
315 struct mm_struct *mm = vma->vm_mm;
316 unsigned long address;
David Gibsonc7546f82005-08-05 11:59:35 -0700317 pte_t *ptep;
David Gibson63551ae2005-06-21 17:14:44 -0700318 pte_t pte;
319 struct page *page;
320
321 WARN_ON(!is_vm_hugetlb_page(vma));
322 BUG_ON(start & ~HPAGE_MASK);
323 BUG_ON(end & ~HPAGE_MASK);
324
Hugh Dickins508034a2005-10-29 18:16:30 -0700325 spin_lock(&mm->page_table_lock);
326
Hugh Dickins365e9c872005-10-29 18:16:18 -0700327 /* Update high watermark before we lower rss */
328 update_hiwater_rss(mm);
329
David Gibson63551ae2005-06-21 17:14:44 -0700330 for (address = start; address < end; address += HPAGE_SIZE) {
David Gibsonc7546f82005-08-05 11:59:35 -0700331 ptep = huge_pte_offset(mm, address);
Adam Litke4c887262005-10-29 18:16:46 -0700332 if (!ptep)
David Gibsonc7546f82005-08-05 11:59:35 -0700333 continue;
334
335 pte = huge_ptep_get_and_clear(mm, address, ptep);
David Gibson63551ae2005-06-21 17:14:44 -0700336 if (pte_none(pte))
337 continue;
David Gibsonc7546f82005-08-05 11:59:35 -0700338
David Gibson63551ae2005-06-21 17:14:44 -0700339 page = pte_page(pte);
340 put_page(page);
Hugh Dickins42946212005-10-29 18:16:05 -0700341 add_mm_counter(mm, file_rss, (int) -(HPAGE_SIZE / PAGE_SIZE));
David Gibson63551ae2005-06-21 17:14:44 -0700342 }
David Gibson63551ae2005-06-21 17:14:44 -0700343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 spin_unlock(&mm->page_table_lock);
Hugh Dickins508034a2005-10-29 18:16:30 -0700345 flush_tlb_range(vma, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
David Gibson63551ae2005-06-21 17:14:44 -0700347
Adam Litke85ef47f2006-01-06 00:10:42 -0800348static struct page *find_or_alloc_huge_page(struct address_space *mapping,
349 unsigned long idx)
David Gibson63551ae2005-06-21 17:14:44 -0700350{
Adam Litke4c887262005-10-29 18:16:46 -0700351 struct page *page;
352 int err;
David Gibson63551ae2005-06-21 17:14:44 -0700353
Adam Litke4c887262005-10-29 18:16:46 -0700354retry:
355 page = find_lock_page(mapping, idx);
356 if (page)
357 goto out;
David Gibson63551ae2005-06-21 17:14:44 -0700358
Adam Litke4c887262005-10-29 18:16:46 -0700359 if (hugetlb_get_quota(mapping))
360 goto out;
361 page = alloc_huge_page();
362 if (!page) {
363 hugetlb_put_quota(mapping);
364 goto out;
365 }
David Gibson63551ae2005-06-21 17:14:44 -0700366
Adam Litke4c887262005-10-29 18:16:46 -0700367 err = add_to_page_cache(page, mapping, idx, GFP_KERNEL);
368 if (err) {
369 put_page(page);
370 hugetlb_put_quota(mapping);
371 if (err == -EEXIST)
372 goto retry;
373 page = NULL;
David Gibson63551ae2005-06-21 17:14:44 -0700374 }
375out:
Adam Litke4c887262005-10-29 18:16:46 -0700376 return page;
David Gibson63551ae2005-06-21 17:14:44 -0700377}
378
Adam Litke86e52162006-01-06 00:10:43 -0800379int hugetlb_no_page(struct mm_struct *mm, struct vm_area_struct *vma,
380 unsigned long address, pte_t *ptep)
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100381{
382 int ret = VM_FAULT_SIGBUS;
Adam Litke4c887262005-10-29 18:16:46 -0700383 unsigned long idx;
384 unsigned long size;
Adam Litke4c887262005-10-29 18:16:46 -0700385 struct page *page;
386 struct address_space *mapping;
387
Adam Litke4c887262005-10-29 18:16:46 -0700388 mapping = vma->vm_file->f_mapping;
389 idx = ((address - vma->vm_start) >> HPAGE_SHIFT)
390 + (vma->vm_pgoff >> (HPAGE_SHIFT - PAGE_SHIFT));
391
392 /*
393 * Use page lock to guard against racing truncation
394 * before we get page_table_lock.
395 */
Adam Litke85ef47f2006-01-06 00:10:42 -0800396 page = find_or_alloc_huge_page(mapping, idx);
Adam Litke4c887262005-10-29 18:16:46 -0700397 if (!page)
398 goto out;
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100399
400 spin_lock(&mm->page_table_lock);
Adam Litke4c887262005-10-29 18:16:46 -0700401 size = i_size_read(mapping->host) >> HPAGE_SHIFT;
402 if (idx >= size)
403 goto backout;
404
405 ret = VM_FAULT_MINOR;
Adam Litke86e52162006-01-06 00:10:43 -0800406 if (!pte_none(*ptep))
Adam Litke4c887262005-10-29 18:16:46 -0700407 goto backout;
408
409 add_mm_counter(mm, file_rss, HPAGE_SIZE / PAGE_SIZE);
Adam Litke86e52162006-01-06 00:10:43 -0800410 set_huge_pte_at(mm, address, ptep, make_huge_pte(vma, page));
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100411 spin_unlock(&mm->page_table_lock);
Adam Litke4c887262005-10-29 18:16:46 -0700412 unlock_page(page);
413out:
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100414 return ret;
Adam Litke4c887262005-10-29 18:16:46 -0700415
416backout:
417 spin_unlock(&mm->page_table_lock);
418 hugetlb_put_quota(mapping);
419 unlock_page(page);
420 put_page(page);
421 goto out;
Hugh Dickinsac9b9c62005-10-20 16:24:28 +0100422}
423
Adam Litke86e52162006-01-06 00:10:43 -0800424int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
425 unsigned long address, int write_access)
426{
427 pte_t *ptep;
428 pte_t entry;
429
430 ptep = huge_pte_alloc(mm, address);
431 if (!ptep)
432 return VM_FAULT_OOM;
433
434 entry = *ptep;
435 if (pte_none(entry))
436 return hugetlb_no_page(mm, vma, address, ptep);
437
438 /*
439 * We could get here if another thread instantiated the pte
440 * before the test above.
441 */
442 return VM_FAULT_MINOR;
443}
444
David Gibson63551ae2005-06-21 17:14:44 -0700445int follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma,
446 struct page **pages, struct vm_area_struct **vmas,
447 unsigned long *position, int *length, int i)
448{
449 unsigned long vpfn, vaddr = *position;
450 int remainder = *length;
451
David Gibson63551ae2005-06-21 17:14:44 -0700452 vpfn = vaddr/PAGE_SIZE;
Hugh Dickins1c598272005-10-19 21:23:43 -0700453 spin_lock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -0700454 while (vaddr < vma->vm_end && remainder) {
Adam Litke4c887262005-10-29 18:16:46 -0700455 pte_t *pte;
456 struct page *page;
457
458 /*
459 * Some archs (sparc64, sh*) have multiple pte_ts to
460 * each hugepage. We have to make * sure we get the
461 * first, for the page indexing below to work.
462 */
463 pte = huge_pte_offset(mm, vaddr & HPAGE_MASK);
464
465 if (!pte || pte_none(*pte)) {
466 int ret;
467
468 spin_unlock(&mm->page_table_lock);
469 ret = hugetlb_fault(mm, vma, vaddr, 0);
470 spin_lock(&mm->page_table_lock);
471 if (ret == VM_FAULT_MINOR)
472 continue;
473
474 remainder = 0;
475 if (!i)
476 i = -EFAULT;
477 break;
478 }
David Gibson63551ae2005-06-21 17:14:44 -0700479
480 if (pages) {
David Gibson63551ae2005-06-21 17:14:44 -0700481 page = &pte_page(*pte)[vpfn % (HPAGE_SIZE/PAGE_SIZE)];
David Gibson63551ae2005-06-21 17:14:44 -0700482 get_page(page);
483 pages[i] = page;
484 }
485
486 if (vmas)
487 vmas[i] = vma;
488
489 vaddr += PAGE_SIZE;
490 ++vpfn;
491 --remainder;
492 ++i;
493 }
Hugh Dickins1c598272005-10-19 21:23:43 -0700494 spin_unlock(&mm->page_table_lock);
David Gibson63551ae2005-06-21 17:14:44 -0700495 *length = remainder;
496 *position = vaddr;
497
498 return i;
499}