]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - mm/khugepaged.c
khugepaged: use helper function range_in_vma() in collapse_pte_mapped_thp()
[mirror_ubuntu-kernels.git] / mm / khugepaged.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
b46e756f
KS
2#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
3
4#include <linux/mm.h>
5#include <linux/sched.h>
6e84f315 6#include <linux/sched/mm.h>
f7ccbae4 7#include <linux/sched/coredump.h>
b46e756f
KS
8#include <linux/mmu_notifier.h>
9#include <linux/rmap.h>
10#include <linux/swap.h>
11#include <linux/mm_inline.h>
12#include <linux/kthread.h>
13#include <linux/khugepaged.h>
14#include <linux/freezer.h>
15#include <linux/mman.h>
16#include <linux/hashtable.h>
17#include <linux/userfaultfd_k.h>
18#include <linux/page_idle.h>
19#include <linux/swapops.h>
f3f0e1d2 20#include <linux/shmem_fs.h>
b46e756f
KS
21
22#include <asm/tlb.h>
23#include <asm/pgalloc.h>
24#include "internal.h"
25
26enum scan_result {
27 SCAN_FAIL,
28 SCAN_SUCCEED,
29 SCAN_PMD_NULL,
30 SCAN_EXCEED_NONE_PTE,
71a2c112
KS
31 SCAN_EXCEED_SWAP_PTE,
32 SCAN_EXCEED_SHARED_PTE,
b46e756f 33 SCAN_PTE_NON_PRESENT,
e1e267c7 34 SCAN_PTE_UFFD_WP,
b46e756f 35 SCAN_PAGE_RO,
0db501f7 36 SCAN_LACK_REFERENCED_PAGE,
b46e756f
KS
37 SCAN_PAGE_NULL,
38 SCAN_SCAN_ABORT,
39 SCAN_PAGE_COUNT,
40 SCAN_PAGE_LRU,
41 SCAN_PAGE_LOCK,
42 SCAN_PAGE_ANON,
43 SCAN_PAGE_COMPOUND,
44 SCAN_ANY_PROCESS,
45 SCAN_VMA_NULL,
46 SCAN_VMA_CHECK,
47 SCAN_ADDRESS_RANGE,
48 SCAN_SWAP_CACHE_PAGE,
49 SCAN_DEL_PAGE_LRU,
50 SCAN_ALLOC_HUGE_PAGE_FAIL,
51 SCAN_CGROUP_CHARGE_FAIL,
f3f0e1d2 52 SCAN_TRUNCATED,
99cb0dbd 53 SCAN_PAGE_HAS_PRIVATE,
b46e756f
KS
54};
55
56#define CREATE_TRACE_POINTS
57#include <trace/events/huge_memory.h>
58
4aab2be0
VB
59static struct task_struct *khugepaged_thread __read_mostly;
60static DEFINE_MUTEX(khugepaged_mutex);
61
b46e756f
KS
62/* default scan 8*512 pte (or vmas) every 30 second */
63static unsigned int khugepaged_pages_to_scan __read_mostly;
64static unsigned int khugepaged_pages_collapsed;
65static unsigned int khugepaged_full_scans;
66static unsigned int khugepaged_scan_sleep_millisecs __read_mostly = 10000;
67/* during fragmentation poll the hugepage allocator once every minute */
68static unsigned int khugepaged_alloc_sleep_millisecs __read_mostly = 60000;
69static unsigned long khugepaged_sleep_expire;
70static DEFINE_SPINLOCK(khugepaged_mm_lock);
71static DECLARE_WAIT_QUEUE_HEAD(khugepaged_wait);
72/*
73 * default collapse hugepages if there is at least one pte mapped like
74 * it would have happened if the vma was large enough during page
75 * fault.
76 */
77static unsigned int khugepaged_max_ptes_none __read_mostly;
78static unsigned int khugepaged_max_ptes_swap __read_mostly;
71a2c112 79static unsigned int khugepaged_max_ptes_shared __read_mostly;
b46e756f
KS
80
81#define MM_SLOTS_HASH_BITS 10
82static __read_mostly DEFINE_HASHTABLE(mm_slots_hash, MM_SLOTS_HASH_BITS);
83
84static struct kmem_cache *mm_slot_cache __read_mostly;
85
27e1f827
SL
86#define MAX_PTE_MAPPED_THP 8
87
b46e756f
KS
88/**
89 * struct mm_slot - hash lookup from mm to mm_slot
90 * @hash: hash collision list
91 * @mm_node: khugepaged scan list headed in khugepaged_scan.mm_head
92 * @mm: the mm that this information is valid for
336e6b53
AS
93 * @nr_pte_mapped_thp: number of pte mapped THP
94 * @pte_mapped_thp: address array corresponding pte mapped THP
b46e756f
KS
95 */
96struct mm_slot {
97 struct hlist_node hash;
98 struct list_head mm_node;
99 struct mm_struct *mm;
27e1f827
SL
100
101 /* pte-mapped THP in this mm */
102 int nr_pte_mapped_thp;
103 unsigned long pte_mapped_thp[MAX_PTE_MAPPED_THP];
b46e756f
KS
104};
105
106/**
107 * struct khugepaged_scan - cursor for scanning
108 * @mm_head: the head of the mm list to scan
109 * @mm_slot: the current mm_slot we are scanning
110 * @address: the next address inside that to be scanned
111 *
112 * There is only the one khugepaged_scan instance of this cursor structure.
113 */
114struct khugepaged_scan {
115 struct list_head mm_head;
116 struct mm_slot *mm_slot;
117 unsigned long address;
118};
119
120static struct khugepaged_scan khugepaged_scan = {
121 .mm_head = LIST_HEAD_INIT(khugepaged_scan.mm_head),
122};
123
e1465d12 124#ifdef CONFIG_SYSFS
b46e756f
KS
125static ssize_t scan_sleep_millisecs_show(struct kobject *kobj,
126 struct kobj_attribute *attr,
127 char *buf)
128{
ae7a927d 129 return sysfs_emit(buf, "%u\n", khugepaged_scan_sleep_millisecs);
b46e756f
KS
130}
131
132static ssize_t scan_sleep_millisecs_store(struct kobject *kobj,
133 struct kobj_attribute *attr,
134 const char *buf, size_t count)
135{
dfefd226 136 unsigned int msecs;
b46e756f
KS
137 int err;
138
dfefd226
AD
139 err = kstrtouint(buf, 10, &msecs);
140 if (err)
b46e756f
KS
141 return -EINVAL;
142
143 khugepaged_scan_sleep_millisecs = msecs;
144 khugepaged_sleep_expire = 0;
145 wake_up_interruptible(&khugepaged_wait);
146
147 return count;
148}
149static struct kobj_attribute scan_sleep_millisecs_attr =
150 __ATTR(scan_sleep_millisecs, 0644, scan_sleep_millisecs_show,
151 scan_sleep_millisecs_store);
152
153static ssize_t alloc_sleep_millisecs_show(struct kobject *kobj,
154 struct kobj_attribute *attr,
155 char *buf)
156{
ae7a927d 157 return sysfs_emit(buf, "%u\n", khugepaged_alloc_sleep_millisecs);
b46e756f
KS
158}
159
160static ssize_t alloc_sleep_millisecs_store(struct kobject *kobj,
161 struct kobj_attribute *attr,
162 const char *buf, size_t count)
163{
dfefd226 164 unsigned int msecs;
b46e756f
KS
165 int err;
166
dfefd226
AD
167 err = kstrtouint(buf, 10, &msecs);
168 if (err)
b46e756f
KS
169 return -EINVAL;
170
171 khugepaged_alloc_sleep_millisecs = msecs;
172 khugepaged_sleep_expire = 0;
173 wake_up_interruptible(&khugepaged_wait);
174
175 return count;
176}
177static struct kobj_attribute alloc_sleep_millisecs_attr =
178 __ATTR(alloc_sleep_millisecs, 0644, alloc_sleep_millisecs_show,
179 alloc_sleep_millisecs_store);
180
181static ssize_t pages_to_scan_show(struct kobject *kobj,
182 struct kobj_attribute *attr,
183 char *buf)
184{
ae7a927d 185 return sysfs_emit(buf, "%u\n", khugepaged_pages_to_scan);
b46e756f
KS
186}
187static ssize_t pages_to_scan_store(struct kobject *kobj,
188 struct kobj_attribute *attr,
189 const char *buf, size_t count)
190{
dfefd226 191 unsigned int pages;
b46e756f 192 int err;
b46e756f 193
dfefd226
AD
194 err = kstrtouint(buf, 10, &pages);
195 if (err || !pages)
b46e756f
KS
196 return -EINVAL;
197
198 khugepaged_pages_to_scan = pages;
199
200 return count;
201}
202static struct kobj_attribute pages_to_scan_attr =
203 __ATTR(pages_to_scan, 0644, pages_to_scan_show,
204 pages_to_scan_store);
205
206static ssize_t pages_collapsed_show(struct kobject *kobj,
207 struct kobj_attribute *attr,
208 char *buf)
209{
ae7a927d 210 return sysfs_emit(buf, "%u\n", khugepaged_pages_collapsed);
b46e756f
KS
211}
212static struct kobj_attribute pages_collapsed_attr =
213 __ATTR_RO(pages_collapsed);
214
215static ssize_t full_scans_show(struct kobject *kobj,
216 struct kobj_attribute *attr,
217 char *buf)
218{
ae7a927d 219 return sysfs_emit(buf, "%u\n", khugepaged_full_scans);
b46e756f
KS
220}
221static struct kobj_attribute full_scans_attr =
222 __ATTR_RO(full_scans);
223
224static ssize_t khugepaged_defrag_show(struct kobject *kobj,
225 struct kobj_attribute *attr, char *buf)
226{
227 return single_hugepage_flag_show(kobj, attr, buf,
ae7a927d 228 TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG);
b46e756f
KS
229}
230static ssize_t khugepaged_defrag_store(struct kobject *kobj,
231 struct kobj_attribute *attr,
232 const char *buf, size_t count)
233{
234 return single_hugepage_flag_store(kobj, attr, buf, count,
235 TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG);
236}
237static struct kobj_attribute khugepaged_defrag_attr =
238 __ATTR(defrag, 0644, khugepaged_defrag_show,
239 khugepaged_defrag_store);
240
241/*
242 * max_ptes_none controls if khugepaged should collapse hugepages over
243 * any unmapped ptes in turn potentially increasing the memory
244 * footprint of the vmas. When max_ptes_none is 0 khugepaged will not
245 * reduce the available free memory in the system as it
246 * runs. Increasing max_ptes_none will instead potentially reduce the
247 * free memory in the system during the khugepaged scan.
248 */
249static ssize_t khugepaged_max_ptes_none_show(struct kobject *kobj,
250 struct kobj_attribute *attr,
251 char *buf)
252{
ae7a927d 253 return sysfs_emit(buf, "%u\n", khugepaged_max_ptes_none);
b46e756f
KS
254}
255static ssize_t khugepaged_max_ptes_none_store(struct kobject *kobj,
256 struct kobj_attribute *attr,
257 const char *buf, size_t count)
258{
259 int err;
260 unsigned long max_ptes_none;
261
262 err = kstrtoul(buf, 10, &max_ptes_none);
263 if (err || max_ptes_none > HPAGE_PMD_NR-1)
264 return -EINVAL;
265
266 khugepaged_max_ptes_none = max_ptes_none;
267
268 return count;
269}
270static struct kobj_attribute khugepaged_max_ptes_none_attr =
271 __ATTR(max_ptes_none, 0644, khugepaged_max_ptes_none_show,
272 khugepaged_max_ptes_none_store);
273
274static ssize_t khugepaged_max_ptes_swap_show(struct kobject *kobj,
275 struct kobj_attribute *attr,
276 char *buf)
277{
ae7a927d 278 return sysfs_emit(buf, "%u\n", khugepaged_max_ptes_swap);
b46e756f
KS
279}
280
281static ssize_t khugepaged_max_ptes_swap_store(struct kobject *kobj,
282 struct kobj_attribute *attr,
283 const char *buf, size_t count)
284{
285 int err;
286 unsigned long max_ptes_swap;
287
288 err = kstrtoul(buf, 10, &max_ptes_swap);
289 if (err || max_ptes_swap > HPAGE_PMD_NR-1)
290 return -EINVAL;
291
292 khugepaged_max_ptes_swap = max_ptes_swap;
293
294 return count;
295}
296
297static struct kobj_attribute khugepaged_max_ptes_swap_attr =
298 __ATTR(max_ptes_swap, 0644, khugepaged_max_ptes_swap_show,
299 khugepaged_max_ptes_swap_store);
300
71a2c112 301static ssize_t khugepaged_max_ptes_shared_show(struct kobject *kobj,
ae7a927d
JP
302 struct kobj_attribute *attr,
303 char *buf)
71a2c112 304{
ae7a927d 305 return sysfs_emit(buf, "%u\n", khugepaged_max_ptes_shared);
71a2c112
KS
306}
307
308static ssize_t khugepaged_max_ptes_shared_store(struct kobject *kobj,
309 struct kobj_attribute *attr,
310 const char *buf, size_t count)
311{
312 int err;
313 unsigned long max_ptes_shared;
314
315 err = kstrtoul(buf, 10, &max_ptes_shared);
316 if (err || max_ptes_shared > HPAGE_PMD_NR-1)
317 return -EINVAL;
318
319 khugepaged_max_ptes_shared = max_ptes_shared;
320
321 return count;
322}
323
324static struct kobj_attribute khugepaged_max_ptes_shared_attr =
325 __ATTR(max_ptes_shared, 0644, khugepaged_max_ptes_shared_show,
326 khugepaged_max_ptes_shared_store);
327
b46e756f
KS
328static struct attribute *khugepaged_attr[] = {
329 &khugepaged_defrag_attr.attr,
330 &khugepaged_max_ptes_none_attr.attr,
71a2c112
KS
331 &khugepaged_max_ptes_swap_attr.attr,
332 &khugepaged_max_ptes_shared_attr.attr,
b46e756f
KS
333 &pages_to_scan_attr.attr,
334 &pages_collapsed_attr.attr,
335 &full_scans_attr.attr,
336 &scan_sleep_millisecs_attr.attr,
337 &alloc_sleep_millisecs_attr.attr,
b46e756f
KS
338 NULL,
339};
340
341struct attribute_group khugepaged_attr_group = {
342 .attrs = khugepaged_attr,
343 .name = "khugepaged",
344};
e1465d12 345#endif /* CONFIG_SYSFS */
b46e756f 346
b46e756f
KS
347int hugepage_madvise(struct vm_area_struct *vma,
348 unsigned long *vm_flags, int advice)
349{
350 switch (advice) {
351 case MADV_HUGEPAGE:
352#ifdef CONFIG_S390
353 /*
354 * qemu blindly sets MADV_HUGEPAGE on all allocations, but s390
355 * can't handle this properly after s390_enable_sie, so we simply
356 * ignore the madvise to prevent qemu from causing a SIGSEGV.
357 */
358 if (mm_has_pgste(vma->vm_mm))
359 return 0;
360#endif
361 *vm_flags &= ~VM_NOHUGEPAGE;
362 *vm_flags |= VM_HUGEPAGE;
363 /*
364 * If the vma become good for khugepaged to scan,
365 * register it here without waiting a page fault that
366 * may not happen any time soon.
367 */
368 if (!(*vm_flags & VM_NO_KHUGEPAGED) &&
369 khugepaged_enter_vma_merge(vma, *vm_flags))
370 return -ENOMEM;
371 break;
372 case MADV_NOHUGEPAGE:
373 *vm_flags &= ~VM_HUGEPAGE;
374 *vm_flags |= VM_NOHUGEPAGE;
375 /*
376 * Setting VM_NOHUGEPAGE will prevent khugepaged from scanning
377 * this vma even if we leave the mm registered in khugepaged if
378 * it got registered before VM_NOHUGEPAGE was set.
379 */
380 break;
381 }
382
383 return 0;
384}
385
386int __init khugepaged_init(void)
387{
388 mm_slot_cache = kmem_cache_create("khugepaged_mm_slot",
389 sizeof(struct mm_slot),
390 __alignof__(struct mm_slot), 0, NULL);
391 if (!mm_slot_cache)
392 return -ENOMEM;
393
394 khugepaged_pages_to_scan = HPAGE_PMD_NR * 8;
395 khugepaged_max_ptes_none = HPAGE_PMD_NR - 1;
396 khugepaged_max_ptes_swap = HPAGE_PMD_NR / 8;
71a2c112 397 khugepaged_max_ptes_shared = HPAGE_PMD_NR / 2;
b46e756f
KS
398
399 return 0;
400}
401
402void __init khugepaged_destroy(void)
403{
404 kmem_cache_destroy(mm_slot_cache);
405}
406
407static inline struct mm_slot *alloc_mm_slot(void)
408{
409 if (!mm_slot_cache) /* initialization failed */
410 return NULL;
411 return kmem_cache_zalloc(mm_slot_cache, GFP_KERNEL);
412}
413
414static inline void free_mm_slot(struct mm_slot *mm_slot)
415{
416 kmem_cache_free(mm_slot_cache, mm_slot);
417}
418
419static struct mm_slot *get_mm_slot(struct mm_struct *mm)
420{
421 struct mm_slot *mm_slot;
422
423 hash_for_each_possible(mm_slots_hash, mm_slot, hash, (unsigned long)mm)
424 if (mm == mm_slot->mm)
425 return mm_slot;
426
427 return NULL;
428}
429
430static void insert_to_mm_slots_hash(struct mm_struct *mm,
431 struct mm_slot *mm_slot)
432{
433 mm_slot->mm = mm;
434 hash_add(mm_slots_hash, &mm_slot->hash, (long)mm);
435}
436
437static inline int khugepaged_test_exit(struct mm_struct *mm)
438{
4d45e75a 439 return atomic_read(&mm->mm_users) == 0;
b46e756f
KS
440}
441
50f8b92f
SL
442static bool hugepage_vma_check(struct vm_area_struct *vma,
443 unsigned long vm_flags)
c2231020 444{
cd89fb06
RR
445 /* Explicitly disabled through madvise. */
446 if ((vm_flags & VM_NOHUGEPAGE) ||
c2231020
YS
447 test_bit(MMF_DISABLE_THP, &vma->vm_mm->flags))
448 return false;
99cb0dbd 449
cd89fb06
RR
450 /* Enabled via shmem mount options or sysfs settings. */
451 if (shmem_file(vma->vm_file) && shmem_huge_enabled(vma)) {
c2231020
YS
452 return IS_ALIGNED((vma->vm_start >> PAGE_SHIFT) - vma->vm_pgoff,
453 HPAGE_PMD_NR);
454 }
cd89fb06
RR
455
456 /* THP settings require madvise. */
457 if (!(vm_flags & VM_HUGEPAGE) && !khugepaged_always())
458 return false;
459
460 /* Read-only file mappings need to be aligned for THP to work. */
461 if (IS_ENABLED(CONFIG_READ_ONLY_THP_FOR_FS) && vma->vm_file &&
462 (vm_flags & VM_DENYWRITE)) {
463 return IS_ALIGNED((vma->vm_start >> PAGE_SHIFT) - vma->vm_pgoff,
464 HPAGE_PMD_NR);
465 }
466
c2231020
YS
467 if (!vma->anon_vma || vma->vm_ops)
468 return false;
222100ee 469 if (vma_is_temporary_stack(vma))
c2231020 470 return false;
50f8b92f 471 return !(vm_flags & VM_NO_KHUGEPAGED);
c2231020
YS
472}
473
b46e756f
KS
474int __khugepaged_enter(struct mm_struct *mm)
475{
476 struct mm_slot *mm_slot;
477 int wakeup;
478
479 mm_slot = alloc_mm_slot();
480 if (!mm_slot)
481 return -ENOMEM;
482
483 /* __khugepaged_exit() must not run from under us */
28ff0a3c 484 VM_BUG_ON_MM(khugepaged_test_exit(mm), mm);
b46e756f
KS
485 if (unlikely(test_and_set_bit(MMF_VM_HUGEPAGE, &mm->flags))) {
486 free_mm_slot(mm_slot);
487 return 0;
488 }
489
490 spin_lock(&khugepaged_mm_lock);
491 insert_to_mm_slots_hash(mm, mm_slot);
492 /*
493 * Insert just behind the scanning cursor, to let the area settle
494 * down a little.
495 */
496 wakeup = list_empty(&khugepaged_scan.mm_head);
497 list_add_tail(&mm_slot->mm_node, &khugepaged_scan.mm_head);
498 spin_unlock(&khugepaged_mm_lock);
499
f1f10076 500 mmgrab(mm);
b46e756f
KS
501 if (wakeup)
502 wake_up_interruptible(&khugepaged_wait);
503
504 return 0;
505}
506
507int khugepaged_enter_vma_merge(struct vm_area_struct *vma,
508 unsigned long vm_flags)
509{
510 unsigned long hstart, hend;
c2231020
YS
511
512 /*
99cb0dbd
SL
513 * khugepaged only supports read-only files for non-shmem files.
514 * khugepaged does not yet work on special mappings. And
515 * file-private shmem THP is not supported.
c2231020 516 */
50f8b92f 517 if (!hugepage_vma_check(vma, vm_flags))
b46e756f 518 return 0;
c2231020 519
b46e756f
KS
520 hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
521 hend = vma->vm_end & HPAGE_PMD_MASK;
522 if (hstart < hend)
523 return khugepaged_enter(vma, vm_flags);
524 return 0;
525}
526
527void __khugepaged_exit(struct mm_struct *mm)
528{
529 struct mm_slot *mm_slot;
530 int free = 0;
531
532 spin_lock(&khugepaged_mm_lock);
533 mm_slot = get_mm_slot(mm);
534 if (mm_slot && khugepaged_scan.mm_slot != mm_slot) {
535 hash_del(&mm_slot->hash);
536 list_del(&mm_slot->mm_node);
537 free = 1;
538 }
539 spin_unlock(&khugepaged_mm_lock);
540
541 if (free) {
542 clear_bit(MMF_VM_HUGEPAGE, &mm->flags);
543 free_mm_slot(mm_slot);
544 mmdrop(mm);
545 } else if (mm_slot) {
546 /*
547 * This is required to serialize against
548 * khugepaged_test_exit() (which is guaranteed to run
549 * under mmap sem read mode). Stop here (after we
550 * return all pagetables will be destroyed) until
551 * khugepaged has finished working on the pagetables
c1e8d7c6 552 * under the mmap_lock.
b46e756f 553 */
d8ed45c5
ML
554 mmap_write_lock(mm);
555 mmap_write_unlock(mm);
b46e756f
KS
556 }
557}
558
559static void release_pte_page(struct page *page)
560{
5503fbf2
KS
561 mod_node_page_state(page_pgdat(page),
562 NR_ISOLATED_ANON + page_is_file_lru(page),
563 -compound_nr(page));
b46e756f
KS
564 unlock_page(page);
565 putback_lru_page(page);
566}
567
5503fbf2
KS
568static void release_pte_pages(pte_t *pte, pte_t *_pte,
569 struct list_head *compound_pagelist)
b46e756f 570{
5503fbf2
KS
571 struct page *page, *tmp;
572
b46e756f
KS
573 while (--_pte >= pte) {
574 pte_t pteval = *_pte;
5503fbf2
KS
575
576 page = pte_page(pteval);
577 if (!pte_none(pteval) && !is_zero_pfn(pte_pfn(pteval)) &&
578 !PageCompound(page))
579 release_pte_page(page);
580 }
581
582 list_for_each_entry_safe(page, tmp, compound_pagelist, lru) {
583 list_del(&page->lru);
584 release_pte_page(page);
b46e756f
KS
585 }
586}
587
9445689f
KS
588static bool is_refcount_suitable(struct page *page)
589{
590 int expected_refcount;
591
592 expected_refcount = total_mapcount(page);
593 if (PageSwapCache(page))
594 expected_refcount += compound_nr(page);
595
596 return page_count(page) == expected_refcount;
597}
598
b46e756f
KS
599static int __collapse_huge_page_isolate(struct vm_area_struct *vma,
600 unsigned long address,
5503fbf2
KS
601 pte_t *pte,
602 struct list_head *compound_pagelist)
b46e756f
KS
603{
604 struct page *page = NULL;
605 pte_t *_pte;
71a2c112 606 int none_or_zero = 0, shared = 0, result = 0, referenced = 0;
0db501f7 607 bool writable = false;
b46e756f
KS
608
609 for (_pte = pte; _pte < pte+HPAGE_PMD_NR;
610 _pte++, address += PAGE_SIZE) {
611 pte_t pteval = *_pte;
612 if (pte_none(pteval) || (pte_present(pteval) &&
613 is_zero_pfn(pte_pfn(pteval)))) {
614 if (!userfaultfd_armed(vma) &&
615 ++none_or_zero <= khugepaged_max_ptes_none) {
616 continue;
617 } else {
618 result = SCAN_EXCEED_NONE_PTE;
619 goto out;
620 }
621 }
622 if (!pte_present(pteval)) {
623 result = SCAN_PTE_NON_PRESENT;
624 goto out;
625 }
626 page = vm_normal_page(vma, address, pteval);
627 if (unlikely(!page)) {
628 result = SCAN_PAGE_NULL;
629 goto out;
630 }
631
5503fbf2
KS
632 VM_BUG_ON_PAGE(!PageAnon(page), page);
633
71a2c112
KS
634 if (page_mapcount(page) > 1 &&
635 ++shared > khugepaged_max_ptes_shared) {
636 result = SCAN_EXCEED_SHARED_PTE;
637 goto out;
638 }
639
fece2029 640 if (PageCompound(page)) {
5503fbf2
KS
641 struct page *p;
642 page = compound_head(page);
fece2029 643
5503fbf2
KS
644 /*
645 * Check if we have dealt with the compound page
646 * already
647 */
648 list_for_each_entry(p, compound_pagelist, lru) {
649 if (page == p)
650 goto next;
651 }
652 }
b46e756f
KS
653
654 /*
655 * We can do it before isolate_lru_page because the
656 * page can't be freed from under us. NOTE: PG_lock
657 * is needed to serialize against split_huge_page
658 * when invoked from the VM.
659 */
660 if (!trylock_page(page)) {
661 result = SCAN_PAGE_LOCK;
662 goto out;
663 }
664
665 /*
9445689f
KS
666 * Check if the page has any GUP (or other external) pins.
667 *
668 * The page table that maps the page has been already unlinked
669 * from the page table tree and this process cannot get
670 * an additinal pin on the page.
671 *
672 * New pins can come later if the page is shared across fork,
673 * but not from this process. The other process cannot write to
674 * the page, only trigger CoW.
b46e756f 675 */
9445689f 676 if (!is_refcount_suitable(page)) {
b46e756f
KS
677 unlock_page(page);
678 result = SCAN_PAGE_COUNT;
679 goto out;
680 }
5503fbf2
KS
681 if (!pte_write(pteval) && PageSwapCache(page) &&
682 !reuse_swap_page(page, NULL)) {
b46e756f 683 /*
5503fbf2
KS
684 * Page is in the swap cache and cannot be re-used.
685 * It cannot be collapsed into a THP.
b46e756f 686 */
5503fbf2
KS
687 unlock_page(page);
688 result = SCAN_SWAP_CACHE_PAGE;
689 goto out;
b46e756f
KS
690 }
691
692 /*
693 * Isolate the page to avoid collapsing an hugepage
694 * currently in use by the VM.
695 */
696 if (isolate_lru_page(page)) {
697 unlock_page(page);
698 result = SCAN_DEL_PAGE_LRU;
699 goto out;
700 }
5503fbf2
KS
701 mod_node_page_state(page_pgdat(page),
702 NR_ISOLATED_ANON + page_is_file_lru(page),
703 compound_nr(page));
b46e756f
KS
704 VM_BUG_ON_PAGE(!PageLocked(page), page);
705 VM_BUG_ON_PAGE(PageLRU(page), page);
706
5503fbf2
KS
707 if (PageCompound(page))
708 list_add_tail(&page->lru, compound_pagelist);
709next:
0db501f7 710 /* There should be enough young pte to collapse the page */
b46e756f
KS
711 if (pte_young(pteval) ||
712 page_is_young(page) || PageReferenced(page) ||
713 mmu_notifier_test_young(vma->vm_mm, address))
0db501f7 714 referenced++;
5503fbf2
KS
715
716 if (pte_write(pteval))
717 writable = true;
b46e756f 718 }
74e579bf
ML
719
720 if (unlikely(!writable)) {
b46e756f 721 result = SCAN_PAGE_RO;
74e579bf
ML
722 } else if (unlikely(!referenced)) {
723 result = SCAN_LACK_REFERENCED_PAGE;
724 } else {
725 result = SCAN_SUCCEED;
726 trace_mm_collapse_huge_page_isolate(page, none_or_zero,
727 referenced, writable, result);
728 return 1;
b46e756f 729 }
b46e756f 730out:
5503fbf2 731 release_pte_pages(pte, _pte, compound_pagelist);
b46e756f
KS
732 trace_mm_collapse_huge_page_isolate(page, none_or_zero,
733 referenced, writable, result);
734 return 0;
735}
736
737static void __collapse_huge_page_copy(pte_t *pte, struct page *page,
738 struct vm_area_struct *vma,
739 unsigned long address,
5503fbf2
KS
740 spinlock_t *ptl,
741 struct list_head *compound_pagelist)
b46e756f 742{
5503fbf2 743 struct page *src_page, *tmp;
b46e756f 744 pte_t *_pte;
338a16ba
DR
745 for (_pte = pte; _pte < pte + HPAGE_PMD_NR;
746 _pte++, page++, address += PAGE_SIZE) {
b46e756f 747 pte_t pteval = *_pte;
b46e756f
KS
748
749 if (pte_none(pteval) || is_zero_pfn(pte_pfn(pteval))) {
750 clear_user_highpage(page, address);
751 add_mm_counter(vma->vm_mm, MM_ANONPAGES, 1);
752 if (is_zero_pfn(pte_pfn(pteval))) {
753 /*
754 * ptl mostly unnecessary.
755 */
756 spin_lock(ptl);
757 /*
758 * paravirt calls inside pte_clear here are
759 * superfluous.
760 */
761 pte_clear(vma->vm_mm, address, _pte);
762 spin_unlock(ptl);
763 }
764 } else {
765 src_page = pte_page(pteval);
766 copy_user_highpage(page, src_page, address, vma);
5503fbf2
KS
767 if (!PageCompound(src_page))
768 release_pte_page(src_page);
b46e756f
KS
769 /*
770 * ptl mostly unnecessary, but preempt has to
771 * be disabled to update the per-cpu stats
772 * inside page_remove_rmap().
773 */
774 spin_lock(ptl);
775 /*
776 * paravirt calls inside pte_clear here are
777 * superfluous.
778 */
779 pte_clear(vma->vm_mm, address, _pte);
780 page_remove_rmap(src_page, false);
781 spin_unlock(ptl);
782 free_page_and_swap_cache(src_page);
783 }
b46e756f 784 }
5503fbf2
KS
785
786 list_for_each_entry_safe(src_page, tmp, compound_pagelist, lru) {
787 list_del(&src_page->lru);
788 release_pte_page(src_page);
789 }
b46e756f
KS
790}
791
792static void khugepaged_alloc_sleep(void)
793{
794 DEFINE_WAIT(wait);
795
796 add_wait_queue(&khugepaged_wait, &wait);
797 freezable_schedule_timeout_interruptible(
798 msecs_to_jiffies(khugepaged_alloc_sleep_millisecs));
799 remove_wait_queue(&khugepaged_wait, &wait);
800}
801
802static int khugepaged_node_load[MAX_NUMNODES];
803
804static bool khugepaged_scan_abort(int nid)
805{
806 int i;
807
808 /*
a5f5f91d 809 * If node_reclaim_mode is disabled, then no extra effort is made to
b46e756f
KS
810 * allocate memory locally.
811 */
a5f5f91d 812 if (!node_reclaim_mode)
b46e756f
KS
813 return false;
814
815 /* If there is a count for this node already, it must be acceptable */
816 if (khugepaged_node_load[nid])
817 return false;
818
819 for (i = 0; i < MAX_NUMNODES; i++) {
820 if (!khugepaged_node_load[i])
821 continue;
a55c7454 822 if (node_distance(nid, i) > node_reclaim_distance)
b46e756f
KS
823 return true;
824 }
825 return false;
826}
827
828/* Defrag for khugepaged will enter direct reclaim/compaction if necessary */
829static inline gfp_t alloc_hugepage_khugepaged_gfpmask(void)
830{
25160354 831 return khugepaged_defrag() ? GFP_TRANSHUGE : GFP_TRANSHUGE_LIGHT;
b46e756f
KS
832}
833
834#ifdef CONFIG_NUMA
835static int khugepaged_find_target_node(void)
836{
837 static int last_khugepaged_target_node = NUMA_NO_NODE;
838 int nid, target_node = 0, max_value = 0;
839
840 /* find first node with max normal pages hit */
841 for (nid = 0; nid < MAX_NUMNODES; nid++)
842 if (khugepaged_node_load[nid] > max_value) {
843 max_value = khugepaged_node_load[nid];
844 target_node = nid;
845 }
846
847 /* do some balance if several nodes have the same hit record */
848 if (target_node <= last_khugepaged_target_node)
849 for (nid = last_khugepaged_target_node + 1; nid < MAX_NUMNODES;
850 nid++)
851 if (max_value == khugepaged_node_load[nid]) {
852 target_node = nid;
853 break;
854 }
855
856 last_khugepaged_target_node = target_node;
857 return target_node;
858}
859
860static bool khugepaged_prealloc_page(struct page **hpage, bool *wait)
861{
862 if (IS_ERR(*hpage)) {
863 if (!*wait)
864 return false;
865
866 *wait = false;
867 *hpage = NULL;
868 khugepaged_alloc_sleep();
869 } else if (*hpage) {
870 put_page(*hpage);
871 *hpage = NULL;
872 }
873
874 return true;
875}
876
877static struct page *
988ddb71 878khugepaged_alloc_page(struct page **hpage, gfp_t gfp, int node)
b46e756f
KS
879{
880 VM_BUG_ON_PAGE(*hpage, *hpage);
881
b46e756f
KS
882 *hpage = __alloc_pages_node(node, gfp, HPAGE_PMD_ORDER);
883 if (unlikely(!*hpage)) {
884 count_vm_event(THP_COLLAPSE_ALLOC_FAILED);
885 *hpage = ERR_PTR(-ENOMEM);
886 return NULL;
887 }
888
889 prep_transhuge_page(*hpage);
890 count_vm_event(THP_COLLAPSE_ALLOC);
891 return *hpage;
892}
893#else
894static int khugepaged_find_target_node(void)
895{
896 return 0;
897}
898
899static inline struct page *alloc_khugepaged_hugepage(void)
900{
901 struct page *page;
902
903 page = alloc_pages(alloc_hugepage_khugepaged_gfpmask(),
904 HPAGE_PMD_ORDER);
905 if (page)
906 prep_transhuge_page(page);
907 return page;
908}
909
910static struct page *khugepaged_alloc_hugepage(bool *wait)
911{
912 struct page *hpage;
913
914 do {
915 hpage = alloc_khugepaged_hugepage();
916 if (!hpage) {
917 count_vm_event(THP_COLLAPSE_ALLOC_FAILED);
918 if (!*wait)
919 return NULL;
920
921 *wait = false;
922 khugepaged_alloc_sleep();
923 } else
924 count_vm_event(THP_COLLAPSE_ALLOC);
925 } while (unlikely(!hpage) && likely(khugepaged_enabled()));
926
927 return hpage;
928}
929
930static bool khugepaged_prealloc_page(struct page **hpage, bool *wait)
931{
033b5d77
HD
932 /*
933 * If the hpage allocated earlier was briefly exposed in page cache
934 * before collapse_file() failed, it is possible that racing lookups
935 * have not yet completed, and would then be unpleasantly surprised by
936 * finding the hpage reused for the same mapping at a different offset.
937 * Just release the previous allocation if there is any danger of that.
938 */
939 if (*hpage && page_count(*hpage) > 1) {
940 put_page(*hpage);
941 *hpage = NULL;
942 }
943
b46e756f
KS
944 if (!*hpage)
945 *hpage = khugepaged_alloc_hugepage(wait);
946
947 if (unlikely(!*hpage))
948 return false;
949
950 return true;
951}
952
953static struct page *
988ddb71 954khugepaged_alloc_page(struct page **hpage, gfp_t gfp, int node)
b46e756f 955{
b46e756f
KS
956 VM_BUG_ON(!*hpage);
957
958 return *hpage;
959}
960#endif
961
b46e756f 962/*
c1e8d7c6
ML
963 * If mmap_lock temporarily dropped, revalidate vma
964 * before taking mmap_lock.
b46e756f
KS
965 * Return 0 if succeeds, otherwise return none-zero
966 * value (scan code).
967 */
968
c131f751
KS
969static int hugepage_vma_revalidate(struct mm_struct *mm, unsigned long address,
970 struct vm_area_struct **vmap)
b46e756f
KS
971{
972 struct vm_area_struct *vma;
973 unsigned long hstart, hend;
974
975 if (unlikely(khugepaged_test_exit(mm)))
976 return SCAN_ANY_PROCESS;
977
c131f751 978 *vmap = vma = find_vma(mm, address);
b46e756f
KS
979 if (!vma)
980 return SCAN_VMA_NULL;
981
982 hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
983 hend = vma->vm_end & HPAGE_PMD_MASK;
984 if (address < hstart || address + HPAGE_PMD_SIZE > hend)
985 return SCAN_ADDRESS_RANGE;
50f8b92f 986 if (!hugepage_vma_check(vma, vma->vm_flags))
b46e756f 987 return SCAN_VMA_CHECK;
594cced1
KS
988 /* Anon VMA expected */
989 if (!vma->anon_vma || vma->vm_ops)
990 return SCAN_VMA_CHECK;
b46e756f
KS
991 return 0;
992}
993
994/*
995 * Bring missing pages in from swap, to complete THP collapse.
996 * Only done if khugepaged_scan_pmd believes it is worthwhile.
997 *
998 * Called and returns without pte mapped or spinlocks held,
c1e8d7c6 999 * but with mmap_lock held to protect against vma changes.
b46e756f
KS
1000 */
1001
1002static bool __collapse_huge_page_swapin(struct mm_struct *mm,
1003 struct vm_area_struct *vma,
2b635dd3 1004 unsigned long haddr, pmd_t *pmd,
0db501f7 1005 int referenced)
b46e756f 1006{
2b740303
SJ
1007 int swapped_in = 0;
1008 vm_fault_t ret = 0;
2b635dd3
WD
1009 unsigned long address, end = haddr + (HPAGE_PMD_NR * PAGE_SIZE);
1010
1011 for (address = haddr; address < end; address += PAGE_SIZE) {
1012 struct vm_fault vmf = {
1013 .vma = vma,
1014 .address = address,
1015 .pgoff = linear_page_index(vma, haddr),
1016 .flags = FAULT_FLAG_ALLOW_RETRY,
1017 .pmd = pmd,
1018 };
1019
1020 vmf.pte = pte_offset_map(pmd, address);
2994302b 1021 vmf.orig_pte = *vmf.pte;
2b635dd3
WD
1022 if (!is_swap_pte(vmf.orig_pte)) {
1023 pte_unmap(vmf.pte);
b46e756f 1024 continue;
2b635dd3 1025 }
b46e756f 1026 swapped_in++;
2994302b 1027 ret = do_swap_page(&vmf);
0db501f7 1028
c1e8d7c6 1029 /* do_swap_page returns VM_FAULT_RETRY with released mmap_lock */
b46e756f 1030 if (ret & VM_FAULT_RETRY) {
d8ed45c5 1031 mmap_read_lock(mm);
2b635dd3 1032 if (hugepage_vma_revalidate(mm, haddr, &vma)) {
47f863ea 1033 /* vma is no longer available, don't continue to swapin */
0db501f7 1034 trace_mm_collapse_huge_page_swapin(mm, swapped_in, referenced, 0);
b46e756f 1035 return false;
47f863ea 1036 }
b46e756f 1037 /* check if the pmd is still valid */
2b635dd3 1038 if (mm_find_pmd(mm, haddr) != pmd) {
835152a2 1039 trace_mm_collapse_huge_page_swapin(mm, swapped_in, referenced, 0);
b46e756f 1040 return false;
835152a2 1041 }
b46e756f
KS
1042 }
1043 if (ret & VM_FAULT_ERROR) {
0db501f7 1044 trace_mm_collapse_huge_page_swapin(mm, swapped_in, referenced, 0);
b46e756f
KS
1045 return false;
1046 }
b46e756f 1047 }
ae2c5d80
KS
1048
1049 /* Drain LRU add pagevec to remove extra pin on the swapped in pages */
1050 if (swapped_in)
1051 lru_add_drain();
1052
0db501f7 1053 trace_mm_collapse_huge_page_swapin(mm, swapped_in, referenced, 1);
b46e756f
KS
1054 return true;
1055}
1056
1057static void collapse_huge_page(struct mm_struct *mm,
1058 unsigned long address,
1059 struct page **hpage,
ffe945e6 1060 int node, int referenced, int unmapped)
b46e756f 1061{
5503fbf2 1062 LIST_HEAD(compound_pagelist);
b46e756f
KS
1063 pmd_t *pmd, _pmd;
1064 pte_t *pte;
1065 pgtable_t pgtable;
1066 struct page *new_page;
1067 spinlock_t *pmd_ptl, *pte_ptl;
1068 int isolated = 0, result = 0;
c131f751 1069 struct vm_area_struct *vma;
ac46d4f3 1070 struct mmu_notifier_range range;
b46e756f
KS
1071 gfp_t gfp;
1072
1073 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
1074
1075 /* Only allocate from the target node */
41b6167e 1076 gfp = alloc_hugepage_khugepaged_gfpmask() | __GFP_THISNODE;
b46e756f 1077
988ddb71 1078 /*
c1e8d7c6 1079 * Before allocating the hugepage, release the mmap_lock read lock.
988ddb71 1080 * The allocation can take potentially a long time if it involves
c1e8d7c6 1081 * sync compaction, and we do not need to hold the mmap_lock during
988ddb71
KS
1082 * that. We will recheck the vma after taking it again in write mode.
1083 */
d8ed45c5 1084 mmap_read_unlock(mm);
988ddb71 1085 new_page = khugepaged_alloc_page(hpage, gfp, node);
b46e756f
KS
1086 if (!new_page) {
1087 result = SCAN_ALLOC_HUGE_PAGE_FAIL;
1088 goto out_nolock;
1089 }
1090
d9eb1ea2 1091 if (unlikely(mem_cgroup_charge(new_page, mm, gfp))) {
b46e756f
KS
1092 result = SCAN_CGROUP_CHARGE_FAIL;
1093 goto out_nolock;
1094 }
9d82c694 1095 count_memcg_page_event(new_page, THP_COLLAPSE_ALLOC);
b46e756f 1096
d8ed45c5 1097 mmap_read_lock(mm);
c131f751 1098 result = hugepage_vma_revalidate(mm, address, &vma);
b46e756f 1099 if (result) {
d8ed45c5 1100 mmap_read_unlock(mm);
b46e756f
KS
1101 goto out_nolock;
1102 }
1103
1104 pmd = mm_find_pmd(mm, address);
1105 if (!pmd) {
1106 result = SCAN_PMD_NULL;
d8ed45c5 1107 mmap_read_unlock(mm);
b46e756f
KS
1108 goto out_nolock;
1109 }
1110
1111 /*
c1e8d7c6
ML
1112 * __collapse_huge_page_swapin always returns with mmap_lock locked.
1113 * If it fails, we release mmap_lock and jump out_nolock.
b46e756f
KS
1114 * Continuing to collapse causes inconsistency.
1115 */
ffe945e6
KS
1116 if (unmapped && !__collapse_huge_page_swapin(mm, vma, address,
1117 pmd, referenced)) {
d8ed45c5 1118 mmap_read_unlock(mm);
b46e756f
KS
1119 goto out_nolock;
1120 }
1121
d8ed45c5 1122 mmap_read_unlock(mm);
b46e756f
KS
1123 /*
1124 * Prevent all access to pagetables with the exception of
1125 * gup_fast later handled by the ptep_clear_flush and the VM
1126 * handled by the anon_vma lock + PG_lock.
1127 */
d8ed45c5 1128 mmap_write_lock(mm);
c131f751 1129 result = hugepage_vma_revalidate(mm, address, &vma);
b46e756f
KS
1130 if (result)
1131 goto out;
1132 /* check if the pmd is still valid */
1133 if (mm_find_pmd(mm, address) != pmd)
1134 goto out;
1135
1136 anon_vma_lock_write(vma->anon_vma);
1137
7269f999 1138 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, NULL, mm,
6f4f13e8 1139 address, address + HPAGE_PMD_SIZE);
ac46d4f3 1140 mmu_notifier_invalidate_range_start(&range);
ec649c9d
VS
1141
1142 pte = pte_offset_map(pmd, address);
1143 pte_ptl = pte_lockptr(mm, pmd);
1144
b46e756f
KS
1145 pmd_ptl = pmd_lock(mm, pmd); /* probably unnecessary */
1146 /*
1147 * After this gup_fast can't run anymore. This also removes
1148 * any huge TLB entry from the CPU so we won't allow
1149 * huge and small TLB entries for the same virtual address
1150 * to avoid the risk of CPU bugs in that area.
1151 */
1152 _pmd = pmdp_collapse_flush(vma, address, pmd);
1153 spin_unlock(pmd_ptl);
ac46d4f3 1154 mmu_notifier_invalidate_range_end(&range);
b46e756f
KS
1155
1156 spin_lock(pte_ptl);
5503fbf2
KS
1157 isolated = __collapse_huge_page_isolate(vma, address, pte,
1158 &compound_pagelist);
b46e756f
KS
1159 spin_unlock(pte_ptl);
1160
1161 if (unlikely(!isolated)) {
1162 pte_unmap(pte);
1163 spin_lock(pmd_ptl);
1164 BUG_ON(!pmd_none(*pmd));
1165 /*
1166 * We can only use set_pmd_at when establishing
1167 * hugepmds and never for establishing regular pmds that
1168 * points to regular pagetables. Use pmd_populate for that
1169 */
1170 pmd_populate(mm, pmd, pmd_pgtable(_pmd));
1171 spin_unlock(pmd_ptl);
1172 anon_vma_unlock_write(vma->anon_vma);
1173 result = SCAN_FAIL;
1174 goto out;
1175 }
1176
1177 /*
1178 * All pages are isolated and locked so anon_vma rmap
1179 * can't run anymore.
1180 */
1181 anon_vma_unlock_write(vma->anon_vma);
1182
5503fbf2
KS
1183 __collapse_huge_page_copy(pte, new_page, vma, address, pte_ptl,
1184 &compound_pagelist);
b46e756f 1185 pte_unmap(pte);
588d01f9
ML
1186 /*
1187 * spin_lock() below is not the equivalent of smp_wmb(), but
1188 * the smp_wmb() inside __SetPageUptodate() can be reused to
1189 * avoid the copy_huge_page writes to become visible after
1190 * the set_pmd_at() write.
1191 */
b46e756f
KS
1192 __SetPageUptodate(new_page);
1193 pgtable = pmd_pgtable(_pmd);
1194
1195 _pmd = mk_huge_pmd(new_page, vma->vm_page_prot);
f55e1014 1196 _pmd = maybe_pmd_mkwrite(pmd_mkdirty(_pmd), vma);
b46e756f 1197
b46e756f
KS
1198 spin_lock(pmd_ptl);
1199 BUG_ON(!pmd_none(*pmd));
be5d0a74 1200 page_add_new_anon_rmap(new_page, vma, address, true);
b518154e 1201 lru_cache_add_inactive_or_unevictable(new_page, vma);
b46e756f
KS
1202 pgtable_trans_huge_deposit(mm, pmd, pgtable);
1203 set_pmd_at(mm, address, pmd, _pmd);
1204 update_mmu_cache_pmd(vma, address, pmd);
1205 spin_unlock(pmd_ptl);
1206
1207 *hpage = NULL;
1208
1209 khugepaged_pages_collapsed++;
1210 result = SCAN_SUCCEED;
1211out_up_write:
d8ed45c5 1212 mmap_write_unlock(mm);
b46e756f 1213out_nolock:
9d82c694
JW
1214 if (!IS_ERR_OR_NULL(*hpage))
1215 mem_cgroup_uncharge(*hpage);
b46e756f
KS
1216 trace_mm_collapse_huge_page(mm, isolated, result);
1217 return;
1218out:
b46e756f
KS
1219 goto out_up_write;
1220}
1221
1222static int khugepaged_scan_pmd(struct mm_struct *mm,
1223 struct vm_area_struct *vma,
1224 unsigned long address,
1225 struct page **hpage)
1226{
1227 pmd_t *pmd;
1228 pte_t *pte, *_pte;
71a2c112
KS
1229 int ret = 0, result = 0, referenced = 0;
1230 int none_or_zero = 0, shared = 0;
b46e756f
KS
1231 struct page *page = NULL;
1232 unsigned long _address;
1233 spinlock_t *ptl;
1234 int node = NUMA_NO_NODE, unmapped = 0;
0db501f7 1235 bool writable = false;
b46e756f
KS
1236
1237 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
1238
1239 pmd = mm_find_pmd(mm, address);
1240 if (!pmd) {
1241 result = SCAN_PMD_NULL;
1242 goto out;
1243 }
1244
1245 memset(khugepaged_node_load, 0, sizeof(khugepaged_node_load));
1246 pte = pte_offset_map_lock(mm, pmd, address, &ptl);
1247 for (_address = address, _pte = pte; _pte < pte+HPAGE_PMD_NR;
1248 _pte++, _address += PAGE_SIZE) {
1249 pte_t pteval = *_pte;
1250 if (is_swap_pte(pteval)) {
1251 if (++unmapped <= khugepaged_max_ptes_swap) {
e1e267c7
PX
1252 /*
1253 * Always be strict with uffd-wp
1254 * enabled swap entries. Please see
1255 * comment below for pte_uffd_wp().
1256 */
1257 if (pte_swp_uffd_wp(pteval)) {
1258 result = SCAN_PTE_UFFD_WP;
1259 goto out_unmap;
1260 }
b46e756f
KS
1261 continue;
1262 } else {
1263 result = SCAN_EXCEED_SWAP_PTE;
1264 goto out_unmap;
1265 }
1266 }
1267 if (pte_none(pteval) || is_zero_pfn(pte_pfn(pteval))) {
1268 if (!userfaultfd_armed(vma) &&
1269 ++none_or_zero <= khugepaged_max_ptes_none) {
1270 continue;
1271 } else {
1272 result = SCAN_EXCEED_NONE_PTE;
1273 goto out_unmap;
1274 }
1275 }
1276 if (!pte_present(pteval)) {
1277 result = SCAN_PTE_NON_PRESENT;
1278 goto out_unmap;
1279 }
e1e267c7
PX
1280 if (pte_uffd_wp(pteval)) {
1281 /*
1282 * Don't collapse the page if any of the small
1283 * PTEs are armed with uffd write protection.
1284 * Here we can also mark the new huge pmd as
1285 * write protected if any of the small ones is
8958b249 1286 * marked but that could bring unknown
e1e267c7
PX
1287 * userfault messages that falls outside of
1288 * the registered range. So, just be simple.
1289 */
1290 result = SCAN_PTE_UFFD_WP;
1291 goto out_unmap;
1292 }
b46e756f
KS
1293 if (pte_write(pteval))
1294 writable = true;
1295
1296 page = vm_normal_page(vma, _address, pteval);
1297 if (unlikely(!page)) {
1298 result = SCAN_PAGE_NULL;
1299 goto out_unmap;
1300 }
1301
71a2c112
KS
1302 if (page_mapcount(page) > 1 &&
1303 ++shared > khugepaged_max_ptes_shared) {
1304 result = SCAN_EXCEED_SHARED_PTE;
1305 goto out_unmap;
1306 }
1307
5503fbf2 1308 page = compound_head(page);
b46e756f
KS
1309
1310 /*
1311 * Record which node the original page is from and save this
1312 * information to khugepaged_node_load[].
1313 * Khupaged will allocate hugepage from the node has the max
1314 * hit record.
1315 */
1316 node = page_to_nid(page);
1317 if (khugepaged_scan_abort(node)) {
1318 result = SCAN_SCAN_ABORT;
1319 goto out_unmap;
1320 }
1321 khugepaged_node_load[node]++;
1322 if (!PageLRU(page)) {
1323 result = SCAN_PAGE_LRU;
1324 goto out_unmap;
1325 }
1326 if (PageLocked(page)) {
1327 result = SCAN_PAGE_LOCK;
1328 goto out_unmap;
1329 }
1330 if (!PageAnon(page)) {
1331 result = SCAN_PAGE_ANON;
1332 goto out_unmap;
1333 }
1334
1335 /*
9445689f
KS
1336 * Check if the page has any GUP (or other external) pins.
1337 *
1338 * Here the check is racy it may see totmal_mapcount > refcount
1339 * in some cases.
1340 * For example, one process with one forked child process.
1341 * The parent has the PMD split due to MADV_DONTNEED, then
1342 * the child is trying unmap the whole PMD, but khugepaged
1343 * may be scanning the parent between the child has
1344 * PageDoubleMap flag cleared and dec the mapcount. So
1345 * khugepaged may see total_mapcount > refcount.
1346 *
1347 * But such case is ephemeral we could always retry collapse
1348 * later. However it may report false positive if the page
1349 * has excessive GUP pins (i.e. 512). Anyway the same check
1350 * will be done again later the risk seems low.
b46e756f 1351 */
9445689f 1352 if (!is_refcount_suitable(page)) {
b46e756f
KS
1353 result = SCAN_PAGE_COUNT;
1354 goto out_unmap;
1355 }
1356 if (pte_young(pteval) ||
1357 page_is_young(page) || PageReferenced(page) ||
1358 mmu_notifier_test_young(vma->vm_mm, address))
0db501f7 1359 referenced++;
b46e756f 1360 }
ffe945e6 1361 if (!writable) {
b46e756f 1362 result = SCAN_PAGE_RO;
ffe945e6
KS
1363 } else if (!referenced || (unmapped && referenced < HPAGE_PMD_NR/2)) {
1364 result = SCAN_LACK_REFERENCED_PAGE;
1365 } else {
1366 result = SCAN_SUCCEED;
1367 ret = 1;
b46e756f
KS
1368 }
1369out_unmap:
1370 pte_unmap_unlock(pte, ptl);
1371 if (ret) {
1372 node = khugepaged_find_target_node();
c1e8d7c6 1373 /* collapse_huge_page will return with the mmap_lock released */
ffe945e6
KS
1374 collapse_huge_page(mm, address, hpage, node,
1375 referenced, unmapped);
b46e756f
KS
1376 }
1377out:
1378 trace_mm_khugepaged_scan_pmd(mm, page, writable, referenced,
1379 none_or_zero, result, unmapped);
1380 return ret;
1381}
1382
1383static void collect_mm_slot(struct mm_slot *mm_slot)
1384{
1385 struct mm_struct *mm = mm_slot->mm;
1386
35f3aa39 1387 lockdep_assert_held(&khugepaged_mm_lock);
b46e756f
KS
1388
1389 if (khugepaged_test_exit(mm)) {
1390 /* free mm_slot */
1391 hash_del(&mm_slot->hash);
1392 list_del(&mm_slot->mm_node);
1393
1394 /*
1395 * Not strictly needed because the mm exited already.
1396 *
1397 * clear_bit(MMF_VM_HUGEPAGE, &mm->flags);
1398 */
1399
1400 /* khugepaged_mm_lock actually not necessary for the below */
1401 free_mm_slot(mm_slot);
1402 mmdrop(mm);
1403 }
1404}
1405
396bcc52 1406#ifdef CONFIG_SHMEM
27e1f827
SL
1407/*
1408 * Notify khugepaged that given addr of the mm is pte-mapped THP. Then
1409 * khugepaged should try to collapse the page table.
1410 */
1411static int khugepaged_add_pte_mapped_thp(struct mm_struct *mm,
1412 unsigned long addr)
1413{
1414 struct mm_slot *mm_slot;
1415
1416 VM_BUG_ON(addr & ~HPAGE_PMD_MASK);
1417
1418 spin_lock(&khugepaged_mm_lock);
1419 mm_slot = get_mm_slot(mm);
1420 if (likely(mm_slot && mm_slot->nr_pte_mapped_thp < MAX_PTE_MAPPED_THP))
1421 mm_slot->pte_mapped_thp[mm_slot->nr_pte_mapped_thp++] = addr;
1422 spin_unlock(&khugepaged_mm_lock);
1423 return 0;
1424}
1425
1426/**
336e6b53
AS
1427 * collapse_pte_mapped_thp - Try to collapse a pte-mapped THP for mm at
1428 * address haddr.
1429 *
1430 * @mm: process address space where collapse happens
1431 * @addr: THP collapse address
27e1f827
SL
1432 *
1433 * This function checks whether all the PTEs in the PMD are pointing to the
1434 * right THP. If so, retract the page table so the THP can refault in with
1435 * as pmd-mapped.
1436 */
1437void collapse_pte_mapped_thp(struct mm_struct *mm, unsigned long addr)
1438{
1439 unsigned long haddr = addr & HPAGE_PMD_MASK;
1440 struct vm_area_struct *vma = find_vma(mm, haddr);
119a5fc1 1441 struct page *hpage;
27e1f827
SL
1442 pte_t *start_pte, *pte;
1443 pmd_t *pmd, _pmd;
1444 spinlock_t *ptl;
1445 int count = 0;
1446 int i;
1447
1448 if (!vma || !vma->vm_file ||
fef792a4 1449 !range_in_vma(vma, haddr, haddr + HPAGE_PMD_SIZE))
27e1f827
SL
1450 return;
1451
1452 /*
1453 * This vm_flags may not have VM_HUGEPAGE if the page was not
1454 * collapsed by this mm. But we can still collapse if the page is
1455 * the valid THP. Add extra VM_HUGEPAGE so hugepage_vma_check()
1456 * will not fail the vma for missing VM_HUGEPAGE
1457 */
1458 if (!hugepage_vma_check(vma, vma->vm_flags | VM_HUGEPAGE))
1459 return;
1460
119a5fc1
HD
1461 hpage = find_lock_page(vma->vm_file->f_mapping,
1462 linear_page_index(vma, haddr));
1463 if (!hpage)
1464 return;
1465
1466 if (!PageHead(hpage))
1467 goto drop_hpage;
1468
27e1f827
SL
1469 pmd = mm_find_pmd(mm, haddr);
1470 if (!pmd)
119a5fc1 1471 goto drop_hpage;
27e1f827
SL
1472
1473 start_pte = pte_offset_map_lock(mm, pmd, haddr, &ptl);
1474
1475 /* step 1: check all mapped PTEs are to the right huge page */
1476 for (i = 0, addr = haddr, pte = start_pte;
1477 i < HPAGE_PMD_NR; i++, addr += PAGE_SIZE, pte++) {
1478 struct page *page;
1479
1480 /* empty pte, skip */
1481 if (pte_none(*pte))
1482 continue;
1483
1484 /* page swapped out, abort */
1485 if (!pte_present(*pte))
1486 goto abort;
1487
1488 page = vm_normal_page(vma, addr, *pte);
1489
27e1f827 1490 /*
119a5fc1
HD
1491 * Note that uprobe, debugger, or MAP_PRIVATE may change the
1492 * page table, but the new page will not be a subpage of hpage.
27e1f827 1493 */
119a5fc1 1494 if (hpage + i != page)
27e1f827
SL
1495 goto abort;
1496 count++;
1497 }
1498
1499 /* step 2: adjust rmap */
1500 for (i = 0, addr = haddr, pte = start_pte;
1501 i < HPAGE_PMD_NR; i++, addr += PAGE_SIZE, pte++) {
1502 struct page *page;
1503
1504 if (pte_none(*pte))
1505 continue;
1506 page = vm_normal_page(vma, addr, *pte);
1507 page_remove_rmap(page, false);
1508 }
1509
1510 pte_unmap_unlock(start_pte, ptl);
1511
1512 /* step 3: set proper refcount and mm_counters. */
119a5fc1 1513 if (count) {
27e1f827
SL
1514 page_ref_sub(hpage, count);
1515 add_mm_counter(vma->vm_mm, mm_counter_file(hpage), -count);
1516 }
1517
1518 /* step 4: collapse pmd */
1519 ptl = pmd_lock(vma->vm_mm, pmd);
723a80da 1520 _pmd = pmdp_collapse_flush(vma, haddr, pmd);
27e1f827
SL
1521 spin_unlock(ptl);
1522 mm_dec_nr_ptes(mm);
1523 pte_free(mm, pmd_pgtable(_pmd));
119a5fc1
HD
1524
1525drop_hpage:
1526 unlock_page(hpage);
1527 put_page(hpage);
27e1f827
SL
1528 return;
1529
1530abort:
1531 pte_unmap_unlock(start_pte, ptl);
119a5fc1 1532 goto drop_hpage;
27e1f827
SL
1533}
1534
0edf61e5 1535static void khugepaged_collapse_pte_mapped_thps(struct mm_slot *mm_slot)
27e1f827
SL
1536{
1537 struct mm_struct *mm = mm_slot->mm;
1538 int i;
1539
1540 if (likely(mm_slot->nr_pte_mapped_thp == 0))
0edf61e5 1541 return;
27e1f827 1542
d8ed45c5 1543 if (!mmap_write_trylock(mm))
0edf61e5 1544 return;
27e1f827
SL
1545
1546 if (unlikely(khugepaged_test_exit(mm)))
1547 goto out;
1548
1549 for (i = 0; i < mm_slot->nr_pte_mapped_thp; i++)
1550 collapse_pte_mapped_thp(mm, mm_slot->pte_mapped_thp[i]);
1551
1552out:
1553 mm_slot->nr_pte_mapped_thp = 0;
d8ed45c5 1554 mmap_write_unlock(mm);
27e1f827
SL
1555}
1556
f3f0e1d2
KS
1557static void retract_page_tables(struct address_space *mapping, pgoff_t pgoff)
1558{
1559 struct vm_area_struct *vma;
18e77600 1560 struct mm_struct *mm;
f3f0e1d2
KS
1561 unsigned long addr;
1562 pmd_t *pmd, _pmd;
1563
1564 i_mmap_lock_write(mapping);
1565 vma_interval_tree_foreach(vma, &mapping->i_mmap, pgoff, pgoff) {
27e1f827
SL
1566 /*
1567 * Check vma->anon_vma to exclude MAP_PRIVATE mappings that
1568 * got written to. These VMAs are likely not worth investing
3e4e28c5 1569 * mmap_write_lock(mm) as PMD-mapping is likely to be split
27e1f827
SL
1570 * later.
1571 *
1572 * Not that vma->anon_vma check is racy: it can be set up after
c1e8d7c6 1573 * the check but before we took mmap_lock by the fault path.
27e1f827
SL
1574 * But page lock would prevent establishing any new ptes of the
1575 * page, so we are safe.
1576 *
1577 * An alternative would be drop the check, but check that page
1578 * table is clear before calling pmdp_collapse_flush() under
1579 * ptl. It has higher chance to recover THP for the VMA, but
1580 * has higher cost too.
1581 */
f3f0e1d2
KS
1582 if (vma->anon_vma)
1583 continue;
1584 addr = vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
1585 if (addr & ~HPAGE_PMD_MASK)
1586 continue;
1587 if (vma->vm_end < addr + HPAGE_PMD_SIZE)
1588 continue;
18e77600
HD
1589 mm = vma->vm_mm;
1590 pmd = mm_find_pmd(mm, addr);
f3f0e1d2
KS
1591 if (!pmd)
1592 continue;
1593 /*
c1e8d7c6 1594 * We need exclusive mmap_lock to retract page table.
27e1f827
SL
1595 *
1596 * We use trylock due to lock inversion: we need to acquire
c1e8d7c6 1597 * mmap_lock while holding page lock. Fault path does it in
27e1f827 1598 * reverse order. Trylock is a way to avoid deadlock.
f3f0e1d2 1599 */
18e77600
HD
1600 if (mmap_write_trylock(mm)) {
1601 if (!khugepaged_test_exit(mm)) {
1602 spinlock_t *ptl = pmd_lock(mm, pmd);
1603 /* assume page table is clear */
1604 _pmd = pmdp_collapse_flush(vma, addr, pmd);
1605 spin_unlock(ptl);
1606 mm_dec_nr_ptes(mm);
1607 pte_free(mm, pmd_pgtable(_pmd));
1608 }
1609 mmap_write_unlock(mm);
27e1f827
SL
1610 } else {
1611 /* Try again later */
18e77600 1612 khugepaged_add_pte_mapped_thp(mm, addr);
f3f0e1d2
KS
1613 }
1614 }
1615 i_mmap_unlock_write(mapping);
1616}
1617
1618/**
99cb0dbd 1619 * collapse_file - collapse filemap/tmpfs/shmem pages into huge one.
f3f0e1d2 1620 *
336e6b53
AS
1621 * @mm: process address space where collapse happens
1622 * @file: file that collapse on
1623 * @start: collapse start address
1624 * @hpage: new allocated huge page for collapse
1625 * @node: appointed node the new huge page allocate from
1626 *
f3f0e1d2 1627 * Basic scheme is simple, details are more complex:
87c460a0 1628 * - allocate and lock a new huge page;
77da9389 1629 * - scan page cache replacing old pages with the new one
99cb0dbd 1630 * + swap/gup in pages if necessary;
f3f0e1d2 1631 * + fill in gaps;
77da9389
MW
1632 * + keep old pages around in case rollback is required;
1633 * - if replacing succeeds:
f3f0e1d2
KS
1634 * + copy data over;
1635 * + free old pages;
87c460a0 1636 * + unlock huge page;
f3f0e1d2
KS
1637 * - if replacing failed;
1638 * + put all pages back and unfreeze them;
77da9389 1639 * + restore gaps in the page cache;
87c460a0 1640 * + unlock and free huge page;
f3f0e1d2 1641 */
579c571e
SL
1642static void collapse_file(struct mm_struct *mm,
1643 struct file *file, pgoff_t start,
f3f0e1d2
KS
1644 struct page **hpage, int node)
1645{
579c571e 1646 struct address_space *mapping = file->f_mapping;
f3f0e1d2 1647 gfp_t gfp;
77da9389 1648 struct page *new_page;
f3f0e1d2
KS
1649 pgoff_t index, end = start + HPAGE_PMD_NR;
1650 LIST_HEAD(pagelist);
77da9389 1651 XA_STATE_ORDER(xas, &mapping->i_pages, start, HPAGE_PMD_ORDER);
f3f0e1d2 1652 int nr_none = 0, result = SCAN_SUCCEED;
99cb0dbd 1653 bool is_shmem = shmem_file(file);
bf9ecead 1654 int nr;
f3f0e1d2 1655
99cb0dbd 1656 VM_BUG_ON(!IS_ENABLED(CONFIG_READ_ONLY_THP_FOR_FS) && !is_shmem);
f3f0e1d2
KS
1657 VM_BUG_ON(start & (HPAGE_PMD_NR - 1));
1658
1659 /* Only allocate from the target node */
41b6167e 1660 gfp = alloc_hugepage_khugepaged_gfpmask() | __GFP_THISNODE;
f3f0e1d2
KS
1661
1662 new_page = khugepaged_alloc_page(hpage, gfp, node);
1663 if (!new_page) {
1664 result = SCAN_ALLOC_HUGE_PAGE_FAIL;
1665 goto out;
1666 }
1667
d9eb1ea2 1668 if (unlikely(mem_cgroup_charge(new_page, mm, gfp))) {
f3f0e1d2
KS
1669 result = SCAN_CGROUP_CHARGE_FAIL;
1670 goto out;
1671 }
9d82c694 1672 count_memcg_page_event(new_page, THP_COLLAPSE_ALLOC);
f3f0e1d2 1673
95feeabb
HD
1674 /* This will be less messy when we use multi-index entries */
1675 do {
1676 xas_lock_irq(&xas);
1677 xas_create_range(&xas);
1678 if (!xas_error(&xas))
1679 break;
1680 xas_unlock_irq(&xas);
1681 if (!xas_nomem(&xas, GFP_KERNEL)) {
95feeabb
HD
1682 result = SCAN_FAIL;
1683 goto out;
1684 }
1685 } while (1);
1686
042a3082 1687 __SetPageLocked(new_page);
99cb0dbd
SL
1688 if (is_shmem)
1689 __SetPageSwapBacked(new_page);
f3f0e1d2
KS
1690 new_page->index = start;
1691 new_page->mapping = mapping;
f3f0e1d2 1692
f3f0e1d2 1693 /*
87c460a0
HD
1694 * At this point the new_page is locked and not up-to-date.
1695 * It's safe to insert it into the page cache, because nobody would
1696 * be able to map it or use it in another way until we unlock it.
f3f0e1d2
KS
1697 */
1698
77da9389
MW
1699 xas_set(&xas, start);
1700 for (index = start; index < end; index++) {
1701 struct page *page = xas_next(&xas);
1702
1703 VM_BUG_ON(index != xas.xa_index);
99cb0dbd
SL
1704 if (is_shmem) {
1705 if (!page) {
1706 /*
1707 * Stop if extent has been truncated or
1708 * hole-punched, and is now completely
1709 * empty.
1710 */
1711 if (index == start) {
1712 if (!xas_next_entry(&xas, end - 1)) {
1713 result = SCAN_TRUNCATED;
1714 goto xa_locked;
1715 }
1716 xas_set(&xas, index);
1717 }
1718 if (!shmem_charge(mapping->host, 1)) {
1719 result = SCAN_FAIL;
042a3082 1720 goto xa_locked;
701270fa 1721 }
99cb0dbd
SL
1722 xas_store(&xas, new_page);
1723 nr_none++;
1724 continue;
701270fa 1725 }
99cb0dbd
SL
1726
1727 if (xa_is_value(page) || !PageUptodate(page)) {
1728 xas_unlock_irq(&xas);
1729 /* swap in or instantiate fallocated page */
1730 if (shmem_getpage(mapping->host, index, &page,
1731 SGP_NOHUGE)) {
1732 result = SCAN_FAIL;
1733 goto xa_unlocked;
1734 }
1735 } else if (trylock_page(page)) {
1736 get_page(page);
1737 xas_unlock_irq(&xas);
1738 } else {
1739 result = SCAN_PAGE_LOCK;
042a3082 1740 goto xa_locked;
77da9389 1741 }
99cb0dbd
SL
1742 } else { /* !is_shmem */
1743 if (!page || xa_is_value(page)) {
1744 xas_unlock_irq(&xas);
1745 page_cache_sync_readahead(mapping, &file->f_ra,
1746 file, index,
e5a59d30 1747 end - index);
99cb0dbd
SL
1748 /* drain pagevecs to help isolate_lru_page() */
1749 lru_add_drain();
1750 page = find_lock_page(mapping, index);
1751 if (unlikely(page == NULL)) {
1752 result = SCAN_FAIL;
1753 goto xa_unlocked;
1754 }
75f36069
SL
1755 } else if (PageDirty(page)) {
1756 /*
1757 * khugepaged only works on read-only fd,
1758 * so this page is dirty because it hasn't
1759 * been flushed since first write. There
1760 * won't be new dirty pages.
1761 *
1762 * Trigger async flush here and hope the
1763 * writeback is done when khugepaged
1764 * revisits this page.
1765 *
1766 * This is a one-off situation. We are not
1767 * forcing writeback in loop.
1768 */
1769 xas_unlock_irq(&xas);
1770 filemap_flush(mapping);
1771 result = SCAN_FAIL;
1772 goto xa_unlocked;
99cb0dbd
SL
1773 } else if (trylock_page(page)) {
1774 get_page(page);
1775 xas_unlock_irq(&xas);
1776 } else {
1777 result = SCAN_PAGE_LOCK;
1778 goto xa_locked;
f3f0e1d2 1779 }
f3f0e1d2
KS
1780 }
1781
1782 /*
b93b0163 1783 * The page must be locked, so we can drop the i_pages lock
f3f0e1d2
KS
1784 * without racing with truncate.
1785 */
1786 VM_BUG_ON_PAGE(!PageLocked(page), page);
4655e5e5
SL
1787
1788 /* make sure the page is up to date */
1789 if (unlikely(!PageUptodate(page))) {
1790 result = SCAN_FAIL;
1791 goto out_unlock;
1792 }
06a5e126
HD
1793
1794 /*
1795 * If file was truncated then extended, or hole-punched, before
1796 * we locked the first page, then a THP might be there already.
1797 */
1798 if (PageTransCompound(page)) {
1799 result = SCAN_PAGE_COMPOUND;
1800 goto out_unlock;
1801 }
f3f0e1d2
KS
1802
1803 if (page_mapping(page) != mapping) {
1804 result = SCAN_TRUNCATED;
1805 goto out_unlock;
1806 }
f3f0e1d2 1807
4655e5e5
SL
1808 if (!is_shmem && PageDirty(page)) {
1809 /*
1810 * khugepaged only works on read-only fd, so this
1811 * page is dirty because it hasn't been flushed
1812 * since first write.
1813 */
1814 result = SCAN_FAIL;
1815 goto out_unlock;
1816 }
1817
f3f0e1d2
KS
1818 if (isolate_lru_page(page)) {
1819 result = SCAN_DEL_PAGE_LRU;
042a3082 1820 goto out_unlock;
f3f0e1d2
KS
1821 }
1822
99cb0dbd
SL
1823 if (page_has_private(page) &&
1824 !try_to_release_page(page, GFP_KERNEL)) {
1825 result = SCAN_PAGE_HAS_PRIVATE;
2f33a706 1826 putback_lru_page(page);
99cb0dbd
SL
1827 goto out_unlock;
1828 }
1829
f3f0e1d2 1830 if (page_mapped(page))
977fbdcd 1831 unmap_mapping_pages(mapping, index, 1, false);
f3f0e1d2 1832
77da9389
MW
1833 xas_lock_irq(&xas);
1834 xas_set(&xas, index);
f3f0e1d2 1835
77da9389 1836 VM_BUG_ON_PAGE(page != xas_load(&xas), page);
f3f0e1d2
KS
1837 VM_BUG_ON_PAGE(page_mapped(page), page);
1838
1839 /*
1840 * The page is expected to have page_count() == 3:
1841 * - we hold a pin on it;
77da9389 1842 * - one reference from page cache;
f3f0e1d2
KS
1843 * - one from isolate_lru_page;
1844 */
1845 if (!page_ref_freeze(page, 3)) {
1846 result = SCAN_PAGE_COUNT;
042a3082
HD
1847 xas_unlock_irq(&xas);
1848 putback_lru_page(page);
1849 goto out_unlock;
f3f0e1d2
KS
1850 }
1851
1852 /*
1853 * Add the page to the list to be able to undo the collapse if
1854 * something go wrong.
1855 */
1856 list_add_tail(&page->lru, &pagelist);
1857
1858 /* Finally, replace with the new page. */
4101196b 1859 xas_store(&xas, new_page);
f3f0e1d2 1860 continue;
f3f0e1d2
KS
1861out_unlock:
1862 unlock_page(page);
1863 put_page(page);
042a3082 1864 goto xa_unlocked;
f3f0e1d2 1865 }
bf9ecead 1866 nr = thp_nr_pages(new_page);
f3f0e1d2 1867
99cb0dbd 1868 if (is_shmem)
57b2847d 1869 __mod_lruvec_page_state(new_page, NR_SHMEM_THPS, nr);
09d91cda 1870 else {
bf9ecead 1871 __mod_lruvec_page_state(new_page, NR_FILE_THPS, nr);
09d91cda
SL
1872 filemap_nr_thps_inc(mapping);
1873 }
99cb0dbd 1874
042a3082 1875 if (nr_none) {
9d82c694 1876 __mod_lruvec_page_state(new_page, NR_FILE_PAGES, nr_none);
99cb0dbd 1877 if (is_shmem)
9d82c694 1878 __mod_lruvec_page_state(new_page, NR_SHMEM, nr_none);
042a3082
HD
1879 }
1880
1881xa_locked:
1882 xas_unlock_irq(&xas);
77da9389 1883xa_unlocked:
042a3082 1884
f3f0e1d2 1885 if (result == SCAN_SUCCEED) {
77da9389 1886 struct page *page, *tmp;
f3f0e1d2
KS
1887
1888 /*
77da9389
MW
1889 * Replacing old pages with new one has succeeded, now we
1890 * need to copy the content and free the old pages.
f3f0e1d2 1891 */
2af8ff29 1892 index = start;
f3f0e1d2 1893 list_for_each_entry_safe(page, tmp, &pagelist, lru) {
2af8ff29
HD
1894 while (index < page->index) {
1895 clear_highpage(new_page + (index % HPAGE_PMD_NR));
1896 index++;
1897 }
f3f0e1d2
KS
1898 copy_highpage(new_page + (page->index % HPAGE_PMD_NR),
1899 page);
1900 list_del(&page->lru);
f3f0e1d2 1901 page->mapping = NULL;
042a3082 1902 page_ref_unfreeze(page, 1);
f3f0e1d2
KS
1903 ClearPageActive(page);
1904 ClearPageUnevictable(page);
042a3082 1905 unlock_page(page);
f3f0e1d2 1906 put_page(page);
2af8ff29
HD
1907 index++;
1908 }
1909 while (index < end) {
1910 clear_highpage(new_page + (index % HPAGE_PMD_NR));
1911 index++;
f3f0e1d2
KS
1912 }
1913
f3f0e1d2 1914 SetPageUptodate(new_page);
87c460a0 1915 page_ref_add(new_page, HPAGE_PMD_NR - 1);
6058eaec 1916 if (is_shmem)
99cb0dbd 1917 set_page_dirty(new_page);
6058eaec 1918 lru_cache_add(new_page);
f3f0e1d2 1919
042a3082
HD
1920 /*
1921 * Remove pte page tables, so we can re-fault the page as huge.
1922 */
1923 retract_page_tables(mapping, start);
f3f0e1d2 1924 *hpage = NULL;
87aa7529
YS
1925
1926 khugepaged_pages_collapsed++;
f3f0e1d2 1927 } else {
77da9389 1928 struct page *page;
aaa52e34 1929
77da9389 1930 /* Something went wrong: roll back page cache changes */
77da9389 1931 xas_lock_irq(&xas);
aaa52e34 1932 mapping->nrpages -= nr_none;
99cb0dbd
SL
1933
1934 if (is_shmem)
1935 shmem_uncharge(mapping->host, nr_none);
aaa52e34 1936
77da9389
MW
1937 xas_set(&xas, start);
1938 xas_for_each(&xas, page, end - 1) {
f3f0e1d2
KS
1939 page = list_first_entry_or_null(&pagelist,
1940 struct page, lru);
77da9389 1941 if (!page || xas.xa_index < page->index) {
f3f0e1d2
KS
1942 if (!nr_none)
1943 break;
f3f0e1d2 1944 nr_none--;
59749e6c 1945 /* Put holes back where they were */
77da9389 1946 xas_store(&xas, NULL);
f3f0e1d2
KS
1947 continue;
1948 }
1949
77da9389 1950 VM_BUG_ON_PAGE(page->index != xas.xa_index, page);
f3f0e1d2
KS
1951
1952 /* Unfreeze the page. */
1953 list_del(&page->lru);
1954 page_ref_unfreeze(page, 2);
77da9389
MW
1955 xas_store(&xas, page);
1956 xas_pause(&xas);
1957 xas_unlock_irq(&xas);
f3f0e1d2 1958 unlock_page(page);
042a3082 1959 putback_lru_page(page);
77da9389 1960 xas_lock_irq(&xas);
f3f0e1d2
KS
1961 }
1962 VM_BUG_ON(nr_none);
77da9389 1963 xas_unlock_irq(&xas);
f3f0e1d2 1964
f3f0e1d2
KS
1965 new_page->mapping = NULL;
1966 }
042a3082
HD
1967
1968 unlock_page(new_page);
f3f0e1d2
KS
1969out:
1970 VM_BUG_ON(!list_empty(&pagelist));
9d82c694
JW
1971 if (!IS_ERR_OR_NULL(*hpage))
1972 mem_cgroup_uncharge(*hpage);
f3f0e1d2
KS
1973 /* TODO: tracepoints */
1974}
1975
579c571e
SL
1976static void khugepaged_scan_file(struct mm_struct *mm,
1977 struct file *file, pgoff_t start, struct page **hpage)
f3f0e1d2
KS
1978{
1979 struct page *page = NULL;
579c571e 1980 struct address_space *mapping = file->f_mapping;
85b392db 1981 XA_STATE(xas, &mapping->i_pages, start);
f3f0e1d2
KS
1982 int present, swap;
1983 int node = NUMA_NO_NODE;
1984 int result = SCAN_SUCCEED;
1985
1986 present = 0;
1987 swap = 0;
1988 memset(khugepaged_node_load, 0, sizeof(khugepaged_node_load));
1989 rcu_read_lock();
85b392db
MW
1990 xas_for_each(&xas, page, start + HPAGE_PMD_NR - 1) {
1991 if (xas_retry(&xas, page))
f3f0e1d2 1992 continue;
f3f0e1d2 1993
85b392db 1994 if (xa_is_value(page)) {
f3f0e1d2
KS
1995 if (++swap > khugepaged_max_ptes_swap) {
1996 result = SCAN_EXCEED_SWAP_PTE;
1997 break;
1998 }
1999 continue;
2000 }
2001
2002 if (PageTransCompound(page)) {
2003 result = SCAN_PAGE_COMPOUND;
2004 break;
2005 }
2006
2007 node = page_to_nid(page);
2008 if (khugepaged_scan_abort(node)) {
2009 result = SCAN_SCAN_ABORT;
2010 break;
2011 }
2012 khugepaged_node_load[node]++;
2013
2014 if (!PageLRU(page)) {
2015 result = SCAN_PAGE_LRU;
2016 break;
2017 }
2018
99cb0dbd
SL
2019 if (page_count(page) !=
2020 1 + page_mapcount(page) + page_has_private(page)) {
f3f0e1d2
KS
2021 result = SCAN_PAGE_COUNT;
2022 break;
2023 }
2024
2025 /*
2026 * We probably should check if the page is referenced here, but
2027 * nobody would transfer pte_young() to PageReferenced() for us.
2028 * And rmap walk here is just too costly...
2029 */
2030
2031 present++;
2032
2033 if (need_resched()) {
85b392db 2034 xas_pause(&xas);
f3f0e1d2 2035 cond_resched_rcu();
f3f0e1d2
KS
2036 }
2037 }
2038 rcu_read_unlock();
2039
2040 if (result == SCAN_SUCCEED) {
2041 if (present < HPAGE_PMD_NR - khugepaged_max_ptes_none) {
2042 result = SCAN_EXCEED_NONE_PTE;
2043 } else {
2044 node = khugepaged_find_target_node();
579c571e 2045 collapse_file(mm, file, start, hpage, node);
f3f0e1d2
KS
2046 }
2047 }
2048
2049 /* TODO: tracepoints */
2050}
2051#else
579c571e
SL
2052static void khugepaged_scan_file(struct mm_struct *mm,
2053 struct file *file, pgoff_t start, struct page **hpage)
f3f0e1d2
KS
2054{
2055 BUILD_BUG();
2056}
27e1f827 2057
0edf61e5 2058static void khugepaged_collapse_pte_mapped_thps(struct mm_slot *mm_slot)
27e1f827 2059{
27e1f827 2060}
f3f0e1d2
KS
2061#endif
2062
b46e756f
KS
2063static unsigned int khugepaged_scan_mm_slot(unsigned int pages,
2064 struct page **hpage)
2065 __releases(&khugepaged_mm_lock)
2066 __acquires(&khugepaged_mm_lock)
2067{
2068 struct mm_slot *mm_slot;
2069 struct mm_struct *mm;
2070 struct vm_area_struct *vma;
2071 int progress = 0;
2072
2073 VM_BUG_ON(!pages);
35f3aa39 2074 lockdep_assert_held(&khugepaged_mm_lock);
b46e756f
KS
2075
2076 if (khugepaged_scan.mm_slot)
2077 mm_slot = khugepaged_scan.mm_slot;
2078 else {
2079 mm_slot = list_entry(khugepaged_scan.mm_head.next,
2080 struct mm_slot, mm_node);
2081 khugepaged_scan.address = 0;
2082 khugepaged_scan.mm_slot = mm_slot;
2083 }
2084 spin_unlock(&khugepaged_mm_lock);
27e1f827 2085 khugepaged_collapse_pte_mapped_thps(mm_slot);
b46e756f
KS
2086
2087 mm = mm_slot->mm;
3b454ad3
YS
2088 /*
2089 * Don't wait for semaphore (to avoid long wait times). Just move to
2090 * the next mm on the list.
2091 */
2092 vma = NULL;
d8ed45c5 2093 if (unlikely(!mmap_read_trylock(mm)))
c1e8d7c6 2094 goto breakouterloop_mmap_lock;
3b454ad3 2095 if (likely(!khugepaged_test_exit(mm)))
b46e756f
KS
2096 vma = find_vma(mm, khugepaged_scan.address);
2097
2098 progress++;
2099 for (; vma; vma = vma->vm_next) {
2100 unsigned long hstart, hend;
2101
2102 cond_resched();
2103 if (unlikely(khugepaged_test_exit(mm))) {
2104 progress++;
2105 break;
2106 }
50f8b92f 2107 if (!hugepage_vma_check(vma, vma->vm_flags)) {
b46e756f
KS
2108skip:
2109 progress++;
2110 continue;
2111 }
2112 hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
2113 hend = vma->vm_end & HPAGE_PMD_MASK;
2114 if (hstart >= hend)
2115 goto skip;
2116 if (khugepaged_scan.address > hend)
2117 goto skip;
2118 if (khugepaged_scan.address < hstart)
2119 khugepaged_scan.address = hstart;
2120 VM_BUG_ON(khugepaged_scan.address & ~HPAGE_PMD_MASK);
396bcc52
MWO
2121 if (shmem_file(vma->vm_file) && !shmem_huge_enabled(vma))
2122 goto skip;
b46e756f
KS
2123
2124 while (khugepaged_scan.address < hend) {
2125 int ret;
2126 cond_resched();
2127 if (unlikely(khugepaged_test_exit(mm)))
2128 goto breakouterloop;
2129
2130 VM_BUG_ON(khugepaged_scan.address < hstart ||
2131 khugepaged_scan.address + HPAGE_PMD_SIZE >
2132 hend);
99cb0dbd 2133 if (IS_ENABLED(CONFIG_SHMEM) && vma->vm_file) {
396bcc52 2134 struct file *file = get_file(vma->vm_file);
f3f0e1d2
KS
2135 pgoff_t pgoff = linear_page_index(vma,
2136 khugepaged_scan.address);
99cb0dbd 2137
d8ed45c5 2138 mmap_read_unlock(mm);
f3f0e1d2 2139 ret = 1;
579c571e 2140 khugepaged_scan_file(mm, file, pgoff, hpage);
f3f0e1d2
KS
2141 fput(file);
2142 } else {
2143 ret = khugepaged_scan_pmd(mm, vma,
2144 khugepaged_scan.address,
2145 hpage);
2146 }
b46e756f
KS
2147 /* move to next address */
2148 khugepaged_scan.address += HPAGE_PMD_SIZE;
2149 progress += HPAGE_PMD_NR;
2150 if (ret)
c1e8d7c6
ML
2151 /* we released mmap_lock so break loop */
2152 goto breakouterloop_mmap_lock;
b46e756f
KS
2153 if (progress >= pages)
2154 goto breakouterloop;
2155 }
2156 }
2157breakouterloop:
d8ed45c5 2158 mmap_read_unlock(mm); /* exit_mmap will destroy ptes after this */
c1e8d7c6 2159breakouterloop_mmap_lock:
b46e756f
KS
2160
2161 spin_lock(&khugepaged_mm_lock);
2162 VM_BUG_ON(khugepaged_scan.mm_slot != mm_slot);
2163 /*
2164 * Release the current mm_slot if this mm is about to die, or
2165 * if we scanned all vmas of this mm.
2166 */
2167 if (khugepaged_test_exit(mm) || !vma) {
2168 /*
2169 * Make sure that if mm_users is reaching zero while
2170 * khugepaged runs here, khugepaged_exit will find
2171 * mm_slot not pointing to the exiting mm.
2172 */
2173 if (mm_slot->mm_node.next != &khugepaged_scan.mm_head) {
2174 khugepaged_scan.mm_slot = list_entry(
2175 mm_slot->mm_node.next,
2176 struct mm_slot, mm_node);
2177 khugepaged_scan.address = 0;
2178 } else {
2179 khugepaged_scan.mm_slot = NULL;
2180 khugepaged_full_scans++;
2181 }
2182
2183 collect_mm_slot(mm_slot);
2184 }
2185
2186 return progress;
2187}
2188
2189static int khugepaged_has_work(void)
2190{
2191 return !list_empty(&khugepaged_scan.mm_head) &&
2192 khugepaged_enabled();
2193}
2194
2195static int khugepaged_wait_event(void)
2196{
2197 return !list_empty(&khugepaged_scan.mm_head) ||
2198 kthread_should_stop();
2199}
2200
2201static void khugepaged_do_scan(void)
2202{
2203 struct page *hpage = NULL;
2204 unsigned int progress = 0, pass_through_head = 0;
89dc6a96 2205 unsigned int pages = READ_ONCE(khugepaged_pages_to_scan);
b46e756f
KS
2206 bool wait = true;
2207
a980df33
KS
2208 lru_add_drain_all();
2209
b46e756f
KS
2210 while (progress < pages) {
2211 if (!khugepaged_prealloc_page(&hpage, &wait))
2212 break;
2213
2214 cond_resched();
2215
2216 if (unlikely(kthread_should_stop() || try_to_freeze()))
2217 break;
2218
2219 spin_lock(&khugepaged_mm_lock);
2220 if (!khugepaged_scan.mm_slot)
2221 pass_through_head++;
2222 if (khugepaged_has_work() &&
2223 pass_through_head < 2)
2224 progress += khugepaged_scan_mm_slot(pages - progress,
2225 &hpage);
2226 else
2227 progress = pages;
2228 spin_unlock(&khugepaged_mm_lock);
2229 }
2230
2231 if (!IS_ERR_OR_NULL(hpage))
2232 put_page(hpage);
2233}
2234
2235static bool khugepaged_should_wakeup(void)
2236{
2237 return kthread_should_stop() ||
2238 time_after_eq(jiffies, khugepaged_sleep_expire);
2239}
2240
2241static void khugepaged_wait_work(void)
2242{
2243 if (khugepaged_has_work()) {
2244 const unsigned long scan_sleep_jiffies =
2245 msecs_to_jiffies(khugepaged_scan_sleep_millisecs);
2246
2247 if (!scan_sleep_jiffies)
2248 return;
2249
2250 khugepaged_sleep_expire = jiffies + scan_sleep_jiffies;
2251 wait_event_freezable_timeout(khugepaged_wait,
2252 khugepaged_should_wakeup(),
2253 scan_sleep_jiffies);
2254 return;
2255 }
2256
2257 if (khugepaged_enabled())
2258 wait_event_freezable(khugepaged_wait, khugepaged_wait_event());
2259}
2260
2261static int khugepaged(void *none)
2262{
2263 struct mm_slot *mm_slot;
2264
2265 set_freezable();
2266 set_user_nice(current, MAX_NICE);
2267
2268 while (!kthread_should_stop()) {
2269 khugepaged_do_scan();
2270 khugepaged_wait_work();
2271 }
2272
2273 spin_lock(&khugepaged_mm_lock);
2274 mm_slot = khugepaged_scan.mm_slot;
2275 khugepaged_scan.mm_slot = NULL;
2276 if (mm_slot)
2277 collect_mm_slot(mm_slot);
2278 spin_unlock(&khugepaged_mm_lock);
2279 return 0;
2280}
2281
2282static void set_recommended_min_free_kbytes(void)
2283{
2284 struct zone *zone;
2285 int nr_zones = 0;
2286 unsigned long recommended_min;
2287
b7d349c7
JK
2288 for_each_populated_zone(zone) {
2289 /*
2290 * We don't need to worry about fragmentation of
2291 * ZONE_MOVABLE since it only has movable pages.
2292 */
2293 if (zone_idx(zone) > gfp_zone(GFP_USER))
2294 continue;
2295
b46e756f 2296 nr_zones++;
b7d349c7 2297 }
b46e756f
KS
2298
2299 /* Ensure 2 pageblocks are free to assist fragmentation avoidance */
2300 recommended_min = pageblock_nr_pages * nr_zones * 2;
2301
2302 /*
2303 * Make sure that on average at least two pageblocks are almost free
2304 * of another type, one for a migratetype to fall back to and a
2305 * second to avoid subsequent fallbacks of other types There are 3
2306 * MIGRATE_TYPES we care about.
2307 */
2308 recommended_min += pageblock_nr_pages * nr_zones *
2309 MIGRATE_PCPTYPES * MIGRATE_PCPTYPES;
2310
2311 /* don't ever allow to reserve more than 5% of the lowmem */
2312 recommended_min = min(recommended_min,
2313 (unsigned long) nr_free_buffer_pages() / 20);
2314 recommended_min <<= (PAGE_SHIFT-10);
2315
2316 if (recommended_min > min_free_kbytes) {
2317 if (user_min_free_kbytes >= 0)
2318 pr_info("raising min_free_kbytes from %d to %lu to help transparent hugepage allocations\n",
2319 min_free_kbytes, recommended_min);
2320
2321 min_free_kbytes = recommended_min;
2322 }
2323 setup_per_zone_wmarks();
2324}
2325
2326int start_stop_khugepaged(void)
2327{
b46e756f
KS
2328 int err = 0;
2329
2330 mutex_lock(&khugepaged_mutex);
2331 if (khugepaged_enabled()) {
2332 if (!khugepaged_thread)
2333 khugepaged_thread = kthread_run(khugepaged, NULL,
2334 "khugepaged");
2335 if (IS_ERR(khugepaged_thread)) {
2336 pr_err("khugepaged: kthread_run(khugepaged) failed\n");
2337 err = PTR_ERR(khugepaged_thread);
2338 khugepaged_thread = NULL;
2339 goto fail;
2340 }
2341
2342 if (!list_empty(&khugepaged_scan.mm_head))
2343 wake_up_interruptible(&khugepaged_wait);
2344
2345 set_recommended_min_free_kbytes();
2346 } else if (khugepaged_thread) {
2347 kthread_stop(khugepaged_thread);
2348 khugepaged_thread = NULL;
2349 }
2350fail:
2351 mutex_unlock(&khugepaged_mutex);
2352 return err;
2353}
4aab2be0
VB
2354
2355void khugepaged_min_free_kbytes_update(void)
2356{
2357 mutex_lock(&khugepaged_mutex);
2358 if (khugepaged_enabled() && khugepaged_thread)
2359 set_recommended_min_free_kbytes();
2360 mutex_unlock(&khugepaged_mutex);
2361}