2 * Copyright (C) 2009 Red Hat, Inc.
4 * This work is licensed under the terms of the GNU GPL, version 2. See
5 * the COPYING file in the top-level directory.
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11 #include <linux/sched.h>
12 #include <linux/highmem.h>
13 #include <linux/hugetlb.h>
14 #include <linux/mmu_notifier.h>
15 #include <linux/rmap.h>
16 #include <linux/swap.h>
17 #include <linux/shrinker.h>
18 #include <linux/mm_inline.h>
19 #include <linux/kthread.h>
20 #include <linux/khugepaged.h>
21 #include <linux/freezer.h>
22 #include <linux/mman.h>
23 #include <linux/pagemap.h>
24 #include <linux/migrate.h>
25 #include <linux/hashtable.h>
28 #include <asm/pgalloc.h>
32 * By default transparent hugepage support is disabled in order that avoid
33 * to risk increase the memory footprint of applications without a guaranteed
34 * benefit. When transparent hugepage support is enabled, is for all mappings,
35 * and khugepaged scans all mappings.
36 * Defrag is invoked by khugepaged hugepage allocations and by page faults
37 * for all hugepage allocations.
39 unsigned long transparent_hugepage_flags __read_mostly
=
40 #ifdef CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS
41 (1<<TRANSPARENT_HUGEPAGE_FLAG
)|
43 #ifdef CONFIG_TRANSPARENT_HUGEPAGE_MADVISE
44 (1<<TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG
)|
46 (1<<TRANSPARENT_HUGEPAGE_DEFRAG_FLAG
)|
47 (1<<TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG
)|
48 (1<<TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG
);
50 /* default scan 8*512 pte (or vmas) every 30 second */
51 static unsigned int khugepaged_pages_to_scan __read_mostly
= HPAGE_PMD_NR
*8;
52 static unsigned int khugepaged_pages_collapsed
;
53 static unsigned int khugepaged_full_scans
;
54 static unsigned int khugepaged_scan_sleep_millisecs __read_mostly
= 10000;
55 /* during fragmentation poll the hugepage allocator once every minute */
56 static unsigned int khugepaged_alloc_sleep_millisecs __read_mostly
= 60000;
57 static struct task_struct
*khugepaged_thread __read_mostly
;
58 static DEFINE_MUTEX(khugepaged_mutex
);
59 static DEFINE_SPINLOCK(khugepaged_mm_lock
);
60 static DECLARE_WAIT_QUEUE_HEAD(khugepaged_wait
);
62 * default collapse hugepages if there is at least one pte mapped like
63 * it would have happened if the vma was large enough during page
66 static unsigned int khugepaged_max_ptes_none __read_mostly
= HPAGE_PMD_NR
-1;
68 static int khugepaged(void *none
);
69 static int khugepaged_slab_init(void);
71 #define MM_SLOTS_HASH_BITS 10
72 static __read_mostly
DEFINE_HASHTABLE(mm_slots_hash
, MM_SLOTS_HASH_BITS
);
74 static struct kmem_cache
*mm_slot_cache __read_mostly
;
77 * struct mm_slot - hash lookup from mm to mm_slot
78 * @hash: hash collision list
79 * @mm_node: khugepaged scan list headed in khugepaged_scan.mm_head
80 * @mm: the mm that this information is valid for
83 struct hlist_node hash
;
84 struct list_head mm_node
;
89 * struct khugepaged_scan - cursor for scanning
90 * @mm_head: the head of the mm list to scan
91 * @mm_slot: the current mm_slot we are scanning
92 * @address: the next address inside that to be scanned
94 * There is only the one khugepaged_scan instance of this cursor structure.
96 struct khugepaged_scan
{
97 struct list_head mm_head
;
98 struct mm_slot
*mm_slot
;
99 unsigned long address
;
101 static struct khugepaged_scan khugepaged_scan
= {
102 .mm_head
= LIST_HEAD_INIT(khugepaged_scan
.mm_head
),
106 static int set_recommended_min_free_kbytes(void)
110 unsigned long recommended_min
;
112 if (!khugepaged_enabled())
115 for_each_populated_zone(zone
)
118 /* Make sure at least 2 hugepages are free for MIGRATE_RESERVE */
119 recommended_min
= pageblock_nr_pages
* nr_zones
* 2;
122 * Make sure that on average at least two pageblocks are almost free
123 * of another type, one for a migratetype to fall back to and a
124 * second to avoid subsequent fallbacks of other types There are 3
125 * MIGRATE_TYPES we care about.
127 recommended_min
+= pageblock_nr_pages
* nr_zones
*
128 MIGRATE_PCPTYPES
* MIGRATE_PCPTYPES
;
130 /* don't ever allow to reserve more than 5% of the lowmem */
131 recommended_min
= min(recommended_min
,
132 (unsigned long) nr_free_buffer_pages() / 20);
133 recommended_min
<<= (PAGE_SHIFT
-10);
135 if (recommended_min
> min_free_kbytes
) {
136 if (user_min_free_kbytes
>= 0)
137 pr_info("raising min_free_kbytes from %d to %lu "
138 "to help transparent hugepage allocations\n",
139 min_free_kbytes
, recommended_min
);
141 min_free_kbytes
= recommended_min
;
143 setup_per_zone_wmarks();
146 late_initcall(set_recommended_min_free_kbytes
);
148 static int start_khugepaged(void)
151 if (khugepaged_enabled()) {
152 if (!khugepaged_thread
)
153 khugepaged_thread
= kthread_run(khugepaged
, NULL
,
155 if (unlikely(IS_ERR(khugepaged_thread
))) {
156 pr_err("khugepaged: kthread_run(khugepaged) failed\n");
157 err
= PTR_ERR(khugepaged_thread
);
158 khugepaged_thread
= NULL
;
161 if (!list_empty(&khugepaged_scan
.mm_head
))
162 wake_up_interruptible(&khugepaged_wait
);
164 set_recommended_min_free_kbytes();
165 } else if (khugepaged_thread
) {
166 kthread_stop(khugepaged_thread
);
167 khugepaged_thread
= NULL
;
173 static atomic_t huge_zero_refcount
;
174 static struct page
*huge_zero_page __read_mostly
;
176 static inline bool is_huge_zero_page(struct page
*page
)
178 return ACCESS_ONCE(huge_zero_page
) == page
;
181 static inline bool is_huge_zero_pmd(pmd_t pmd
)
183 return is_huge_zero_page(pmd_page(pmd
));
186 static struct page
*get_huge_zero_page(void)
188 struct page
*zero_page
;
190 if (likely(atomic_inc_not_zero(&huge_zero_refcount
)))
191 return ACCESS_ONCE(huge_zero_page
);
193 zero_page
= alloc_pages((GFP_TRANSHUGE
| __GFP_ZERO
) & ~__GFP_MOVABLE
,
196 count_vm_event(THP_ZERO_PAGE_ALLOC_FAILED
);
199 count_vm_event(THP_ZERO_PAGE_ALLOC
);
201 if (cmpxchg(&huge_zero_page
, NULL
, zero_page
)) {
203 __free_page(zero_page
);
207 /* We take additional reference here. It will be put back by shrinker */
208 atomic_set(&huge_zero_refcount
, 2);
210 return ACCESS_ONCE(huge_zero_page
);
213 static void put_huge_zero_page(void)
216 * Counter should never go to zero here. Only shrinker can put
219 BUG_ON(atomic_dec_and_test(&huge_zero_refcount
));
222 static unsigned long shrink_huge_zero_page_count(struct shrinker
*shrink
,
223 struct shrink_control
*sc
)
225 /* we can free zero page only if last reference remains */
226 return atomic_read(&huge_zero_refcount
) == 1 ? HPAGE_PMD_NR
: 0;
229 static unsigned long shrink_huge_zero_page_scan(struct shrinker
*shrink
,
230 struct shrink_control
*sc
)
232 if (atomic_cmpxchg(&huge_zero_refcount
, 1, 0) == 1) {
233 struct page
*zero_page
= xchg(&huge_zero_page
, NULL
);
234 BUG_ON(zero_page
== NULL
);
235 __free_page(zero_page
);
242 static struct shrinker huge_zero_page_shrinker
= {
243 .count_objects
= shrink_huge_zero_page_count
,
244 .scan_objects
= shrink_huge_zero_page_scan
,
245 .seeks
= DEFAULT_SEEKS
,
250 static ssize_t
double_flag_show(struct kobject
*kobj
,
251 struct kobj_attribute
*attr
, char *buf
,
252 enum transparent_hugepage_flag enabled
,
253 enum transparent_hugepage_flag req_madv
)
255 if (test_bit(enabled
, &transparent_hugepage_flags
)) {
256 VM_BUG_ON(test_bit(req_madv
, &transparent_hugepage_flags
));
257 return sprintf(buf
, "[always] madvise never\n");
258 } else if (test_bit(req_madv
, &transparent_hugepage_flags
))
259 return sprintf(buf
, "always [madvise] never\n");
261 return sprintf(buf
, "always madvise [never]\n");
263 static ssize_t
double_flag_store(struct kobject
*kobj
,
264 struct kobj_attribute
*attr
,
265 const char *buf
, size_t count
,
266 enum transparent_hugepage_flag enabled
,
267 enum transparent_hugepage_flag req_madv
)
269 if (!memcmp("always", buf
,
270 min(sizeof("always")-1, count
))) {
271 set_bit(enabled
, &transparent_hugepage_flags
);
272 clear_bit(req_madv
, &transparent_hugepage_flags
);
273 } else if (!memcmp("madvise", buf
,
274 min(sizeof("madvise")-1, count
))) {
275 clear_bit(enabled
, &transparent_hugepage_flags
);
276 set_bit(req_madv
, &transparent_hugepage_flags
);
277 } else if (!memcmp("never", buf
,
278 min(sizeof("never")-1, count
))) {
279 clear_bit(enabled
, &transparent_hugepage_flags
);
280 clear_bit(req_madv
, &transparent_hugepage_flags
);
287 static ssize_t
enabled_show(struct kobject
*kobj
,
288 struct kobj_attribute
*attr
, char *buf
)
290 return double_flag_show(kobj
, attr
, buf
,
291 TRANSPARENT_HUGEPAGE_FLAG
,
292 TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG
);
294 static ssize_t
enabled_store(struct kobject
*kobj
,
295 struct kobj_attribute
*attr
,
296 const char *buf
, size_t count
)
300 ret
= double_flag_store(kobj
, attr
, buf
, count
,
301 TRANSPARENT_HUGEPAGE_FLAG
,
302 TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG
);
307 mutex_lock(&khugepaged_mutex
);
308 err
= start_khugepaged();
309 mutex_unlock(&khugepaged_mutex
);
317 static struct kobj_attribute enabled_attr
=
318 __ATTR(enabled
, 0644, enabled_show
, enabled_store
);
320 static ssize_t
single_flag_show(struct kobject
*kobj
,
321 struct kobj_attribute
*attr
, char *buf
,
322 enum transparent_hugepage_flag flag
)
324 return sprintf(buf
, "%d\n",
325 !!test_bit(flag
, &transparent_hugepage_flags
));
328 static ssize_t
single_flag_store(struct kobject
*kobj
,
329 struct kobj_attribute
*attr
,
330 const char *buf
, size_t count
,
331 enum transparent_hugepage_flag flag
)
336 ret
= kstrtoul(buf
, 10, &value
);
343 set_bit(flag
, &transparent_hugepage_flags
);
345 clear_bit(flag
, &transparent_hugepage_flags
);
351 * Currently defrag only disables __GFP_NOWAIT for allocation. A blind
352 * __GFP_REPEAT is too aggressive, it's never worth swapping tons of
353 * memory just to allocate one more hugepage.
355 static ssize_t
defrag_show(struct kobject
*kobj
,
356 struct kobj_attribute
*attr
, char *buf
)
358 return double_flag_show(kobj
, attr
, buf
,
359 TRANSPARENT_HUGEPAGE_DEFRAG_FLAG
,
360 TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG
);
362 static ssize_t
defrag_store(struct kobject
*kobj
,
363 struct kobj_attribute
*attr
,
364 const char *buf
, size_t count
)
366 return double_flag_store(kobj
, attr
, buf
, count
,
367 TRANSPARENT_HUGEPAGE_DEFRAG_FLAG
,
368 TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG
);
370 static struct kobj_attribute defrag_attr
=
371 __ATTR(defrag
, 0644, defrag_show
, defrag_store
);
373 static ssize_t
use_zero_page_show(struct kobject
*kobj
,
374 struct kobj_attribute
*attr
, char *buf
)
376 return single_flag_show(kobj
, attr
, buf
,
377 TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG
);
379 static ssize_t
use_zero_page_store(struct kobject
*kobj
,
380 struct kobj_attribute
*attr
, const char *buf
, size_t count
)
382 return single_flag_store(kobj
, attr
, buf
, count
,
383 TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG
);
385 static struct kobj_attribute use_zero_page_attr
=
386 __ATTR(use_zero_page
, 0644, use_zero_page_show
, use_zero_page_store
);
387 #ifdef CONFIG_DEBUG_VM
388 static ssize_t
debug_cow_show(struct kobject
*kobj
,
389 struct kobj_attribute
*attr
, char *buf
)
391 return single_flag_show(kobj
, attr
, buf
,
392 TRANSPARENT_HUGEPAGE_DEBUG_COW_FLAG
);
394 static ssize_t
debug_cow_store(struct kobject
*kobj
,
395 struct kobj_attribute
*attr
,
396 const char *buf
, size_t count
)
398 return single_flag_store(kobj
, attr
, buf
, count
,
399 TRANSPARENT_HUGEPAGE_DEBUG_COW_FLAG
);
401 static struct kobj_attribute debug_cow_attr
=
402 __ATTR(debug_cow
, 0644, debug_cow_show
, debug_cow_store
);
403 #endif /* CONFIG_DEBUG_VM */
405 static struct attribute
*hugepage_attr
[] = {
408 &use_zero_page_attr
.attr
,
409 #ifdef CONFIG_DEBUG_VM
410 &debug_cow_attr
.attr
,
415 static struct attribute_group hugepage_attr_group
= {
416 .attrs
= hugepage_attr
,
419 static ssize_t
scan_sleep_millisecs_show(struct kobject
*kobj
,
420 struct kobj_attribute
*attr
,
423 return sprintf(buf
, "%u\n", khugepaged_scan_sleep_millisecs
);
426 static ssize_t
scan_sleep_millisecs_store(struct kobject
*kobj
,
427 struct kobj_attribute
*attr
,
428 const char *buf
, size_t count
)
433 err
= kstrtoul(buf
, 10, &msecs
);
434 if (err
|| msecs
> UINT_MAX
)
437 khugepaged_scan_sleep_millisecs
= msecs
;
438 wake_up_interruptible(&khugepaged_wait
);
442 static struct kobj_attribute scan_sleep_millisecs_attr
=
443 __ATTR(scan_sleep_millisecs
, 0644, scan_sleep_millisecs_show
,
444 scan_sleep_millisecs_store
);
446 static ssize_t
alloc_sleep_millisecs_show(struct kobject
*kobj
,
447 struct kobj_attribute
*attr
,
450 return sprintf(buf
, "%u\n", khugepaged_alloc_sleep_millisecs
);
453 static ssize_t
alloc_sleep_millisecs_store(struct kobject
*kobj
,
454 struct kobj_attribute
*attr
,
455 const char *buf
, size_t count
)
460 err
= kstrtoul(buf
, 10, &msecs
);
461 if (err
|| msecs
> UINT_MAX
)
464 khugepaged_alloc_sleep_millisecs
= msecs
;
465 wake_up_interruptible(&khugepaged_wait
);
469 static struct kobj_attribute alloc_sleep_millisecs_attr
=
470 __ATTR(alloc_sleep_millisecs
, 0644, alloc_sleep_millisecs_show
,
471 alloc_sleep_millisecs_store
);
473 static ssize_t
pages_to_scan_show(struct kobject
*kobj
,
474 struct kobj_attribute
*attr
,
477 return sprintf(buf
, "%u\n", khugepaged_pages_to_scan
);
479 static ssize_t
pages_to_scan_store(struct kobject
*kobj
,
480 struct kobj_attribute
*attr
,
481 const char *buf
, size_t count
)
486 err
= kstrtoul(buf
, 10, &pages
);
487 if (err
|| !pages
|| pages
> UINT_MAX
)
490 khugepaged_pages_to_scan
= pages
;
494 static struct kobj_attribute pages_to_scan_attr
=
495 __ATTR(pages_to_scan
, 0644, pages_to_scan_show
,
496 pages_to_scan_store
);
498 static ssize_t
pages_collapsed_show(struct kobject
*kobj
,
499 struct kobj_attribute
*attr
,
502 return sprintf(buf
, "%u\n", khugepaged_pages_collapsed
);
504 static struct kobj_attribute pages_collapsed_attr
=
505 __ATTR_RO(pages_collapsed
);
507 static ssize_t
full_scans_show(struct kobject
*kobj
,
508 struct kobj_attribute
*attr
,
511 return sprintf(buf
, "%u\n", khugepaged_full_scans
);
513 static struct kobj_attribute full_scans_attr
=
514 __ATTR_RO(full_scans
);
516 static ssize_t
khugepaged_defrag_show(struct kobject
*kobj
,
517 struct kobj_attribute
*attr
, char *buf
)
519 return single_flag_show(kobj
, attr
, buf
,
520 TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG
);
522 static ssize_t
khugepaged_defrag_store(struct kobject
*kobj
,
523 struct kobj_attribute
*attr
,
524 const char *buf
, size_t count
)
526 return single_flag_store(kobj
, attr
, buf
, count
,
527 TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG
);
529 static struct kobj_attribute khugepaged_defrag_attr
=
530 __ATTR(defrag
, 0644, khugepaged_defrag_show
,
531 khugepaged_defrag_store
);
534 * max_ptes_none controls if khugepaged should collapse hugepages over
535 * any unmapped ptes in turn potentially increasing the memory
536 * footprint of the vmas. When max_ptes_none is 0 khugepaged will not
537 * reduce the available free memory in the system as it
538 * runs. Increasing max_ptes_none will instead potentially reduce the
539 * free memory in the system during the khugepaged scan.
541 static ssize_t
khugepaged_max_ptes_none_show(struct kobject
*kobj
,
542 struct kobj_attribute
*attr
,
545 return sprintf(buf
, "%u\n", khugepaged_max_ptes_none
);
547 static ssize_t
khugepaged_max_ptes_none_store(struct kobject
*kobj
,
548 struct kobj_attribute
*attr
,
549 const char *buf
, size_t count
)
552 unsigned long max_ptes_none
;
554 err
= kstrtoul(buf
, 10, &max_ptes_none
);
555 if (err
|| max_ptes_none
> HPAGE_PMD_NR
-1)
558 khugepaged_max_ptes_none
= max_ptes_none
;
562 static struct kobj_attribute khugepaged_max_ptes_none_attr
=
563 __ATTR(max_ptes_none
, 0644, khugepaged_max_ptes_none_show
,
564 khugepaged_max_ptes_none_store
);
566 static struct attribute
*khugepaged_attr
[] = {
567 &khugepaged_defrag_attr
.attr
,
568 &khugepaged_max_ptes_none_attr
.attr
,
569 &pages_to_scan_attr
.attr
,
570 &pages_collapsed_attr
.attr
,
571 &full_scans_attr
.attr
,
572 &scan_sleep_millisecs_attr
.attr
,
573 &alloc_sleep_millisecs_attr
.attr
,
577 static struct attribute_group khugepaged_attr_group
= {
578 .attrs
= khugepaged_attr
,
579 .name
= "khugepaged",
582 static int __init
hugepage_init_sysfs(struct kobject
**hugepage_kobj
)
586 *hugepage_kobj
= kobject_create_and_add("transparent_hugepage", mm_kobj
);
587 if (unlikely(!*hugepage_kobj
)) {
588 pr_err("failed to create transparent hugepage kobject\n");
592 err
= sysfs_create_group(*hugepage_kobj
, &hugepage_attr_group
);
594 pr_err("failed to register transparent hugepage group\n");
598 err
= sysfs_create_group(*hugepage_kobj
, &khugepaged_attr_group
);
600 pr_err("failed to register transparent hugepage group\n");
601 goto remove_hp_group
;
607 sysfs_remove_group(*hugepage_kobj
, &hugepage_attr_group
);
609 kobject_put(*hugepage_kobj
);
613 static void __init
hugepage_exit_sysfs(struct kobject
*hugepage_kobj
)
615 sysfs_remove_group(hugepage_kobj
, &khugepaged_attr_group
);
616 sysfs_remove_group(hugepage_kobj
, &hugepage_attr_group
);
617 kobject_put(hugepage_kobj
);
620 static inline int hugepage_init_sysfs(struct kobject
**hugepage_kobj
)
625 static inline void hugepage_exit_sysfs(struct kobject
*hugepage_kobj
)
628 #endif /* CONFIG_SYSFS */
630 static int __init
hugepage_init(void)
633 struct kobject
*hugepage_kobj
;
635 if (!has_transparent_hugepage()) {
636 transparent_hugepage_flags
= 0;
640 err
= hugepage_init_sysfs(&hugepage_kobj
);
644 err
= khugepaged_slab_init();
648 register_shrinker(&huge_zero_page_shrinker
);
651 * By default disable transparent hugepages on smaller systems,
652 * where the extra memory used could hurt more than TLB overhead
653 * is likely to save. The admin can still enable it through /sys.
655 if (totalram_pages
< (512 << (20 - PAGE_SHIFT
)))
656 transparent_hugepage_flags
= 0;
662 hugepage_exit_sysfs(hugepage_kobj
);
665 subsys_initcall(hugepage_init
);
667 static int __init
setup_transparent_hugepage(char *str
)
672 if (!strcmp(str
, "always")) {
673 set_bit(TRANSPARENT_HUGEPAGE_FLAG
,
674 &transparent_hugepage_flags
);
675 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG
,
676 &transparent_hugepage_flags
);
678 } else if (!strcmp(str
, "madvise")) {
679 clear_bit(TRANSPARENT_HUGEPAGE_FLAG
,
680 &transparent_hugepage_flags
);
681 set_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG
,
682 &transparent_hugepage_flags
);
684 } else if (!strcmp(str
, "never")) {
685 clear_bit(TRANSPARENT_HUGEPAGE_FLAG
,
686 &transparent_hugepage_flags
);
687 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG
,
688 &transparent_hugepage_flags
);
693 pr_warn("transparent_hugepage= cannot parse, ignored\n");
696 __setup("transparent_hugepage=", setup_transparent_hugepage
);
698 pmd_t
maybe_pmd_mkwrite(pmd_t pmd
, struct vm_area_struct
*vma
)
700 if (likely(vma
->vm_flags
& VM_WRITE
))
701 pmd
= pmd_mkwrite(pmd
);
705 static inline pmd_t
mk_huge_pmd(struct page
*page
, pgprot_t prot
)
708 entry
= mk_pmd(page
, prot
);
709 entry
= pmd_mkhuge(entry
);
713 static int __do_huge_pmd_anonymous_page(struct mm_struct
*mm
,
714 struct vm_area_struct
*vma
,
715 unsigned long haddr
, pmd_t
*pmd
,
718 struct mem_cgroup
*memcg
;
722 VM_BUG_ON_PAGE(!PageCompound(page
), page
);
724 if (mem_cgroup_try_charge(page
, mm
, GFP_TRANSHUGE
, &memcg
))
727 pgtable
= pte_alloc_one(mm
, haddr
);
728 if (unlikely(!pgtable
)) {
729 mem_cgroup_cancel_charge(page
, memcg
);
733 clear_huge_page(page
, haddr
, HPAGE_PMD_NR
);
735 * The memory barrier inside __SetPageUptodate makes sure that
736 * clear_huge_page writes become visible before the set_pmd_at()
739 __SetPageUptodate(page
);
741 ptl
= pmd_lock(mm
, pmd
);
742 if (unlikely(!pmd_none(*pmd
))) {
744 mem_cgroup_cancel_charge(page
, memcg
);
746 pte_free(mm
, pgtable
);
749 entry
= mk_huge_pmd(page
, vma
->vm_page_prot
);
750 entry
= maybe_pmd_mkwrite(pmd_mkdirty(entry
), vma
);
751 page_add_new_anon_rmap(page
, vma
, haddr
);
752 mem_cgroup_commit_charge(page
, memcg
, false);
753 lru_cache_add_active_or_unevictable(page
, vma
);
754 pgtable_trans_huge_deposit(mm
, pmd
, pgtable
);
755 set_pmd_at(mm
, haddr
, pmd
, entry
);
756 add_mm_counter(mm
, MM_ANONPAGES
, HPAGE_PMD_NR
);
757 atomic_long_inc(&mm
->nr_ptes
);
764 static inline gfp_t
alloc_hugepage_gfpmask(int defrag
, gfp_t extra_gfp
)
766 return (GFP_TRANSHUGE
& ~(defrag
? 0 : __GFP_WAIT
)) | extra_gfp
;
769 static inline struct page
*alloc_hugepage_vma(int defrag
,
770 struct vm_area_struct
*vma
,
771 unsigned long haddr
, int nd
,
774 return alloc_pages_vma(alloc_hugepage_gfpmask(defrag
, extra_gfp
),
775 HPAGE_PMD_ORDER
, vma
, haddr
, nd
);
778 /* Caller must hold page table lock. */
779 static bool set_huge_zero_page(pgtable_t pgtable
, struct mm_struct
*mm
,
780 struct vm_area_struct
*vma
, unsigned long haddr
, pmd_t
*pmd
,
781 struct page
*zero_page
)
786 entry
= mk_pmd(zero_page
, vma
->vm_page_prot
);
787 entry
= pmd_wrprotect(entry
);
788 entry
= pmd_mkhuge(entry
);
789 pgtable_trans_huge_deposit(mm
, pmd
, pgtable
);
790 set_pmd_at(mm
, haddr
, pmd
, entry
);
791 atomic_long_inc(&mm
->nr_ptes
);
795 int do_huge_pmd_anonymous_page(struct mm_struct
*mm
, struct vm_area_struct
*vma
,
796 unsigned long address
, pmd_t
*pmd
,
800 unsigned long haddr
= address
& HPAGE_PMD_MASK
;
802 if (haddr
< vma
->vm_start
|| haddr
+ HPAGE_PMD_SIZE
> vma
->vm_end
)
803 return VM_FAULT_FALLBACK
;
804 if (unlikely(anon_vma_prepare(vma
)))
806 if (unlikely(khugepaged_enter(vma
)))
808 if (!(flags
& FAULT_FLAG_WRITE
) &&
809 transparent_hugepage_use_zero_page()) {
812 struct page
*zero_page
;
814 pgtable
= pte_alloc_one(mm
, haddr
);
815 if (unlikely(!pgtable
))
817 zero_page
= get_huge_zero_page();
818 if (unlikely(!zero_page
)) {
819 pte_free(mm
, pgtable
);
820 count_vm_event(THP_FAULT_FALLBACK
);
821 return VM_FAULT_FALLBACK
;
823 ptl
= pmd_lock(mm
, pmd
);
824 set
= set_huge_zero_page(pgtable
, mm
, vma
, haddr
, pmd
,
828 pte_free(mm
, pgtable
);
829 put_huge_zero_page();
833 page
= alloc_hugepage_vma(transparent_hugepage_defrag(vma
),
834 vma
, haddr
, numa_node_id(), 0);
835 if (unlikely(!page
)) {
836 count_vm_event(THP_FAULT_FALLBACK
);
837 return VM_FAULT_FALLBACK
;
839 if (unlikely(__do_huge_pmd_anonymous_page(mm
, vma
, haddr
, pmd
, page
))) {
841 count_vm_event(THP_FAULT_FALLBACK
);
842 return VM_FAULT_FALLBACK
;
845 count_vm_event(THP_FAULT_ALLOC
);
849 int copy_huge_pmd(struct mm_struct
*dst_mm
, struct mm_struct
*src_mm
,
850 pmd_t
*dst_pmd
, pmd_t
*src_pmd
, unsigned long addr
,
851 struct vm_area_struct
*vma
)
853 spinlock_t
*dst_ptl
, *src_ptl
;
854 struct page
*src_page
;
860 pgtable
= pte_alloc_one(dst_mm
, addr
);
861 if (unlikely(!pgtable
))
864 dst_ptl
= pmd_lock(dst_mm
, dst_pmd
);
865 src_ptl
= pmd_lockptr(src_mm
, src_pmd
);
866 spin_lock_nested(src_ptl
, SINGLE_DEPTH_NESTING
);
870 if (unlikely(!pmd_trans_huge(pmd
))) {
871 pte_free(dst_mm
, pgtable
);
875 * When page table lock is held, the huge zero pmd should not be
876 * under splitting since we don't split the page itself, only pmd to
879 if (is_huge_zero_pmd(pmd
)) {
880 struct page
*zero_page
;
883 * get_huge_zero_page() will never allocate a new page here,
884 * since we already have a zero page to copy. It just takes a
887 zero_page
= get_huge_zero_page();
888 set
= set_huge_zero_page(pgtable
, dst_mm
, vma
, addr
, dst_pmd
,
890 BUG_ON(!set
); /* unexpected !pmd_none(dst_pmd) */
895 if (unlikely(pmd_trans_splitting(pmd
))) {
896 /* split huge page running from under us */
897 spin_unlock(src_ptl
);
898 spin_unlock(dst_ptl
);
899 pte_free(dst_mm
, pgtable
);
901 wait_split_huge_page(vma
->anon_vma
, src_pmd
); /* src_vma */
904 src_page
= pmd_page(pmd
);
905 VM_BUG_ON_PAGE(!PageHead(src_page
), src_page
);
907 page_dup_rmap(src_page
);
908 add_mm_counter(dst_mm
, MM_ANONPAGES
, HPAGE_PMD_NR
);
910 pmdp_set_wrprotect(src_mm
, addr
, src_pmd
);
911 pmd
= pmd_mkold(pmd_wrprotect(pmd
));
912 pgtable_trans_huge_deposit(dst_mm
, dst_pmd
, pgtable
);
913 set_pmd_at(dst_mm
, addr
, dst_pmd
, pmd
);
914 atomic_long_inc(&dst_mm
->nr_ptes
);
918 spin_unlock(src_ptl
);
919 spin_unlock(dst_ptl
);
924 void huge_pmd_set_accessed(struct mm_struct
*mm
,
925 struct vm_area_struct
*vma
,
926 unsigned long address
,
927 pmd_t
*pmd
, pmd_t orig_pmd
,
934 ptl
= pmd_lock(mm
, pmd
);
935 if (unlikely(!pmd_same(*pmd
, orig_pmd
)))
938 entry
= pmd_mkyoung(orig_pmd
);
939 haddr
= address
& HPAGE_PMD_MASK
;
940 if (pmdp_set_access_flags(vma
, haddr
, pmd
, entry
, dirty
))
941 update_mmu_cache_pmd(vma
, address
, pmd
);
948 * Save CONFIG_DEBUG_PAGEALLOC from faulting falsely on tail pages
949 * during copy_user_huge_page()'s copy_page_rep(): in the case when
950 * the source page gets split and a tail freed before copy completes.
951 * Called under pmd_lock of checked pmd, so safe from splitting itself.
953 static void get_user_huge_page(struct page
*page
)
955 if (IS_ENABLED(CONFIG_DEBUG_PAGEALLOC
)) {
956 struct page
*endpage
= page
+ HPAGE_PMD_NR
;
958 atomic_add(HPAGE_PMD_NR
, &page
->_count
);
959 while (++page
< endpage
)
960 get_huge_page_tail(page
);
966 static void put_user_huge_page(struct page
*page
)
968 if (IS_ENABLED(CONFIG_DEBUG_PAGEALLOC
)) {
969 struct page
*endpage
= page
+ HPAGE_PMD_NR
;
971 while (page
< endpage
)
978 static int do_huge_pmd_wp_page_fallback(struct mm_struct
*mm
,
979 struct vm_area_struct
*vma
,
980 unsigned long address
,
981 pmd_t
*pmd
, pmd_t orig_pmd
,
985 struct mem_cgroup
*memcg
;
991 unsigned long mmun_start
; /* For mmu_notifiers */
992 unsigned long mmun_end
; /* For mmu_notifiers */
994 pages
= kmalloc(sizeof(struct page
*) * HPAGE_PMD_NR
,
996 if (unlikely(!pages
)) {
1001 for (i
= 0; i
< HPAGE_PMD_NR
; i
++) {
1002 pages
[i
] = alloc_page_vma_node(GFP_HIGHUSER_MOVABLE
|
1004 vma
, address
, page_to_nid(page
));
1005 if (unlikely(!pages
[i
] ||
1006 mem_cgroup_try_charge(pages
[i
], mm
, GFP_KERNEL
,
1011 memcg
= (void *)page_private(pages
[i
]);
1012 set_page_private(pages
[i
], 0);
1013 mem_cgroup_cancel_charge(pages
[i
], memcg
);
1017 ret
|= VM_FAULT_OOM
;
1020 set_page_private(pages
[i
], (unsigned long)memcg
);
1023 for (i
= 0; i
< HPAGE_PMD_NR
; i
++) {
1024 copy_user_highpage(pages
[i
], page
+ i
,
1025 haddr
+ PAGE_SIZE
* i
, vma
);
1026 __SetPageUptodate(pages
[i
]);
1031 mmun_end
= haddr
+ HPAGE_PMD_SIZE
;
1032 mmu_notifier_invalidate_range_start(mm
, mmun_start
, mmun_end
);
1034 ptl
= pmd_lock(mm
, pmd
);
1035 if (unlikely(!pmd_same(*pmd
, orig_pmd
)))
1036 goto out_free_pages
;
1037 VM_BUG_ON_PAGE(!PageHead(page
), page
);
1039 pmdp_clear_flush(vma
, haddr
, pmd
);
1040 /* leave pmd empty until pte is filled */
1042 pgtable
= pgtable_trans_huge_withdraw(mm
, pmd
);
1043 pmd_populate(mm
, &_pmd
, pgtable
);
1045 for (i
= 0; i
< HPAGE_PMD_NR
; i
++, haddr
+= PAGE_SIZE
) {
1047 entry
= mk_pte(pages
[i
], vma
->vm_page_prot
);
1048 entry
= maybe_mkwrite(pte_mkdirty(entry
), vma
);
1049 memcg
= (void *)page_private(pages
[i
]);
1050 set_page_private(pages
[i
], 0);
1051 page_add_new_anon_rmap(pages
[i
], vma
, haddr
);
1052 mem_cgroup_commit_charge(pages
[i
], memcg
, false);
1053 lru_cache_add_active_or_unevictable(pages
[i
], vma
);
1054 pte
= pte_offset_map(&_pmd
, haddr
);
1055 VM_BUG_ON(!pte_none(*pte
));
1056 set_pte_at(mm
, haddr
, pte
, entry
);
1061 smp_wmb(); /* make pte visible before pmd */
1062 pmd_populate(mm
, pmd
, pgtable
);
1063 page_remove_rmap(page
);
1066 mmu_notifier_invalidate_range_end(mm
, mmun_start
, mmun_end
);
1068 ret
|= VM_FAULT_WRITE
;
1076 mmu_notifier_invalidate_range_end(mm
, mmun_start
, mmun_end
);
1077 for (i
= 0; i
< HPAGE_PMD_NR
; i
++) {
1078 memcg
= (void *)page_private(pages
[i
]);
1079 set_page_private(pages
[i
], 0);
1080 mem_cgroup_cancel_charge(pages
[i
], memcg
);
1087 int do_huge_pmd_wp_page(struct mm_struct
*mm
, struct vm_area_struct
*vma
,
1088 unsigned long address
, pmd_t
*pmd
, pmd_t orig_pmd
)
1092 struct page
*page
= NULL
, *new_page
;
1093 struct mem_cgroup
*memcg
;
1094 unsigned long haddr
;
1095 unsigned long mmun_start
; /* For mmu_notifiers */
1096 unsigned long mmun_end
; /* For mmu_notifiers */
1098 ptl
= pmd_lockptr(mm
, pmd
);
1099 VM_BUG_ON(!vma
->anon_vma
);
1100 haddr
= address
& HPAGE_PMD_MASK
;
1101 if (is_huge_zero_pmd(orig_pmd
))
1104 if (unlikely(!pmd_same(*pmd
, orig_pmd
)))
1107 page
= pmd_page(orig_pmd
);
1108 VM_BUG_ON_PAGE(!PageCompound(page
) || !PageHead(page
), page
);
1109 if (page_mapcount(page
) == 1) {
1111 entry
= pmd_mkyoung(orig_pmd
);
1112 entry
= maybe_pmd_mkwrite(pmd_mkdirty(entry
), vma
);
1113 if (pmdp_set_access_flags(vma
, haddr
, pmd
, entry
, 1))
1114 update_mmu_cache_pmd(vma
, address
, pmd
);
1115 ret
|= VM_FAULT_WRITE
;
1118 get_user_huge_page(page
);
1121 if (transparent_hugepage_enabled(vma
) &&
1122 !transparent_hugepage_debug_cow())
1123 new_page
= alloc_hugepage_vma(transparent_hugepage_defrag(vma
),
1124 vma
, haddr
, numa_node_id(), 0);
1128 if (unlikely(!new_page
)) {
1130 split_huge_page_pmd(vma
, address
, pmd
);
1131 ret
|= VM_FAULT_FALLBACK
;
1133 ret
= do_huge_pmd_wp_page_fallback(mm
, vma
, address
,
1134 pmd
, orig_pmd
, page
, haddr
);
1135 if (ret
& VM_FAULT_OOM
) {
1136 split_huge_page(page
);
1137 ret
|= VM_FAULT_FALLBACK
;
1139 put_user_huge_page(page
);
1141 count_vm_event(THP_FAULT_FALLBACK
);
1145 if (unlikely(mem_cgroup_try_charge(new_page
, mm
,
1146 GFP_TRANSHUGE
, &memcg
))) {
1149 split_huge_page(page
);
1150 put_user_huge_page(page
);
1152 split_huge_page_pmd(vma
, address
, pmd
);
1153 ret
|= VM_FAULT_FALLBACK
;
1154 count_vm_event(THP_FAULT_FALLBACK
);
1158 count_vm_event(THP_FAULT_ALLOC
);
1161 clear_huge_page(new_page
, haddr
, HPAGE_PMD_NR
);
1163 copy_user_huge_page(new_page
, page
, haddr
, vma
, HPAGE_PMD_NR
);
1164 __SetPageUptodate(new_page
);
1167 mmun_end
= haddr
+ HPAGE_PMD_SIZE
;
1168 mmu_notifier_invalidate_range_start(mm
, mmun_start
, mmun_end
);
1172 put_user_huge_page(page
);
1173 if (unlikely(!pmd_same(*pmd
, orig_pmd
))) {
1175 mem_cgroup_cancel_charge(new_page
, memcg
);
1180 entry
= mk_huge_pmd(new_page
, vma
->vm_page_prot
);
1181 entry
= maybe_pmd_mkwrite(pmd_mkdirty(entry
), vma
);
1182 pmdp_clear_flush(vma
, haddr
, pmd
);
1183 page_add_new_anon_rmap(new_page
, vma
, haddr
);
1184 mem_cgroup_commit_charge(new_page
, memcg
, false);
1185 lru_cache_add_active_or_unevictable(new_page
, vma
);
1186 set_pmd_at(mm
, haddr
, pmd
, entry
);
1187 update_mmu_cache_pmd(vma
, address
, pmd
);
1189 add_mm_counter(mm
, MM_ANONPAGES
, HPAGE_PMD_NR
);
1190 put_huge_zero_page();
1192 VM_BUG_ON_PAGE(!PageHead(page
), page
);
1193 page_remove_rmap(page
);
1196 ret
|= VM_FAULT_WRITE
;
1200 mmu_notifier_invalidate_range_end(mm
, mmun_start
, mmun_end
);
1208 struct page
*follow_trans_huge_pmd(struct vm_area_struct
*vma
,
1213 struct mm_struct
*mm
= vma
->vm_mm
;
1214 struct page
*page
= NULL
;
1216 assert_spin_locked(pmd_lockptr(mm
, pmd
));
1218 if (flags
& FOLL_WRITE
&& !pmd_write(*pmd
))
1221 /* Avoid dumping huge zero page */
1222 if ((flags
& FOLL_DUMP
) && is_huge_zero_pmd(*pmd
))
1223 return ERR_PTR(-EFAULT
);
1225 /* Full NUMA hinting faults to serialise migration in fault paths */
1226 if ((flags
& FOLL_NUMA
) && pmd_numa(*pmd
))
1229 page
= pmd_page(*pmd
);
1230 VM_BUG_ON_PAGE(!PageHead(page
), page
);
1231 if (flags
& FOLL_TOUCH
) {
1234 * We should set the dirty bit only for FOLL_WRITE but
1235 * for now the dirty bit in the pmd is meaningless.
1236 * And if the dirty bit will become meaningful and
1237 * we'll only set it with FOLL_WRITE, an atomic
1238 * set_bit will be required on the pmd to set the
1239 * young bit, instead of the current set_pmd_at.
1241 _pmd
= pmd_mkyoung(pmd_mkdirty(*pmd
));
1242 if (pmdp_set_access_flags(vma
, addr
& HPAGE_PMD_MASK
,
1244 update_mmu_cache_pmd(vma
, addr
, pmd
);
1246 if ((flags
& FOLL_MLOCK
) && (vma
->vm_flags
& VM_LOCKED
)) {
1247 if (page
->mapping
&& trylock_page(page
)) {
1250 mlock_vma_page(page
);
1254 page
+= (addr
& ~HPAGE_PMD_MASK
) >> PAGE_SHIFT
;
1255 VM_BUG_ON_PAGE(!PageCompound(page
), page
);
1256 if (flags
& FOLL_GET
)
1257 get_page_foll(page
);
1263 /* NUMA hinting page fault entry point for trans huge pmds */
1264 int do_huge_pmd_numa_page(struct mm_struct
*mm
, struct vm_area_struct
*vma
,
1265 unsigned long addr
, pmd_t pmd
, pmd_t
*pmdp
)
1268 struct anon_vma
*anon_vma
= NULL
;
1270 unsigned long haddr
= addr
& HPAGE_PMD_MASK
;
1271 int page_nid
= -1, this_nid
= numa_node_id();
1272 int target_nid
, last_cpupid
= -1;
1274 bool migrated
= false;
1277 ptl
= pmd_lock(mm
, pmdp
);
1278 if (unlikely(!pmd_same(pmd
, *pmdp
)))
1282 * If there are potential migrations, wait for completion and retry
1283 * without disrupting NUMA hinting information. Do not relock and
1284 * check_same as the page may no longer be mapped.
1286 if (unlikely(pmd_trans_migrating(*pmdp
))) {
1288 wait_migrate_huge_page(vma
->anon_vma
, pmdp
);
1292 page
= pmd_page(pmd
);
1293 BUG_ON(is_huge_zero_page(page
));
1294 page_nid
= page_to_nid(page
);
1295 last_cpupid
= page_cpupid_last(page
);
1296 count_vm_numa_event(NUMA_HINT_FAULTS
);
1297 if (page_nid
== this_nid
) {
1298 count_vm_numa_event(NUMA_HINT_FAULTS_LOCAL
);
1299 flags
|= TNF_FAULT_LOCAL
;
1303 * Avoid grouping on DSO/COW pages in specific and RO pages
1304 * in general, RO pages shouldn't hurt as much anyway since
1305 * they can be in shared cache state.
1307 if (!pmd_write(pmd
))
1308 flags
|= TNF_NO_GROUP
;
1311 * Acquire the page lock to serialise THP migrations but avoid dropping
1312 * page_table_lock if at all possible
1314 page_locked
= trylock_page(page
);
1315 target_nid
= mpol_misplaced(page
, vma
, haddr
);
1316 if (target_nid
== -1) {
1317 /* If the page was locked, there are no parallel migrations */
1322 /* Migration could have started since the pmd_trans_migrating check */
1325 wait_on_page_locked(page
);
1331 * Page is misplaced. Page lock serialises migrations. Acquire anon_vma
1332 * to serialises splits
1336 anon_vma
= page_lock_anon_vma_read(page
);
1338 /* Confirm the PMD did not change while page_table_lock was released */
1340 if (unlikely(!pmd_same(pmd
, *pmdp
))) {
1347 /* Bail if we fail to protect against THP splits for any reason */
1348 if (unlikely(!anon_vma
)) {
1355 * Migrate the THP to the requested node, returns with page unlocked
1356 * and pmd_numa cleared.
1359 migrated
= migrate_misplaced_transhuge_page(mm
, vma
,
1360 pmdp
, pmd
, addr
, page
, target_nid
);
1362 flags
|= TNF_MIGRATED
;
1363 page_nid
= target_nid
;
1368 BUG_ON(!PageLocked(page
));
1369 pmd
= pmd_mknonnuma(pmd
);
1370 set_pmd_at(mm
, haddr
, pmdp
, pmd
);
1371 VM_BUG_ON(pmd_numa(*pmdp
));
1372 update_mmu_cache_pmd(vma
, addr
, pmdp
);
1379 page_unlock_anon_vma_read(anon_vma
);
1382 task_numa_fault(last_cpupid
, page_nid
, HPAGE_PMD_NR
, flags
);
1387 int zap_huge_pmd(struct mmu_gather
*tlb
, struct vm_area_struct
*vma
,
1388 pmd_t
*pmd
, unsigned long addr
)
1393 if (__pmd_trans_huge_lock(pmd
, vma
, &ptl
) == 1) {
1398 * For architectures like ppc64 we look at deposited pgtable
1399 * when calling pmdp_get_and_clear. So do the
1400 * pgtable_trans_huge_withdraw after finishing pmdp related
1403 orig_pmd
= pmdp_get_and_clear(tlb
->mm
, addr
, pmd
);
1404 tlb_remove_pmd_tlb_entry(tlb
, pmd
, addr
);
1405 pgtable
= pgtable_trans_huge_withdraw(tlb
->mm
, pmd
);
1406 if (is_huge_zero_pmd(orig_pmd
)) {
1407 atomic_long_dec(&tlb
->mm
->nr_ptes
);
1409 put_huge_zero_page();
1411 page
= pmd_page(orig_pmd
);
1412 page_remove_rmap(page
);
1413 VM_BUG_ON_PAGE(page_mapcount(page
) < 0, page
);
1414 add_mm_counter(tlb
->mm
, MM_ANONPAGES
, -HPAGE_PMD_NR
);
1415 VM_BUG_ON_PAGE(!PageHead(page
), page
);
1416 atomic_long_dec(&tlb
->mm
->nr_ptes
);
1418 tlb_remove_page(tlb
, page
);
1420 pte_free(tlb
->mm
, pgtable
);
1426 int mincore_huge_pmd(struct vm_area_struct
*vma
, pmd_t
*pmd
,
1427 unsigned long addr
, unsigned long end
,
1433 if (__pmd_trans_huge_lock(pmd
, vma
, &ptl
) == 1) {
1435 * All logical pages in the range are present
1436 * if backed by a huge page.
1439 memset(vec
, 1, (end
- addr
) >> PAGE_SHIFT
);
1446 int move_huge_pmd(struct vm_area_struct
*vma
, struct vm_area_struct
*new_vma
,
1447 unsigned long old_addr
,
1448 unsigned long new_addr
, unsigned long old_end
,
1449 pmd_t
*old_pmd
, pmd_t
*new_pmd
)
1451 spinlock_t
*old_ptl
, *new_ptl
;
1455 struct mm_struct
*mm
= vma
->vm_mm
;
1457 if ((old_addr
& ~HPAGE_PMD_MASK
) ||
1458 (new_addr
& ~HPAGE_PMD_MASK
) ||
1459 old_end
- old_addr
< HPAGE_PMD_SIZE
||
1460 (new_vma
->vm_flags
& VM_NOHUGEPAGE
))
1464 * The destination pmd shouldn't be established, free_pgtables()
1465 * should have release it.
1467 if (WARN_ON(!pmd_none(*new_pmd
))) {
1468 VM_BUG_ON(pmd_trans_huge(*new_pmd
));
1473 * We don't have to worry about the ordering of src and dst
1474 * ptlocks because exclusive mmap_sem prevents deadlock.
1476 ret
= __pmd_trans_huge_lock(old_pmd
, vma
, &old_ptl
);
1478 new_ptl
= pmd_lockptr(mm
, new_pmd
);
1479 if (new_ptl
!= old_ptl
)
1480 spin_lock_nested(new_ptl
, SINGLE_DEPTH_NESTING
);
1481 pmd
= pmdp_get_and_clear(mm
, old_addr
, old_pmd
);
1482 VM_BUG_ON(!pmd_none(*new_pmd
));
1484 if (pmd_move_must_withdraw(new_ptl
, old_ptl
)) {
1486 pgtable
= pgtable_trans_huge_withdraw(mm
, old_pmd
);
1487 pgtable_trans_huge_deposit(mm
, new_pmd
, pgtable
);
1489 set_pmd_at(mm
, new_addr
, new_pmd
, pmd_mksoft_dirty(pmd
));
1490 if (new_ptl
!= old_ptl
)
1491 spin_unlock(new_ptl
);
1492 spin_unlock(old_ptl
);
1500 * - 0 if PMD could not be locked
1501 * - 1 if PMD was locked but protections unchange and TLB flush unnecessary
1502 * - HPAGE_PMD_NR is protections changed and TLB flush necessary
1504 int change_huge_pmd(struct vm_area_struct
*vma
, pmd_t
*pmd
,
1505 unsigned long addr
, pgprot_t newprot
, int prot_numa
)
1507 struct mm_struct
*mm
= vma
->vm_mm
;
1511 if (__pmd_trans_huge_lock(pmd
, vma
, &ptl
) == 1) {
1515 entry
= pmdp_get_and_clear(mm
, addr
, pmd
);
1516 if (pmd_numa(entry
))
1517 entry
= pmd_mknonnuma(entry
);
1518 entry
= pmd_modify(entry
, newprot
);
1520 set_pmd_at(mm
, addr
, pmd
, entry
);
1521 BUG_ON(pmd_write(entry
));
1523 struct page
*page
= pmd_page(*pmd
);
1526 * Do not trap faults against the zero page. The
1527 * read-only data is likely to be read-cached on the
1528 * local CPU cache and it is less useful to know about
1529 * local vs remote hits on the zero page.
1531 if (!is_huge_zero_page(page
) &&
1533 pmdp_set_numa(mm
, addr
, pmd
);
1544 * Returns 1 if a given pmd maps a stable (not under splitting) thp.
1545 * Returns -1 if it maps a thp under splitting. Returns 0 otherwise.
1547 * Note that if it returns 1, this routine returns without unlocking page
1548 * table locks. So callers must unlock them.
1550 int __pmd_trans_huge_lock(pmd_t
*pmd
, struct vm_area_struct
*vma
,
1553 *ptl
= pmd_lock(vma
->vm_mm
, pmd
);
1554 if (likely(pmd_trans_huge(*pmd
))) {
1555 if (unlikely(pmd_trans_splitting(*pmd
))) {
1557 wait_split_huge_page(vma
->anon_vma
, pmd
);
1560 /* Thp mapped by 'pmd' is stable, so we can
1561 * handle it as it is. */
1570 * This function returns whether a given @page is mapped onto the @address
1571 * in the virtual space of @mm.
1573 * When it's true, this function returns *pmd with holding the page table lock
1574 * and passing it back to the caller via @ptl.
1575 * If it's false, returns NULL without holding the page table lock.
1577 pmd_t
*page_check_address_pmd(struct page
*page
,
1578 struct mm_struct
*mm
,
1579 unsigned long address
,
1580 enum page_check_address_pmd_flag flag
,
1587 if (address
& ~HPAGE_PMD_MASK
)
1590 pgd
= pgd_offset(mm
, address
);
1591 if (!pgd_present(*pgd
))
1593 pud
= pud_offset(pgd
, address
);
1594 if (!pud_present(*pud
))
1596 pmd
= pmd_offset(pud
, address
);
1598 *ptl
= pmd_lock(mm
, pmd
);
1599 if (!pmd_present(*pmd
))
1601 if (pmd_page(*pmd
) != page
)
1604 * split_vma() may create temporary aliased mappings. There is
1605 * no risk as long as all huge pmd are found and have their
1606 * splitting bit set before __split_huge_page_refcount
1607 * runs. Finding the same huge pmd more than once during the
1608 * same rmap walk is not a problem.
1610 if (flag
== PAGE_CHECK_ADDRESS_PMD_NOTSPLITTING_FLAG
&&
1611 pmd_trans_splitting(*pmd
))
1613 if (pmd_trans_huge(*pmd
)) {
1614 VM_BUG_ON(flag
== PAGE_CHECK_ADDRESS_PMD_SPLITTING_FLAG
&&
1615 !pmd_trans_splitting(*pmd
));
1623 static int __split_huge_page_splitting(struct page
*page
,
1624 struct vm_area_struct
*vma
,
1625 unsigned long address
)
1627 struct mm_struct
*mm
= vma
->vm_mm
;
1631 /* For mmu_notifiers */
1632 const unsigned long mmun_start
= address
;
1633 const unsigned long mmun_end
= address
+ HPAGE_PMD_SIZE
;
1635 mmu_notifier_invalidate_range_start(mm
, mmun_start
, mmun_end
);
1636 pmd
= page_check_address_pmd(page
, mm
, address
,
1637 PAGE_CHECK_ADDRESS_PMD_NOTSPLITTING_FLAG
, &ptl
);
1640 * We can't temporarily set the pmd to null in order
1641 * to split it, the pmd must remain marked huge at all
1642 * times or the VM won't take the pmd_trans_huge paths
1643 * and it won't wait on the anon_vma->root->rwsem to
1644 * serialize against split_huge_page*.
1646 pmdp_splitting_flush(vma
, address
, pmd
);
1650 mmu_notifier_invalidate_range_end(mm
, mmun_start
, mmun_end
);
1655 static void __split_huge_page_refcount(struct page
*page
,
1656 struct list_head
*list
)
1659 struct zone
*zone
= page_zone(page
);
1660 struct lruvec
*lruvec
;
1663 /* prevent PageLRU to go away from under us, and freeze lru stats */
1664 spin_lock_irq(&zone
->lru_lock
);
1665 lruvec
= mem_cgroup_page_lruvec(page
, zone
);
1667 compound_lock(page
);
1668 /* complete memcg works before add pages to LRU */
1669 mem_cgroup_split_huge_fixup(page
);
1671 for (i
= HPAGE_PMD_NR
- 1; i
>= 1; i
--) {
1672 struct page
*page_tail
= page
+ i
;
1674 /* tail_page->_mapcount cannot change */
1675 BUG_ON(page_mapcount(page_tail
) < 0);
1676 tail_count
+= page_mapcount(page_tail
);
1677 /* check for overflow */
1678 BUG_ON(tail_count
< 0);
1679 BUG_ON(atomic_read(&page_tail
->_count
) != 0);
1681 * tail_page->_count is zero and not changing from
1682 * under us. But get_page_unless_zero() may be running
1683 * from under us on the tail_page. If we used
1684 * atomic_set() below instead of atomic_add(), we
1685 * would then run atomic_set() concurrently with
1686 * get_page_unless_zero(), and atomic_set() is
1687 * implemented in C not using locked ops. spin_unlock
1688 * on x86 sometime uses locked ops because of PPro
1689 * errata 66, 92, so unless somebody can guarantee
1690 * atomic_set() here would be safe on all archs (and
1691 * not only on x86), it's safer to use atomic_add().
1693 atomic_add(page_mapcount(page
) + page_mapcount(page_tail
) + 1,
1694 &page_tail
->_count
);
1696 /* after clearing PageTail the gup refcount can be released */
1697 smp_mb__after_atomic();
1700 * retain hwpoison flag of the poisoned tail page:
1701 * fix for the unsuitable process killed on Guest Machine(KVM)
1702 * by the memory-failure.
1704 page_tail
->flags
&= ~PAGE_FLAGS_CHECK_AT_PREP
| __PG_HWPOISON
;
1705 page_tail
->flags
|= (page
->flags
&
1706 ((1L << PG_referenced
) |
1707 (1L << PG_swapbacked
) |
1708 (1L << PG_mlocked
) |
1709 (1L << PG_uptodate
) |
1711 (1L << PG_unevictable
)));
1712 page_tail
->flags
|= (1L << PG_dirty
);
1714 /* clear PageTail before overwriting first_page */
1718 * __split_huge_page_splitting() already set the
1719 * splitting bit in all pmd that could map this
1720 * hugepage, that will ensure no CPU can alter the
1721 * mapcount on the head page. The mapcount is only
1722 * accounted in the head page and it has to be
1723 * transferred to all tail pages in the below code. So
1724 * for this code to be safe, the split the mapcount
1725 * can't change. But that doesn't mean userland can't
1726 * keep changing and reading the page contents while
1727 * we transfer the mapcount, so the pmd splitting
1728 * status is achieved setting a reserved bit in the
1729 * pmd, not by clearing the present bit.
1731 page_tail
->_mapcount
= page
->_mapcount
;
1733 BUG_ON(page_tail
->mapping
);
1734 page_tail
->mapping
= page
->mapping
;
1736 page_tail
->index
= page
->index
+ i
;
1737 page_cpupid_xchg_last(page_tail
, page_cpupid_last(page
));
1739 BUG_ON(!PageAnon(page_tail
));
1740 BUG_ON(!PageUptodate(page_tail
));
1741 BUG_ON(!PageDirty(page_tail
));
1742 BUG_ON(!PageSwapBacked(page_tail
));
1744 lru_add_page_tail(page
, page_tail
, lruvec
, list
);
1746 atomic_sub(tail_count
, &page
->_count
);
1747 BUG_ON(atomic_read(&page
->_count
) <= 0);
1749 __mod_zone_page_state(zone
, NR_ANON_TRANSPARENT_HUGEPAGES
, -1);
1751 ClearPageCompound(page
);
1752 compound_unlock(page
);
1753 spin_unlock_irq(&zone
->lru_lock
);
1755 for (i
= 1; i
< HPAGE_PMD_NR
; i
++) {
1756 struct page
*page_tail
= page
+ i
;
1757 BUG_ON(page_count(page_tail
) <= 0);
1759 * Tail pages may be freed if there wasn't any mapping
1760 * like if add_to_swap() is running on a lru page that
1761 * had its mapping zapped. And freeing these pages
1762 * requires taking the lru_lock so we do the put_page
1763 * of the tail pages after the split is complete.
1765 put_page(page_tail
);
1769 * Only the head page (now become a regular page) is required
1770 * to be pinned by the caller.
1772 BUG_ON(page_count(page
) <= 0);
1775 static int __split_huge_page_map(struct page
*page
,
1776 struct vm_area_struct
*vma
,
1777 unsigned long address
)
1779 struct mm_struct
*mm
= vma
->vm_mm
;
1784 unsigned long haddr
;
1786 pmd
= page_check_address_pmd(page
, mm
, address
,
1787 PAGE_CHECK_ADDRESS_PMD_SPLITTING_FLAG
, &ptl
);
1789 pgtable
= pgtable_trans_huge_withdraw(mm
, pmd
);
1790 pmd_populate(mm
, &_pmd
, pgtable
);
1791 if (pmd_write(*pmd
))
1792 BUG_ON(page_mapcount(page
) != 1);
1795 for (i
= 0; i
< HPAGE_PMD_NR
; i
++, haddr
+= PAGE_SIZE
) {
1797 BUG_ON(PageCompound(page
+i
));
1798 entry
= mk_pte(page
+ i
, vma
->vm_page_prot
);
1799 entry
= maybe_mkwrite(pte_mkdirty(entry
), vma
);
1800 if (!pmd_write(*pmd
))
1801 entry
= pte_wrprotect(entry
);
1802 if (!pmd_young(*pmd
))
1803 entry
= pte_mkold(entry
);
1805 entry
= pte_mknuma(entry
);
1806 pte
= pte_offset_map(&_pmd
, haddr
);
1807 BUG_ON(!pte_none(*pte
));
1808 set_pte_at(mm
, haddr
, pte
, entry
);
1812 smp_wmb(); /* make pte visible before pmd */
1814 * Up to this point the pmd is present and huge and
1815 * userland has the whole access to the hugepage
1816 * during the split (which happens in place). If we
1817 * overwrite the pmd with the not-huge version
1818 * pointing to the pte here (which of course we could
1819 * if all CPUs were bug free), userland could trigger
1820 * a small page size TLB miss on the small sized TLB
1821 * while the hugepage TLB entry is still established
1822 * in the huge TLB. Some CPU doesn't like that. See
1823 * http://support.amd.com/us/Processor_TechDocs/41322.pdf,
1824 * Erratum 383 on page 93. Intel should be safe but is
1825 * also warns that it's only safe if the permission
1826 * and cache attributes of the two entries loaded in
1827 * the two TLB is identical (which should be the case
1828 * here). But it is generally safer to never allow
1829 * small and huge TLB entries for the same virtual
1830 * address to be loaded simultaneously. So instead of
1831 * doing "pmd_populate(); flush_tlb_range();" we first
1832 * mark the current pmd notpresent (atomically because
1833 * here the pmd_trans_huge and pmd_trans_splitting
1834 * must remain set at all times on the pmd until the
1835 * split is complete for this pmd), then we flush the
1836 * SMP TLB and finally we write the non-huge version
1837 * of the pmd entry with pmd_populate.
1839 pmdp_invalidate(vma
, address
, pmd
);
1840 pmd_populate(mm
, pmd
, pgtable
);
1848 /* must be called with anon_vma->root->rwsem held */
1849 static void __split_huge_page(struct page
*page
,
1850 struct anon_vma
*anon_vma
,
1851 struct list_head
*list
)
1853 int mapcount
, mapcount2
;
1854 pgoff_t pgoff
= page
->index
<< (PAGE_CACHE_SHIFT
- PAGE_SHIFT
);
1855 struct anon_vma_chain
*avc
;
1857 BUG_ON(!PageHead(page
));
1858 BUG_ON(PageTail(page
));
1861 anon_vma_interval_tree_foreach(avc
, &anon_vma
->rb_root
, pgoff
, pgoff
) {
1862 struct vm_area_struct
*vma
= avc
->vma
;
1863 unsigned long addr
= vma_address(page
, vma
);
1864 BUG_ON(is_vma_temporary_stack(vma
));
1865 mapcount
+= __split_huge_page_splitting(page
, vma
, addr
);
1868 * It is critical that new vmas are added to the tail of the
1869 * anon_vma list. This guarantes that if copy_huge_pmd() runs
1870 * and establishes a child pmd before
1871 * __split_huge_page_splitting() freezes the parent pmd (so if
1872 * we fail to prevent copy_huge_pmd() from running until the
1873 * whole __split_huge_page() is complete), we will still see
1874 * the newly established pmd of the child later during the
1875 * walk, to be able to set it as pmd_trans_splitting too.
1877 if (mapcount
!= page_mapcount(page
)) {
1878 pr_err("mapcount %d page_mapcount %d\n",
1879 mapcount
, page_mapcount(page
));
1883 __split_huge_page_refcount(page
, list
);
1886 anon_vma_interval_tree_foreach(avc
, &anon_vma
->rb_root
, pgoff
, pgoff
) {
1887 struct vm_area_struct
*vma
= avc
->vma
;
1888 unsigned long addr
= vma_address(page
, vma
);
1889 BUG_ON(is_vma_temporary_stack(vma
));
1890 mapcount2
+= __split_huge_page_map(page
, vma
, addr
);
1892 if (mapcount
!= mapcount2
) {
1893 pr_err("mapcount %d mapcount2 %d page_mapcount %d\n",
1894 mapcount
, mapcount2
, page_mapcount(page
));
1900 * Split a hugepage into normal pages. This doesn't change the position of head
1901 * page. If @list is null, tail pages will be added to LRU list, otherwise, to
1902 * @list. Both head page and tail pages will inherit mapping, flags, and so on
1903 * from the hugepage.
1904 * Return 0 if the hugepage is split successfully otherwise return 1.
1906 int split_huge_page_to_list(struct page
*page
, struct list_head
*list
)
1908 struct anon_vma
*anon_vma
;
1911 BUG_ON(is_huge_zero_page(page
));
1912 BUG_ON(!PageAnon(page
));
1915 * The caller does not necessarily hold an mmap_sem that would prevent
1916 * the anon_vma disappearing so we first we take a reference to it
1917 * and then lock the anon_vma for write. This is similar to
1918 * page_lock_anon_vma_read except the write lock is taken to serialise
1919 * against parallel split or collapse operations.
1921 anon_vma
= page_get_anon_vma(page
);
1924 anon_vma_lock_write(anon_vma
);
1927 if (!PageCompound(page
))
1930 BUG_ON(!PageSwapBacked(page
));
1931 __split_huge_page(page
, anon_vma
, list
);
1932 count_vm_event(THP_SPLIT
);
1934 BUG_ON(PageCompound(page
));
1936 anon_vma_unlock_write(anon_vma
);
1937 put_anon_vma(anon_vma
);
1942 #define VM_NO_THP (VM_SPECIAL | VM_HUGETLB | VM_SHARED | VM_MAYSHARE)
1944 int hugepage_madvise(struct vm_area_struct
*vma
,
1945 unsigned long *vm_flags
, int advice
)
1951 * qemu blindly sets MADV_HUGEPAGE on all allocations, but s390
1952 * can't handle this properly after s390_enable_sie, so we simply
1953 * ignore the madvise to prevent qemu from causing a SIGSEGV.
1955 if (mm_has_pgste(vma
->vm_mm
))
1959 * Be somewhat over-protective like KSM for now!
1961 if (*vm_flags
& (VM_HUGEPAGE
| VM_NO_THP
))
1963 *vm_flags
&= ~VM_NOHUGEPAGE
;
1964 *vm_flags
|= VM_HUGEPAGE
;
1966 * If the vma become good for khugepaged to scan,
1967 * register it here without waiting a page fault that
1968 * may not happen any time soon.
1970 if (unlikely(khugepaged_enter_vma_merge(vma
)))
1973 case MADV_NOHUGEPAGE
:
1975 * Be somewhat over-protective like KSM for now!
1977 if (*vm_flags
& (VM_NOHUGEPAGE
| VM_NO_THP
))
1979 *vm_flags
&= ~VM_HUGEPAGE
;
1980 *vm_flags
|= VM_NOHUGEPAGE
;
1982 * Setting VM_NOHUGEPAGE will prevent khugepaged from scanning
1983 * this vma even if we leave the mm registered in khugepaged if
1984 * it got registered before VM_NOHUGEPAGE was set.
1992 static int __init
khugepaged_slab_init(void)
1994 mm_slot_cache
= kmem_cache_create("khugepaged_mm_slot",
1995 sizeof(struct mm_slot
),
1996 __alignof__(struct mm_slot
), 0, NULL
);
2003 static inline struct mm_slot
*alloc_mm_slot(void)
2005 if (!mm_slot_cache
) /* initialization failed */
2007 return kmem_cache_zalloc(mm_slot_cache
, GFP_KERNEL
);
2010 static inline void free_mm_slot(struct mm_slot
*mm_slot
)
2012 kmem_cache_free(mm_slot_cache
, mm_slot
);
2015 static struct mm_slot
*get_mm_slot(struct mm_struct
*mm
)
2017 struct mm_slot
*mm_slot
;
2019 hash_for_each_possible(mm_slots_hash
, mm_slot
, hash
, (unsigned long)mm
)
2020 if (mm
== mm_slot
->mm
)
2026 static void insert_to_mm_slots_hash(struct mm_struct
*mm
,
2027 struct mm_slot
*mm_slot
)
2030 hash_add(mm_slots_hash
, &mm_slot
->hash
, (long)mm
);
2033 static inline int khugepaged_test_exit(struct mm_struct
*mm
)
2035 return atomic_read(&mm
->mm_users
) == 0;
2038 int __khugepaged_enter(struct mm_struct
*mm
)
2040 struct mm_slot
*mm_slot
;
2043 mm_slot
= alloc_mm_slot();
2047 /* __khugepaged_exit() must not run from under us */
2048 VM_BUG_ON(khugepaged_test_exit(mm
));
2049 if (unlikely(test_and_set_bit(MMF_VM_HUGEPAGE
, &mm
->flags
))) {
2050 free_mm_slot(mm_slot
);
2054 spin_lock(&khugepaged_mm_lock
);
2055 insert_to_mm_slots_hash(mm
, mm_slot
);
2057 * Insert just behind the scanning cursor, to let the area settle
2060 wakeup
= list_empty(&khugepaged_scan
.mm_head
);
2061 list_add_tail(&mm_slot
->mm_node
, &khugepaged_scan
.mm_head
);
2062 spin_unlock(&khugepaged_mm_lock
);
2064 atomic_inc(&mm
->mm_count
);
2066 wake_up_interruptible(&khugepaged_wait
);
2071 int khugepaged_enter_vma_merge(struct vm_area_struct
*vma
)
2073 unsigned long hstart
, hend
;
2076 * Not yet faulted in so we will register later in the
2077 * page fault if needed.
2081 /* khugepaged not yet working on file or special mappings */
2083 VM_BUG_ON(vma
->vm_flags
& VM_NO_THP
);
2084 hstart
= (vma
->vm_start
+ ~HPAGE_PMD_MASK
) & HPAGE_PMD_MASK
;
2085 hend
= vma
->vm_end
& HPAGE_PMD_MASK
;
2087 return khugepaged_enter(vma
);
2091 void __khugepaged_exit(struct mm_struct
*mm
)
2093 struct mm_slot
*mm_slot
;
2096 spin_lock(&khugepaged_mm_lock
);
2097 mm_slot
= get_mm_slot(mm
);
2098 if (mm_slot
&& khugepaged_scan
.mm_slot
!= mm_slot
) {
2099 hash_del(&mm_slot
->hash
);
2100 list_del(&mm_slot
->mm_node
);
2103 spin_unlock(&khugepaged_mm_lock
);
2106 clear_bit(MMF_VM_HUGEPAGE
, &mm
->flags
);
2107 free_mm_slot(mm_slot
);
2109 } else if (mm_slot
) {
2111 * This is required to serialize against
2112 * khugepaged_test_exit() (which is guaranteed to run
2113 * under mmap sem read mode). Stop here (after we
2114 * return all pagetables will be destroyed) until
2115 * khugepaged has finished working on the pagetables
2116 * under the mmap_sem.
2118 down_write(&mm
->mmap_sem
);
2119 up_write(&mm
->mmap_sem
);
2123 static void release_pte_page(struct page
*page
)
2125 /* 0 stands for page_is_file_cache(page) == false */
2126 dec_zone_page_state(page
, NR_ISOLATED_ANON
+ 0);
2128 putback_lru_page(page
);
2131 static void release_pte_pages(pte_t
*pte
, pte_t
*_pte
)
2133 while (--_pte
>= pte
) {
2134 pte_t pteval
= *_pte
;
2135 if (!pte_none(pteval
))
2136 release_pte_page(pte_page(pteval
));
2140 static int __collapse_huge_page_isolate(struct vm_area_struct
*vma
,
2141 unsigned long address
,
2146 int referenced
= 0, none
= 0;
2147 for (_pte
= pte
; _pte
< pte
+HPAGE_PMD_NR
;
2148 _pte
++, address
+= PAGE_SIZE
) {
2149 pte_t pteval
= *_pte
;
2150 if (pte_none(pteval
)) {
2151 if (++none
<= khugepaged_max_ptes_none
)
2156 if (!pte_present(pteval
) || !pte_write(pteval
))
2158 page
= vm_normal_page(vma
, address
, pteval
);
2159 if (unlikely(!page
))
2162 VM_BUG_ON_PAGE(PageCompound(page
), page
);
2163 VM_BUG_ON_PAGE(!PageAnon(page
), page
);
2164 VM_BUG_ON_PAGE(!PageSwapBacked(page
), page
);
2166 /* cannot use mapcount: can't collapse if there's a gup pin */
2167 if (page_count(page
) != 1)
2170 * We can do it before isolate_lru_page because the
2171 * page can't be freed from under us. NOTE: PG_lock
2172 * is needed to serialize against split_huge_page
2173 * when invoked from the VM.
2175 if (!trylock_page(page
))
2178 * Isolate the page to avoid collapsing an hugepage
2179 * currently in use by the VM.
2181 if (isolate_lru_page(page
)) {
2185 /* 0 stands for page_is_file_cache(page) == false */
2186 inc_zone_page_state(page
, NR_ISOLATED_ANON
+ 0);
2187 VM_BUG_ON_PAGE(!PageLocked(page
), page
);
2188 VM_BUG_ON_PAGE(PageLRU(page
), page
);
2190 /* If there is no mapped pte young don't collapse the page */
2191 if (pte_young(pteval
) || PageReferenced(page
) ||
2192 mmu_notifier_test_young(vma
->vm_mm
, address
))
2195 if (likely(referenced
))
2198 release_pte_pages(pte
, _pte
);
2202 static void __collapse_huge_page_copy(pte_t
*pte
, struct page
*page
,
2203 struct vm_area_struct
*vma
,
2204 unsigned long address
,
2208 for (_pte
= pte
; _pte
< pte
+HPAGE_PMD_NR
; _pte
++) {
2209 pte_t pteval
= *_pte
;
2210 struct page
*src_page
;
2212 if (pte_none(pteval
)) {
2213 clear_user_highpage(page
, address
);
2214 add_mm_counter(vma
->vm_mm
, MM_ANONPAGES
, 1);
2216 src_page
= pte_page(pteval
);
2217 copy_user_highpage(page
, src_page
, address
, vma
);
2218 VM_BUG_ON_PAGE(page_mapcount(src_page
) != 1, src_page
);
2219 release_pte_page(src_page
);
2221 * ptl mostly unnecessary, but preempt has to
2222 * be disabled to update the per-cpu stats
2223 * inside page_remove_rmap().
2227 * paravirt calls inside pte_clear here are
2230 pte_clear(vma
->vm_mm
, address
, _pte
);
2231 page_remove_rmap(src_page
);
2233 free_page_and_swap_cache(src_page
);
2236 address
+= PAGE_SIZE
;
2241 static void khugepaged_alloc_sleep(void)
2243 wait_event_freezable_timeout(khugepaged_wait
, false,
2244 msecs_to_jiffies(khugepaged_alloc_sleep_millisecs
));
2247 static int khugepaged_node_load
[MAX_NUMNODES
];
2249 static bool khugepaged_scan_abort(int nid
)
2254 * If zone_reclaim_mode is disabled, then no extra effort is made to
2255 * allocate memory locally.
2257 if (!zone_reclaim_mode
)
2260 /* If there is a count for this node already, it must be acceptable */
2261 if (khugepaged_node_load
[nid
])
2264 for (i
= 0; i
< MAX_NUMNODES
; i
++) {
2265 if (!khugepaged_node_load
[i
])
2267 if (node_distance(nid
, i
) > RECLAIM_DISTANCE
)
2274 static int khugepaged_find_target_node(void)
2276 static int last_khugepaged_target_node
= NUMA_NO_NODE
;
2277 int nid
, target_node
= 0, max_value
= 0;
2279 /* find first node with max normal pages hit */
2280 for (nid
= 0; nid
< MAX_NUMNODES
; nid
++)
2281 if (khugepaged_node_load
[nid
] > max_value
) {
2282 max_value
= khugepaged_node_load
[nid
];
2286 /* do some balance if several nodes have the same hit record */
2287 if (target_node
<= last_khugepaged_target_node
)
2288 for (nid
= last_khugepaged_target_node
+ 1; nid
< MAX_NUMNODES
;
2290 if (max_value
== khugepaged_node_load
[nid
]) {
2295 last_khugepaged_target_node
= target_node
;
2299 static bool khugepaged_prealloc_page(struct page
**hpage
, bool *wait
)
2301 if (IS_ERR(*hpage
)) {
2307 khugepaged_alloc_sleep();
2308 } else if (*hpage
) {
2317 *khugepaged_alloc_page(struct page
**hpage
, struct mm_struct
*mm
,
2318 struct vm_area_struct
*vma
, unsigned long address
,
2321 VM_BUG_ON_PAGE(*hpage
, *hpage
);
2323 * Allocate the page while the vma is still valid and under
2324 * the mmap_sem read mode so there is no memory allocation
2325 * later when we take the mmap_sem in write mode. This is more
2326 * friendly behavior (OTOH it may actually hide bugs) to
2327 * filesystems in userland with daemons allocating memory in
2328 * the userland I/O paths. Allocating memory with the
2329 * mmap_sem in read mode is good idea also to allow greater
2332 *hpage
= alloc_pages_exact_node(node
, alloc_hugepage_gfpmask(
2333 khugepaged_defrag(), __GFP_OTHER_NODE
), HPAGE_PMD_ORDER
);
2335 * After allocating the hugepage, release the mmap_sem read lock in
2336 * preparation for taking it in write mode.
2338 up_read(&mm
->mmap_sem
);
2339 if (unlikely(!*hpage
)) {
2340 count_vm_event(THP_COLLAPSE_ALLOC_FAILED
);
2341 *hpage
= ERR_PTR(-ENOMEM
);
2345 count_vm_event(THP_COLLAPSE_ALLOC
);
2349 static int khugepaged_find_target_node(void)
2354 static inline struct page
*alloc_hugepage(int defrag
)
2356 return alloc_pages(alloc_hugepage_gfpmask(defrag
, 0),
2360 static struct page
*khugepaged_alloc_hugepage(bool *wait
)
2365 hpage
= alloc_hugepage(khugepaged_defrag());
2367 count_vm_event(THP_COLLAPSE_ALLOC_FAILED
);
2372 khugepaged_alloc_sleep();
2374 count_vm_event(THP_COLLAPSE_ALLOC
);
2375 } while (unlikely(!hpage
) && likely(khugepaged_enabled()));
2380 static bool khugepaged_prealloc_page(struct page
**hpage
, bool *wait
)
2383 *hpage
= khugepaged_alloc_hugepage(wait
);
2385 if (unlikely(!*hpage
))
2392 *khugepaged_alloc_page(struct page
**hpage
, struct mm_struct
*mm
,
2393 struct vm_area_struct
*vma
, unsigned long address
,
2396 up_read(&mm
->mmap_sem
);
2402 static bool hugepage_vma_check(struct vm_area_struct
*vma
)
2404 if ((!(vma
->vm_flags
& VM_HUGEPAGE
) && !khugepaged_always()) ||
2405 (vma
->vm_flags
& VM_NOHUGEPAGE
))
2408 if (!vma
->anon_vma
|| vma
->vm_ops
)
2410 if (is_vma_temporary_stack(vma
))
2412 VM_BUG_ON(vma
->vm_flags
& VM_NO_THP
);
2416 static void collapse_huge_page(struct mm_struct
*mm
,
2417 unsigned long address
,
2418 struct page
**hpage
,
2419 struct vm_area_struct
*vma
,
2425 struct page
*new_page
;
2426 spinlock_t
*pmd_ptl
, *pte_ptl
;
2428 unsigned long hstart
, hend
;
2429 struct mem_cgroup
*memcg
;
2430 unsigned long mmun_start
; /* For mmu_notifiers */
2431 unsigned long mmun_end
; /* For mmu_notifiers */
2433 VM_BUG_ON(address
& ~HPAGE_PMD_MASK
);
2435 /* release the mmap_sem read lock. */
2436 new_page
= khugepaged_alloc_page(hpage
, mm
, vma
, address
, node
);
2440 if (unlikely(mem_cgroup_try_charge(new_page
, mm
,
2441 GFP_TRANSHUGE
, &memcg
)))
2445 * Prevent all access to pagetables with the exception of
2446 * gup_fast later hanlded by the ptep_clear_flush and the VM
2447 * handled by the anon_vma lock + PG_lock.
2449 down_write(&mm
->mmap_sem
);
2450 if (unlikely(khugepaged_test_exit(mm
)))
2453 vma
= find_vma(mm
, address
);
2456 hstart
= (vma
->vm_start
+ ~HPAGE_PMD_MASK
) & HPAGE_PMD_MASK
;
2457 hend
= vma
->vm_end
& HPAGE_PMD_MASK
;
2458 if (address
< hstart
|| address
+ HPAGE_PMD_SIZE
> hend
)
2460 if (!hugepage_vma_check(vma
))
2462 pmd
= mm_find_pmd(mm
, address
);
2466 anon_vma_lock_write(vma
->anon_vma
);
2468 pte
= pte_offset_map(pmd
, address
);
2469 pte_ptl
= pte_lockptr(mm
, pmd
);
2471 mmun_start
= address
;
2472 mmun_end
= address
+ HPAGE_PMD_SIZE
;
2473 mmu_notifier_invalidate_range_start(mm
, mmun_start
, mmun_end
);
2474 pmd_ptl
= pmd_lock(mm
, pmd
); /* probably unnecessary */
2476 * After this gup_fast can't run anymore. This also removes
2477 * any huge TLB entry from the CPU so we won't allow
2478 * huge and small TLB entries for the same virtual address
2479 * to avoid the risk of CPU bugs in that area.
2481 _pmd
= pmdp_clear_flush(vma
, address
, pmd
);
2482 spin_unlock(pmd_ptl
);
2483 mmu_notifier_invalidate_range_end(mm
, mmun_start
, mmun_end
);
2486 isolated
= __collapse_huge_page_isolate(vma
, address
, pte
);
2487 spin_unlock(pte_ptl
);
2489 if (unlikely(!isolated
)) {
2492 BUG_ON(!pmd_none(*pmd
));
2494 * We can only use set_pmd_at when establishing
2495 * hugepmds and never for establishing regular pmds that
2496 * points to regular pagetables. Use pmd_populate for that
2498 pmd_populate(mm
, pmd
, pmd_pgtable(_pmd
));
2499 spin_unlock(pmd_ptl
);
2500 anon_vma_unlock_write(vma
->anon_vma
);
2505 * All pages are isolated and locked so anon_vma rmap
2506 * can't run anymore.
2508 anon_vma_unlock_write(vma
->anon_vma
);
2510 __collapse_huge_page_copy(pte
, new_page
, vma
, address
, pte_ptl
);
2512 __SetPageUptodate(new_page
);
2513 pgtable
= pmd_pgtable(_pmd
);
2515 _pmd
= mk_huge_pmd(new_page
, vma
->vm_page_prot
);
2516 _pmd
= maybe_pmd_mkwrite(pmd_mkdirty(_pmd
), vma
);
2519 * spin_lock() below is not the equivalent of smp_wmb(), so
2520 * this is needed to avoid the copy_huge_page writes to become
2521 * visible after the set_pmd_at() write.
2526 BUG_ON(!pmd_none(*pmd
));
2527 page_add_new_anon_rmap(new_page
, vma
, address
);
2528 mem_cgroup_commit_charge(new_page
, memcg
, false);
2529 lru_cache_add_active_or_unevictable(new_page
, vma
);
2530 pgtable_trans_huge_deposit(mm
, pmd
, pgtable
);
2531 set_pmd_at(mm
, address
, pmd
, _pmd
);
2532 update_mmu_cache_pmd(vma
, address
, pmd
);
2533 spin_unlock(pmd_ptl
);
2537 khugepaged_pages_collapsed
++;
2539 up_write(&mm
->mmap_sem
);
2543 mem_cgroup_cancel_charge(new_page
, memcg
);
2547 static int khugepaged_scan_pmd(struct mm_struct
*mm
,
2548 struct vm_area_struct
*vma
,
2549 unsigned long address
,
2550 struct page
**hpage
)
2554 int ret
= 0, referenced
= 0, none
= 0;
2556 unsigned long _address
;
2558 int node
= NUMA_NO_NODE
;
2560 VM_BUG_ON(address
& ~HPAGE_PMD_MASK
);
2562 pmd
= mm_find_pmd(mm
, address
);
2566 memset(khugepaged_node_load
, 0, sizeof(khugepaged_node_load
));
2567 pte
= pte_offset_map_lock(mm
, pmd
, address
, &ptl
);
2568 for (_address
= address
, _pte
= pte
; _pte
< pte
+HPAGE_PMD_NR
;
2569 _pte
++, _address
+= PAGE_SIZE
) {
2570 pte_t pteval
= *_pte
;
2571 if (pte_none(pteval
)) {
2572 if (++none
<= khugepaged_max_ptes_none
)
2577 if (!pte_present(pteval
) || !pte_write(pteval
))
2579 page
= vm_normal_page(vma
, _address
, pteval
);
2580 if (unlikely(!page
))
2583 * Record which node the original page is from and save this
2584 * information to khugepaged_node_load[].
2585 * Khupaged will allocate hugepage from the node has the max
2588 node
= page_to_nid(page
);
2589 if (khugepaged_scan_abort(node
))
2591 khugepaged_node_load
[node
]++;
2592 VM_BUG_ON_PAGE(PageCompound(page
), page
);
2593 if (!PageLRU(page
) || PageLocked(page
) || !PageAnon(page
))
2595 /* cannot use mapcount: can't collapse if there's a gup pin */
2596 if (page_count(page
) != 1)
2598 if (pte_young(pteval
) || PageReferenced(page
) ||
2599 mmu_notifier_test_young(vma
->vm_mm
, address
))
2605 pte_unmap_unlock(pte
, ptl
);
2607 node
= khugepaged_find_target_node();
2608 /* collapse_huge_page will return with the mmap_sem released */
2609 collapse_huge_page(mm
, address
, hpage
, vma
, node
);
2615 static void collect_mm_slot(struct mm_slot
*mm_slot
)
2617 struct mm_struct
*mm
= mm_slot
->mm
;
2619 VM_BUG_ON(NR_CPUS
!= 1 && !spin_is_locked(&khugepaged_mm_lock
));
2621 if (khugepaged_test_exit(mm
)) {
2623 hash_del(&mm_slot
->hash
);
2624 list_del(&mm_slot
->mm_node
);
2627 * Not strictly needed because the mm exited already.
2629 * clear_bit(MMF_VM_HUGEPAGE, &mm->flags);
2632 /* khugepaged_mm_lock actually not necessary for the below */
2633 free_mm_slot(mm_slot
);
2638 static unsigned int khugepaged_scan_mm_slot(unsigned int pages
,
2639 struct page
**hpage
)
2640 __releases(&khugepaged_mm_lock
)
2641 __acquires(&khugepaged_mm_lock
)
2643 struct mm_slot
*mm_slot
;
2644 struct mm_struct
*mm
;
2645 struct vm_area_struct
*vma
;
2649 VM_BUG_ON(NR_CPUS
!= 1 && !spin_is_locked(&khugepaged_mm_lock
));
2651 if (khugepaged_scan
.mm_slot
)
2652 mm_slot
= khugepaged_scan
.mm_slot
;
2654 mm_slot
= list_entry(khugepaged_scan
.mm_head
.next
,
2655 struct mm_slot
, mm_node
);
2656 khugepaged_scan
.address
= 0;
2657 khugepaged_scan
.mm_slot
= mm_slot
;
2659 spin_unlock(&khugepaged_mm_lock
);
2662 down_read(&mm
->mmap_sem
);
2663 if (unlikely(khugepaged_test_exit(mm
)))
2666 vma
= find_vma(mm
, khugepaged_scan
.address
);
2669 for (; vma
; vma
= vma
->vm_next
) {
2670 unsigned long hstart
, hend
;
2673 if (unlikely(khugepaged_test_exit(mm
))) {
2677 if (!hugepage_vma_check(vma
)) {
2682 hstart
= (vma
->vm_start
+ ~HPAGE_PMD_MASK
) & HPAGE_PMD_MASK
;
2683 hend
= vma
->vm_end
& HPAGE_PMD_MASK
;
2686 if (khugepaged_scan
.address
> hend
)
2688 if (khugepaged_scan
.address
< hstart
)
2689 khugepaged_scan
.address
= hstart
;
2690 VM_BUG_ON(khugepaged_scan
.address
& ~HPAGE_PMD_MASK
);
2692 while (khugepaged_scan
.address
< hend
) {
2695 if (unlikely(khugepaged_test_exit(mm
)))
2696 goto breakouterloop
;
2698 VM_BUG_ON(khugepaged_scan
.address
< hstart
||
2699 khugepaged_scan
.address
+ HPAGE_PMD_SIZE
>
2701 ret
= khugepaged_scan_pmd(mm
, vma
,
2702 khugepaged_scan
.address
,
2704 /* move to next address */
2705 khugepaged_scan
.address
+= HPAGE_PMD_SIZE
;
2706 progress
+= HPAGE_PMD_NR
;
2708 /* we released mmap_sem so break loop */
2709 goto breakouterloop_mmap_sem
;
2710 if (progress
>= pages
)
2711 goto breakouterloop
;
2715 up_read(&mm
->mmap_sem
); /* exit_mmap will destroy ptes after this */
2716 breakouterloop_mmap_sem
:
2718 spin_lock(&khugepaged_mm_lock
);
2719 VM_BUG_ON(khugepaged_scan
.mm_slot
!= mm_slot
);
2721 * Release the current mm_slot if this mm is about to die, or
2722 * if we scanned all vmas of this mm.
2724 if (khugepaged_test_exit(mm
) || !vma
) {
2726 * Make sure that if mm_users is reaching zero while
2727 * khugepaged runs here, khugepaged_exit will find
2728 * mm_slot not pointing to the exiting mm.
2730 if (mm_slot
->mm_node
.next
!= &khugepaged_scan
.mm_head
) {
2731 khugepaged_scan
.mm_slot
= list_entry(
2732 mm_slot
->mm_node
.next
,
2733 struct mm_slot
, mm_node
);
2734 khugepaged_scan
.address
= 0;
2736 khugepaged_scan
.mm_slot
= NULL
;
2737 khugepaged_full_scans
++;
2740 collect_mm_slot(mm_slot
);
2746 static int khugepaged_has_work(void)
2748 return !list_empty(&khugepaged_scan
.mm_head
) &&
2749 khugepaged_enabled();
2752 static int khugepaged_wait_event(void)
2754 return !list_empty(&khugepaged_scan
.mm_head
) ||
2755 kthread_should_stop();
2758 static void khugepaged_do_scan(void)
2760 struct page
*hpage
= NULL
;
2761 unsigned int progress
= 0, pass_through_head
= 0;
2762 unsigned int pages
= khugepaged_pages_to_scan
;
2765 barrier(); /* write khugepaged_pages_to_scan to local stack */
2767 while (progress
< pages
) {
2768 if (!khugepaged_prealloc_page(&hpage
, &wait
))
2773 if (unlikely(kthread_should_stop() || freezing(current
)))
2776 spin_lock(&khugepaged_mm_lock
);
2777 if (!khugepaged_scan
.mm_slot
)
2778 pass_through_head
++;
2779 if (khugepaged_has_work() &&
2780 pass_through_head
< 2)
2781 progress
+= khugepaged_scan_mm_slot(pages
- progress
,
2785 spin_unlock(&khugepaged_mm_lock
);
2788 if (!IS_ERR_OR_NULL(hpage
))
2792 static void khugepaged_wait_work(void)
2796 if (khugepaged_has_work()) {
2797 if (!khugepaged_scan_sleep_millisecs
)
2800 wait_event_freezable_timeout(khugepaged_wait
,
2801 kthread_should_stop(),
2802 msecs_to_jiffies(khugepaged_scan_sleep_millisecs
));
2806 if (khugepaged_enabled())
2807 wait_event_freezable(khugepaged_wait
, khugepaged_wait_event());
2810 static int khugepaged(void *none
)
2812 struct mm_slot
*mm_slot
;
2815 set_user_nice(current
, MAX_NICE
);
2817 while (!kthread_should_stop()) {
2818 khugepaged_do_scan();
2819 khugepaged_wait_work();
2822 spin_lock(&khugepaged_mm_lock
);
2823 mm_slot
= khugepaged_scan
.mm_slot
;
2824 khugepaged_scan
.mm_slot
= NULL
;
2826 collect_mm_slot(mm_slot
);
2827 spin_unlock(&khugepaged_mm_lock
);
2831 static void __split_huge_zero_page_pmd(struct vm_area_struct
*vma
,
2832 unsigned long haddr
, pmd_t
*pmd
)
2834 struct mm_struct
*mm
= vma
->vm_mm
;
2839 pmdp_clear_flush(vma
, haddr
, pmd
);
2840 /* leave pmd empty until pte is filled */
2842 pgtable
= pgtable_trans_huge_withdraw(mm
, pmd
);
2843 pmd_populate(mm
, &_pmd
, pgtable
);
2845 for (i
= 0; i
< HPAGE_PMD_NR
; i
++, haddr
+= PAGE_SIZE
) {
2847 entry
= pfn_pte(my_zero_pfn(haddr
), vma
->vm_page_prot
);
2848 entry
= pte_mkspecial(entry
);
2849 pte
= pte_offset_map(&_pmd
, haddr
);
2850 VM_BUG_ON(!pte_none(*pte
));
2851 set_pte_at(mm
, haddr
, pte
, entry
);
2854 smp_wmb(); /* make pte visible before pmd */
2855 pmd_populate(mm
, pmd
, pgtable
);
2856 put_huge_zero_page();
2859 void __split_huge_page_pmd(struct vm_area_struct
*vma
, unsigned long address
,
2864 struct mm_struct
*mm
= vma
->vm_mm
;
2865 unsigned long haddr
= address
& HPAGE_PMD_MASK
;
2866 unsigned long mmun_start
; /* For mmu_notifiers */
2867 unsigned long mmun_end
; /* For mmu_notifiers */
2869 BUG_ON(vma
->vm_start
> haddr
|| vma
->vm_end
< haddr
+ HPAGE_PMD_SIZE
);
2872 mmun_end
= haddr
+ HPAGE_PMD_SIZE
;
2874 mmu_notifier_invalidate_range_start(mm
, mmun_start
, mmun_end
);
2875 ptl
= pmd_lock(mm
, pmd
);
2876 if (unlikely(!pmd_trans_huge(*pmd
))) {
2878 mmu_notifier_invalidate_range_end(mm
, mmun_start
, mmun_end
);
2881 if (is_huge_zero_pmd(*pmd
)) {
2882 __split_huge_zero_page_pmd(vma
, haddr
, pmd
);
2884 mmu_notifier_invalidate_range_end(mm
, mmun_start
, mmun_end
);
2887 page
= pmd_page(*pmd
);
2888 VM_BUG_ON_PAGE(!page_count(page
), page
);
2891 mmu_notifier_invalidate_range_end(mm
, mmun_start
, mmun_end
);
2893 split_huge_page(page
);
2898 * We don't always have down_write of mmap_sem here: a racing
2899 * do_huge_pmd_wp_page() might have copied-on-write to another
2900 * huge page before our split_huge_page() got the anon_vma lock.
2902 if (unlikely(pmd_trans_huge(*pmd
)))
2906 void split_huge_page_pmd_mm(struct mm_struct
*mm
, unsigned long address
,
2909 struct vm_area_struct
*vma
;
2911 vma
= find_vma(mm
, address
);
2912 BUG_ON(vma
== NULL
);
2913 split_huge_page_pmd(vma
, address
, pmd
);
2916 static void split_huge_page_address(struct mm_struct
*mm
,
2917 unsigned long address
)
2923 VM_BUG_ON(!(address
& ~HPAGE_PMD_MASK
));
2925 pgd
= pgd_offset(mm
, address
);
2926 if (!pgd_present(*pgd
))
2929 pud
= pud_offset(pgd
, address
);
2930 if (!pud_present(*pud
))
2933 pmd
= pmd_offset(pud
, address
);
2934 if (!pmd_present(*pmd
))
2937 * Caller holds the mmap_sem write mode, so a huge pmd cannot
2938 * materialize from under us.
2940 split_huge_page_pmd_mm(mm
, address
, pmd
);
2943 void __vma_adjust_trans_huge(struct vm_area_struct
*vma
,
2944 unsigned long start
,
2949 * If the new start address isn't hpage aligned and it could
2950 * previously contain an hugepage: check if we need to split
2953 if (start
& ~HPAGE_PMD_MASK
&&
2954 (start
& HPAGE_PMD_MASK
) >= vma
->vm_start
&&
2955 (start
& HPAGE_PMD_MASK
) + HPAGE_PMD_SIZE
<= vma
->vm_end
)
2956 split_huge_page_address(vma
->vm_mm
, start
);
2959 * If the new end address isn't hpage aligned and it could
2960 * previously contain an hugepage: check if we need to split
2963 if (end
& ~HPAGE_PMD_MASK
&&
2964 (end
& HPAGE_PMD_MASK
) >= vma
->vm_start
&&
2965 (end
& HPAGE_PMD_MASK
) + HPAGE_PMD_SIZE
<= vma
->vm_end
)
2966 split_huge_page_address(vma
->vm_mm
, end
);
2969 * If we're also updating the vma->vm_next->vm_start, if the new
2970 * vm_next->vm_start isn't page aligned and it could previously
2971 * contain an hugepage: check if we need to split an huge pmd.
2973 if (adjust_next
> 0) {
2974 struct vm_area_struct
*next
= vma
->vm_next
;
2975 unsigned long nstart
= next
->vm_start
;
2976 nstart
+= adjust_next
<< PAGE_SHIFT
;
2977 if (nstart
& ~HPAGE_PMD_MASK
&&
2978 (nstart
& HPAGE_PMD_MASK
) >= next
->vm_start
&&
2979 (nstart
& HPAGE_PMD_MASK
) + HPAGE_PMD_SIZE
<= next
->vm_end
)
2980 split_huge_page_address(next
->vm_mm
, nstart
);