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/dax.h>
20 #include <linux/kthread.h>
21 #include <linux/khugepaged.h>
22 #include <linux/freezer.h>
23 #include <linux/mman.h>
24 #include <linux/pagemap.h>
25 #include <linux/migrate.h>
26 #include <linux/hashtable.h>
27 #include <linux/userfaultfd_k.h>
28 #include <linux/page_idle.h>
31 #include <asm/pgalloc.h>
35 * By default transparent hugepage support is disabled in order that avoid
36 * to risk increase the memory footprint of applications without a guaranteed
37 * benefit. When transparent hugepage support is enabled, is for all mappings,
38 * and khugepaged scans all mappings.
39 * Defrag is invoked by khugepaged hugepage allocations and by page faults
40 * for all hugepage allocations.
42 unsigned long transparent_hugepage_flags __read_mostly
=
43 #ifdef CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS
44 (1<<TRANSPARENT_HUGEPAGE_FLAG
)|
46 #ifdef CONFIG_TRANSPARENT_HUGEPAGE_MADVISE
47 (1<<TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG
)|
49 (1<<TRANSPARENT_HUGEPAGE_DEFRAG_FLAG
)|
50 (1<<TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG
)|
51 (1<<TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG
);
53 /* default scan 8*512 pte (or vmas) every 30 second */
54 static unsigned int khugepaged_pages_to_scan __read_mostly
= HPAGE_PMD_NR
*8;
55 static unsigned int khugepaged_pages_collapsed
;
56 static unsigned int khugepaged_full_scans
;
57 static unsigned int khugepaged_scan_sleep_millisecs __read_mostly
= 10000;
58 /* during fragmentation poll the hugepage allocator once every minute */
59 static unsigned int khugepaged_alloc_sleep_millisecs __read_mostly
= 60000;
60 static struct task_struct
*khugepaged_thread __read_mostly
;
61 static DEFINE_MUTEX(khugepaged_mutex
);
62 static DEFINE_SPINLOCK(khugepaged_mm_lock
);
63 static DECLARE_WAIT_QUEUE_HEAD(khugepaged_wait
);
65 * default collapse hugepages if there is at least one pte mapped like
66 * it would have happened if the vma was large enough during page
69 static unsigned int khugepaged_max_ptes_none __read_mostly
= HPAGE_PMD_NR
-1;
71 static int khugepaged(void *none
);
72 static int khugepaged_slab_init(void);
73 static void khugepaged_slab_exit(void);
75 #define MM_SLOTS_HASH_BITS 10
76 static __read_mostly
DEFINE_HASHTABLE(mm_slots_hash
, MM_SLOTS_HASH_BITS
);
78 static struct kmem_cache
*mm_slot_cache __read_mostly
;
81 * struct mm_slot - hash lookup from mm to mm_slot
82 * @hash: hash collision list
83 * @mm_node: khugepaged scan list headed in khugepaged_scan.mm_head
84 * @mm: the mm that this information is valid for
87 struct hlist_node hash
;
88 struct list_head mm_node
;
93 * struct khugepaged_scan - cursor for scanning
94 * @mm_head: the head of the mm list to scan
95 * @mm_slot: the current mm_slot we are scanning
96 * @address: the next address inside that to be scanned
98 * There is only the one khugepaged_scan instance of this cursor structure.
100 struct khugepaged_scan
{
101 struct list_head mm_head
;
102 struct mm_slot
*mm_slot
;
103 unsigned long address
;
105 static struct khugepaged_scan khugepaged_scan
= {
106 .mm_head
= LIST_HEAD_INIT(khugepaged_scan
.mm_head
),
110 static void set_recommended_min_free_kbytes(void)
114 unsigned long recommended_min
;
116 for_each_populated_zone(zone
)
119 /* Ensure 2 pageblocks are free to assist fragmentation avoidance */
120 recommended_min
= pageblock_nr_pages
* nr_zones
* 2;
123 * Make sure that on average at least two pageblocks are almost free
124 * of another type, one for a migratetype to fall back to and a
125 * second to avoid subsequent fallbacks of other types There are 3
126 * MIGRATE_TYPES we care about.
128 recommended_min
+= pageblock_nr_pages
* nr_zones
*
129 MIGRATE_PCPTYPES
* MIGRATE_PCPTYPES
;
131 /* don't ever allow to reserve more than 5% of the lowmem */
132 recommended_min
= min(recommended_min
,
133 (unsigned long) nr_free_buffer_pages() / 20);
134 recommended_min
<<= (PAGE_SHIFT
-10);
136 if (recommended_min
> min_free_kbytes
) {
137 if (user_min_free_kbytes
>= 0)
138 pr_info("raising min_free_kbytes from %d to %lu "
139 "to help transparent hugepage allocations\n",
140 min_free_kbytes
, recommended_min
);
142 min_free_kbytes
= recommended_min
;
144 setup_per_zone_wmarks();
147 static int start_stop_khugepaged(void)
150 if (khugepaged_enabled()) {
151 if (!khugepaged_thread
)
152 khugepaged_thread
= kthread_run(khugepaged
, NULL
,
154 if (IS_ERR(khugepaged_thread
)) {
155 pr_err("khugepaged: kthread_run(khugepaged) failed\n");
156 err
= PTR_ERR(khugepaged_thread
);
157 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 struct page
*huge_zero_page __read_mostly
;
176 struct page
*get_huge_zero_page(void)
178 struct page
*zero_page
;
180 if (likely(atomic_inc_not_zero(&huge_zero_refcount
)))
181 return READ_ONCE(huge_zero_page
);
183 zero_page
= alloc_pages((GFP_TRANSHUGE
| __GFP_ZERO
) & ~__GFP_MOVABLE
,
186 count_vm_event(THP_ZERO_PAGE_ALLOC_FAILED
);
189 count_vm_event(THP_ZERO_PAGE_ALLOC
);
191 if (cmpxchg(&huge_zero_page
, NULL
, zero_page
)) {
193 __free_pages(zero_page
, compound_order(zero_page
));
197 /* We take additional reference here. It will be put back by shrinker */
198 atomic_set(&huge_zero_refcount
, 2);
200 return READ_ONCE(huge_zero_page
);
203 static void put_huge_zero_page(void)
206 * Counter should never go to zero here. Only shrinker can put
209 BUG_ON(atomic_dec_and_test(&huge_zero_refcount
));
212 static unsigned long shrink_huge_zero_page_count(struct shrinker
*shrink
,
213 struct shrink_control
*sc
)
215 /* we can free zero page only if last reference remains */
216 return atomic_read(&huge_zero_refcount
) == 1 ? HPAGE_PMD_NR
: 0;
219 static unsigned long shrink_huge_zero_page_scan(struct shrinker
*shrink
,
220 struct shrink_control
*sc
)
222 if (atomic_cmpxchg(&huge_zero_refcount
, 1, 0) == 1) {
223 struct page
*zero_page
= xchg(&huge_zero_page
, NULL
);
224 BUG_ON(zero_page
== NULL
);
225 __free_pages(zero_page
, compound_order(zero_page
));
232 static struct shrinker huge_zero_page_shrinker
= {
233 .count_objects
= shrink_huge_zero_page_count
,
234 .scan_objects
= shrink_huge_zero_page_scan
,
235 .seeks
= DEFAULT_SEEKS
,
240 static ssize_t
double_flag_show(struct kobject
*kobj
,
241 struct kobj_attribute
*attr
, char *buf
,
242 enum transparent_hugepage_flag enabled
,
243 enum transparent_hugepage_flag req_madv
)
245 if (test_bit(enabled
, &transparent_hugepage_flags
)) {
246 VM_BUG_ON(test_bit(req_madv
, &transparent_hugepage_flags
));
247 return sprintf(buf
, "[always] madvise never\n");
248 } else if (test_bit(req_madv
, &transparent_hugepage_flags
))
249 return sprintf(buf
, "always [madvise] never\n");
251 return sprintf(buf
, "always madvise [never]\n");
253 static ssize_t
double_flag_store(struct kobject
*kobj
,
254 struct kobj_attribute
*attr
,
255 const char *buf
, size_t count
,
256 enum transparent_hugepage_flag enabled
,
257 enum transparent_hugepage_flag req_madv
)
259 if (!memcmp("always", buf
,
260 min(sizeof("always")-1, count
))) {
261 set_bit(enabled
, &transparent_hugepage_flags
);
262 clear_bit(req_madv
, &transparent_hugepage_flags
);
263 } else if (!memcmp("madvise", buf
,
264 min(sizeof("madvise")-1, count
))) {
265 clear_bit(enabled
, &transparent_hugepage_flags
);
266 set_bit(req_madv
, &transparent_hugepage_flags
);
267 } else if (!memcmp("never", buf
,
268 min(sizeof("never")-1, count
))) {
269 clear_bit(enabled
, &transparent_hugepage_flags
);
270 clear_bit(req_madv
, &transparent_hugepage_flags
);
277 static ssize_t
enabled_show(struct kobject
*kobj
,
278 struct kobj_attribute
*attr
, char *buf
)
280 return double_flag_show(kobj
, attr
, buf
,
281 TRANSPARENT_HUGEPAGE_FLAG
,
282 TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG
);
284 static ssize_t
enabled_store(struct kobject
*kobj
,
285 struct kobj_attribute
*attr
,
286 const char *buf
, size_t count
)
290 ret
= double_flag_store(kobj
, attr
, buf
, count
,
291 TRANSPARENT_HUGEPAGE_FLAG
,
292 TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG
);
297 mutex_lock(&khugepaged_mutex
);
298 err
= start_stop_khugepaged();
299 mutex_unlock(&khugepaged_mutex
);
307 static struct kobj_attribute enabled_attr
=
308 __ATTR(enabled
, 0644, enabled_show
, enabled_store
);
310 static ssize_t
single_flag_show(struct kobject
*kobj
,
311 struct kobj_attribute
*attr
, char *buf
,
312 enum transparent_hugepage_flag flag
)
314 return sprintf(buf
, "%d\n",
315 !!test_bit(flag
, &transparent_hugepage_flags
));
318 static ssize_t
single_flag_store(struct kobject
*kobj
,
319 struct kobj_attribute
*attr
,
320 const char *buf
, size_t count
,
321 enum transparent_hugepage_flag flag
)
326 ret
= kstrtoul(buf
, 10, &value
);
333 set_bit(flag
, &transparent_hugepage_flags
);
335 clear_bit(flag
, &transparent_hugepage_flags
);
341 * Currently defrag only disables __GFP_NOWAIT for allocation. A blind
342 * __GFP_REPEAT is too aggressive, it's never worth swapping tons of
343 * memory just to allocate one more hugepage.
345 static ssize_t
defrag_show(struct kobject
*kobj
,
346 struct kobj_attribute
*attr
, char *buf
)
348 return double_flag_show(kobj
, attr
, buf
,
349 TRANSPARENT_HUGEPAGE_DEFRAG_FLAG
,
350 TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG
);
352 static ssize_t
defrag_store(struct kobject
*kobj
,
353 struct kobj_attribute
*attr
,
354 const char *buf
, size_t count
)
356 return double_flag_store(kobj
, attr
, buf
, count
,
357 TRANSPARENT_HUGEPAGE_DEFRAG_FLAG
,
358 TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG
);
360 static struct kobj_attribute defrag_attr
=
361 __ATTR(defrag
, 0644, defrag_show
, defrag_store
);
363 static ssize_t
use_zero_page_show(struct kobject
*kobj
,
364 struct kobj_attribute
*attr
, char *buf
)
366 return single_flag_show(kobj
, attr
, buf
,
367 TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG
);
369 static ssize_t
use_zero_page_store(struct kobject
*kobj
,
370 struct kobj_attribute
*attr
, const char *buf
, size_t count
)
372 return single_flag_store(kobj
, attr
, buf
, count
,
373 TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG
);
375 static struct kobj_attribute use_zero_page_attr
=
376 __ATTR(use_zero_page
, 0644, use_zero_page_show
, use_zero_page_store
);
377 #ifdef CONFIG_DEBUG_VM
378 static ssize_t
debug_cow_show(struct kobject
*kobj
,
379 struct kobj_attribute
*attr
, char *buf
)
381 return single_flag_show(kobj
, attr
, buf
,
382 TRANSPARENT_HUGEPAGE_DEBUG_COW_FLAG
);
384 static ssize_t
debug_cow_store(struct kobject
*kobj
,
385 struct kobj_attribute
*attr
,
386 const char *buf
, size_t count
)
388 return single_flag_store(kobj
, attr
, buf
, count
,
389 TRANSPARENT_HUGEPAGE_DEBUG_COW_FLAG
);
391 static struct kobj_attribute debug_cow_attr
=
392 __ATTR(debug_cow
, 0644, debug_cow_show
, debug_cow_store
);
393 #endif /* CONFIG_DEBUG_VM */
395 static struct attribute
*hugepage_attr
[] = {
398 &use_zero_page_attr
.attr
,
399 #ifdef CONFIG_DEBUG_VM
400 &debug_cow_attr
.attr
,
405 static struct attribute_group hugepage_attr_group
= {
406 .attrs
= hugepage_attr
,
409 static ssize_t
scan_sleep_millisecs_show(struct kobject
*kobj
,
410 struct kobj_attribute
*attr
,
413 return sprintf(buf
, "%u\n", khugepaged_scan_sleep_millisecs
);
416 static ssize_t
scan_sleep_millisecs_store(struct kobject
*kobj
,
417 struct kobj_attribute
*attr
,
418 const char *buf
, size_t count
)
423 err
= kstrtoul(buf
, 10, &msecs
);
424 if (err
|| msecs
> UINT_MAX
)
427 khugepaged_scan_sleep_millisecs
= msecs
;
428 wake_up_interruptible(&khugepaged_wait
);
432 static struct kobj_attribute scan_sleep_millisecs_attr
=
433 __ATTR(scan_sleep_millisecs
, 0644, scan_sleep_millisecs_show
,
434 scan_sleep_millisecs_store
);
436 static ssize_t
alloc_sleep_millisecs_show(struct kobject
*kobj
,
437 struct kobj_attribute
*attr
,
440 return sprintf(buf
, "%u\n", khugepaged_alloc_sleep_millisecs
);
443 static ssize_t
alloc_sleep_millisecs_store(struct kobject
*kobj
,
444 struct kobj_attribute
*attr
,
445 const char *buf
, size_t count
)
450 err
= kstrtoul(buf
, 10, &msecs
);
451 if (err
|| msecs
> UINT_MAX
)
454 khugepaged_alloc_sleep_millisecs
= msecs
;
455 wake_up_interruptible(&khugepaged_wait
);
459 static struct kobj_attribute alloc_sleep_millisecs_attr
=
460 __ATTR(alloc_sleep_millisecs
, 0644, alloc_sleep_millisecs_show
,
461 alloc_sleep_millisecs_store
);
463 static ssize_t
pages_to_scan_show(struct kobject
*kobj
,
464 struct kobj_attribute
*attr
,
467 return sprintf(buf
, "%u\n", khugepaged_pages_to_scan
);
469 static ssize_t
pages_to_scan_store(struct kobject
*kobj
,
470 struct kobj_attribute
*attr
,
471 const char *buf
, size_t count
)
476 err
= kstrtoul(buf
, 10, &pages
);
477 if (err
|| !pages
|| pages
> UINT_MAX
)
480 khugepaged_pages_to_scan
= pages
;
484 static struct kobj_attribute pages_to_scan_attr
=
485 __ATTR(pages_to_scan
, 0644, pages_to_scan_show
,
486 pages_to_scan_store
);
488 static ssize_t
pages_collapsed_show(struct kobject
*kobj
,
489 struct kobj_attribute
*attr
,
492 return sprintf(buf
, "%u\n", khugepaged_pages_collapsed
);
494 static struct kobj_attribute pages_collapsed_attr
=
495 __ATTR_RO(pages_collapsed
);
497 static ssize_t
full_scans_show(struct kobject
*kobj
,
498 struct kobj_attribute
*attr
,
501 return sprintf(buf
, "%u\n", khugepaged_full_scans
);
503 static struct kobj_attribute full_scans_attr
=
504 __ATTR_RO(full_scans
);
506 static ssize_t
khugepaged_defrag_show(struct kobject
*kobj
,
507 struct kobj_attribute
*attr
, char *buf
)
509 return single_flag_show(kobj
, attr
, buf
,
510 TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG
);
512 static ssize_t
khugepaged_defrag_store(struct kobject
*kobj
,
513 struct kobj_attribute
*attr
,
514 const char *buf
, size_t count
)
516 return single_flag_store(kobj
, attr
, buf
, count
,
517 TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG
);
519 static struct kobj_attribute khugepaged_defrag_attr
=
520 __ATTR(defrag
, 0644, khugepaged_defrag_show
,
521 khugepaged_defrag_store
);
524 * max_ptes_none controls if khugepaged should collapse hugepages over
525 * any unmapped ptes in turn potentially increasing the memory
526 * footprint of the vmas. When max_ptes_none is 0 khugepaged will not
527 * reduce the available free memory in the system as it
528 * runs. Increasing max_ptes_none will instead potentially reduce the
529 * free memory in the system during the khugepaged scan.
531 static ssize_t
khugepaged_max_ptes_none_show(struct kobject
*kobj
,
532 struct kobj_attribute
*attr
,
535 return sprintf(buf
, "%u\n", khugepaged_max_ptes_none
);
537 static ssize_t
khugepaged_max_ptes_none_store(struct kobject
*kobj
,
538 struct kobj_attribute
*attr
,
539 const char *buf
, size_t count
)
542 unsigned long max_ptes_none
;
544 err
= kstrtoul(buf
, 10, &max_ptes_none
);
545 if (err
|| max_ptes_none
> HPAGE_PMD_NR
-1)
548 khugepaged_max_ptes_none
= max_ptes_none
;
552 static struct kobj_attribute khugepaged_max_ptes_none_attr
=
553 __ATTR(max_ptes_none
, 0644, khugepaged_max_ptes_none_show
,
554 khugepaged_max_ptes_none_store
);
556 static struct attribute
*khugepaged_attr
[] = {
557 &khugepaged_defrag_attr
.attr
,
558 &khugepaged_max_ptes_none_attr
.attr
,
559 &pages_to_scan_attr
.attr
,
560 &pages_collapsed_attr
.attr
,
561 &full_scans_attr
.attr
,
562 &scan_sleep_millisecs_attr
.attr
,
563 &alloc_sleep_millisecs_attr
.attr
,
567 static struct attribute_group khugepaged_attr_group
= {
568 .attrs
= khugepaged_attr
,
569 .name
= "khugepaged",
572 static int __init
hugepage_init_sysfs(struct kobject
**hugepage_kobj
)
576 *hugepage_kobj
= kobject_create_and_add("transparent_hugepage", mm_kobj
);
577 if (unlikely(!*hugepage_kobj
)) {
578 pr_err("failed to create transparent hugepage kobject\n");
582 err
= sysfs_create_group(*hugepage_kobj
, &hugepage_attr_group
);
584 pr_err("failed to register transparent hugepage group\n");
588 err
= sysfs_create_group(*hugepage_kobj
, &khugepaged_attr_group
);
590 pr_err("failed to register transparent hugepage group\n");
591 goto remove_hp_group
;
597 sysfs_remove_group(*hugepage_kobj
, &hugepage_attr_group
);
599 kobject_put(*hugepage_kobj
);
603 static void __init
hugepage_exit_sysfs(struct kobject
*hugepage_kobj
)
605 sysfs_remove_group(hugepage_kobj
, &khugepaged_attr_group
);
606 sysfs_remove_group(hugepage_kobj
, &hugepage_attr_group
);
607 kobject_put(hugepage_kobj
);
610 static inline int hugepage_init_sysfs(struct kobject
**hugepage_kobj
)
615 static inline void hugepage_exit_sysfs(struct kobject
*hugepage_kobj
)
618 #endif /* CONFIG_SYSFS */
620 static int __init
hugepage_init(void)
623 struct kobject
*hugepage_kobj
;
625 if (!has_transparent_hugepage()) {
626 transparent_hugepage_flags
= 0;
630 err
= hugepage_init_sysfs(&hugepage_kobj
);
634 err
= khugepaged_slab_init();
638 err
= register_shrinker(&huge_zero_page_shrinker
);
640 goto err_hzp_shrinker
;
643 * By default disable transparent hugepages on smaller systems,
644 * where the extra memory used could hurt more than TLB overhead
645 * is likely to save. The admin can still enable it through /sys.
647 if (totalram_pages
< (512 << (20 - PAGE_SHIFT
))) {
648 transparent_hugepage_flags
= 0;
652 err
= start_stop_khugepaged();
658 unregister_shrinker(&huge_zero_page_shrinker
);
660 khugepaged_slab_exit();
662 hugepage_exit_sysfs(hugepage_kobj
);
666 subsys_initcall(hugepage_init
);
668 static int __init
setup_transparent_hugepage(char *str
)
673 if (!strcmp(str
, "always")) {
674 set_bit(TRANSPARENT_HUGEPAGE_FLAG
,
675 &transparent_hugepage_flags
);
676 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG
,
677 &transparent_hugepage_flags
);
679 } else if (!strcmp(str
, "madvise")) {
680 clear_bit(TRANSPARENT_HUGEPAGE_FLAG
,
681 &transparent_hugepage_flags
);
682 set_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG
,
683 &transparent_hugepage_flags
);
685 } else if (!strcmp(str
, "never")) {
686 clear_bit(TRANSPARENT_HUGEPAGE_FLAG
,
687 &transparent_hugepage_flags
);
688 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG
,
689 &transparent_hugepage_flags
);
694 pr_warn("transparent_hugepage= cannot parse, ignored\n");
697 __setup("transparent_hugepage=", setup_transparent_hugepage
);
699 pmd_t
maybe_pmd_mkwrite(pmd_t pmd
, struct vm_area_struct
*vma
)
701 if (likely(vma
->vm_flags
& VM_WRITE
))
702 pmd
= pmd_mkwrite(pmd
);
706 static inline pmd_t
mk_huge_pmd(struct page
*page
, pgprot_t prot
)
709 entry
= mk_pmd(page
, prot
);
710 entry
= pmd_mkhuge(entry
);
714 static int __do_huge_pmd_anonymous_page(struct mm_struct
*mm
,
715 struct vm_area_struct
*vma
,
716 unsigned long address
, pmd_t
*pmd
,
717 struct page
*page
, gfp_t gfp
,
720 struct mem_cgroup
*memcg
;
723 unsigned long haddr
= address
& HPAGE_PMD_MASK
;
725 VM_BUG_ON_PAGE(!PageCompound(page
), page
);
727 if (mem_cgroup_try_charge(page
, mm
, gfp
, &memcg
)) {
729 count_vm_event(THP_FAULT_FALLBACK
);
730 return VM_FAULT_FALLBACK
;
733 pgtable
= pte_alloc_one(mm
, haddr
);
734 if (unlikely(!pgtable
)) {
735 mem_cgroup_cancel_charge(page
, memcg
);
740 clear_huge_page(page
, haddr
, HPAGE_PMD_NR
);
742 * The memory barrier inside __SetPageUptodate makes sure that
743 * clear_huge_page writes become visible before the set_pmd_at()
746 __SetPageUptodate(page
);
748 ptl
= pmd_lock(mm
, pmd
);
749 if (unlikely(!pmd_none(*pmd
))) {
751 mem_cgroup_cancel_charge(page
, memcg
);
753 pte_free(mm
, pgtable
);
757 /* Deliver the page fault to userland */
758 if (userfaultfd_missing(vma
)) {
762 mem_cgroup_cancel_charge(page
, memcg
);
764 pte_free(mm
, pgtable
);
765 ret
= handle_userfault(vma
, address
, flags
,
767 VM_BUG_ON(ret
& VM_FAULT_FALLBACK
);
771 entry
= mk_huge_pmd(page
, vma
->vm_page_prot
);
772 entry
= maybe_pmd_mkwrite(pmd_mkdirty(entry
), vma
);
773 page_add_new_anon_rmap(page
, vma
, haddr
);
774 mem_cgroup_commit_charge(page
, memcg
, false);
775 lru_cache_add_active_or_unevictable(page
, vma
);
776 pgtable_trans_huge_deposit(mm
, pmd
, pgtable
);
777 set_pmd_at(mm
, haddr
, pmd
, entry
);
778 add_mm_counter(mm
, MM_ANONPAGES
, HPAGE_PMD_NR
);
779 atomic_long_inc(&mm
->nr_ptes
);
781 count_vm_event(THP_FAULT_ALLOC
);
787 static inline gfp_t
alloc_hugepage_gfpmask(int defrag
, gfp_t extra_gfp
)
789 return (GFP_TRANSHUGE
& ~(defrag
? 0 : __GFP_RECLAIM
)) | extra_gfp
;
792 /* Caller must hold page table lock. */
793 static bool set_huge_zero_page(pgtable_t pgtable
, struct mm_struct
*mm
,
794 struct vm_area_struct
*vma
, unsigned long haddr
, pmd_t
*pmd
,
795 struct page
*zero_page
)
800 entry
= mk_pmd(zero_page
, vma
->vm_page_prot
);
801 entry
= pmd_mkhuge(entry
);
802 pgtable_trans_huge_deposit(mm
, pmd
, pgtable
);
803 set_pmd_at(mm
, haddr
, pmd
, entry
);
804 atomic_long_inc(&mm
->nr_ptes
);
808 int do_huge_pmd_anonymous_page(struct mm_struct
*mm
, struct vm_area_struct
*vma
,
809 unsigned long address
, pmd_t
*pmd
,
814 unsigned long haddr
= address
& HPAGE_PMD_MASK
;
816 if (haddr
< vma
->vm_start
|| haddr
+ HPAGE_PMD_SIZE
> vma
->vm_end
)
817 return VM_FAULT_FALLBACK
;
818 if (unlikely(anon_vma_prepare(vma
)))
820 if (unlikely(khugepaged_enter(vma
, vma
->vm_flags
)))
822 if (!(flags
& FAULT_FLAG_WRITE
) && !mm_forbids_zeropage(mm
) &&
823 transparent_hugepage_use_zero_page()) {
826 struct page
*zero_page
;
829 pgtable
= pte_alloc_one(mm
, haddr
);
830 if (unlikely(!pgtable
))
832 zero_page
= get_huge_zero_page();
833 if (unlikely(!zero_page
)) {
834 pte_free(mm
, pgtable
);
835 count_vm_event(THP_FAULT_FALLBACK
);
836 return VM_FAULT_FALLBACK
;
838 ptl
= pmd_lock(mm
, pmd
);
841 if (pmd_none(*pmd
)) {
842 if (userfaultfd_missing(vma
)) {
844 ret
= handle_userfault(vma
, address
, flags
,
846 VM_BUG_ON(ret
& VM_FAULT_FALLBACK
);
848 set_huge_zero_page(pgtable
, mm
, vma
,
857 pte_free(mm
, pgtable
);
858 put_huge_zero_page();
862 gfp
= alloc_hugepage_gfpmask(transparent_hugepage_defrag(vma
), 0);
863 page
= alloc_hugepage_vma(gfp
, vma
, haddr
, HPAGE_PMD_ORDER
);
864 if (unlikely(!page
)) {
865 count_vm_event(THP_FAULT_FALLBACK
);
866 return VM_FAULT_FALLBACK
;
868 return __do_huge_pmd_anonymous_page(mm
, vma
, address
, pmd
, page
, gfp
,
872 static void insert_pfn_pmd(struct vm_area_struct
*vma
, unsigned long addr
,
873 pmd_t
*pmd
, unsigned long pfn
, pgprot_t prot
, bool write
)
875 struct mm_struct
*mm
= vma
->vm_mm
;
879 ptl
= pmd_lock(mm
, pmd
);
880 if (pmd_none(*pmd
)) {
881 entry
= pmd_mkhuge(pfn_pmd(pfn
, prot
));
883 entry
= pmd_mkyoung(pmd_mkdirty(entry
));
884 entry
= maybe_pmd_mkwrite(entry
, vma
);
886 set_pmd_at(mm
, addr
, pmd
, entry
);
887 update_mmu_cache_pmd(vma
, addr
, pmd
);
892 int vmf_insert_pfn_pmd(struct vm_area_struct
*vma
, unsigned long addr
,
893 pmd_t
*pmd
, unsigned long pfn
, bool write
)
895 pgprot_t pgprot
= vma
->vm_page_prot
;
897 * If we had pmd_special, we could avoid all these restrictions,
898 * but we need to be consistent with PTEs and architectures that
899 * can't support a 'special' bit.
901 BUG_ON(!(vma
->vm_flags
& (VM_PFNMAP
|VM_MIXEDMAP
)));
902 BUG_ON((vma
->vm_flags
& (VM_PFNMAP
|VM_MIXEDMAP
)) ==
903 (VM_PFNMAP
|VM_MIXEDMAP
));
904 BUG_ON((vma
->vm_flags
& VM_PFNMAP
) && is_cow_mapping(vma
->vm_flags
));
905 BUG_ON((vma
->vm_flags
& VM_MIXEDMAP
) && pfn_valid(pfn
));
907 if (addr
< vma
->vm_start
|| addr
>= vma
->vm_end
)
908 return VM_FAULT_SIGBUS
;
909 if (track_pfn_insert(vma
, &pgprot
, pfn
))
910 return VM_FAULT_SIGBUS
;
911 insert_pfn_pmd(vma
, addr
, pmd
, pfn
, pgprot
, write
);
912 return VM_FAULT_NOPAGE
;
915 int copy_huge_pmd(struct mm_struct
*dst_mm
, struct mm_struct
*src_mm
,
916 pmd_t
*dst_pmd
, pmd_t
*src_pmd
, unsigned long addr
,
917 struct vm_area_struct
*vma
)
919 spinlock_t
*dst_ptl
, *src_ptl
;
920 struct page
*src_page
;
926 pgtable
= pte_alloc_one(dst_mm
, addr
);
927 if (unlikely(!pgtable
))
930 dst_ptl
= pmd_lock(dst_mm
, dst_pmd
);
931 src_ptl
= pmd_lockptr(src_mm
, src_pmd
);
932 spin_lock_nested(src_ptl
, SINGLE_DEPTH_NESTING
);
936 if (unlikely(!pmd_trans_huge(pmd
))) {
937 pte_free(dst_mm
, pgtable
);
941 * When page table lock is held, the huge zero pmd should not be
942 * under splitting since we don't split the page itself, only pmd to
945 if (is_huge_zero_pmd(pmd
)) {
946 struct page
*zero_page
;
948 * get_huge_zero_page() will never allocate a new page here,
949 * since we already have a zero page to copy. It just takes a
952 zero_page
= get_huge_zero_page();
953 set_huge_zero_page(pgtable
, dst_mm
, vma
, addr
, dst_pmd
,
959 if (unlikely(pmd_trans_splitting(pmd
))) {
960 /* split huge page running from under us */
961 spin_unlock(src_ptl
);
962 spin_unlock(dst_ptl
);
963 pte_free(dst_mm
, pgtable
);
965 wait_split_huge_page(vma
->anon_vma
, src_pmd
); /* src_vma */
968 src_page
= pmd_page(pmd
);
969 VM_BUG_ON_PAGE(!PageHead(src_page
), src_page
);
971 page_dup_rmap(src_page
);
972 add_mm_counter(dst_mm
, MM_ANONPAGES
, HPAGE_PMD_NR
);
974 pmdp_set_wrprotect(src_mm
, addr
, src_pmd
);
975 pmd
= pmd_mkold(pmd_wrprotect(pmd
));
976 pgtable_trans_huge_deposit(dst_mm
, dst_pmd
, pgtable
);
977 set_pmd_at(dst_mm
, addr
, dst_pmd
, pmd
);
978 atomic_long_inc(&dst_mm
->nr_ptes
);
982 spin_unlock(src_ptl
);
983 spin_unlock(dst_ptl
);
988 void huge_pmd_set_accessed(struct mm_struct
*mm
,
989 struct vm_area_struct
*vma
,
990 unsigned long address
,
991 pmd_t
*pmd
, pmd_t orig_pmd
,
998 ptl
= pmd_lock(mm
, pmd
);
999 if (unlikely(!pmd_same(*pmd
, orig_pmd
)))
1002 entry
= pmd_mkyoung(orig_pmd
);
1003 haddr
= address
& HPAGE_PMD_MASK
;
1004 if (pmdp_set_access_flags(vma
, haddr
, pmd
, entry
, dirty
))
1005 update_mmu_cache_pmd(vma
, address
, pmd
);
1012 * Save CONFIG_DEBUG_PAGEALLOC from faulting falsely on tail pages
1013 * during copy_user_huge_page()'s copy_page_rep(): in the case when
1014 * the source page gets split and a tail freed before copy completes.
1015 * Called under pmd_lock of checked pmd, so safe from splitting itself.
1017 static void get_user_huge_page(struct page
*page
)
1019 if (IS_ENABLED(CONFIG_DEBUG_PAGEALLOC
)) {
1020 struct page
*endpage
= page
+ HPAGE_PMD_NR
;
1022 atomic_add(HPAGE_PMD_NR
, &page
->_count
);
1023 while (++page
< endpage
)
1024 get_huge_page_tail(page
);
1030 static void put_user_huge_page(struct page
*page
)
1032 if (IS_ENABLED(CONFIG_DEBUG_PAGEALLOC
)) {
1033 struct page
*endpage
= page
+ HPAGE_PMD_NR
;
1035 while (page
< endpage
)
1042 static int do_huge_pmd_wp_page_fallback(struct mm_struct
*mm
,
1043 struct vm_area_struct
*vma
,
1044 unsigned long address
,
1045 pmd_t
*pmd
, pmd_t orig_pmd
,
1047 unsigned long haddr
)
1049 struct mem_cgroup
*memcg
;
1054 struct page
**pages
;
1055 unsigned long mmun_start
; /* For mmu_notifiers */
1056 unsigned long mmun_end
; /* For mmu_notifiers */
1058 pages
= kmalloc(sizeof(struct page
*) * HPAGE_PMD_NR
,
1060 if (unlikely(!pages
)) {
1061 ret
|= VM_FAULT_OOM
;
1065 for (i
= 0; i
< HPAGE_PMD_NR
; i
++) {
1066 pages
[i
] = alloc_page_vma_node(GFP_HIGHUSER_MOVABLE
|
1068 vma
, address
, page_to_nid(page
));
1069 if (unlikely(!pages
[i
] ||
1070 mem_cgroup_try_charge(pages
[i
], mm
, GFP_KERNEL
,
1075 memcg
= (void *)page_private(pages
[i
]);
1076 set_page_private(pages
[i
], 0);
1077 mem_cgroup_cancel_charge(pages
[i
], memcg
);
1081 ret
|= VM_FAULT_OOM
;
1084 set_page_private(pages
[i
], (unsigned long)memcg
);
1087 for (i
= 0; i
< HPAGE_PMD_NR
; i
++) {
1088 copy_user_highpage(pages
[i
], page
+ i
,
1089 haddr
+ PAGE_SIZE
* i
, vma
);
1090 __SetPageUptodate(pages
[i
]);
1095 mmun_end
= haddr
+ HPAGE_PMD_SIZE
;
1096 mmu_notifier_invalidate_range_start(mm
, mmun_start
, mmun_end
);
1098 ptl
= pmd_lock(mm
, pmd
);
1099 if (unlikely(!pmd_same(*pmd
, orig_pmd
)))
1100 goto out_free_pages
;
1101 VM_BUG_ON_PAGE(!PageHead(page
), page
);
1103 pmdp_huge_clear_flush_notify(vma
, haddr
, pmd
);
1104 /* leave pmd empty until pte is filled */
1106 pgtable
= pgtable_trans_huge_withdraw(mm
, pmd
);
1107 pmd_populate(mm
, &_pmd
, pgtable
);
1109 for (i
= 0; i
< HPAGE_PMD_NR
; i
++, haddr
+= PAGE_SIZE
) {
1111 entry
= mk_pte(pages
[i
], vma
->vm_page_prot
);
1112 entry
= maybe_mkwrite(pte_mkdirty(entry
), vma
);
1113 memcg
= (void *)page_private(pages
[i
]);
1114 set_page_private(pages
[i
], 0);
1115 page_add_new_anon_rmap(pages
[i
], vma
, haddr
);
1116 mem_cgroup_commit_charge(pages
[i
], memcg
, false);
1117 lru_cache_add_active_or_unevictable(pages
[i
], vma
);
1118 pte
= pte_offset_map(&_pmd
, haddr
);
1119 VM_BUG_ON(!pte_none(*pte
));
1120 set_pte_at(mm
, haddr
, pte
, entry
);
1125 smp_wmb(); /* make pte visible before pmd */
1126 pmd_populate(mm
, pmd
, pgtable
);
1127 page_remove_rmap(page
);
1130 mmu_notifier_invalidate_range_end(mm
, mmun_start
, mmun_end
);
1132 ret
|= VM_FAULT_WRITE
;
1140 mmu_notifier_invalidate_range_end(mm
, mmun_start
, mmun_end
);
1141 for (i
= 0; i
< HPAGE_PMD_NR
; i
++) {
1142 memcg
= (void *)page_private(pages
[i
]);
1143 set_page_private(pages
[i
], 0);
1144 mem_cgroup_cancel_charge(pages
[i
], memcg
);
1151 int do_huge_pmd_wp_page(struct mm_struct
*mm
, struct vm_area_struct
*vma
,
1152 unsigned long address
, pmd_t
*pmd
, pmd_t orig_pmd
)
1156 struct page
*page
= NULL
, *new_page
;
1157 struct mem_cgroup
*memcg
;
1158 unsigned long haddr
;
1159 unsigned long mmun_start
; /* For mmu_notifiers */
1160 unsigned long mmun_end
; /* For mmu_notifiers */
1161 gfp_t huge_gfp
; /* for allocation and charge */
1163 ptl
= pmd_lockptr(mm
, pmd
);
1164 VM_BUG_ON_VMA(!vma
->anon_vma
, vma
);
1165 haddr
= address
& HPAGE_PMD_MASK
;
1166 if (is_huge_zero_pmd(orig_pmd
))
1169 if (unlikely(!pmd_same(*pmd
, orig_pmd
)))
1172 page
= pmd_page(orig_pmd
);
1173 VM_BUG_ON_PAGE(!PageCompound(page
) || !PageHead(page
), page
);
1174 if (page_mapcount(page
) == 1) {
1176 entry
= pmd_mkyoung(orig_pmd
);
1177 entry
= maybe_pmd_mkwrite(pmd_mkdirty(entry
), vma
);
1178 if (pmdp_set_access_flags(vma
, haddr
, pmd
, entry
, 1))
1179 update_mmu_cache_pmd(vma
, address
, pmd
);
1180 ret
|= VM_FAULT_WRITE
;
1183 get_user_huge_page(page
);
1186 if (transparent_hugepage_enabled(vma
) &&
1187 !transparent_hugepage_debug_cow()) {
1188 huge_gfp
= alloc_hugepage_gfpmask(transparent_hugepage_defrag(vma
), 0);
1189 new_page
= alloc_hugepage_vma(huge_gfp
, vma
, haddr
, HPAGE_PMD_ORDER
);
1193 if (unlikely(!new_page
)) {
1195 split_huge_page_pmd(vma
, address
, pmd
);
1196 ret
|= VM_FAULT_FALLBACK
;
1198 ret
= do_huge_pmd_wp_page_fallback(mm
, vma
, address
,
1199 pmd
, orig_pmd
, page
, haddr
);
1200 if (ret
& VM_FAULT_OOM
) {
1201 split_huge_page(page
);
1202 ret
|= VM_FAULT_FALLBACK
;
1204 put_user_huge_page(page
);
1206 count_vm_event(THP_FAULT_FALLBACK
);
1210 if (unlikely(mem_cgroup_try_charge(new_page
, mm
, huge_gfp
, &memcg
))) {
1213 split_huge_page(page
);
1214 put_user_huge_page(page
);
1216 split_huge_page_pmd(vma
, address
, pmd
);
1217 ret
|= VM_FAULT_FALLBACK
;
1218 count_vm_event(THP_FAULT_FALLBACK
);
1222 count_vm_event(THP_FAULT_ALLOC
);
1225 clear_huge_page(new_page
, haddr
, HPAGE_PMD_NR
);
1227 copy_user_huge_page(new_page
, page
, haddr
, vma
, HPAGE_PMD_NR
);
1228 __SetPageUptodate(new_page
);
1231 mmun_end
= haddr
+ HPAGE_PMD_SIZE
;
1232 mmu_notifier_invalidate_range_start(mm
, mmun_start
, mmun_end
);
1236 put_user_huge_page(page
);
1237 if (unlikely(!pmd_same(*pmd
, orig_pmd
))) {
1239 mem_cgroup_cancel_charge(new_page
, memcg
);
1244 entry
= mk_huge_pmd(new_page
, vma
->vm_page_prot
);
1245 entry
= maybe_pmd_mkwrite(pmd_mkdirty(entry
), vma
);
1246 pmdp_huge_clear_flush_notify(vma
, haddr
, pmd
);
1247 page_add_new_anon_rmap(new_page
, vma
, haddr
);
1248 mem_cgroup_commit_charge(new_page
, memcg
, false);
1249 lru_cache_add_active_or_unevictable(new_page
, vma
);
1250 set_pmd_at(mm
, haddr
, pmd
, entry
);
1251 update_mmu_cache_pmd(vma
, address
, pmd
);
1253 add_mm_counter(mm
, MM_ANONPAGES
, HPAGE_PMD_NR
);
1254 put_huge_zero_page();
1256 VM_BUG_ON_PAGE(!PageHead(page
), page
);
1257 page_remove_rmap(page
);
1260 ret
|= VM_FAULT_WRITE
;
1264 mmu_notifier_invalidate_range_end(mm
, mmun_start
, mmun_end
);
1272 struct page
*follow_trans_huge_pmd(struct vm_area_struct
*vma
,
1277 struct mm_struct
*mm
= vma
->vm_mm
;
1278 struct page
*page
= NULL
;
1280 assert_spin_locked(pmd_lockptr(mm
, pmd
));
1282 if (flags
& FOLL_WRITE
&& !pmd_write(*pmd
))
1285 /* Avoid dumping huge zero page */
1286 if ((flags
& FOLL_DUMP
) && is_huge_zero_pmd(*pmd
))
1287 return ERR_PTR(-EFAULT
);
1289 /* Full NUMA hinting faults to serialise migration in fault paths */
1290 if ((flags
& FOLL_NUMA
) && pmd_protnone(*pmd
))
1293 page
= pmd_page(*pmd
);
1294 VM_BUG_ON_PAGE(!PageHead(page
), page
);
1295 if (flags
& FOLL_TOUCH
) {
1298 * We should set the dirty bit only for FOLL_WRITE but
1299 * for now the dirty bit in the pmd is meaningless.
1300 * And if the dirty bit will become meaningful and
1301 * we'll only set it with FOLL_WRITE, an atomic
1302 * set_bit will be required on the pmd to set the
1303 * young bit, instead of the current set_pmd_at.
1305 _pmd
= pmd_mkyoung(pmd_mkdirty(*pmd
));
1306 if (pmdp_set_access_flags(vma
, addr
& HPAGE_PMD_MASK
,
1308 update_mmu_cache_pmd(vma
, addr
, pmd
);
1310 if ((flags
& FOLL_MLOCK
) && (vma
->vm_flags
& VM_LOCKED
)) {
1311 if (page
->mapping
&& trylock_page(page
)) {
1314 mlock_vma_page(page
);
1318 page
+= (addr
& ~HPAGE_PMD_MASK
) >> PAGE_SHIFT
;
1319 VM_BUG_ON_PAGE(!PageCompound(page
), page
);
1320 if (flags
& FOLL_GET
)
1321 get_page_foll(page
);
1327 /* NUMA hinting page fault entry point for trans huge pmds */
1328 int do_huge_pmd_numa_page(struct mm_struct
*mm
, struct vm_area_struct
*vma
,
1329 unsigned long addr
, pmd_t pmd
, pmd_t
*pmdp
)
1332 struct anon_vma
*anon_vma
= NULL
;
1334 unsigned long haddr
= addr
& HPAGE_PMD_MASK
;
1335 int page_nid
= -1, this_nid
= numa_node_id();
1336 int target_nid
, last_cpupid
= -1;
1338 bool migrated
= false;
1342 /* A PROT_NONE fault should not end up here */
1343 BUG_ON(!(vma
->vm_flags
& (VM_READ
| VM_EXEC
| VM_WRITE
)));
1345 ptl
= pmd_lock(mm
, pmdp
);
1346 if (unlikely(!pmd_same(pmd
, *pmdp
)))
1350 * If there are potential migrations, wait for completion and retry
1351 * without disrupting NUMA hinting information. Do not relock and
1352 * check_same as the page may no longer be mapped.
1354 if (unlikely(pmd_trans_migrating(*pmdp
))) {
1355 page
= pmd_page(*pmdp
);
1357 wait_on_page_locked(page
);
1361 page
= pmd_page(pmd
);
1362 BUG_ON(is_huge_zero_page(page
));
1363 page_nid
= page_to_nid(page
);
1364 last_cpupid
= page_cpupid_last(page
);
1365 count_vm_numa_event(NUMA_HINT_FAULTS
);
1366 if (page_nid
== this_nid
) {
1367 count_vm_numa_event(NUMA_HINT_FAULTS_LOCAL
);
1368 flags
|= TNF_FAULT_LOCAL
;
1371 /* See similar comment in do_numa_page for explanation */
1372 if (!(vma
->vm_flags
& VM_WRITE
))
1373 flags
|= TNF_NO_GROUP
;
1376 * Acquire the page lock to serialise THP migrations but avoid dropping
1377 * page_table_lock if at all possible
1379 page_locked
= trylock_page(page
);
1380 target_nid
= mpol_misplaced(page
, vma
, haddr
);
1381 if (target_nid
== -1) {
1382 /* If the page was locked, there are no parallel migrations */
1387 /* Migration could have started since the pmd_trans_migrating check */
1390 wait_on_page_locked(page
);
1396 * Page is misplaced. Page lock serialises migrations. Acquire anon_vma
1397 * to serialises splits
1401 anon_vma
= page_lock_anon_vma_read(page
);
1403 /* Confirm the PMD did not change while page_table_lock was released */
1405 if (unlikely(!pmd_same(pmd
, *pmdp
))) {
1412 /* Bail if we fail to protect against THP splits for any reason */
1413 if (unlikely(!anon_vma
)) {
1420 * Migrate the THP to the requested node, returns with page unlocked
1421 * and access rights restored.
1424 migrated
= migrate_misplaced_transhuge_page(mm
, vma
,
1425 pmdp
, pmd
, addr
, page
, target_nid
);
1427 flags
|= TNF_MIGRATED
;
1428 page_nid
= target_nid
;
1430 flags
|= TNF_MIGRATE_FAIL
;
1434 BUG_ON(!PageLocked(page
));
1435 was_writable
= pmd_write(pmd
);
1436 pmd
= pmd_modify(pmd
, vma
->vm_page_prot
);
1437 pmd
= pmd_mkyoung(pmd
);
1439 pmd
= pmd_mkwrite(pmd
);
1440 set_pmd_at(mm
, haddr
, pmdp
, pmd
);
1441 update_mmu_cache_pmd(vma
, addr
, pmdp
);
1448 page_unlock_anon_vma_read(anon_vma
);
1451 task_numa_fault(last_cpupid
, page_nid
, HPAGE_PMD_NR
, flags
);
1456 int zap_huge_pmd(struct mmu_gather
*tlb
, struct vm_area_struct
*vma
,
1457 pmd_t
*pmd
, unsigned long addr
)
1462 if (__pmd_trans_huge_lock(pmd
, vma
, &ptl
) != 1)
1465 * For architectures like ppc64 we look at deposited pgtable
1466 * when calling pmdp_huge_get_and_clear. So do the
1467 * pgtable_trans_huge_withdraw after finishing pmdp related
1470 orig_pmd
= pmdp_huge_get_and_clear_full(tlb
->mm
, addr
, pmd
,
1472 tlb_remove_pmd_tlb_entry(tlb
, pmd
, addr
);
1473 if (vma_is_dax(vma
)) {
1475 if (is_huge_zero_pmd(orig_pmd
))
1476 put_huge_zero_page();
1477 } else if (is_huge_zero_pmd(orig_pmd
)) {
1478 pte_free(tlb
->mm
, pgtable_trans_huge_withdraw(tlb
->mm
, pmd
));
1479 atomic_long_dec(&tlb
->mm
->nr_ptes
);
1481 put_huge_zero_page();
1483 struct page
*page
= pmd_page(orig_pmd
);
1484 page_remove_rmap(page
);
1485 VM_BUG_ON_PAGE(page_mapcount(page
) < 0, page
);
1486 add_mm_counter(tlb
->mm
, MM_ANONPAGES
, -HPAGE_PMD_NR
);
1487 VM_BUG_ON_PAGE(!PageHead(page
), page
);
1488 pte_free(tlb
->mm
, pgtable_trans_huge_withdraw(tlb
->mm
, pmd
));
1489 atomic_long_dec(&tlb
->mm
->nr_ptes
);
1491 tlb_remove_page(tlb
, page
);
1496 int move_huge_pmd(struct vm_area_struct
*vma
, struct vm_area_struct
*new_vma
,
1497 unsigned long old_addr
,
1498 unsigned long new_addr
, unsigned long old_end
,
1499 pmd_t
*old_pmd
, pmd_t
*new_pmd
)
1501 spinlock_t
*old_ptl
, *new_ptl
;
1505 struct mm_struct
*mm
= vma
->vm_mm
;
1507 if ((old_addr
& ~HPAGE_PMD_MASK
) ||
1508 (new_addr
& ~HPAGE_PMD_MASK
) ||
1509 old_end
- old_addr
< HPAGE_PMD_SIZE
||
1510 (new_vma
->vm_flags
& VM_NOHUGEPAGE
))
1514 * The destination pmd shouldn't be established, free_pgtables()
1515 * should have release it.
1517 if (WARN_ON(!pmd_none(*new_pmd
))) {
1518 VM_BUG_ON(pmd_trans_huge(*new_pmd
));
1523 * We don't have to worry about the ordering of src and dst
1524 * ptlocks because exclusive mmap_sem prevents deadlock.
1526 ret
= __pmd_trans_huge_lock(old_pmd
, vma
, &old_ptl
);
1528 new_ptl
= pmd_lockptr(mm
, new_pmd
);
1529 if (new_ptl
!= old_ptl
)
1530 spin_lock_nested(new_ptl
, SINGLE_DEPTH_NESTING
);
1531 pmd
= pmdp_huge_get_and_clear(mm
, old_addr
, old_pmd
);
1532 VM_BUG_ON(!pmd_none(*new_pmd
));
1534 if (pmd_move_must_withdraw(new_ptl
, old_ptl
)) {
1536 pgtable
= pgtable_trans_huge_withdraw(mm
, old_pmd
);
1537 pgtable_trans_huge_deposit(mm
, new_pmd
, pgtable
);
1539 set_pmd_at(mm
, new_addr
, new_pmd
, pmd_mksoft_dirty(pmd
));
1540 if (new_ptl
!= old_ptl
)
1541 spin_unlock(new_ptl
);
1542 spin_unlock(old_ptl
);
1550 * - 0 if PMD could not be locked
1551 * - 1 if PMD was locked but protections unchange and TLB flush unnecessary
1552 * - HPAGE_PMD_NR is protections changed and TLB flush necessary
1554 int change_huge_pmd(struct vm_area_struct
*vma
, pmd_t
*pmd
,
1555 unsigned long addr
, pgprot_t newprot
, int prot_numa
)
1557 struct mm_struct
*mm
= vma
->vm_mm
;
1561 if (__pmd_trans_huge_lock(pmd
, vma
, &ptl
) == 1) {
1563 bool preserve_write
= prot_numa
&& pmd_write(*pmd
);
1567 * Avoid trapping faults against the zero page. The read-only
1568 * data is likely to be read-cached on the local CPU and
1569 * local/remote hits to the zero page are not interesting.
1571 if (prot_numa
&& is_huge_zero_pmd(*pmd
)) {
1576 if (!prot_numa
|| !pmd_protnone(*pmd
)) {
1577 entry
= pmdp_huge_get_and_clear_notify(mm
, addr
, pmd
);
1578 entry
= pmd_modify(entry
, newprot
);
1580 entry
= pmd_mkwrite(entry
);
1582 set_pmd_at(mm
, addr
, pmd
, entry
);
1583 BUG_ON(!preserve_write
&& pmd_write(entry
));
1592 * Returns 1 if a given pmd maps a stable (not under splitting) thp.
1593 * Returns -1 if it maps a thp under splitting. Returns 0 otherwise.
1595 * Note that if it returns 1, this routine returns without unlocking page
1596 * table locks. So callers must unlock them.
1598 int __pmd_trans_huge_lock(pmd_t
*pmd
, struct vm_area_struct
*vma
,
1601 *ptl
= pmd_lock(vma
->vm_mm
, pmd
);
1602 if (likely(pmd_trans_huge(*pmd
))) {
1603 if (unlikely(pmd_trans_splitting(*pmd
))) {
1605 wait_split_huge_page(vma
->anon_vma
, pmd
);
1608 /* Thp mapped by 'pmd' is stable, so we can
1609 * handle it as it is. */
1618 * This function returns whether a given @page is mapped onto the @address
1619 * in the virtual space of @mm.
1621 * When it's true, this function returns *pmd with holding the page table lock
1622 * and passing it back to the caller via @ptl.
1623 * If it's false, returns NULL without holding the page table lock.
1625 pmd_t
*page_check_address_pmd(struct page
*page
,
1626 struct mm_struct
*mm
,
1627 unsigned long address
,
1628 enum page_check_address_pmd_flag flag
,
1635 if (address
& ~HPAGE_PMD_MASK
)
1638 pgd
= pgd_offset(mm
, address
);
1639 if (!pgd_present(*pgd
))
1641 pud
= pud_offset(pgd
, address
);
1642 if (!pud_present(*pud
))
1644 pmd
= pmd_offset(pud
, address
);
1646 *ptl
= pmd_lock(mm
, pmd
);
1647 if (!pmd_present(*pmd
))
1649 if (pmd_page(*pmd
) != page
)
1652 * split_vma() may create temporary aliased mappings. There is
1653 * no risk as long as all huge pmd are found and have their
1654 * splitting bit set before __split_huge_page_refcount
1655 * runs. Finding the same huge pmd more than once during the
1656 * same rmap walk is not a problem.
1658 if (flag
== PAGE_CHECK_ADDRESS_PMD_NOTSPLITTING_FLAG
&&
1659 pmd_trans_splitting(*pmd
))
1661 if (pmd_trans_huge(*pmd
)) {
1662 VM_BUG_ON(flag
== PAGE_CHECK_ADDRESS_PMD_SPLITTING_FLAG
&&
1663 !pmd_trans_splitting(*pmd
));
1671 static int __split_huge_page_splitting(struct page
*page
,
1672 struct vm_area_struct
*vma
,
1673 unsigned long address
)
1675 struct mm_struct
*mm
= vma
->vm_mm
;
1679 /* For mmu_notifiers */
1680 const unsigned long mmun_start
= address
;
1681 const unsigned long mmun_end
= address
+ HPAGE_PMD_SIZE
;
1683 mmu_notifier_invalidate_range_start(mm
, mmun_start
, mmun_end
);
1684 pmd
= page_check_address_pmd(page
, mm
, address
,
1685 PAGE_CHECK_ADDRESS_PMD_NOTSPLITTING_FLAG
, &ptl
);
1688 * We can't temporarily set the pmd to null in order
1689 * to split it, the pmd must remain marked huge at all
1690 * times or the VM won't take the pmd_trans_huge paths
1691 * and it won't wait on the anon_vma->root->rwsem to
1692 * serialize against split_huge_page*.
1694 pmdp_splitting_flush(vma
, address
, pmd
);
1699 mmu_notifier_invalidate_range_end(mm
, mmun_start
, mmun_end
);
1704 static void __split_huge_page_refcount(struct page
*page
,
1705 struct list_head
*list
)
1708 struct zone
*zone
= page_zone(page
);
1709 struct lruvec
*lruvec
;
1712 /* prevent PageLRU to go away from under us, and freeze lru stats */
1713 spin_lock_irq(&zone
->lru_lock
);
1714 lruvec
= mem_cgroup_page_lruvec(page
, zone
);
1716 compound_lock(page
);
1717 /* complete memcg works before add pages to LRU */
1718 mem_cgroup_split_huge_fixup(page
);
1720 for (i
= HPAGE_PMD_NR
- 1; i
>= 1; i
--) {
1721 struct page
*page_tail
= page
+ i
;
1723 /* tail_page->_mapcount cannot change */
1724 BUG_ON(page_mapcount(page_tail
) < 0);
1725 tail_count
+= page_mapcount(page_tail
);
1726 /* check for overflow */
1727 BUG_ON(tail_count
< 0);
1728 BUG_ON(atomic_read(&page_tail
->_count
) != 0);
1730 * tail_page->_count is zero and not changing from
1731 * under us. But get_page_unless_zero() may be running
1732 * from under us on the tail_page. If we used
1733 * atomic_set() below instead of atomic_add(), we
1734 * would then run atomic_set() concurrently with
1735 * get_page_unless_zero(), and atomic_set() is
1736 * implemented in C not using locked ops. spin_unlock
1737 * on x86 sometime uses locked ops because of PPro
1738 * errata 66, 92, so unless somebody can guarantee
1739 * atomic_set() here would be safe on all archs (and
1740 * not only on x86), it's safer to use atomic_add().
1742 atomic_add(page_mapcount(page
) + page_mapcount(page_tail
) + 1,
1743 &page_tail
->_count
);
1745 /* after clearing PageTail the gup refcount can be released */
1746 smp_mb__after_atomic();
1748 page_tail
->flags
&= ~PAGE_FLAGS_CHECK_AT_PREP
;
1749 page_tail
->flags
|= (page
->flags
&
1750 ((1L << PG_referenced
) |
1751 (1L << PG_swapbacked
) |
1752 (1L << PG_mlocked
) |
1753 (1L << PG_uptodate
) |
1755 (1L << PG_unevictable
)));
1756 page_tail
->flags
|= (1L << PG_dirty
);
1758 clear_compound_head(page_tail
);
1760 if (page_is_young(page
))
1761 set_page_young(page_tail
);
1762 if (page_is_idle(page
))
1763 set_page_idle(page_tail
);
1766 * __split_huge_page_splitting() already set the
1767 * splitting bit in all pmd that could map this
1768 * hugepage, that will ensure no CPU can alter the
1769 * mapcount on the head page. The mapcount is only
1770 * accounted in the head page and it has to be
1771 * transferred to all tail pages in the below code. So
1772 * for this code to be safe, the split the mapcount
1773 * can't change. But that doesn't mean userland can't
1774 * keep changing and reading the page contents while
1775 * we transfer the mapcount, so the pmd splitting
1776 * status is achieved setting a reserved bit in the
1777 * pmd, not by clearing the present bit.
1779 page_tail
->_mapcount
= page
->_mapcount
;
1781 BUG_ON(page_tail
->mapping
);
1782 page_tail
->mapping
= page
->mapping
;
1784 page_tail
->index
= page
->index
+ i
;
1785 page_cpupid_xchg_last(page_tail
, page_cpupid_last(page
));
1787 BUG_ON(!PageAnon(page_tail
));
1788 BUG_ON(!PageUptodate(page_tail
));
1789 BUG_ON(!PageDirty(page_tail
));
1790 BUG_ON(!PageSwapBacked(page_tail
));
1792 lru_add_page_tail(page
, page_tail
, lruvec
, list
);
1794 atomic_sub(tail_count
, &page
->_count
);
1795 BUG_ON(atomic_read(&page
->_count
) <= 0);
1797 __mod_zone_page_state(zone
, NR_ANON_TRANSPARENT_HUGEPAGES
, -1);
1799 ClearPageCompound(page
);
1800 compound_unlock(page
);
1801 spin_unlock_irq(&zone
->lru_lock
);
1803 for (i
= 1; i
< HPAGE_PMD_NR
; i
++) {
1804 struct page
*page_tail
= page
+ i
;
1805 BUG_ON(page_count(page_tail
) <= 0);
1807 * Tail pages may be freed if there wasn't any mapping
1808 * like if add_to_swap() is running on a lru page that
1809 * had its mapping zapped. And freeing these pages
1810 * requires taking the lru_lock so we do the put_page
1811 * of the tail pages after the split is complete.
1813 put_page(page_tail
);
1817 * Only the head page (now become a regular page) is required
1818 * to be pinned by the caller.
1820 BUG_ON(page_count(page
) <= 0);
1823 static int __split_huge_page_map(struct page
*page
,
1824 struct vm_area_struct
*vma
,
1825 unsigned long address
)
1827 struct mm_struct
*mm
= vma
->vm_mm
;
1832 unsigned long haddr
;
1834 pmd
= page_check_address_pmd(page
, mm
, address
,
1835 PAGE_CHECK_ADDRESS_PMD_SPLITTING_FLAG
, &ptl
);
1837 pgtable
= pgtable_trans_huge_withdraw(mm
, pmd
);
1838 pmd_populate(mm
, &_pmd
, pgtable
);
1839 if (pmd_write(*pmd
))
1840 BUG_ON(page_mapcount(page
) != 1);
1843 for (i
= 0; i
< HPAGE_PMD_NR
; i
++, haddr
+= PAGE_SIZE
) {
1845 BUG_ON(PageCompound(page
+i
));
1847 * Note that NUMA hinting access restrictions are not
1848 * transferred to avoid any possibility of altering
1849 * permissions across VMAs.
1851 entry
= mk_pte(page
+ i
, vma
->vm_page_prot
);
1852 entry
= maybe_mkwrite(pte_mkdirty(entry
), vma
);
1853 if (!pmd_write(*pmd
))
1854 entry
= pte_wrprotect(entry
);
1855 if (!pmd_young(*pmd
))
1856 entry
= pte_mkold(entry
);
1857 pte
= pte_offset_map(&_pmd
, haddr
);
1858 BUG_ON(!pte_none(*pte
));
1859 set_pte_at(mm
, haddr
, pte
, entry
);
1863 smp_wmb(); /* make pte visible before pmd */
1865 * Up to this point the pmd is present and huge and
1866 * userland has the whole access to the hugepage
1867 * during the split (which happens in place). If we
1868 * overwrite the pmd with the not-huge version
1869 * pointing to the pte here (which of course we could
1870 * if all CPUs were bug free), userland could trigger
1871 * a small page size TLB miss on the small sized TLB
1872 * while the hugepage TLB entry is still established
1873 * in the huge TLB. Some CPU doesn't like that. See
1874 * http://support.amd.com/us/Processor_TechDocs/41322.pdf,
1875 * Erratum 383 on page 93. Intel should be safe but is
1876 * also warns that it's only safe if the permission
1877 * and cache attributes of the two entries loaded in
1878 * the two TLB is identical (which should be the case
1879 * here). But it is generally safer to never allow
1880 * small and huge TLB entries for the same virtual
1881 * address to be loaded simultaneously. So instead of
1882 * doing "pmd_populate(); flush_pmd_tlb_range();" we first
1883 * mark the current pmd notpresent (atomically because
1884 * here the pmd_trans_huge and pmd_trans_splitting
1885 * must remain set at all times on the pmd until the
1886 * split is complete for this pmd), then we flush the
1887 * SMP TLB and finally we write the non-huge version
1888 * of the pmd entry with pmd_populate.
1890 pmdp_invalidate(vma
, address
, pmd
);
1891 pmd_populate(mm
, pmd
, pgtable
);
1899 /* must be called with anon_vma->root->rwsem held */
1900 static void __split_huge_page(struct page
*page
,
1901 struct anon_vma
*anon_vma
,
1902 struct list_head
*list
)
1904 int mapcount
, mapcount2
;
1905 pgoff_t pgoff
= page
->index
<< (PAGE_CACHE_SHIFT
- PAGE_SHIFT
);
1906 struct anon_vma_chain
*avc
;
1908 BUG_ON(!PageHead(page
));
1909 BUG_ON(PageTail(page
));
1912 anon_vma_interval_tree_foreach(avc
, &anon_vma
->rb_root
, pgoff
, pgoff
) {
1913 struct vm_area_struct
*vma
= avc
->vma
;
1914 unsigned long addr
= vma_address(page
, vma
);
1915 BUG_ON(is_vma_temporary_stack(vma
));
1916 mapcount
+= __split_huge_page_splitting(page
, vma
, addr
);
1919 * It is critical that new vmas are added to the tail of the
1920 * anon_vma list. This guarantes that if copy_huge_pmd() runs
1921 * and establishes a child pmd before
1922 * __split_huge_page_splitting() freezes the parent pmd (so if
1923 * we fail to prevent copy_huge_pmd() from running until the
1924 * whole __split_huge_page() is complete), we will still see
1925 * the newly established pmd of the child later during the
1926 * walk, to be able to set it as pmd_trans_splitting too.
1928 if (mapcount
!= page_mapcount(page
)) {
1929 pr_err("mapcount %d page_mapcount %d\n",
1930 mapcount
, page_mapcount(page
));
1934 __split_huge_page_refcount(page
, list
);
1937 anon_vma_interval_tree_foreach(avc
, &anon_vma
->rb_root
, pgoff
, pgoff
) {
1938 struct vm_area_struct
*vma
= avc
->vma
;
1939 unsigned long addr
= vma_address(page
, vma
);
1940 BUG_ON(is_vma_temporary_stack(vma
));
1941 mapcount2
+= __split_huge_page_map(page
, vma
, addr
);
1943 if (mapcount
!= mapcount2
) {
1944 pr_err("mapcount %d mapcount2 %d page_mapcount %d\n",
1945 mapcount
, mapcount2
, page_mapcount(page
));
1951 * Split a hugepage into normal pages. This doesn't change the position of head
1952 * page. If @list is null, tail pages will be added to LRU list, otherwise, to
1953 * @list. Both head page and tail pages will inherit mapping, flags, and so on
1954 * from the hugepage.
1955 * Return 0 if the hugepage is split successfully otherwise return 1.
1957 int split_huge_page_to_list(struct page
*page
, struct list_head
*list
)
1959 struct anon_vma
*anon_vma
;
1962 BUG_ON(is_huge_zero_page(page
));
1963 BUG_ON(!PageAnon(page
));
1966 * The caller does not necessarily hold an mmap_sem that would prevent
1967 * the anon_vma disappearing so we first we take a reference to it
1968 * and then lock the anon_vma for write. This is similar to
1969 * page_lock_anon_vma_read except the write lock is taken to serialise
1970 * against parallel split or collapse operations.
1972 anon_vma
= page_get_anon_vma(page
);
1975 anon_vma_lock_write(anon_vma
);
1978 if (!PageCompound(page
))
1981 BUG_ON(!PageSwapBacked(page
));
1982 __split_huge_page(page
, anon_vma
, list
);
1983 count_vm_event(THP_SPLIT
);
1985 BUG_ON(PageCompound(page
));
1987 anon_vma_unlock_write(anon_vma
);
1988 put_anon_vma(anon_vma
);
1993 #define VM_NO_THP (VM_SPECIAL | VM_HUGETLB | VM_SHARED | VM_MAYSHARE)
1995 int hugepage_madvise(struct vm_area_struct
*vma
,
1996 unsigned long *vm_flags
, int advice
)
2002 * qemu blindly sets MADV_HUGEPAGE on all allocations, but s390
2003 * can't handle this properly after s390_enable_sie, so we simply
2004 * ignore the madvise to prevent qemu from causing a SIGSEGV.
2006 if (mm_has_pgste(vma
->vm_mm
))
2010 * Be somewhat over-protective like KSM for now!
2012 if (*vm_flags
& VM_NO_THP
)
2014 *vm_flags
&= ~VM_NOHUGEPAGE
;
2015 *vm_flags
|= VM_HUGEPAGE
;
2017 * If the vma become good for khugepaged to scan,
2018 * register it here without waiting a page fault that
2019 * may not happen any time soon.
2021 if (unlikely(khugepaged_enter_vma_merge(vma
, *vm_flags
)))
2024 case MADV_NOHUGEPAGE
:
2026 * Be somewhat over-protective like KSM for now!
2028 if (*vm_flags
& VM_NO_THP
)
2030 *vm_flags
&= ~VM_HUGEPAGE
;
2031 *vm_flags
|= VM_NOHUGEPAGE
;
2033 * Setting VM_NOHUGEPAGE will prevent khugepaged from scanning
2034 * this vma even if we leave the mm registered in khugepaged if
2035 * it got registered before VM_NOHUGEPAGE was set.
2043 static int __init
khugepaged_slab_init(void)
2045 mm_slot_cache
= kmem_cache_create("khugepaged_mm_slot",
2046 sizeof(struct mm_slot
),
2047 __alignof__(struct mm_slot
), 0, NULL
);
2054 static void __init
khugepaged_slab_exit(void)
2056 kmem_cache_destroy(mm_slot_cache
);
2059 static inline struct mm_slot
*alloc_mm_slot(void)
2061 if (!mm_slot_cache
) /* initialization failed */
2063 return kmem_cache_zalloc(mm_slot_cache
, GFP_KERNEL
);
2066 static inline void free_mm_slot(struct mm_slot
*mm_slot
)
2068 kmem_cache_free(mm_slot_cache
, mm_slot
);
2071 static struct mm_slot
*get_mm_slot(struct mm_struct
*mm
)
2073 struct mm_slot
*mm_slot
;
2075 hash_for_each_possible(mm_slots_hash
, mm_slot
, hash
, (unsigned long)mm
)
2076 if (mm
== mm_slot
->mm
)
2082 static void insert_to_mm_slots_hash(struct mm_struct
*mm
,
2083 struct mm_slot
*mm_slot
)
2086 hash_add(mm_slots_hash
, &mm_slot
->hash
, (long)mm
);
2089 static inline int khugepaged_test_exit(struct mm_struct
*mm
)
2091 return atomic_read(&mm
->mm_users
) == 0;
2094 int __khugepaged_enter(struct mm_struct
*mm
)
2096 struct mm_slot
*mm_slot
;
2099 mm_slot
= alloc_mm_slot();
2103 /* __khugepaged_exit() must not run from under us */
2104 VM_BUG_ON_MM(khugepaged_test_exit(mm
), mm
);
2105 if (unlikely(test_and_set_bit(MMF_VM_HUGEPAGE
, &mm
->flags
))) {
2106 free_mm_slot(mm_slot
);
2110 spin_lock(&khugepaged_mm_lock
);
2111 insert_to_mm_slots_hash(mm
, mm_slot
);
2113 * Insert just behind the scanning cursor, to let the area settle
2116 wakeup
= list_empty(&khugepaged_scan
.mm_head
);
2117 list_add_tail(&mm_slot
->mm_node
, &khugepaged_scan
.mm_head
);
2118 spin_unlock(&khugepaged_mm_lock
);
2120 atomic_inc(&mm
->mm_count
);
2122 wake_up_interruptible(&khugepaged_wait
);
2127 int khugepaged_enter_vma_merge(struct vm_area_struct
*vma
,
2128 unsigned long vm_flags
)
2130 unsigned long hstart
, hend
;
2133 * Not yet faulted in so we will register later in the
2134 * page fault if needed.
2137 if (vma
->vm_ops
|| (vm_flags
& VM_NO_THP
))
2138 /* khugepaged not yet working on file or special mappings */
2140 hstart
= (vma
->vm_start
+ ~HPAGE_PMD_MASK
) & HPAGE_PMD_MASK
;
2141 hend
= vma
->vm_end
& HPAGE_PMD_MASK
;
2143 return khugepaged_enter(vma
, vm_flags
);
2147 void __khugepaged_exit(struct mm_struct
*mm
)
2149 struct mm_slot
*mm_slot
;
2152 spin_lock(&khugepaged_mm_lock
);
2153 mm_slot
= get_mm_slot(mm
);
2154 if (mm_slot
&& khugepaged_scan
.mm_slot
!= mm_slot
) {
2155 hash_del(&mm_slot
->hash
);
2156 list_del(&mm_slot
->mm_node
);
2159 spin_unlock(&khugepaged_mm_lock
);
2162 clear_bit(MMF_VM_HUGEPAGE
, &mm
->flags
);
2163 free_mm_slot(mm_slot
);
2165 } else if (mm_slot
) {
2167 * This is required to serialize against
2168 * khugepaged_test_exit() (which is guaranteed to run
2169 * under mmap sem read mode). Stop here (after we
2170 * return all pagetables will be destroyed) until
2171 * khugepaged has finished working on the pagetables
2172 * under the mmap_sem.
2174 down_write(&mm
->mmap_sem
);
2175 up_write(&mm
->mmap_sem
);
2179 static void release_pte_page(struct page
*page
)
2181 /* 0 stands for page_is_file_cache(page) == false */
2182 dec_zone_page_state(page
, NR_ISOLATED_ANON
+ 0);
2184 putback_lru_page(page
);
2187 static void release_pte_pages(pte_t
*pte
, pte_t
*_pte
)
2189 while (--_pte
>= pte
) {
2190 pte_t pteval
= *_pte
;
2191 if (!pte_none(pteval
) && !is_zero_pfn(pte_pfn(pteval
)))
2192 release_pte_page(pte_page(pteval
));
2196 static int __collapse_huge_page_isolate(struct vm_area_struct
*vma
,
2197 unsigned long address
,
2202 int none_or_zero
= 0;
2203 bool referenced
= false, writable
= false;
2204 for (_pte
= pte
; _pte
< pte
+HPAGE_PMD_NR
;
2205 _pte
++, address
+= PAGE_SIZE
) {
2206 pte_t pteval
= *_pte
;
2207 if (pte_none(pteval
) || (pte_present(pteval
) &&
2208 is_zero_pfn(pte_pfn(pteval
)))) {
2209 if (!userfaultfd_armed(vma
) &&
2210 ++none_or_zero
<= khugepaged_max_ptes_none
)
2215 if (!pte_present(pteval
))
2217 page
= vm_normal_page(vma
, address
, pteval
);
2218 if (unlikely(!page
))
2221 VM_BUG_ON_PAGE(PageCompound(page
), page
);
2222 VM_BUG_ON_PAGE(!PageAnon(page
), page
);
2223 VM_BUG_ON_PAGE(!PageSwapBacked(page
), page
);
2226 * We can do it before isolate_lru_page because the
2227 * page can't be freed from under us. NOTE: PG_lock
2228 * is needed to serialize against split_huge_page
2229 * when invoked from the VM.
2231 if (!trylock_page(page
))
2235 * cannot use mapcount: can't collapse if there's a gup pin.
2236 * The page must only be referenced by the scanned process
2237 * and page swap cache.
2239 if (page_count(page
) != 1 + !!PageSwapCache(page
)) {
2243 if (pte_write(pteval
)) {
2246 if (PageSwapCache(page
) && !reuse_swap_page(page
)) {
2251 * Page is not in the swap cache. It can be collapsed
2257 * Isolate the page to avoid collapsing an hugepage
2258 * currently in use by the VM.
2260 if (isolate_lru_page(page
)) {
2264 /* 0 stands for page_is_file_cache(page) == false */
2265 inc_zone_page_state(page
, NR_ISOLATED_ANON
+ 0);
2266 VM_BUG_ON_PAGE(!PageLocked(page
), page
);
2267 VM_BUG_ON_PAGE(PageLRU(page
), page
);
2269 /* If there is no mapped pte young don't collapse the page */
2270 if (pte_young(pteval
) ||
2271 page_is_young(page
) || PageReferenced(page
) ||
2272 mmu_notifier_test_young(vma
->vm_mm
, address
))
2275 if (likely(referenced
&& writable
))
2278 release_pte_pages(pte
, _pte
);
2282 static void __collapse_huge_page_copy(pte_t
*pte
, struct page
*page
,
2283 struct vm_area_struct
*vma
,
2284 unsigned long address
,
2288 for (_pte
= pte
; _pte
< pte
+HPAGE_PMD_NR
; _pte
++) {
2289 pte_t pteval
= *_pte
;
2290 struct page
*src_page
;
2292 if (pte_none(pteval
) || is_zero_pfn(pte_pfn(pteval
))) {
2293 clear_user_highpage(page
, address
);
2294 add_mm_counter(vma
->vm_mm
, MM_ANONPAGES
, 1);
2295 if (is_zero_pfn(pte_pfn(pteval
))) {
2297 * ptl mostly unnecessary.
2301 * paravirt calls inside pte_clear here are
2304 pte_clear(vma
->vm_mm
, address
, _pte
);
2308 src_page
= pte_page(pteval
);
2309 copy_user_highpage(page
, src_page
, address
, vma
);
2310 VM_BUG_ON_PAGE(page_mapcount(src_page
) != 1, src_page
);
2311 release_pte_page(src_page
);
2313 * ptl mostly unnecessary, but preempt has to
2314 * be disabled to update the per-cpu stats
2315 * inside page_remove_rmap().
2319 * paravirt calls inside pte_clear here are
2322 pte_clear(vma
->vm_mm
, address
, _pte
);
2323 page_remove_rmap(src_page
);
2325 free_page_and_swap_cache(src_page
);
2328 address
+= PAGE_SIZE
;
2333 static void khugepaged_alloc_sleep(void)
2337 add_wait_queue(&khugepaged_wait
, &wait
);
2338 freezable_schedule_timeout_interruptible(
2339 msecs_to_jiffies(khugepaged_alloc_sleep_millisecs
));
2340 remove_wait_queue(&khugepaged_wait
, &wait
);
2343 static int khugepaged_node_load
[MAX_NUMNODES
];
2345 static bool khugepaged_scan_abort(int nid
)
2350 * If zone_reclaim_mode is disabled, then no extra effort is made to
2351 * allocate memory locally.
2353 if (!zone_reclaim_mode
)
2356 /* If there is a count for this node already, it must be acceptable */
2357 if (khugepaged_node_load
[nid
])
2360 for (i
= 0; i
< MAX_NUMNODES
; i
++) {
2361 if (!khugepaged_node_load
[i
])
2363 if (node_distance(nid
, i
) > RECLAIM_DISTANCE
)
2370 static int khugepaged_find_target_node(void)
2372 static int last_khugepaged_target_node
= NUMA_NO_NODE
;
2373 int nid
, target_node
= 0, max_value
= 0;
2375 /* find first node with max normal pages hit */
2376 for (nid
= 0; nid
< MAX_NUMNODES
; nid
++)
2377 if (khugepaged_node_load
[nid
] > max_value
) {
2378 max_value
= khugepaged_node_load
[nid
];
2382 /* do some balance if several nodes have the same hit record */
2383 if (target_node
<= last_khugepaged_target_node
)
2384 for (nid
= last_khugepaged_target_node
+ 1; nid
< MAX_NUMNODES
;
2386 if (max_value
== khugepaged_node_load
[nid
]) {
2391 last_khugepaged_target_node
= target_node
;
2395 static bool khugepaged_prealloc_page(struct page
**hpage
, bool *wait
)
2397 if (IS_ERR(*hpage
)) {
2403 khugepaged_alloc_sleep();
2404 } else if (*hpage
) {
2412 static struct page
*
2413 khugepaged_alloc_page(struct page
**hpage
, gfp_t gfp
, struct mm_struct
*mm
,
2414 unsigned long address
, int node
)
2416 VM_BUG_ON_PAGE(*hpage
, *hpage
);
2419 * Before allocating the hugepage, release the mmap_sem read lock.
2420 * The allocation can take potentially a long time if it involves
2421 * sync compaction, and we do not need to hold the mmap_sem during
2422 * that. We will recheck the vma after taking it again in write mode.
2424 up_read(&mm
->mmap_sem
);
2426 *hpage
= __alloc_pages_node(node
, gfp
, HPAGE_PMD_ORDER
);
2427 if (unlikely(!*hpage
)) {
2428 count_vm_event(THP_COLLAPSE_ALLOC_FAILED
);
2429 *hpage
= ERR_PTR(-ENOMEM
);
2433 count_vm_event(THP_COLLAPSE_ALLOC
);
2437 static int khugepaged_find_target_node(void)
2442 static inline struct page
*alloc_hugepage(int defrag
)
2444 return alloc_pages(alloc_hugepage_gfpmask(defrag
, 0),
2448 static struct page
*khugepaged_alloc_hugepage(bool *wait
)
2453 hpage
= alloc_hugepage(khugepaged_defrag());
2455 count_vm_event(THP_COLLAPSE_ALLOC_FAILED
);
2460 khugepaged_alloc_sleep();
2462 count_vm_event(THP_COLLAPSE_ALLOC
);
2463 } while (unlikely(!hpage
) && likely(khugepaged_enabled()));
2468 static bool khugepaged_prealloc_page(struct page
**hpage
, bool *wait
)
2471 *hpage
= khugepaged_alloc_hugepage(wait
);
2473 if (unlikely(!*hpage
))
2479 static struct page
*
2480 khugepaged_alloc_page(struct page
**hpage
, gfp_t gfp
, struct mm_struct
*mm
,
2481 unsigned long address
, int node
)
2483 up_read(&mm
->mmap_sem
);
2490 static bool hugepage_vma_check(struct vm_area_struct
*vma
)
2492 if ((!(vma
->vm_flags
& VM_HUGEPAGE
) && !khugepaged_always()) ||
2493 (vma
->vm_flags
& VM_NOHUGEPAGE
))
2496 if (!vma
->anon_vma
|| vma
->vm_ops
)
2498 if (is_vma_temporary_stack(vma
))
2500 return !(vma
->vm_flags
& VM_NO_THP
);
2503 static void collapse_huge_page(struct mm_struct
*mm
,
2504 unsigned long address
,
2505 struct page
**hpage
,
2506 struct vm_area_struct
*vma
,
2512 struct page
*new_page
;
2513 spinlock_t
*pmd_ptl
, *pte_ptl
;
2515 unsigned long hstart
, hend
;
2516 struct mem_cgroup
*memcg
;
2517 unsigned long mmun_start
; /* For mmu_notifiers */
2518 unsigned long mmun_end
; /* For mmu_notifiers */
2521 VM_BUG_ON(address
& ~HPAGE_PMD_MASK
);
2523 /* Only allocate from the target node */
2524 gfp
= alloc_hugepage_gfpmask(khugepaged_defrag(), __GFP_OTHER_NODE
) |
2527 /* release the mmap_sem read lock. */
2528 new_page
= khugepaged_alloc_page(hpage
, gfp
, mm
, address
, node
);
2532 if (unlikely(mem_cgroup_try_charge(new_page
, mm
,
2537 * Prevent all access to pagetables with the exception of
2538 * gup_fast later hanlded by the ptep_clear_flush and the VM
2539 * handled by the anon_vma lock + PG_lock.
2541 down_write(&mm
->mmap_sem
);
2542 if (unlikely(khugepaged_test_exit(mm
)))
2545 vma
= find_vma(mm
, address
);
2548 hstart
= (vma
->vm_start
+ ~HPAGE_PMD_MASK
) & HPAGE_PMD_MASK
;
2549 hend
= vma
->vm_end
& HPAGE_PMD_MASK
;
2550 if (address
< hstart
|| address
+ HPAGE_PMD_SIZE
> hend
)
2552 if (!hugepage_vma_check(vma
))
2554 pmd
= mm_find_pmd(mm
, address
);
2558 anon_vma_lock_write(vma
->anon_vma
);
2560 pte
= pte_offset_map(pmd
, address
);
2561 pte_ptl
= pte_lockptr(mm
, pmd
);
2563 mmun_start
= address
;
2564 mmun_end
= address
+ HPAGE_PMD_SIZE
;
2565 mmu_notifier_invalidate_range_start(mm
, mmun_start
, mmun_end
);
2566 pmd_ptl
= pmd_lock(mm
, pmd
); /* probably unnecessary */
2568 * After this gup_fast can't run anymore. This also removes
2569 * any huge TLB entry from the CPU so we won't allow
2570 * huge and small TLB entries for the same virtual address
2571 * to avoid the risk of CPU bugs in that area.
2573 _pmd
= pmdp_collapse_flush(vma
, address
, pmd
);
2574 spin_unlock(pmd_ptl
);
2575 mmu_notifier_invalidate_range_end(mm
, mmun_start
, mmun_end
);
2578 isolated
= __collapse_huge_page_isolate(vma
, address
, pte
);
2579 spin_unlock(pte_ptl
);
2581 if (unlikely(!isolated
)) {
2584 BUG_ON(!pmd_none(*pmd
));
2586 * We can only use set_pmd_at when establishing
2587 * hugepmds and never for establishing regular pmds that
2588 * points to regular pagetables. Use pmd_populate for that
2590 pmd_populate(mm
, pmd
, pmd_pgtable(_pmd
));
2591 spin_unlock(pmd_ptl
);
2592 anon_vma_unlock_write(vma
->anon_vma
);
2597 * All pages are isolated and locked so anon_vma rmap
2598 * can't run anymore.
2600 anon_vma_unlock_write(vma
->anon_vma
);
2602 __collapse_huge_page_copy(pte
, new_page
, vma
, address
, pte_ptl
);
2604 __SetPageUptodate(new_page
);
2605 pgtable
= pmd_pgtable(_pmd
);
2607 _pmd
= mk_huge_pmd(new_page
, vma
->vm_page_prot
);
2608 _pmd
= maybe_pmd_mkwrite(pmd_mkdirty(_pmd
), vma
);
2611 * spin_lock() below is not the equivalent of smp_wmb(), so
2612 * this is needed to avoid the copy_huge_page writes to become
2613 * visible after the set_pmd_at() write.
2618 BUG_ON(!pmd_none(*pmd
));
2619 page_add_new_anon_rmap(new_page
, vma
, address
);
2620 mem_cgroup_commit_charge(new_page
, memcg
, false);
2621 lru_cache_add_active_or_unevictable(new_page
, vma
);
2622 pgtable_trans_huge_deposit(mm
, pmd
, pgtable
);
2623 set_pmd_at(mm
, address
, pmd
, _pmd
);
2624 update_mmu_cache_pmd(vma
, address
, pmd
);
2625 spin_unlock(pmd_ptl
);
2629 khugepaged_pages_collapsed
++;
2631 up_write(&mm
->mmap_sem
);
2635 mem_cgroup_cancel_charge(new_page
, memcg
);
2639 static int khugepaged_scan_pmd(struct mm_struct
*mm
,
2640 struct vm_area_struct
*vma
,
2641 unsigned long address
,
2642 struct page
**hpage
)
2646 int ret
= 0, none_or_zero
= 0;
2648 unsigned long _address
;
2650 int node
= NUMA_NO_NODE
;
2651 bool writable
= false, referenced
= false;
2653 VM_BUG_ON(address
& ~HPAGE_PMD_MASK
);
2655 pmd
= mm_find_pmd(mm
, address
);
2659 memset(khugepaged_node_load
, 0, sizeof(khugepaged_node_load
));
2660 pte
= pte_offset_map_lock(mm
, pmd
, address
, &ptl
);
2661 for (_address
= address
, _pte
= pte
; _pte
< pte
+HPAGE_PMD_NR
;
2662 _pte
++, _address
+= PAGE_SIZE
) {
2663 pte_t pteval
= *_pte
;
2664 if (pte_none(pteval
) || is_zero_pfn(pte_pfn(pteval
))) {
2665 if (!userfaultfd_armed(vma
) &&
2666 ++none_or_zero
<= khugepaged_max_ptes_none
)
2671 if (!pte_present(pteval
))
2673 if (pte_write(pteval
))
2676 page
= vm_normal_page(vma
, _address
, pteval
);
2677 if (unlikely(!page
))
2680 * Record which node the original page is from and save this
2681 * information to khugepaged_node_load[].
2682 * Khupaged will allocate hugepage from the node has the max
2685 node
= page_to_nid(page
);
2686 if (khugepaged_scan_abort(node
))
2688 khugepaged_node_load
[node
]++;
2689 VM_BUG_ON_PAGE(PageCompound(page
), page
);
2690 if (!PageLRU(page
) || PageLocked(page
) || !PageAnon(page
))
2693 * cannot use mapcount: can't collapse if there's a gup pin.
2694 * The page must only be referenced by the scanned process
2695 * and page swap cache.
2697 if (page_count(page
) != 1 + !!PageSwapCache(page
))
2699 if (pte_young(pteval
) ||
2700 page_is_young(page
) || PageReferenced(page
) ||
2701 mmu_notifier_test_young(vma
->vm_mm
, address
))
2704 if (referenced
&& writable
)
2707 pte_unmap_unlock(pte
, ptl
);
2709 node
= khugepaged_find_target_node();
2710 /* collapse_huge_page will return with the mmap_sem released */
2711 collapse_huge_page(mm
, address
, hpage
, vma
, node
);
2717 static void collect_mm_slot(struct mm_slot
*mm_slot
)
2719 struct mm_struct
*mm
= mm_slot
->mm
;
2721 VM_BUG_ON(NR_CPUS
!= 1 && !spin_is_locked(&khugepaged_mm_lock
));
2723 if (khugepaged_test_exit(mm
)) {
2725 hash_del(&mm_slot
->hash
);
2726 list_del(&mm_slot
->mm_node
);
2729 * Not strictly needed because the mm exited already.
2731 * clear_bit(MMF_VM_HUGEPAGE, &mm->flags);
2734 /* khugepaged_mm_lock actually not necessary for the below */
2735 free_mm_slot(mm_slot
);
2740 static unsigned int khugepaged_scan_mm_slot(unsigned int pages
,
2741 struct page
**hpage
)
2742 __releases(&khugepaged_mm_lock
)
2743 __acquires(&khugepaged_mm_lock
)
2745 struct mm_slot
*mm_slot
;
2746 struct mm_struct
*mm
;
2747 struct vm_area_struct
*vma
;
2751 VM_BUG_ON(NR_CPUS
!= 1 && !spin_is_locked(&khugepaged_mm_lock
));
2753 if (khugepaged_scan
.mm_slot
)
2754 mm_slot
= khugepaged_scan
.mm_slot
;
2756 mm_slot
= list_entry(khugepaged_scan
.mm_head
.next
,
2757 struct mm_slot
, mm_node
);
2758 khugepaged_scan
.address
= 0;
2759 khugepaged_scan
.mm_slot
= mm_slot
;
2761 spin_unlock(&khugepaged_mm_lock
);
2764 down_read(&mm
->mmap_sem
);
2765 if (unlikely(khugepaged_test_exit(mm
)))
2768 vma
= find_vma(mm
, khugepaged_scan
.address
);
2771 for (; vma
; vma
= vma
->vm_next
) {
2772 unsigned long hstart
, hend
;
2775 if (unlikely(khugepaged_test_exit(mm
))) {
2779 if (!hugepage_vma_check(vma
)) {
2784 hstart
= (vma
->vm_start
+ ~HPAGE_PMD_MASK
) & HPAGE_PMD_MASK
;
2785 hend
= vma
->vm_end
& HPAGE_PMD_MASK
;
2788 if (khugepaged_scan
.address
> hend
)
2790 if (khugepaged_scan
.address
< hstart
)
2791 khugepaged_scan
.address
= hstart
;
2792 VM_BUG_ON(khugepaged_scan
.address
& ~HPAGE_PMD_MASK
);
2794 while (khugepaged_scan
.address
< hend
) {
2797 if (unlikely(khugepaged_test_exit(mm
)))
2798 goto breakouterloop
;
2800 VM_BUG_ON(khugepaged_scan
.address
< hstart
||
2801 khugepaged_scan
.address
+ HPAGE_PMD_SIZE
>
2803 ret
= khugepaged_scan_pmd(mm
, vma
,
2804 khugepaged_scan
.address
,
2806 /* move to next address */
2807 khugepaged_scan
.address
+= HPAGE_PMD_SIZE
;
2808 progress
+= HPAGE_PMD_NR
;
2810 /* we released mmap_sem so break loop */
2811 goto breakouterloop_mmap_sem
;
2812 if (progress
>= pages
)
2813 goto breakouterloop
;
2817 up_read(&mm
->mmap_sem
); /* exit_mmap will destroy ptes after this */
2818 breakouterloop_mmap_sem
:
2820 spin_lock(&khugepaged_mm_lock
);
2821 VM_BUG_ON(khugepaged_scan
.mm_slot
!= mm_slot
);
2823 * Release the current mm_slot if this mm is about to die, or
2824 * if we scanned all vmas of this mm.
2826 if (khugepaged_test_exit(mm
) || !vma
) {
2828 * Make sure that if mm_users is reaching zero while
2829 * khugepaged runs here, khugepaged_exit will find
2830 * mm_slot not pointing to the exiting mm.
2832 if (mm_slot
->mm_node
.next
!= &khugepaged_scan
.mm_head
) {
2833 khugepaged_scan
.mm_slot
= list_entry(
2834 mm_slot
->mm_node
.next
,
2835 struct mm_slot
, mm_node
);
2836 khugepaged_scan
.address
= 0;
2838 khugepaged_scan
.mm_slot
= NULL
;
2839 khugepaged_full_scans
++;
2842 collect_mm_slot(mm_slot
);
2848 static int khugepaged_has_work(void)
2850 return !list_empty(&khugepaged_scan
.mm_head
) &&
2851 khugepaged_enabled();
2854 static int khugepaged_wait_event(void)
2856 return !list_empty(&khugepaged_scan
.mm_head
) ||
2857 kthread_should_stop();
2860 static void khugepaged_do_scan(void)
2862 struct page
*hpage
= NULL
;
2863 unsigned int progress
= 0, pass_through_head
= 0;
2864 unsigned int pages
= khugepaged_pages_to_scan
;
2867 barrier(); /* write khugepaged_pages_to_scan to local stack */
2869 while (progress
< pages
) {
2870 if (!khugepaged_prealloc_page(&hpage
, &wait
))
2875 if (unlikely(kthread_should_stop() || try_to_freeze()))
2878 spin_lock(&khugepaged_mm_lock
);
2879 if (!khugepaged_scan
.mm_slot
)
2880 pass_through_head
++;
2881 if (khugepaged_has_work() &&
2882 pass_through_head
< 2)
2883 progress
+= khugepaged_scan_mm_slot(pages
- progress
,
2887 spin_unlock(&khugepaged_mm_lock
);
2890 if (!IS_ERR_OR_NULL(hpage
))
2894 static void khugepaged_wait_work(void)
2896 if (khugepaged_has_work()) {
2897 if (!khugepaged_scan_sleep_millisecs
)
2900 wait_event_freezable_timeout(khugepaged_wait
,
2901 kthread_should_stop(),
2902 msecs_to_jiffies(khugepaged_scan_sleep_millisecs
));
2906 if (khugepaged_enabled())
2907 wait_event_freezable(khugepaged_wait
, khugepaged_wait_event());
2910 static int khugepaged(void *none
)
2912 struct mm_slot
*mm_slot
;
2915 set_user_nice(current
, MAX_NICE
);
2917 while (!kthread_should_stop()) {
2918 khugepaged_do_scan();
2919 khugepaged_wait_work();
2922 spin_lock(&khugepaged_mm_lock
);
2923 mm_slot
= khugepaged_scan
.mm_slot
;
2924 khugepaged_scan
.mm_slot
= NULL
;
2926 collect_mm_slot(mm_slot
);
2927 spin_unlock(&khugepaged_mm_lock
);
2931 static void __split_huge_zero_page_pmd(struct vm_area_struct
*vma
,
2932 unsigned long haddr
, pmd_t
*pmd
)
2934 struct mm_struct
*mm
= vma
->vm_mm
;
2939 pmdp_huge_clear_flush_notify(vma
, haddr
, pmd
);
2940 /* leave pmd empty until pte is filled */
2942 pgtable
= pgtable_trans_huge_withdraw(mm
, pmd
);
2943 pmd_populate(mm
, &_pmd
, pgtable
);
2945 for (i
= 0; i
< HPAGE_PMD_NR
; i
++, haddr
+= PAGE_SIZE
) {
2947 entry
= pfn_pte(my_zero_pfn(haddr
), vma
->vm_page_prot
);
2948 entry
= pte_mkspecial(entry
);
2949 pte
= pte_offset_map(&_pmd
, haddr
);
2950 VM_BUG_ON(!pte_none(*pte
));
2951 set_pte_at(mm
, haddr
, pte
, entry
);
2954 smp_wmb(); /* make pte visible before pmd */
2955 pmd_populate(mm
, pmd
, pgtable
);
2956 put_huge_zero_page();
2959 void __split_huge_page_pmd(struct vm_area_struct
*vma
, unsigned long address
,
2963 struct page
*page
= NULL
;
2964 struct mm_struct
*mm
= vma
->vm_mm
;
2965 unsigned long haddr
= address
& HPAGE_PMD_MASK
;
2966 unsigned long mmun_start
; /* For mmu_notifiers */
2967 unsigned long mmun_end
; /* For mmu_notifiers */
2969 BUG_ON(vma
->vm_start
> haddr
|| vma
->vm_end
< haddr
+ HPAGE_PMD_SIZE
);
2972 mmun_end
= haddr
+ HPAGE_PMD_SIZE
;
2974 mmu_notifier_invalidate_range_start(mm
, mmun_start
, mmun_end
);
2975 ptl
= pmd_lock(mm
, pmd
);
2976 if (unlikely(!pmd_trans_huge(*pmd
)))
2978 if (vma_is_dax(vma
)) {
2979 pmd_t _pmd
= pmdp_huge_clear_flush_notify(vma
, haddr
, pmd
);
2980 if (is_huge_zero_pmd(_pmd
))
2981 put_huge_zero_page();
2982 } else if (is_huge_zero_pmd(*pmd
)) {
2983 __split_huge_zero_page_pmd(vma
, haddr
, pmd
);
2985 page
= pmd_page(*pmd
);
2986 VM_BUG_ON_PAGE(!page_count(page
), page
);
2991 mmu_notifier_invalidate_range_end(mm
, mmun_start
, mmun_end
);
2996 split_huge_page(page
);
3000 * We don't always have down_write of mmap_sem here: a racing
3001 * do_huge_pmd_wp_page() might have copied-on-write to another
3002 * huge page before our split_huge_page() got the anon_vma lock.
3004 if (unlikely(pmd_trans_huge(*pmd
)))
3008 void split_huge_page_pmd_mm(struct mm_struct
*mm
, unsigned long address
,
3011 struct vm_area_struct
*vma
;
3013 vma
= find_vma(mm
, address
);
3014 BUG_ON(vma
== NULL
);
3015 split_huge_page_pmd(vma
, address
, pmd
);
3018 static void split_huge_page_address(struct mm_struct
*mm
,
3019 unsigned long address
)
3025 VM_BUG_ON(!(address
& ~HPAGE_PMD_MASK
));
3027 pgd
= pgd_offset(mm
, address
);
3028 if (!pgd_present(*pgd
))
3031 pud
= pud_offset(pgd
, address
);
3032 if (!pud_present(*pud
))
3035 pmd
= pmd_offset(pud
, address
);
3036 if (!pmd_present(*pmd
))
3039 * Caller holds the mmap_sem write mode, so a huge pmd cannot
3040 * materialize from under us.
3042 split_huge_page_pmd_mm(mm
, address
, pmd
);
3045 void vma_adjust_trans_huge(struct vm_area_struct
*vma
,
3046 unsigned long start
,
3051 * If the new start address isn't hpage aligned and it could
3052 * previously contain an hugepage: check if we need to split
3055 if (start
& ~HPAGE_PMD_MASK
&&
3056 (start
& HPAGE_PMD_MASK
) >= vma
->vm_start
&&
3057 (start
& HPAGE_PMD_MASK
) + HPAGE_PMD_SIZE
<= vma
->vm_end
)
3058 split_huge_page_address(vma
->vm_mm
, start
);
3061 * If the new end address isn't hpage aligned and it could
3062 * previously contain an hugepage: check if we need to split
3065 if (end
& ~HPAGE_PMD_MASK
&&
3066 (end
& HPAGE_PMD_MASK
) >= vma
->vm_start
&&
3067 (end
& HPAGE_PMD_MASK
) + HPAGE_PMD_SIZE
<= vma
->vm_end
)
3068 split_huge_page_address(vma
->vm_mm
, end
);
3071 * If we're also updating the vma->vm_next->vm_start, if the new
3072 * vm_next->vm_start isn't page aligned and it could previously
3073 * contain an hugepage: check if we need to split an huge pmd.
3075 if (adjust_next
> 0) {
3076 struct vm_area_struct
*next
= vma
->vm_next
;
3077 unsigned long nstart
= next
->vm_start
;
3078 nstart
+= adjust_next
<< PAGE_SHIFT
;
3079 if (nstart
& ~HPAGE_PMD_MASK
&&
3080 (nstart
& HPAGE_PMD_MASK
) >= next
->vm_start
&&
3081 (nstart
& HPAGE_PMD_MASK
) + HPAGE_PMD_SIZE
<= next
->vm_end
)
3082 split_huge_page_address(next
->vm_mm
, nstart
);