blob: 6c0185fdd81581dc51bb0c2fbd2f5ab7e5e0582f [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
3
4#include <linux/mm.h>
5#include <linux/sched.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +01006#include <linux/sched/mm.h>
Ingo Molnarf7ccbae2017-02-08 18:51:30 +01007#include <linux/sched/coredump.h>
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07008#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>
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -070020#include <linux/shmem_fs.h>
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -070021
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,
Kirill A. Shutemov71a2c112020-06-03 16:00:30 -070031 SCAN_EXCEED_SWAP_PTE,
32 SCAN_EXCEED_SHARED_PTE,
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -070033 SCAN_PTE_NON_PRESENT,
Peter Xue1e267c2020-04-06 20:06:04 -070034 SCAN_PTE_UFFD_WP,
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -070035 SCAN_PAGE_RO,
Ebru Akagunduz0db501f2016-07-26 15:26:46 -070036 SCAN_LACK_REFERENCED_PAGE,
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -070037 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,
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -070052 SCAN_TRUNCATED,
Song Liu99cb0db2019-09-23 15:38:00 -070053 SCAN_PAGE_HAS_PRIVATE,
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -070054};
55
56#define CREATE_TRACE_POINTS
57#include <trace/events/huge_memory.h>
58
Vijay Balakrishna4aab2be2020-10-10 23:16:40 -070059static struct task_struct *khugepaged_thread __read_mostly;
60static DEFINE_MUTEX(khugepaged_mutex);
61
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -070062/* 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;
Kirill A. Shutemov71a2c112020-06-03 16:00:30 -070079static unsigned int khugepaged_max_ptes_shared __read_mostly;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -070080
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
Song Liu27e1f822019-09-23 15:38:30 -070086#define MAX_PTE_MAPPED_THP 8
87
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -070088/**
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
Alex Shi336e6b52020-12-14 19:12:01 -080093 * @nr_pte_mapped_thp: number of pte mapped THP
94 * @pte_mapped_thp: address array corresponding pte mapped THP
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -070095 */
96struct mm_slot {
97 struct hlist_node hash;
98 struct list_head mm_node;
99 struct mm_struct *mm;
Song Liu27e1f822019-09-23 15:38:30 -0700100
101 /* pte-mapped THP in this mm */
102 int nr_pte_mapped_thp;
103 unsigned long pte_mapped_thp[MAX_PTE_MAPPED_THP];
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700104};
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
Jérémy Lefauree1465d12016-11-30 15:54:02 -0800124#ifdef CONFIG_SYSFS
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700125static ssize_t scan_sleep_millisecs_show(struct kobject *kobj,
126 struct kobj_attribute *attr,
127 char *buf)
128{
Joe Perchesae7a9272020-12-14 19:14:42 -0800129 return sysfs_emit(buf, "%u\n", khugepaged_scan_sleep_millisecs);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700130}
131
132static ssize_t scan_sleep_millisecs_store(struct kobject *kobj,
133 struct kobj_attribute *attr,
134 const char *buf, size_t count)
135{
Alexey Dobriyandfefd222020-12-14 19:15:03 -0800136 unsigned int msecs;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700137 int err;
138
Alexey Dobriyandfefd222020-12-14 19:15:03 -0800139 err = kstrtouint(buf, 10, &msecs);
140 if (err)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700141 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{
Joe Perchesae7a9272020-12-14 19:14:42 -0800157 return sysfs_emit(buf, "%u\n", khugepaged_alloc_sleep_millisecs);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700158}
159
160static ssize_t alloc_sleep_millisecs_store(struct kobject *kobj,
161 struct kobj_attribute *attr,
162 const char *buf, size_t count)
163{
Alexey Dobriyandfefd222020-12-14 19:15:03 -0800164 unsigned int msecs;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700165 int err;
166
Alexey Dobriyandfefd222020-12-14 19:15:03 -0800167 err = kstrtouint(buf, 10, &msecs);
168 if (err)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700169 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{
Joe Perchesae7a9272020-12-14 19:14:42 -0800185 return sysfs_emit(buf, "%u\n", khugepaged_pages_to_scan);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700186}
187static ssize_t pages_to_scan_store(struct kobject *kobj,
188 struct kobj_attribute *attr,
189 const char *buf, size_t count)
190{
Alexey Dobriyandfefd222020-12-14 19:15:03 -0800191 unsigned int pages;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700192 int err;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700193
Alexey Dobriyandfefd222020-12-14 19:15:03 -0800194 err = kstrtouint(buf, 10, &pages);
195 if (err || !pages)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700196 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{
Joe Perchesae7a9272020-12-14 19:14:42 -0800210 return sysfs_emit(buf, "%u\n", khugepaged_pages_collapsed);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700211}
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{
Joe Perchesae7a9272020-12-14 19:14:42 -0800219 return sysfs_emit(buf, "%u\n", khugepaged_full_scans);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700220}
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,
Joe Perchesae7a9272020-12-14 19:14:42 -0800228 TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700229}
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{
Joe Perchesae7a9272020-12-14 19:14:42 -0800253 return sysfs_emit(buf, "%u\n", khugepaged_max_ptes_none);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700254}
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{
Joe Perchesae7a9272020-12-14 19:14:42 -0800278 return sysfs_emit(buf, "%u\n", khugepaged_max_ptes_swap);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700279}
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
Kirill A. Shutemov71a2c112020-06-03 16:00:30 -0700301static ssize_t khugepaged_max_ptes_shared_show(struct kobject *kobj,
Joe Perchesae7a9272020-12-14 19:14:42 -0800302 struct kobj_attribute *attr,
303 char *buf)
Kirill A. Shutemov71a2c112020-06-03 16:00:30 -0700304{
Joe Perchesae7a9272020-12-14 19:14:42 -0800305 return sysfs_emit(buf, "%u\n", khugepaged_max_ptes_shared);
Kirill A. Shutemov71a2c112020-06-03 16:00:30 -0700306}
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
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700328static struct attribute *khugepaged_attr[] = {
329 &khugepaged_defrag_attr.attr,
330 &khugepaged_max_ptes_none_attr.attr,
Kirill A. Shutemov71a2c112020-06-03 16:00:30 -0700331 &khugepaged_max_ptes_swap_attr.attr,
332 &khugepaged_max_ptes_shared_attr.attr,
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700333 &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,
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700338 NULL,
339};
340
341struct attribute_group khugepaged_attr_group = {
342 .attrs = khugepaged_attr,
343 .name = "khugepaged",
344};
Jérémy Lefauree1465d12016-11-30 15:54:02 -0800345#endif /* CONFIG_SYSFS */
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700346
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700347int 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;
Kirill A. Shutemov71a2c112020-06-03 16:00:30 -0700397 khugepaged_max_ptes_shared = HPAGE_PMD_NR / 2;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700398
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{
Jann Horn4d45e752020-10-15 20:13:00 -0700439 return atomic_read(&mm->mm_users) == 0;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700440}
441
Song Liu50f8b922018-08-17 15:47:00 -0700442static bool hugepage_vma_check(struct vm_area_struct *vma,
443 unsigned long vm_flags)
Yang Shic2231022018-08-17 15:45:26 -0700444{
Rik van Rielcd89fb02021-02-25 17:16:25 -0800445 /* Explicitly disabled through madvise. */
446 if ((vm_flags & VM_NOHUGEPAGE) ||
Yang Shic2231022018-08-17 15:45:26 -0700447 test_bit(MMF_DISABLE_THP, &vma->vm_mm->flags))
448 return false;
Song Liu99cb0db2019-09-23 15:38:00 -0700449
Rik van Rielcd89fb02021-02-25 17:16:25 -0800450 /* Enabled via shmem mount options or sysfs settings. */
451 if (shmem_file(vma->vm_file) && shmem_huge_enabled(vma)) {
Yang Shic2231022018-08-17 15:45:26 -0700452 return IS_ALIGNED((vma->vm_start >> PAGE_SHIFT) - vma->vm_pgoff,
453 HPAGE_PMD_NR);
454 }
Rik van Rielcd89fb02021-02-25 17:16:25 -0800455
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
Yang Shic2231022018-08-17 15:45:26 -0700467 if (!vma->anon_vma || vma->vm_ops)
468 return false;
Anshuman Khandual222100e2020-04-01 21:07:52 -0700469 if (vma_is_temporary_stack(vma))
Yang Shic2231022018-08-17 15:45:26 -0700470 return false;
Song Liu50f8b922018-08-17 15:47:00 -0700471 return !(vm_flags & VM_NO_KHUGEPAGED);
Yang Shic2231022018-08-17 15:45:26 -0700472}
473
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700474int __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 */
Miaohe Lin28ff0a32021-05-04 18:33:43 -0700484 VM_BUG_ON_MM(khugepaged_test_exit(mm), mm);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700485 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
Vegard Nossumf1f10072017-02-27 14:30:07 -0800500 mmgrab(mm);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700501 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;
Yang Shic2231022018-08-17 15:45:26 -0700511
512 /*
Song Liu99cb0db2019-09-23 15:38:00 -0700513 * 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.
Yang Shic2231022018-08-17 15:45:26 -0700516 */
Song Liu50f8b922018-08-17 15:47:00 -0700517 if (!hugepage_vma_check(vma, vm_flags))
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700518 return 0;
Yang Shic2231022018-08-17 15:45:26 -0700519
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700520 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
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700552 * under the mmap_lock.
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700553 */
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700554 mmap_write_lock(mm);
555 mmap_write_unlock(mm);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700556 }
557}
558
559static void release_pte_page(struct page *page)
560{
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700561 mod_node_page_state(page_pgdat(page),
562 NR_ISOLATED_ANON + page_is_file_lru(page),
563 -compound_nr(page));
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700564 unlock_page(page);
565 putback_lru_page(page);
566}
567
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700568static void release_pte_pages(pte_t *pte, pte_t *_pte,
569 struct list_head *compound_pagelist)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700570{
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700571 struct page *page, *tmp;
572
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700573 while (--_pte >= pte) {
574 pte_t pteval = *_pte;
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700575
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);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700585 }
586}
587
Kirill A. Shutemov94456892020-06-03 16:00:20 -0700588static 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
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700599static int __collapse_huge_page_isolate(struct vm_area_struct *vma,
600 unsigned long address,
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700601 pte_t *pte,
602 struct list_head *compound_pagelist)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700603{
604 struct page *page = NULL;
605 pte_t *_pte;
Kirill A. Shutemov71a2c112020-06-03 16:00:30 -0700606 int none_or_zero = 0, shared = 0, result = 0, referenced = 0;
Ebru Akagunduz0db501f2016-07-26 15:26:46 -0700607 bool writable = false;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700608
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
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700632 VM_BUG_ON_PAGE(!PageAnon(page), page);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700633
Kirill A. Shutemov71a2c112020-06-03 16:00:30 -0700634 if (page_mapcount(page) > 1 &&
635 ++shared > khugepaged_max_ptes_shared) {
636 result = SCAN_EXCEED_SHARED_PTE;
637 goto out;
638 }
639
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700640 if (PageCompound(page)) {
641 struct page *p;
642 page = compound_head(page);
643
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 }
653
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700654 /*
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 /*
Kirill A. Shutemov94456892020-06-03 16:00:20 -0700666 * 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
Ingo Molnarf0953a12021-05-06 18:06:47 -0700670 * an additional pin on the page.
Kirill A. Shutemov94456892020-06-03 16:00:20 -0700671 *
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.
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700675 */
Kirill A. Shutemov94456892020-06-03 16:00:20 -0700676 if (!is_refcount_suitable(page)) {
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700677 unlock_page(page);
678 result = SCAN_PAGE_COUNT;
679 goto out;
680 }
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700681 if (!pte_write(pteval) && PageSwapCache(page) &&
682 !reuse_swap_page(page, NULL)) {
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700683 /*
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700684 * Page is in the swap cache and cannot be re-used.
685 * It cannot be collapsed into a THP.
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700686 */
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700687 unlock_page(page);
688 result = SCAN_SWAP_CACHE_PAGE;
689 goto out;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700690 }
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 }
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700701 mod_node_page_state(page_pgdat(page),
702 NR_ISOLATED_ANON + page_is_file_lru(page),
703 compound_nr(page));
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700704 VM_BUG_ON_PAGE(!PageLocked(page), page);
705 VM_BUG_ON_PAGE(PageLRU(page), page);
706
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700707 if (PageCompound(page))
708 list_add_tail(&page->lru, compound_pagelist);
709next:
Ebru Akagunduz0db501f2016-07-26 15:26:46 -0700710 /* There should be enough young pte to collapse the page */
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700711 if (pte_young(pteval) ||
712 page_is_young(page) || PageReferenced(page) ||
713 mmu_notifier_test_young(vma->vm_mm, address))
Ebru Akagunduz0db501f2016-07-26 15:26:46 -0700714 referenced++;
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700715
716 if (pte_write(pteval))
717 writable = true;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700718 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700719
Miaohe Lin74e579b2021-05-04 18:33:46 -0700720 if (unlikely(!writable)) {
721 result = SCAN_PAGE_RO;
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;
729 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700730out:
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700731 release_pte_pages(pte, _pte, compound_pagelist);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700732 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,
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700740 spinlock_t *ptl,
741 struct list_head *compound_pagelist)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700742{
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700743 struct page *src_page, *tmp;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700744 pte_t *_pte;
David Rientjes338a16b2017-05-12 15:47:03 -0700745 for (_pte = pte; _pte < pte + HPAGE_PMD_NR;
746 _pte++, page++, address += PAGE_SIZE) {
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700747 pte_t pteval = *_pte;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700748
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);
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700767 if (!PageCompound(src_page))
768 release_pte_page(src_page);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700769 /*
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 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700784 }
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700785
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 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700790}
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 /*
Mel Gormana5f5f912016-07-28 15:46:32 -0700809 * If node_reclaim_mode is disabled, then no extra effort is made to
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700810 * allocate memory locally.
811 */
Dave Hansen202e35d2021-05-04 18:36:04 -0700812 if (!node_reclaim_enabled())
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700813 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;
Matt Fleminga55c7452019-08-08 20:53:01 +0100822 if (node_distance(nid, i) > node_reclaim_distance)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700823 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{
Vlastimil Babka25160352016-07-28 15:49:25 -0700831 return khugepaged_defrag() ? GFP_TRANSHUGE : GFP_TRANSHUGE_LIGHT;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700832}
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 *
Kirill A. Shutemov988ddb72016-07-26 15:26:26 -0700878khugepaged_alloc_page(struct page **hpage, gfp_t gfp, int node)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700879{
880 VM_BUG_ON_PAGE(*hpage, *hpage);
881
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700882 *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{
Hugh Dickins033b5d72020-10-09 20:07:59 -0700932 /*
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
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700944 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 *
Kirill A. Shutemov988ddb72016-07-26 15:26:26 -0700954khugepaged_alloc_page(struct page **hpage, gfp_t gfp, int node)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700955{
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700956 VM_BUG_ON(!*hpage);
957
958 return *hpage;
959}
960#endif
961
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700962/*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700963 * If mmap_lock temporarily dropped, revalidate vma
964 * before taking mmap_lock.
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700965 * Return 0 if succeeds, otherwise return none-zero
966 * value (scan code).
967 */
968
Kirill A. Shutemovc131f752016-09-19 14:44:01 -0700969static int hugepage_vma_revalidate(struct mm_struct *mm, unsigned long address,
970 struct vm_area_struct **vmap)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700971{
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
Kirill A. Shutemovc131f752016-09-19 14:44:01 -0700978 *vmap = vma = find_vma(mm, address);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700979 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;
Song Liu50f8b922018-08-17 15:47:00 -0700986 if (!hugepage_vma_check(vma, vma->vm_flags))
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700987 return SCAN_VMA_CHECK;
Kirill A. Shutemov594cced2020-07-23 21:15:34 -0700988 /* Anon VMA expected */
989 if (!vma->anon_vma || vma->vm_ops)
990 return SCAN_VMA_CHECK;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700991 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,
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700999 * but with mmap_lock held to protect against vma changes.
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001000 */
1001
1002static bool __collapse_huge_page_swapin(struct mm_struct *mm,
1003 struct vm_area_struct *vma,
Will Deacon2b635dd2021-01-14 15:33:49 +00001004 unsigned long haddr, pmd_t *pmd,
Ebru Akagunduz0db501f2016-07-26 15:26:46 -07001005 int referenced)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001006{
Souptick Joarder2b740302018-08-23 17:01:36 -07001007 int swapped_in = 0;
1008 vm_fault_t ret = 0;
Will Deacon2b635dd2021-01-14 15:33:49 +00001009 unsigned long address, end = haddr + (HPAGE_PMD_NR * PAGE_SIZE);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001010
Will Deacon2b635dd2021-01-14 15:33:49 +00001011 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);
Jan Kara29943022016-12-14 15:07:16 -08001021 vmf.orig_pte = *vmf.pte;
Will Deacon2b635dd2021-01-14 15:33:49 +00001022 if (!is_swap_pte(vmf.orig_pte)) {
1023 pte_unmap(vmf.pte);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001024 continue;
Will Deacon2b635dd2021-01-14 15:33:49 +00001025 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001026 swapped_in++;
Jan Kara29943022016-12-14 15:07:16 -08001027 ret = do_swap_page(&vmf);
Ebru Akagunduz0db501f2016-07-26 15:26:46 -07001028
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001029 /* do_swap_page returns VM_FAULT_RETRY with released mmap_lock */
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001030 if (ret & VM_FAULT_RETRY) {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001031 mmap_read_lock(mm);
Will Deacon2b635dd2021-01-14 15:33:49 +00001032 if (hugepage_vma_revalidate(mm, haddr, &vma)) {
Ebru Akagunduz47f863e2016-07-26 15:26:43 -07001033 /* vma is no longer available, don't continue to swapin */
Ebru Akagunduz0db501f2016-07-26 15:26:46 -07001034 trace_mm_collapse_huge_page_swapin(mm, swapped_in, referenced, 0);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001035 return false;
Ebru Akagunduz47f863e2016-07-26 15:26:43 -07001036 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001037 /* check if the pmd is still valid */
Will Deacon2b635dd2021-01-14 15:33:49 +00001038 if (mm_find_pmd(mm, haddr) != pmd) {
SeongJae Park835152a2017-05-12 15:46:38 -07001039 trace_mm_collapse_huge_page_swapin(mm, swapped_in, referenced, 0);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001040 return false;
SeongJae Park835152a2017-05-12 15:46:38 -07001041 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001042 }
1043 if (ret & VM_FAULT_ERROR) {
Ebru Akagunduz0db501f2016-07-26 15:26:46 -07001044 trace_mm_collapse_huge_page_swapin(mm, swapped_in, referenced, 0);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001045 return false;
1046 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001047 }
Kirill A. Shutemovae2c5d82020-06-03 16:00:17 -07001048
1049 /* Drain LRU add pagevec to remove extra pin on the swapped in pages */
1050 if (swapped_in)
1051 lru_add_drain();
1052
Ebru Akagunduz0db501f2016-07-26 15:26:46 -07001053 trace_mm_collapse_huge_page_swapin(mm, swapped_in, referenced, 1);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001054 return true;
1055}
1056
1057static void collapse_huge_page(struct mm_struct *mm,
1058 unsigned long address,
1059 struct page **hpage,
Kirill A. Shutemovffe945e2020-06-03 16:00:09 -07001060 int node, int referenced, int unmapped)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001061{
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -07001062 LIST_HEAD(compound_pagelist);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001063 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;
Kirill A. Shutemovc131f752016-09-19 14:44:01 -07001069 struct vm_area_struct *vma;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001070 struct mmu_notifier_range range;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001071 gfp_t gfp;
1072
1073 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
1074
1075 /* Only allocate from the target node */
Michal Hocko41b61672017-01-10 16:57:42 -08001076 gfp = alloc_hugepage_khugepaged_gfpmask() | __GFP_THISNODE;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001077
Kirill A. Shutemov988ddb72016-07-26 15:26:26 -07001078 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001079 * Before allocating the hugepage, release the mmap_lock read lock.
Kirill A. Shutemov988ddb72016-07-26 15:26:26 -07001080 * The allocation can take potentially a long time if it involves
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001081 * sync compaction, and we do not need to hold the mmap_lock during
Kirill A. Shutemov988ddb72016-07-26 15:26:26 -07001082 * that. We will recheck the vma after taking it again in write mode.
1083 */
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001084 mmap_read_unlock(mm);
Kirill A. Shutemov988ddb72016-07-26 15:26:26 -07001085 new_page = khugepaged_alloc_page(hpage, gfp, node);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001086 if (!new_page) {
1087 result = SCAN_ALLOC_HUGE_PAGE_FAIL;
1088 goto out_nolock;
1089 }
1090
Johannes Weinerd9eb1ea2020-06-03 16:02:24 -07001091 if (unlikely(mem_cgroup_charge(new_page, mm, gfp))) {
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001092 result = SCAN_CGROUP_CHARGE_FAIL;
1093 goto out_nolock;
1094 }
Johannes Weiner9d82c692020-06-03 16:02:04 -07001095 count_memcg_page_event(new_page, THP_COLLAPSE_ALLOC);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001096
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001097 mmap_read_lock(mm);
Kirill A. Shutemovc131f752016-09-19 14:44:01 -07001098 result = hugepage_vma_revalidate(mm, address, &vma);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001099 if (result) {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001100 mmap_read_unlock(mm);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001101 goto out_nolock;
1102 }
1103
1104 pmd = mm_find_pmd(mm, address);
1105 if (!pmd) {
1106 result = SCAN_PMD_NULL;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001107 mmap_read_unlock(mm);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001108 goto out_nolock;
1109 }
1110
1111 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001112 * __collapse_huge_page_swapin always returns with mmap_lock locked.
1113 * If it fails, we release mmap_lock and jump out_nolock.
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001114 * Continuing to collapse causes inconsistency.
1115 */
Kirill A. Shutemovffe945e2020-06-03 16:00:09 -07001116 if (unmapped && !__collapse_huge_page_swapin(mm, vma, address,
1117 pmd, referenced)) {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001118 mmap_read_unlock(mm);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001119 goto out_nolock;
1120 }
1121
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001122 mmap_read_unlock(mm);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001123 /*
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 */
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001128 mmap_write_lock(mm);
Kirill A. Shutemovc131f752016-09-19 14:44:01 -07001129 result = hugepage_vma_revalidate(mm, address, &vma);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001130 if (result)
Miaohe Lin18d24a72021-05-04 18:34:17 -07001131 goto out_up_write;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001132 /* check if the pmd is still valid */
1133 if (mm_find_pmd(mm, address) != pmd)
Miaohe Lin18d24a72021-05-04 18:34:17 -07001134 goto out_up_write;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001135
1136 anon_vma_lock_write(vma->anon_vma);
1137
Jérôme Glisse7269f992019-05-13 17:20:53 -07001138 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, NULL, mm,
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07001139 address, address + HPAGE_PMD_SIZE);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001140 mmu_notifier_invalidate_range_start(&range);
Ville Syrjäläec649c9d2019-11-05 21:16:48 -08001141
1142 pte = pte_offset_map(pmd, address);
1143 pte_ptl = pte_lockptr(mm, pmd);
1144
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001145 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);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001154 mmu_notifier_invalidate_range_end(&range);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001155
1156 spin_lock(pte_ptl);
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -07001157 isolated = __collapse_huge_page_isolate(vma, address, pte,
1158 &compound_pagelist);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001159 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;
Miaohe Lin18d24a72021-05-04 18:34:17 -07001174 goto out_up_write;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001175 }
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
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -07001183 __collapse_huge_page_copy(pte, new_page, vma, address, pte_ptl,
1184 &compound_pagelist);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001185 pte_unmap(pte);
Miaohe Lin588d01f2021-05-04 18:33:40 -07001186 /*
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 */
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001192 __SetPageUptodate(new_page);
1193 pgtable = pmd_pgtable(_pmd);
1194
1195 _pmd = mk_huge_pmd(new_page, vma->vm_page_prot);
Linus Torvaldsf55e1012017-11-29 09:01:01 -08001196 _pmd = maybe_pmd_mkwrite(pmd_mkdirty(_pmd), vma);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001197
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001198 spin_lock(pmd_ptl);
1199 BUG_ON(!pmd_none(*pmd));
Johannes Weinerbe5d0a72020-06-03 16:01:57 -07001200 page_add_new_anon_rmap(new_page, vma, address, true);
Joonsoo Kimb5181542020-08-11 18:30:40 -07001201 lru_cache_add_inactive_or_unevictable(new_page, vma);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001202 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:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001212 mmap_write_unlock(mm);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001213out_nolock:
Johannes Weiner9d82c692020-06-03 16:02:04 -07001214 if (!IS_ERR_OR_NULL(*hpage))
1215 mem_cgroup_uncharge(*hpage);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001216 trace_mm_collapse_huge_page(mm, isolated, result);
1217 return;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001218}
1219
1220static int khugepaged_scan_pmd(struct mm_struct *mm,
1221 struct vm_area_struct *vma,
1222 unsigned long address,
1223 struct page **hpage)
1224{
1225 pmd_t *pmd;
1226 pte_t *pte, *_pte;
Kirill A. Shutemov71a2c112020-06-03 16:00:30 -07001227 int ret = 0, result = 0, referenced = 0;
1228 int none_or_zero = 0, shared = 0;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001229 struct page *page = NULL;
1230 unsigned long _address;
1231 spinlock_t *ptl;
1232 int node = NUMA_NO_NODE, unmapped = 0;
Ebru Akagunduz0db501f2016-07-26 15:26:46 -07001233 bool writable = false;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001234
1235 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
1236
1237 pmd = mm_find_pmd(mm, address);
1238 if (!pmd) {
1239 result = SCAN_PMD_NULL;
1240 goto out;
1241 }
1242
1243 memset(khugepaged_node_load, 0, sizeof(khugepaged_node_load));
1244 pte = pte_offset_map_lock(mm, pmd, address, &ptl);
1245 for (_address = address, _pte = pte; _pte < pte+HPAGE_PMD_NR;
1246 _pte++, _address += PAGE_SIZE) {
1247 pte_t pteval = *_pte;
1248 if (is_swap_pte(pteval)) {
1249 if (++unmapped <= khugepaged_max_ptes_swap) {
Peter Xue1e267c2020-04-06 20:06:04 -07001250 /*
1251 * Always be strict with uffd-wp
1252 * enabled swap entries. Please see
1253 * comment below for pte_uffd_wp().
1254 */
1255 if (pte_swp_uffd_wp(pteval)) {
1256 result = SCAN_PTE_UFFD_WP;
1257 goto out_unmap;
1258 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001259 continue;
1260 } else {
1261 result = SCAN_EXCEED_SWAP_PTE;
1262 goto out_unmap;
1263 }
1264 }
1265 if (pte_none(pteval) || is_zero_pfn(pte_pfn(pteval))) {
1266 if (!userfaultfd_armed(vma) &&
1267 ++none_or_zero <= khugepaged_max_ptes_none) {
1268 continue;
1269 } else {
1270 result = SCAN_EXCEED_NONE_PTE;
1271 goto out_unmap;
1272 }
1273 }
Peter Xue1e267c2020-04-06 20:06:04 -07001274 if (pte_uffd_wp(pteval)) {
1275 /*
1276 * Don't collapse the page if any of the small
1277 * PTEs are armed with uffd write protection.
1278 * Here we can also mark the new huge pmd as
1279 * write protected if any of the small ones is
Haitao Shi8958b242020-12-15 20:47:26 -08001280 * marked but that could bring unknown
Peter Xue1e267c2020-04-06 20:06:04 -07001281 * userfault messages that falls outside of
1282 * the registered range. So, just be simple.
1283 */
1284 result = SCAN_PTE_UFFD_WP;
1285 goto out_unmap;
1286 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001287 if (pte_write(pteval))
1288 writable = true;
1289
1290 page = vm_normal_page(vma, _address, pteval);
1291 if (unlikely(!page)) {
1292 result = SCAN_PAGE_NULL;
1293 goto out_unmap;
1294 }
1295
Kirill A. Shutemov71a2c112020-06-03 16:00:30 -07001296 if (page_mapcount(page) > 1 &&
1297 ++shared > khugepaged_max_ptes_shared) {
1298 result = SCAN_EXCEED_SHARED_PTE;
1299 goto out_unmap;
1300 }
1301
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -07001302 page = compound_head(page);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001303
1304 /*
1305 * Record which node the original page is from and save this
1306 * information to khugepaged_node_load[].
1307 * Khupaged will allocate hugepage from the node has the max
1308 * hit record.
1309 */
1310 node = page_to_nid(page);
1311 if (khugepaged_scan_abort(node)) {
1312 result = SCAN_SCAN_ABORT;
1313 goto out_unmap;
1314 }
1315 khugepaged_node_load[node]++;
1316 if (!PageLRU(page)) {
1317 result = SCAN_PAGE_LRU;
1318 goto out_unmap;
1319 }
1320 if (PageLocked(page)) {
1321 result = SCAN_PAGE_LOCK;
1322 goto out_unmap;
1323 }
1324 if (!PageAnon(page)) {
1325 result = SCAN_PAGE_ANON;
1326 goto out_unmap;
1327 }
1328
1329 /*
Kirill A. Shutemov94456892020-06-03 16:00:20 -07001330 * Check if the page has any GUP (or other external) pins.
1331 *
1332 * Here the check is racy it may see totmal_mapcount > refcount
1333 * in some cases.
1334 * For example, one process with one forked child process.
1335 * The parent has the PMD split due to MADV_DONTNEED, then
1336 * the child is trying unmap the whole PMD, but khugepaged
1337 * may be scanning the parent between the child has
1338 * PageDoubleMap flag cleared and dec the mapcount. So
1339 * khugepaged may see total_mapcount > refcount.
1340 *
1341 * But such case is ephemeral we could always retry collapse
1342 * later. However it may report false positive if the page
1343 * has excessive GUP pins (i.e. 512). Anyway the same check
1344 * will be done again later the risk seems low.
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001345 */
Kirill A. Shutemov94456892020-06-03 16:00:20 -07001346 if (!is_refcount_suitable(page)) {
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001347 result = SCAN_PAGE_COUNT;
1348 goto out_unmap;
1349 }
1350 if (pte_young(pteval) ||
1351 page_is_young(page) || PageReferenced(page) ||
1352 mmu_notifier_test_young(vma->vm_mm, address))
Ebru Akagunduz0db501f2016-07-26 15:26:46 -07001353 referenced++;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001354 }
Kirill A. Shutemovffe945e2020-06-03 16:00:09 -07001355 if (!writable) {
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001356 result = SCAN_PAGE_RO;
Kirill A. Shutemovffe945e2020-06-03 16:00:09 -07001357 } else if (!referenced || (unmapped && referenced < HPAGE_PMD_NR/2)) {
1358 result = SCAN_LACK_REFERENCED_PAGE;
1359 } else {
1360 result = SCAN_SUCCEED;
1361 ret = 1;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001362 }
1363out_unmap:
1364 pte_unmap_unlock(pte, ptl);
1365 if (ret) {
1366 node = khugepaged_find_target_node();
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001367 /* collapse_huge_page will return with the mmap_lock released */
Kirill A. Shutemovffe945e2020-06-03 16:00:09 -07001368 collapse_huge_page(mm, address, hpage, node,
1369 referenced, unmapped);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001370 }
1371out:
1372 trace_mm_khugepaged_scan_pmd(mm, page, writable, referenced,
1373 none_or_zero, result, unmapped);
1374 return ret;
1375}
1376
1377static void collect_mm_slot(struct mm_slot *mm_slot)
1378{
1379 struct mm_struct *mm = mm_slot->mm;
1380
Lance Roy35f3aa32018-10-04 23:45:47 -07001381 lockdep_assert_held(&khugepaged_mm_lock);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001382
1383 if (khugepaged_test_exit(mm)) {
1384 /* free mm_slot */
1385 hash_del(&mm_slot->hash);
1386 list_del(&mm_slot->mm_node);
1387
1388 /*
1389 * Not strictly needed because the mm exited already.
1390 *
1391 * clear_bit(MMF_VM_HUGEPAGE, &mm->flags);
1392 */
1393
1394 /* khugepaged_mm_lock actually not necessary for the below */
1395 free_mm_slot(mm_slot);
1396 mmdrop(mm);
1397 }
1398}
1399
Matthew Wilcox (Oracle)396bcc52020-04-06 20:04:35 -07001400#ifdef CONFIG_SHMEM
Song Liu27e1f822019-09-23 15:38:30 -07001401/*
1402 * Notify khugepaged that given addr of the mm is pte-mapped THP. Then
1403 * khugepaged should try to collapse the page table.
1404 */
1405static int khugepaged_add_pte_mapped_thp(struct mm_struct *mm,
1406 unsigned long addr)
1407{
1408 struct mm_slot *mm_slot;
1409
1410 VM_BUG_ON(addr & ~HPAGE_PMD_MASK);
1411
1412 spin_lock(&khugepaged_mm_lock);
1413 mm_slot = get_mm_slot(mm);
1414 if (likely(mm_slot && mm_slot->nr_pte_mapped_thp < MAX_PTE_MAPPED_THP))
1415 mm_slot->pte_mapped_thp[mm_slot->nr_pte_mapped_thp++] = addr;
1416 spin_unlock(&khugepaged_mm_lock);
1417 return 0;
1418}
1419
1420/**
Alex Shi336e6b52020-12-14 19:12:01 -08001421 * collapse_pte_mapped_thp - Try to collapse a pte-mapped THP for mm at
1422 * address haddr.
1423 *
1424 * @mm: process address space where collapse happens
1425 * @addr: THP collapse address
Song Liu27e1f822019-09-23 15:38:30 -07001426 *
1427 * This function checks whether all the PTEs in the PMD are pointing to the
1428 * right THP. If so, retract the page table so the THP can refault in with
1429 * as pmd-mapped.
1430 */
1431void collapse_pte_mapped_thp(struct mm_struct *mm, unsigned long addr)
1432{
1433 unsigned long haddr = addr & HPAGE_PMD_MASK;
1434 struct vm_area_struct *vma = find_vma(mm, haddr);
Hugh Dickins119a5fc2020-08-06 23:26:18 -07001435 struct page *hpage;
Song Liu27e1f822019-09-23 15:38:30 -07001436 pte_t *start_pte, *pte;
1437 pmd_t *pmd, _pmd;
1438 spinlock_t *ptl;
1439 int count = 0;
1440 int i;
1441
1442 if (!vma || !vma->vm_file ||
Miaohe Linfef792a2021-05-04 18:34:15 -07001443 !range_in_vma(vma, haddr, haddr + HPAGE_PMD_SIZE))
Song Liu27e1f822019-09-23 15:38:30 -07001444 return;
1445
1446 /*
1447 * This vm_flags may not have VM_HUGEPAGE if the page was not
1448 * collapsed by this mm. But we can still collapse if the page is
1449 * the valid THP. Add extra VM_HUGEPAGE so hugepage_vma_check()
1450 * will not fail the vma for missing VM_HUGEPAGE
1451 */
1452 if (!hugepage_vma_check(vma, vma->vm_flags | VM_HUGEPAGE))
1453 return;
1454
Hugh Dickins119a5fc2020-08-06 23:26:18 -07001455 hpage = find_lock_page(vma->vm_file->f_mapping,
1456 linear_page_index(vma, haddr));
1457 if (!hpage)
1458 return;
1459
1460 if (!PageHead(hpage))
1461 goto drop_hpage;
1462
Song Liu27e1f822019-09-23 15:38:30 -07001463 pmd = mm_find_pmd(mm, haddr);
1464 if (!pmd)
Hugh Dickins119a5fc2020-08-06 23:26:18 -07001465 goto drop_hpage;
Song Liu27e1f822019-09-23 15:38:30 -07001466
1467 start_pte = pte_offset_map_lock(mm, pmd, haddr, &ptl);
1468
1469 /* step 1: check all mapped PTEs are to the right huge page */
1470 for (i = 0, addr = haddr, pte = start_pte;
1471 i < HPAGE_PMD_NR; i++, addr += PAGE_SIZE, pte++) {
1472 struct page *page;
1473
1474 /* empty pte, skip */
1475 if (pte_none(*pte))
1476 continue;
1477
1478 /* page swapped out, abort */
1479 if (!pte_present(*pte))
1480 goto abort;
1481
1482 page = vm_normal_page(vma, addr, *pte);
1483
Song Liu27e1f822019-09-23 15:38:30 -07001484 /*
Hugh Dickins119a5fc2020-08-06 23:26:18 -07001485 * Note that uprobe, debugger, or MAP_PRIVATE may change the
1486 * page table, but the new page will not be a subpage of hpage.
Song Liu27e1f822019-09-23 15:38:30 -07001487 */
Hugh Dickins119a5fc2020-08-06 23:26:18 -07001488 if (hpage + i != page)
Song Liu27e1f822019-09-23 15:38:30 -07001489 goto abort;
1490 count++;
1491 }
1492
1493 /* step 2: adjust rmap */
1494 for (i = 0, addr = haddr, pte = start_pte;
1495 i < HPAGE_PMD_NR; i++, addr += PAGE_SIZE, pte++) {
1496 struct page *page;
1497
1498 if (pte_none(*pte))
1499 continue;
1500 page = vm_normal_page(vma, addr, *pte);
1501 page_remove_rmap(page, false);
1502 }
1503
1504 pte_unmap_unlock(start_pte, ptl);
1505
1506 /* step 3: set proper refcount and mm_counters. */
Hugh Dickins119a5fc2020-08-06 23:26:18 -07001507 if (count) {
Song Liu27e1f822019-09-23 15:38:30 -07001508 page_ref_sub(hpage, count);
1509 add_mm_counter(vma->vm_mm, mm_counter_file(hpage), -count);
1510 }
1511
1512 /* step 4: collapse pmd */
1513 ptl = pmd_lock(vma->vm_mm, pmd);
Hugh Dickins723a80d2020-08-06 23:26:15 -07001514 _pmd = pmdp_collapse_flush(vma, haddr, pmd);
Song Liu27e1f822019-09-23 15:38:30 -07001515 spin_unlock(ptl);
1516 mm_dec_nr_ptes(mm);
1517 pte_free(mm, pmd_pgtable(_pmd));
Hugh Dickins119a5fc2020-08-06 23:26:18 -07001518
1519drop_hpage:
1520 unlock_page(hpage);
1521 put_page(hpage);
Song Liu27e1f822019-09-23 15:38:30 -07001522 return;
1523
1524abort:
1525 pte_unmap_unlock(start_pte, ptl);
Hugh Dickins119a5fc2020-08-06 23:26:18 -07001526 goto drop_hpage;
Song Liu27e1f822019-09-23 15:38:30 -07001527}
1528
Miaohe Lin0edf61e2021-05-04 18:33:37 -07001529static void khugepaged_collapse_pte_mapped_thps(struct mm_slot *mm_slot)
Song Liu27e1f822019-09-23 15:38:30 -07001530{
1531 struct mm_struct *mm = mm_slot->mm;
1532 int i;
1533
1534 if (likely(mm_slot->nr_pte_mapped_thp == 0))
Miaohe Lin0edf61e2021-05-04 18:33:37 -07001535 return;
Song Liu27e1f822019-09-23 15:38:30 -07001536
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001537 if (!mmap_write_trylock(mm))
Miaohe Lin0edf61e2021-05-04 18:33:37 -07001538 return;
Song Liu27e1f822019-09-23 15:38:30 -07001539
1540 if (unlikely(khugepaged_test_exit(mm)))
1541 goto out;
1542
1543 for (i = 0; i < mm_slot->nr_pte_mapped_thp; i++)
1544 collapse_pte_mapped_thp(mm, mm_slot->pte_mapped_thp[i]);
1545
1546out:
1547 mm_slot->nr_pte_mapped_thp = 0;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001548 mmap_write_unlock(mm);
Song Liu27e1f822019-09-23 15:38:30 -07001549}
1550
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001551static void retract_page_tables(struct address_space *mapping, pgoff_t pgoff)
1552{
1553 struct vm_area_struct *vma;
Hugh Dickins18e77602020-08-06 23:26:22 -07001554 struct mm_struct *mm;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001555 unsigned long addr;
1556 pmd_t *pmd, _pmd;
1557
1558 i_mmap_lock_write(mapping);
1559 vma_interval_tree_foreach(vma, &mapping->i_mmap, pgoff, pgoff) {
Song Liu27e1f822019-09-23 15:38:30 -07001560 /*
1561 * Check vma->anon_vma to exclude MAP_PRIVATE mappings that
1562 * got written to. These VMAs are likely not worth investing
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07001563 * mmap_write_lock(mm) as PMD-mapping is likely to be split
Song Liu27e1f822019-09-23 15:38:30 -07001564 * later.
1565 *
1566 * Not that vma->anon_vma check is racy: it can be set up after
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001567 * the check but before we took mmap_lock by the fault path.
Song Liu27e1f822019-09-23 15:38:30 -07001568 * But page lock would prevent establishing any new ptes of the
1569 * page, so we are safe.
1570 *
1571 * An alternative would be drop the check, but check that page
1572 * table is clear before calling pmdp_collapse_flush() under
1573 * ptl. It has higher chance to recover THP for the VMA, but
1574 * has higher cost too.
1575 */
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001576 if (vma->anon_vma)
1577 continue;
1578 addr = vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
1579 if (addr & ~HPAGE_PMD_MASK)
1580 continue;
1581 if (vma->vm_end < addr + HPAGE_PMD_SIZE)
1582 continue;
Hugh Dickins18e77602020-08-06 23:26:22 -07001583 mm = vma->vm_mm;
1584 pmd = mm_find_pmd(mm, addr);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001585 if (!pmd)
1586 continue;
1587 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001588 * We need exclusive mmap_lock to retract page table.
Song Liu27e1f822019-09-23 15:38:30 -07001589 *
1590 * We use trylock due to lock inversion: we need to acquire
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001591 * mmap_lock while holding page lock. Fault path does it in
Song Liu27e1f822019-09-23 15:38:30 -07001592 * reverse order. Trylock is a way to avoid deadlock.
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001593 */
Hugh Dickins18e77602020-08-06 23:26:22 -07001594 if (mmap_write_trylock(mm)) {
1595 if (!khugepaged_test_exit(mm)) {
1596 spinlock_t *ptl = pmd_lock(mm, pmd);
1597 /* assume page table is clear */
1598 _pmd = pmdp_collapse_flush(vma, addr, pmd);
1599 spin_unlock(ptl);
1600 mm_dec_nr_ptes(mm);
1601 pte_free(mm, pmd_pgtable(_pmd));
1602 }
1603 mmap_write_unlock(mm);
Song Liu27e1f822019-09-23 15:38:30 -07001604 } else {
1605 /* Try again later */
Hugh Dickins18e77602020-08-06 23:26:22 -07001606 khugepaged_add_pte_mapped_thp(mm, addr);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001607 }
1608 }
1609 i_mmap_unlock_write(mapping);
1610}
1611
1612/**
Song Liu99cb0db2019-09-23 15:38:00 -07001613 * collapse_file - collapse filemap/tmpfs/shmem pages into huge one.
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001614 *
Alex Shi336e6b52020-12-14 19:12:01 -08001615 * @mm: process address space where collapse happens
1616 * @file: file that collapse on
1617 * @start: collapse start address
1618 * @hpage: new allocated huge page for collapse
1619 * @node: appointed node the new huge page allocate from
1620 *
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001621 * Basic scheme is simple, details are more complex:
Hugh Dickins87c460a2018-11-30 14:10:43 -08001622 * - allocate and lock a new huge page;
Matthew Wilcox77da9382017-12-04 14:56:08 -05001623 * - scan page cache replacing old pages with the new one
Song Liu99cb0db2019-09-23 15:38:00 -07001624 * + swap/gup in pages if necessary;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001625 * + fill in gaps;
Matthew Wilcox77da9382017-12-04 14:56:08 -05001626 * + keep old pages around in case rollback is required;
1627 * - if replacing succeeds:
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001628 * + copy data over;
1629 * + free old pages;
Hugh Dickins87c460a2018-11-30 14:10:43 -08001630 * + unlock huge page;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001631 * - if replacing failed;
1632 * + put all pages back and unfreeze them;
Matthew Wilcox77da9382017-12-04 14:56:08 -05001633 * + restore gaps in the page cache;
Hugh Dickins87c460a2018-11-30 14:10:43 -08001634 * + unlock and free huge page;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001635 */
Song Liu579c5712019-09-23 15:37:57 -07001636static void collapse_file(struct mm_struct *mm,
1637 struct file *file, pgoff_t start,
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001638 struct page **hpage, int node)
1639{
Song Liu579c5712019-09-23 15:37:57 -07001640 struct address_space *mapping = file->f_mapping;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001641 gfp_t gfp;
Matthew Wilcox77da9382017-12-04 14:56:08 -05001642 struct page *new_page;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001643 pgoff_t index, end = start + HPAGE_PMD_NR;
1644 LIST_HEAD(pagelist);
Matthew Wilcox77da9382017-12-04 14:56:08 -05001645 XA_STATE_ORDER(xas, &mapping->i_pages, start, HPAGE_PMD_ORDER);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001646 int nr_none = 0, result = SCAN_SUCCEED;
Song Liu99cb0db2019-09-23 15:38:00 -07001647 bool is_shmem = shmem_file(file);
Muchun Songbf9ecea2021-02-24 12:03:27 -08001648 int nr;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001649
Song Liu99cb0db2019-09-23 15:38:00 -07001650 VM_BUG_ON(!IS_ENABLED(CONFIG_READ_ONLY_THP_FOR_FS) && !is_shmem);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001651 VM_BUG_ON(start & (HPAGE_PMD_NR - 1));
1652
1653 /* Only allocate from the target node */
Michal Hocko41b61672017-01-10 16:57:42 -08001654 gfp = alloc_hugepage_khugepaged_gfpmask() | __GFP_THISNODE;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001655
1656 new_page = khugepaged_alloc_page(hpage, gfp, node);
1657 if (!new_page) {
1658 result = SCAN_ALLOC_HUGE_PAGE_FAIL;
1659 goto out;
1660 }
1661
Johannes Weinerd9eb1ea2020-06-03 16:02:24 -07001662 if (unlikely(mem_cgroup_charge(new_page, mm, gfp))) {
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001663 result = SCAN_CGROUP_CHARGE_FAIL;
1664 goto out;
1665 }
Johannes Weiner9d82c692020-06-03 16:02:04 -07001666 count_memcg_page_event(new_page, THP_COLLAPSE_ALLOC);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001667
Hugh Dickins95feeab2018-11-30 14:10:50 -08001668 /* This will be less messy when we use multi-index entries */
1669 do {
1670 xas_lock_irq(&xas);
1671 xas_create_range(&xas);
1672 if (!xas_error(&xas))
1673 break;
1674 xas_unlock_irq(&xas);
1675 if (!xas_nomem(&xas, GFP_KERNEL)) {
Hugh Dickins95feeab2018-11-30 14:10:50 -08001676 result = SCAN_FAIL;
1677 goto out;
1678 }
1679 } while (1);
1680
Hugh Dickins042a3082018-11-30 14:10:39 -08001681 __SetPageLocked(new_page);
Song Liu99cb0db2019-09-23 15:38:00 -07001682 if (is_shmem)
1683 __SetPageSwapBacked(new_page);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001684 new_page->index = start;
1685 new_page->mapping = mapping;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001686
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001687 /*
Hugh Dickins87c460a2018-11-30 14:10:43 -08001688 * At this point the new_page is locked and not up-to-date.
1689 * It's safe to insert it into the page cache, because nobody would
1690 * be able to map it or use it in another way until we unlock it.
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001691 */
1692
Matthew Wilcox77da9382017-12-04 14:56:08 -05001693 xas_set(&xas, start);
1694 for (index = start; index < end; index++) {
1695 struct page *page = xas_next(&xas);
1696
1697 VM_BUG_ON(index != xas.xa_index);
Song Liu99cb0db2019-09-23 15:38:00 -07001698 if (is_shmem) {
1699 if (!page) {
1700 /*
1701 * Stop if extent has been truncated or
1702 * hole-punched, and is now completely
1703 * empty.
1704 */
1705 if (index == start) {
1706 if (!xas_next_entry(&xas, end - 1)) {
1707 result = SCAN_TRUNCATED;
1708 goto xa_locked;
1709 }
1710 xas_set(&xas, index);
1711 }
1712 if (!shmem_charge(mapping->host, 1)) {
1713 result = SCAN_FAIL;
Hugh Dickins042a3082018-11-30 14:10:39 -08001714 goto xa_locked;
Hugh Dickins701270f2018-11-30 14:10:25 -08001715 }
Song Liu99cb0db2019-09-23 15:38:00 -07001716 xas_store(&xas, new_page);
1717 nr_none++;
1718 continue;
Hugh Dickins701270f2018-11-30 14:10:25 -08001719 }
Song Liu99cb0db2019-09-23 15:38:00 -07001720
1721 if (xa_is_value(page) || !PageUptodate(page)) {
1722 xas_unlock_irq(&xas);
1723 /* swap in or instantiate fallocated page */
1724 if (shmem_getpage(mapping->host, index, &page,
1725 SGP_NOHUGE)) {
1726 result = SCAN_FAIL;
1727 goto xa_unlocked;
1728 }
1729 } else if (trylock_page(page)) {
1730 get_page(page);
1731 xas_unlock_irq(&xas);
1732 } else {
1733 result = SCAN_PAGE_LOCK;
Hugh Dickins042a3082018-11-30 14:10:39 -08001734 goto xa_locked;
Matthew Wilcox77da9382017-12-04 14:56:08 -05001735 }
Song Liu99cb0db2019-09-23 15:38:00 -07001736 } else { /* !is_shmem */
1737 if (!page || xa_is_value(page)) {
1738 xas_unlock_irq(&xas);
1739 page_cache_sync_readahead(mapping, &file->f_ra,
1740 file, index,
David Howellse5a59d32020-09-04 16:36:16 -07001741 end - index);
Song Liu99cb0db2019-09-23 15:38:00 -07001742 /* drain pagevecs to help isolate_lru_page() */
1743 lru_add_drain();
1744 page = find_lock_page(mapping, index);
1745 if (unlikely(page == NULL)) {
1746 result = SCAN_FAIL;
1747 goto xa_unlocked;
1748 }
Song Liu75f36062019-11-30 17:57:19 -08001749 } else if (PageDirty(page)) {
1750 /*
1751 * khugepaged only works on read-only fd,
1752 * so this page is dirty because it hasn't
1753 * been flushed since first write. There
1754 * won't be new dirty pages.
1755 *
1756 * Trigger async flush here and hope the
1757 * writeback is done when khugepaged
1758 * revisits this page.
1759 *
1760 * This is a one-off situation. We are not
1761 * forcing writeback in loop.
1762 */
1763 xas_unlock_irq(&xas);
1764 filemap_flush(mapping);
1765 result = SCAN_FAIL;
1766 goto xa_unlocked;
Song Liu99cb0db2019-09-23 15:38:00 -07001767 } else if (trylock_page(page)) {
1768 get_page(page);
1769 xas_unlock_irq(&xas);
1770 } else {
1771 result = SCAN_PAGE_LOCK;
1772 goto xa_locked;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001773 }
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001774 }
1775
1776 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001777 * The page must be locked, so we can drop the i_pages lock
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001778 * without racing with truncate.
1779 */
1780 VM_BUG_ON_PAGE(!PageLocked(page), page);
Song Liu4655e5e2019-11-15 17:34:53 -08001781
1782 /* make sure the page is up to date */
1783 if (unlikely(!PageUptodate(page))) {
1784 result = SCAN_FAIL;
1785 goto out_unlock;
1786 }
Hugh Dickins06a5e122018-11-30 14:10:47 -08001787
1788 /*
1789 * If file was truncated then extended, or hole-punched, before
1790 * we locked the first page, then a THP might be there already.
1791 */
1792 if (PageTransCompound(page)) {
1793 result = SCAN_PAGE_COMPOUND;
1794 goto out_unlock;
1795 }
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001796
1797 if (page_mapping(page) != mapping) {
1798 result = SCAN_TRUNCATED;
1799 goto out_unlock;
1800 }
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001801
Song Liu4655e5e2019-11-15 17:34:53 -08001802 if (!is_shmem && PageDirty(page)) {
1803 /*
1804 * khugepaged only works on read-only fd, so this
1805 * page is dirty because it hasn't been flushed
1806 * since first write.
1807 */
1808 result = SCAN_FAIL;
1809 goto out_unlock;
1810 }
1811
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001812 if (isolate_lru_page(page)) {
1813 result = SCAN_DEL_PAGE_LRU;
Hugh Dickins042a3082018-11-30 14:10:39 -08001814 goto out_unlock;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001815 }
1816
Song Liu99cb0db2019-09-23 15:38:00 -07001817 if (page_has_private(page) &&
1818 !try_to_release_page(page, GFP_KERNEL)) {
1819 result = SCAN_PAGE_HAS_PRIVATE;
Hugh Dickins2f33a702020-05-27 22:20:43 -07001820 putback_lru_page(page);
Song Liu99cb0db2019-09-23 15:38:00 -07001821 goto out_unlock;
1822 }
1823
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001824 if (page_mapped(page))
Matthew Wilcox977fbdc2018-01-31 16:17:36 -08001825 unmap_mapping_pages(mapping, index, 1, false);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001826
Matthew Wilcox77da9382017-12-04 14:56:08 -05001827 xas_lock_irq(&xas);
1828 xas_set(&xas, index);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001829
Matthew Wilcox77da9382017-12-04 14:56:08 -05001830 VM_BUG_ON_PAGE(page != xas_load(&xas), page);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001831 VM_BUG_ON_PAGE(page_mapped(page), page);
1832
1833 /*
1834 * The page is expected to have page_count() == 3:
1835 * - we hold a pin on it;
Matthew Wilcox77da9382017-12-04 14:56:08 -05001836 * - one reference from page cache;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001837 * - one from isolate_lru_page;
1838 */
1839 if (!page_ref_freeze(page, 3)) {
1840 result = SCAN_PAGE_COUNT;
Hugh Dickins042a3082018-11-30 14:10:39 -08001841 xas_unlock_irq(&xas);
1842 putback_lru_page(page);
1843 goto out_unlock;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001844 }
1845
1846 /*
1847 * Add the page to the list to be able to undo the collapse if
1848 * something go wrong.
1849 */
1850 list_add_tail(&page->lru, &pagelist);
1851
1852 /* Finally, replace with the new page. */
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -07001853 xas_store(&xas, new_page);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001854 continue;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001855out_unlock:
1856 unlock_page(page);
1857 put_page(page);
Hugh Dickins042a3082018-11-30 14:10:39 -08001858 goto xa_unlocked;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001859 }
Muchun Songbf9ecea2021-02-24 12:03:27 -08001860 nr = thp_nr_pages(new_page);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001861
Song Liu99cb0db2019-09-23 15:38:00 -07001862 if (is_shmem)
Muchun Song57b28472021-02-24 12:03:31 -08001863 __mod_lruvec_page_state(new_page, NR_SHMEM_THPS, nr);
Song Liu09d91cd2019-09-23 15:38:03 -07001864 else {
Muchun Songbf9ecea2021-02-24 12:03:27 -08001865 __mod_lruvec_page_state(new_page, NR_FILE_THPS, nr);
Song Liu09d91cd2019-09-23 15:38:03 -07001866 filemap_nr_thps_inc(mapping);
1867 }
Song Liu99cb0db2019-09-23 15:38:00 -07001868
Hugh Dickins042a3082018-11-30 14:10:39 -08001869 if (nr_none) {
Johannes Weiner9d82c692020-06-03 16:02:04 -07001870 __mod_lruvec_page_state(new_page, NR_FILE_PAGES, nr_none);
Song Liu99cb0db2019-09-23 15:38:00 -07001871 if (is_shmem)
Johannes Weiner9d82c692020-06-03 16:02:04 -07001872 __mod_lruvec_page_state(new_page, NR_SHMEM, nr_none);
Hugh Dickins042a3082018-11-30 14:10:39 -08001873 }
1874
1875xa_locked:
1876 xas_unlock_irq(&xas);
Matthew Wilcox77da9382017-12-04 14:56:08 -05001877xa_unlocked:
Hugh Dickins042a3082018-11-30 14:10:39 -08001878
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001879 if (result == SCAN_SUCCEED) {
Matthew Wilcox77da9382017-12-04 14:56:08 -05001880 struct page *page, *tmp;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001881
1882 /*
Matthew Wilcox77da9382017-12-04 14:56:08 -05001883 * Replacing old pages with new one has succeeded, now we
1884 * need to copy the content and free the old pages.
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001885 */
Hugh Dickins2af8ff22018-11-30 14:10:35 -08001886 index = start;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001887 list_for_each_entry_safe(page, tmp, &pagelist, lru) {
Hugh Dickins2af8ff22018-11-30 14:10:35 -08001888 while (index < page->index) {
1889 clear_highpage(new_page + (index % HPAGE_PMD_NR));
1890 index++;
1891 }
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001892 copy_highpage(new_page + (page->index % HPAGE_PMD_NR),
1893 page);
1894 list_del(&page->lru);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001895 page->mapping = NULL;
Hugh Dickins042a3082018-11-30 14:10:39 -08001896 page_ref_unfreeze(page, 1);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001897 ClearPageActive(page);
1898 ClearPageUnevictable(page);
Hugh Dickins042a3082018-11-30 14:10:39 -08001899 unlock_page(page);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001900 put_page(page);
Hugh Dickins2af8ff22018-11-30 14:10:35 -08001901 index++;
1902 }
1903 while (index < end) {
1904 clear_highpage(new_page + (index % HPAGE_PMD_NR));
1905 index++;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001906 }
1907
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001908 SetPageUptodate(new_page);
Hugh Dickins87c460a2018-11-30 14:10:43 -08001909 page_ref_add(new_page, HPAGE_PMD_NR - 1);
Johannes Weiner6058eae2020-06-03 16:02:40 -07001910 if (is_shmem)
Song Liu99cb0db2019-09-23 15:38:00 -07001911 set_page_dirty(new_page);
Johannes Weiner6058eae2020-06-03 16:02:40 -07001912 lru_cache_add(new_page);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001913
Hugh Dickins042a3082018-11-30 14:10:39 -08001914 /*
1915 * Remove pte page tables, so we can re-fault the page as huge.
1916 */
1917 retract_page_tables(mapping, start);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001918 *hpage = NULL;
Yang Shi87aa7522018-08-17 15:45:29 -07001919
1920 khugepaged_pages_collapsed++;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001921 } else {
Matthew Wilcox77da9382017-12-04 14:56:08 -05001922 struct page *page;
Hugh Dickinsaaa52e32018-11-30 14:10:29 -08001923
Matthew Wilcox77da9382017-12-04 14:56:08 -05001924 /* Something went wrong: roll back page cache changes */
Matthew Wilcox77da9382017-12-04 14:56:08 -05001925 xas_lock_irq(&xas);
Hugh Dickinsaaa52e32018-11-30 14:10:29 -08001926 mapping->nrpages -= nr_none;
Song Liu99cb0db2019-09-23 15:38:00 -07001927
1928 if (is_shmem)
1929 shmem_uncharge(mapping->host, nr_none);
Hugh Dickinsaaa52e32018-11-30 14:10:29 -08001930
Matthew Wilcox77da9382017-12-04 14:56:08 -05001931 xas_set(&xas, start);
1932 xas_for_each(&xas, page, end - 1) {
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001933 page = list_first_entry_or_null(&pagelist,
1934 struct page, lru);
Matthew Wilcox77da9382017-12-04 14:56:08 -05001935 if (!page || xas.xa_index < page->index) {
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001936 if (!nr_none)
1937 break;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001938 nr_none--;
Johannes Weiner59749e62016-12-12 16:43:35 -08001939 /* Put holes back where they were */
Matthew Wilcox77da9382017-12-04 14:56:08 -05001940 xas_store(&xas, NULL);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001941 continue;
1942 }
1943
Matthew Wilcox77da9382017-12-04 14:56:08 -05001944 VM_BUG_ON_PAGE(page->index != xas.xa_index, page);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001945
1946 /* Unfreeze the page. */
1947 list_del(&page->lru);
1948 page_ref_unfreeze(page, 2);
Matthew Wilcox77da9382017-12-04 14:56:08 -05001949 xas_store(&xas, page);
1950 xas_pause(&xas);
1951 xas_unlock_irq(&xas);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001952 unlock_page(page);
Hugh Dickins042a3082018-11-30 14:10:39 -08001953 putback_lru_page(page);
Matthew Wilcox77da9382017-12-04 14:56:08 -05001954 xas_lock_irq(&xas);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001955 }
1956 VM_BUG_ON(nr_none);
Matthew Wilcox77da9382017-12-04 14:56:08 -05001957 xas_unlock_irq(&xas);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001958
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001959 new_page->mapping = NULL;
1960 }
Hugh Dickins042a3082018-11-30 14:10:39 -08001961
1962 unlock_page(new_page);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001963out:
1964 VM_BUG_ON(!list_empty(&pagelist));
Johannes Weiner9d82c692020-06-03 16:02:04 -07001965 if (!IS_ERR_OR_NULL(*hpage))
1966 mem_cgroup_uncharge(*hpage);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001967 /* TODO: tracepoints */
1968}
1969
Song Liu579c5712019-09-23 15:37:57 -07001970static void khugepaged_scan_file(struct mm_struct *mm,
1971 struct file *file, pgoff_t start, struct page **hpage)
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001972{
1973 struct page *page = NULL;
Song Liu579c5712019-09-23 15:37:57 -07001974 struct address_space *mapping = file->f_mapping;
Matthew Wilcox85b392d2017-12-04 15:06:23 -05001975 XA_STATE(xas, &mapping->i_pages, start);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001976 int present, swap;
1977 int node = NUMA_NO_NODE;
1978 int result = SCAN_SUCCEED;
1979
1980 present = 0;
1981 swap = 0;
1982 memset(khugepaged_node_load, 0, sizeof(khugepaged_node_load));
1983 rcu_read_lock();
Matthew Wilcox85b392d2017-12-04 15:06:23 -05001984 xas_for_each(&xas, page, start + HPAGE_PMD_NR - 1) {
1985 if (xas_retry(&xas, page))
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001986 continue;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001987
Matthew Wilcox85b392d2017-12-04 15:06:23 -05001988 if (xa_is_value(page)) {
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001989 if (++swap > khugepaged_max_ptes_swap) {
1990 result = SCAN_EXCEED_SWAP_PTE;
1991 break;
1992 }
1993 continue;
1994 }
1995
1996 if (PageTransCompound(page)) {
1997 result = SCAN_PAGE_COMPOUND;
1998 break;
1999 }
2000
2001 node = page_to_nid(page);
2002 if (khugepaged_scan_abort(node)) {
2003 result = SCAN_SCAN_ABORT;
2004 break;
2005 }
2006 khugepaged_node_load[node]++;
2007
2008 if (!PageLRU(page)) {
2009 result = SCAN_PAGE_LRU;
2010 break;
2011 }
2012
Song Liu99cb0db2019-09-23 15:38:00 -07002013 if (page_count(page) !=
2014 1 + page_mapcount(page) + page_has_private(page)) {
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002015 result = SCAN_PAGE_COUNT;
2016 break;
2017 }
2018
2019 /*
2020 * We probably should check if the page is referenced here, but
2021 * nobody would transfer pte_young() to PageReferenced() for us.
2022 * And rmap walk here is just too costly...
2023 */
2024
2025 present++;
2026
2027 if (need_resched()) {
Matthew Wilcox85b392d2017-12-04 15:06:23 -05002028 xas_pause(&xas);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002029 cond_resched_rcu();
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002030 }
2031 }
2032 rcu_read_unlock();
2033
2034 if (result == SCAN_SUCCEED) {
2035 if (present < HPAGE_PMD_NR - khugepaged_max_ptes_none) {
2036 result = SCAN_EXCEED_NONE_PTE;
2037 } else {
2038 node = khugepaged_find_target_node();
Song Liu579c5712019-09-23 15:37:57 -07002039 collapse_file(mm, file, start, hpage, node);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002040 }
2041 }
2042
2043 /* TODO: tracepoints */
2044}
2045#else
Song Liu579c5712019-09-23 15:37:57 -07002046static void khugepaged_scan_file(struct mm_struct *mm,
2047 struct file *file, pgoff_t start, struct page **hpage)
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002048{
2049 BUILD_BUG();
2050}
Song Liu27e1f822019-09-23 15:38:30 -07002051
Miaohe Lin0edf61e2021-05-04 18:33:37 -07002052static void khugepaged_collapse_pte_mapped_thps(struct mm_slot *mm_slot)
Song Liu27e1f822019-09-23 15:38:30 -07002053{
Song Liu27e1f822019-09-23 15:38:30 -07002054}
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002055#endif
2056
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002057static unsigned int khugepaged_scan_mm_slot(unsigned int pages,
2058 struct page **hpage)
2059 __releases(&khugepaged_mm_lock)
2060 __acquires(&khugepaged_mm_lock)
2061{
2062 struct mm_slot *mm_slot;
2063 struct mm_struct *mm;
2064 struct vm_area_struct *vma;
2065 int progress = 0;
2066
2067 VM_BUG_ON(!pages);
Lance Roy35f3aa32018-10-04 23:45:47 -07002068 lockdep_assert_held(&khugepaged_mm_lock);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002069
2070 if (khugepaged_scan.mm_slot)
2071 mm_slot = khugepaged_scan.mm_slot;
2072 else {
2073 mm_slot = list_entry(khugepaged_scan.mm_head.next,
2074 struct mm_slot, mm_node);
2075 khugepaged_scan.address = 0;
2076 khugepaged_scan.mm_slot = mm_slot;
2077 }
2078 spin_unlock(&khugepaged_mm_lock);
Song Liu27e1f822019-09-23 15:38:30 -07002079 khugepaged_collapse_pte_mapped_thps(mm_slot);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002080
2081 mm = mm_slot->mm;
Yang Shi3b454ad2018-01-31 16:18:28 -08002082 /*
2083 * Don't wait for semaphore (to avoid long wait times). Just move to
2084 * the next mm on the list.
2085 */
2086 vma = NULL;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002087 if (unlikely(!mmap_read_trylock(mm)))
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002088 goto breakouterloop_mmap_lock;
Yang Shi3b454ad2018-01-31 16:18:28 -08002089 if (likely(!khugepaged_test_exit(mm)))
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002090 vma = find_vma(mm, khugepaged_scan.address);
2091
2092 progress++;
2093 for (; vma; vma = vma->vm_next) {
2094 unsigned long hstart, hend;
2095
2096 cond_resched();
2097 if (unlikely(khugepaged_test_exit(mm))) {
2098 progress++;
2099 break;
2100 }
Song Liu50f8b922018-08-17 15:47:00 -07002101 if (!hugepage_vma_check(vma, vma->vm_flags)) {
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002102skip:
2103 progress++;
2104 continue;
2105 }
2106 hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
2107 hend = vma->vm_end & HPAGE_PMD_MASK;
2108 if (hstart >= hend)
2109 goto skip;
2110 if (khugepaged_scan.address > hend)
2111 goto skip;
2112 if (khugepaged_scan.address < hstart)
2113 khugepaged_scan.address = hstart;
2114 VM_BUG_ON(khugepaged_scan.address & ~HPAGE_PMD_MASK);
Matthew Wilcox (Oracle)396bcc52020-04-06 20:04:35 -07002115 if (shmem_file(vma->vm_file) && !shmem_huge_enabled(vma))
2116 goto skip;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002117
2118 while (khugepaged_scan.address < hend) {
2119 int ret;
2120 cond_resched();
2121 if (unlikely(khugepaged_test_exit(mm)))
2122 goto breakouterloop;
2123
2124 VM_BUG_ON(khugepaged_scan.address < hstart ||
2125 khugepaged_scan.address + HPAGE_PMD_SIZE >
2126 hend);
Song Liu99cb0db2019-09-23 15:38:00 -07002127 if (IS_ENABLED(CONFIG_SHMEM) && vma->vm_file) {
Matthew Wilcox (Oracle)396bcc52020-04-06 20:04:35 -07002128 struct file *file = get_file(vma->vm_file);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002129 pgoff_t pgoff = linear_page_index(vma,
2130 khugepaged_scan.address);
Song Liu99cb0db2019-09-23 15:38:00 -07002131
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002132 mmap_read_unlock(mm);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002133 ret = 1;
Song Liu579c5712019-09-23 15:37:57 -07002134 khugepaged_scan_file(mm, file, pgoff, hpage);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002135 fput(file);
2136 } else {
2137 ret = khugepaged_scan_pmd(mm, vma,
2138 khugepaged_scan.address,
2139 hpage);
2140 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002141 /* move to next address */
2142 khugepaged_scan.address += HPAGE_PMD_SIZE;
2143 progress += HPAGE_PMD_NR;
2144 if (ret)
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002145 /* we released mmap_lock so break loop */
2146 goto breakouterloop_mmap_lock;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002147 if (progress >= pages)
2148 goto breakouterloop;
2149 }
2150 }
2151breakouterloop:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002152 mmap_read_unlock(mm); /* exit_mmap will destroy ptes after this */
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002153breakouterloop_mmap_lock:
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002154
2155 spin_lock(&khugepaged_mm_lock);
2156 VM_BUG_ON(khugepaged_scan.mm_slot != mm_slot);
2157 /*
2158 * Release the current mm_slot if this mm is about to die, or
2159 * if we scanned all vmas of this mm.
2160 */
2161 if (khugepaged_test_exit(mm) || !vma) {
2162 /*
2163 * Make sure that if mm_users is reaching zero while
2164 * khugepaged runs here, khugepaged_exit will find
2165 * mm_slot not pointing to the exiting mm.
2166 */
2167 if (mm_slot->mm_node.next != &khugepaged_scan.mm_head) {
2168 khugepaged_scan.mm_slot = list_entry(
2169 mm_slot->mm_node.next,
2170 struct mm_slot, mm_node);
2171 khugepaged_scan.address = 0;
2172 } else {
2173 khugepaged_scan.mm_slot = NULL;
2174 khugepaged_full_scans++;
2175 }
2176
2177 collect_mm_slot(mm_slot);
2178 }
2179
2180 return progress;
2181}
2182
2183static int khugepaged_has_work(void)
2184{
2185 return !list_empty(&khugepaged_scan.mm_head) &&
2186 khugepaged_enabled();
2187}
2188
2189static int khugepaged_wait_event(void)
2190{
2191 return !list_empty(&khugepaged_scan.mm_head) ||
2192 kthread_should_stop();
2193}
2194
2195static void khugepaged_do_scan(void)
2196{
2197 struct page *hpage = NULL;
2198 unsigned int progress = 0, pass_through_head = 0;
Yanfei Xu89dc6a92021-05-04 18:34:12 -07002199 unsigned int pages = READ_ONCE(khugepaged_pages_to_scan);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002200 bool wait = true;
2201
Kirill A. Shutemova980df32020-06-03 16:00:12 -07002202 lru_add_drain_all();
2203
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002204 while (progress < pages) {
2205 if (!khugepaged_prealloc_page(&hpage, &wait))
2206 break;
2207
2208 cond_resched();
2209
2210 if (unlikely(kthread_should_stop() || try_to_freeze()))
2211 break;
2212
2213 spin_lock(&khugepaged_mm_lock);
2214 if (!khugepaged_scan.mm_slot)
2215 pass_through_head++;
2216 if (khugepaged_has_work() &&
2217 pass_through_head < 2)
2218 progress += khugepaged_scan_mm_slot(pages - progress,
2219 &hpage);
2220 else
2221 progress = pages;
2222 spin_unlock(&khugepaged_mm_lock);
2223 }
2224
2225 if (!IS_ERR_OR_NULL(hpage))
2226 put_page(hpage);
2227}
2228
2229static bool khugepaged_should_wakeup(void)
2230{
2231 return kthread_should_stop() ||
2232 time_after_eq(jiffies, khugepaged_sleep_expire);
2233}
2234
2235static void khugepaged_wait_work(void)
2236{
2237 if (khugepaged_has_work()) {
2238 const unsigned long scan_sleep_jiffies =
2239 msecs_to_jiffies(khugepaged_scan_sleep_millisecs);
2240
2241 if (!scan_sleep_jiffies)
2242 return;
2243
2244 khugepaged_sleep_expire = jiffies + scan_sleep_jiffies;
2245 wait_event_freezable_timeout(khugepaged_wait,
2246 khugepaged_should_wakeup(),
2247 scan_sleep_jiffies);
2248 return;
2249 }
2250
2251 if (khugepaged_enabled())
2252 wait_event_freezable(khugepaged_wait, khugepaged_wait_event());
2253}
2254
2255static int khugepaged(void *none)
2256{
2257 struct mm_slot *mm_slot;
2258
2259 set_freezable();
2260 set_user_nice(current, MAX_NICE);
2261
2262 while (!kthread_should_stop()) {
2263 khugepaged_do_scan();
2264 khugepaged_wait_work();
2265 }
2266
2267 spin_lock(&khugepaged_mm_lock);
2268 mm_slot = khugepaged_scan.mm_slot;
2269 khugepaged_scan.mm_slot = NULL;
2270 if (mm_slot)
2271 collect_mm_slot(mm_slot);
2272 spin_unlock(&khugepaged_mm_lock);
2273 return 0;
2274}
2275
2276static void set_recommended_min_free_kbytes(void)
2277{
2278 struct zone *zone;
2279 int nr_zones = 0;
2280 unsigned long recommended_min;
2281
Joonsoo Kimb7d349c2018-04-10 16:30:27 -07002282 for_each_populated_zone(zone) {
2283 /*
2284 * We don't need to worry about fragmentation of
2285 * ZONE_MOVABLE since it only has movable pages.
2286 */
2287 if (zone_idx(zone) > gfp_zone(GFP_USER))
2288 continue;
2289
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002290 nr_zones++;
Joonsoo Kimb7d349c2018-04-10 16:30:27 -07002291 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002292
2293 /* Ensure 2 pageblocks are free to assist fragmentation avoidance */
2294 recommended_min = pageblock_nr_pages * nr_zones * 2;
2295
2296 /*
2297 * Make sure that on average at least two pageblocks are almost free
2298 * of another type, one for a migratetype to fall back to and a
2299 * second to avoid subsequent fallbacks of other types There are 3
2300 * MIGRATE_TYPES we care about.
2301 */
2302 recommended_min += pageblock_nr_pages * nr_zones *
2303 MIGRATE_PCPTYPES * MIGRATE_PCPTYPES;
2304
2305 /* don't ever allow to reserve more than 5% of the lowmem */
2306 recommended_min = min(recommended_min,
2307 (unsigned long) nr_free_buffer_pages() / 20);
2308 recommended_min <<= (PAGE_SHIFT-10);
2309
2310 if (recommended_min > min_free_kbytes) {
2311 if (user_min_free_kbytes >= 0)
2312 pr_info("raising min_free_kbytes from %d to %lu to help transparent hugepage allocations\n",
2313 min_free_kbytes, recommended_min);
2314
2315 min_free_kbytes = recommended_min;
2316 }
2317 setup_per_zone_wmarks();
2318}
2319
2320int start_stop_khugepaged(void)
2321{
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002322 int err = 0;
2323
2324 mutex_lock(&khugepaged_mutex);
2325 if (khugepaged_enabled()) {
2326 if (!khugepaged_thread)
2327 khugepaged_thread = kthread_run(khugepaged, NULL,
2328 "khugepaged");
2329 if (IS_ERR(khugepaged_thread)) {
2330 pr_err("khugepaged: kthread_run(khugepaged) failed\n");
2331 err = PTR_ERR(khugepaged_thread);
2332 khugepaged_thread = NULL;
2333 goto fail;
2334 }
2335
2336 if (!list_empty(&khugepaged_scan.mm_head))
2337 wake_up_interruptible(&khugepaged_wait);
2338
2339 set_recommended_min_free_kbytes();
2340 } else if (khugepaged_thread) {
2341 kthread_stop(khugepaged_thread);
2342 khugepaged_thread = NULL;
2343 }
2344fail:
2345 mutex_unlock(&khugepaged_mutex);
2346 return err;
2347}
Vijay Balakrishna4aab2be2020-10-10 23:16:40 -07002348
2349void khugepaged_min_free_kbytes_update(void)
2350{
2351 mutex_lock(&khugepaged_mutex);
2352 if (khugepaged_enabled() && khugepaged_thread)
2353 set_recommended_min_free_kbytes();
2354 mutex_unlock(&khugepaged_mutex);
2355}