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