blob: b0412be08fa2c5cbb0a21057b30b1351bbf7b820 [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{
Miaohe Line6be37b2021-06-30 18:47:50 -0700445 if (!transhuge_vma_enabled(vma, vm_flags))
Yang Shic2231022018-08-17 15:45:26 -0700446 return false;
Song Liu99cb0db2019-09-23 15:38:00 -0700447
Rik van Rielcd89fb02021-02-25 17:16:25 -0800448 /* Enabled via shmem mount options or sysfs settings. */
449 if (shmem_file(vma->vm_file) && shmem_huge_enabled(vma)) {
Yang Shic2231022018-08-17 15:45:26 -0700450 return IS_ALIGNED((vma->vm_start >> PAGE_SHIFT) - vma->vm_pgoff,
451 HPAGE_PMD_NR);
452 }
Rik van Rielcd89fb02021-02-25 17:16:25 -0800453
454 /* THP settings require madvise. */
455 if (!(vm_flags & VM_HUGEPAGE) && !khugepaged_always())
456 return false;
457
458 /* Read-only file mappings need to be aligned for THP to work. */
459 if (IS_ENABLED(CONFIG_READ_ONLY_THP_FOR_FS) && vma->vm_file &&
Collin Fijalkovicheb6ecbe2021-06-30 18:51:32 -0700460 !inode_is_open_for_write(vma->vm_file->f_inode) &&
461 (vm_flags & VM_EXEC)) {
Rik van Rielcd89fb02021-02-25 17:16:25 -0800462 return IS_ALIGNED((vma->vm_start >> PAGE_SHIFT) - vma->vm_pgoff,
463 HPAGE_PMD_NR);
464 }
465
Yang Shic2231022018-08-17 15:45:26 -0700466 if (!vma->anon_vma || vma->vm_ops)
467 return false;
Anshuman Khandual222100e2020-04-01 21:07:52 -0700468 if (vma_is_temporary_stack(vma))
Yang Shic2231022018-08-17 15:45:26 -0700469 return false;
Song Liu50f8b922018-08-17 15:47:00 -0700470 return !(vm_flags & VM_NO_KHUGEPAGED);
Yang Shic2231022018-08-17 15:45:26 -0700471}
472
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700473int __khugepaged_enter(struct mm_struct *mm)
474{
475 struct mm_slot *mm_slot;
476 int wakeup;
477
478 mm_slot = alloc_mm_slot();
479 if (!mm_slot)
480 return -ENOMEM;
481
482 /* __khugepaged_exit() must not run from under us */
Miaohe Lin28ff0a32021-05-04 18:33:43 -0700483 VM_BUG_ON_MM(khugepaged_test_exit(mm), mm);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700484 if (unlikely(test_and_set_bit(MMF_VM_HUGEPAGE, &mm->flags))) {
485 free_mm_slot(mm_slot);
486 return 0;
487 }
488
489 spin_lock(&khugepaged_mm_lock);
490 insert_to_mm_slots_hash(mm, mm_slot);
491 /*
492 * Insert just behind the scanning cursor, to let the area settle
493 * down a little.
494 */
495 wakeup = list_empty(&khugepaged_scan.mm_head);
496 list_add_tail(&mm_slot->mm_node, &khugepaged_scan.mm_head);
497 spin_unlock(&khugepaged_mm_lock);
498
Vegard Nossumf1f10072017-02-27 14:30:07 -0800499 mmgrab(mm);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700500 if (wakeup)
501 wake_up_interruptible(&khugepaged_wait);
502
503 return 0;
504}
505
506int khugepaged_enter_vma_merge(struct vm_area_struct *vma,
507 unsigned long vm_flags)
508{
509 unsigned long hstart, hend;
Yang Shic2231022018-08-17 15:45:26 -0700510
511 /*
Song Liu99cb0db2019-09-23 15:38:00 -0700512 * khugepaged only supports read-only files for non-shmem files.
513 * khugepaged does not yet work on special mappings. And
514 * file-private shmem THP is not supported.
Yang Shic2231022018-08-17 15:45:26 -0700515 */
Song Liu50f8b922018-08-17 15:47:00 -0700516 if (!hugepage_vma_check(vma, vm_flags))
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700517 return 0;
Yang Shic2231022018-08-17 15:45:26 -0700518
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700519 hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
520 hend = vma->vm_end & HPAGE_PMD_MASK;
521 if (hstart < hend)
522 return khugepaged_enter(vma, vm_flags);
523 return 0;
524}
525
526void __khugepaged_exit(struct mm_struct *mm)
527{
528 struct mm_slot *mm_slot;
529 int free = 0;
530
531 spin_lock(&khugepaged_mm_lock);
532 mm_slot = get_mm_slot(mm);
533 if (mm_slot && khugepaged_scan.mm_slot != mm_slot) {
534 hash_del(&mm_slot->hash);
535 list_del(&mm_slot->mm_node);
536 free = 1;
537 }
538 spin_unlock(&khugepaged_mm_lock);
539
540 if (free) {
541 clear_bit(MMF_VM_HUGEPAGE, &mm->flags);
542 free_mm_slot(mm_slot);
543 mmdrop(mm);
544 } else if (mm_slot) {
545 /*
546 * This is required to serialize against
547 * khugepaged_test_exit() (which is guaranteed to run
548 * under mmap sem read mode). Stop here (after we
549 * return all pagetables will be destroyed) until
550 * khugepaged has finished working on the pagetables
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700551 * under the mmap_lock.
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700552 */
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700553 mmap_write_lock(mm);
554 mmap_write_unlock(mm);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700555 }
556}
557
558static void release_pte_page(struct page *page)
559{
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700560 mod_node_page_state(page_pgdat(page),
561 NR_ISOLATED_ANON + page_is_file_lru(page),
562 -compound_nr(page));
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700563 unlock_page(page);
564 putback_lru_page(page);
565}
566
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700567static void release_pte_pages(pte_t *pte, pte_t *_pte,
568 struct list_head *compound_pagelist)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700569{
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700570 struct page *page, *tmp;
571
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700572 while (--_pte >= pte) {
573 pte_t pteval = *_pte;
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700574
575 page = pte_page(pteval);
576 if (!pte_none(pteval) && !is_zero_pfn(pte_pfn(pteval)) &&
577 !PageCompound(page))
578 release_pte_page(page);
579 }
580
581 list_for_each_entry_safe(page, tmp, compound_pagelist, lru) {
582 list_del(&page->lru);
583 release_pte_page(page);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700584 }
585}
586
Kirill A. Shutemov94456892020-06-03 16:00:20 -0700587static bool is_refcount_suitable(struct page *page)
588{
589 int expected_refcount;
590
591 expected_refcount = total_mapcount(page);
592 if (PageSwapCache(page))
593 expected_refcount += compound_nr(page);
594
595 return page_count(page) == expected_refcount;
596}
597
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700598static int __collapse_huge_page_isolate(struct vm_area_struct *vma,
599 unsigned long address,
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700600 pte_t *pte,
601 struct list_head *compound_pagelist)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700602{
603 struct page *page = NULL;
604 pte_t *_pte;
Kirill A. Shutemov71a2c112020-06-03 16:00:30 -0700605 int none_or_zero = 0, shared = 0, result = 0, referenced = 0;
Ebru Akagunduz0db501f2016-07-26 15:26:46 -0700606 bool writable = false;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700607
608 for (_pte = pte; _pte < pte+HPAGE_PMD_NR;
609 _pte++, address += PAGE_SIZE) {
610 pte_t pteval = *_pte;
611 if (pte_none(pteval) || (pte_present(pteval) &&
612 is_zero_pfn(pte_pfn(pteval)))) {
613 if (!userfaultfd_armed(vma) &&
614 ++none_or_zero <= khugepaged_max_ptes_none) {
615 continue;
616 } else {
617 result = SCAN_EXCEED_NONE_PTE;
618 goto out;
619 }
620 }
621 if (!pte_present(pteval)) {
622 result = SCAN_PTE_NON_PRESENT;
623 goto out;
624 }
625 page = vm_normal_page(vma, address, pteval);
626 if (unlikely(!page)) {
627 result = SCAN_PAGE_NULL;
628 goto out;
629 }
630
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700631 VM_BUG_ON_PAGE(!PageAnon(page), page);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700632
Kirill A. Shutemov71a2c112020-06-03 16:00:30 -0700633 if (page_mapcount(page) > 1 &&
634 ++shared > khugepaged_max_ptes_shared) {
635 result = SCAN_EXCEED_SHARED_PTE;
636 goto out;
637 }
638
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700639 if (PageCompound(page)) {
640 struct page *p;
641 page = compound_head(page);
642
643 /*
644 * Check if we have dealt with the compound page
645 * already
646 */
647 list_for_each_entry(p, compound_pagelist, lru) {
648 if (page == p)
649 goto next;
650 }
651 }
652
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700653 /*
654 * We can do it before isolate_lru_page because the
655 * page can't be freed from under us. NOTE: PG_lock
656 * is needed to serialize against split_huge_page
657 * when invoked from the VM.
658 */
659 if (!trylock_page(page)) {
660 result = SCAN_PAGE_LOCK;
661 goto out;
662 }
663
664 /*
Kirill A. Shutemov94456892020-06-03 16:00:20 -0700665 * Check if the page has any GUP (or other external) pins.
666 *
667 * The page table that maps the page has been already unlinked
668 * from the page table tree and this process cannot get
Ingo Molnarf0953a12021-05-06 18:06:47 -0700669 * an additional pin on the page.
Kirill A. Shutemov94456892020-06-03 16:00:20 -0700670 *
671 * New pins can come later if the page is shared across fork,
672 * but not from this process. The other process cannot write to
673 * the page, only trigger CoW.
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700674 */
Kirill A. Shutemov94456892020-06-03 16:00:20 -0700675 if (!is_refcount_suitable(page)) {
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700676 unlock_page(page);
677 result = SCAN_PAGE_COUNT;
678 goto out;
679 }
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700680 if (!pte_write(pteval) && PageSwapCache(page) &&
681 !reuse_swap_page(page, NULL)) {
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700682 /*
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700683 * Page is in the swap cache and cannot be re-used.
684 * It cannot be collapsed into a THP.
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700685 */
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700686 unlock_page(page);
687 result = SCAN_SWAP_CACHE_PAGE;
688 goto out;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700689 }
690
691 /*
692 * Isolate the page to avoid collapsing an hugepage
693 * currently in use by the VM.
694 */
695 if (isolate_lru_page(page)) {
696 unlock_page(page);
697 result = SCAN_DEL_PAGE_LRU;
698 goto out;
699 }
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700700 mod_node_page_state(page_pgdat(page),
701 NR_ISOLATED_ANON + page_is_file_lru(page),
702 compound_nr(page));
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700703 VM_BUG_ON_PAGE(!PageLocked(page), page);
704 VM_BUG_ON_PAGE(PageLRU(page), page);
705
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700706 if (PageCompound(page))
707 list_add_tail(&page->lru, compound_pagelist);
708next:
Ebru Akagunduz0db501f2016-07-26 15:26:46 -0700709 /* There should be enough young pte to collapse the page */
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700710 if (pte_young(pteval) ||
711 page_is_young(page) || PageReferenced(page) ||
712 mmu_notifier_test_young(vma->vm_mm, address))
Ebru Akagunduz0db501f2016-07-26 15:26:46 -0700713 referenced++;
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700714
715 if (pte_write(pteval))
716 writable = true;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700717 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700718
Miaohe Lin74e579b2021-05-04 18:33:46 -0700719 if (unlikely(!writable)) {
720 result = SCAN_PAGE_RO;
721 } else if (unlikely(!referenced)) {
722 result = SCAN_LACK_REFERENCED_PAGE;
723 } else {
724 result = SCAN_SUCCEED;
725 trace_mm_collapse_huge_page_isolate(page, none_or_zero,
726 referenced, writable, result);
727 return 1;
728 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700729out:
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700730 release_pte_pages(pte, _pte, compound_pagelist);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700731 trace_mm_collapse_huge_page_isolate(page, none_or_zero,
732 referenced, writable, result);
733 return 0;
734}
735
736static void __collapse_huge_page_copy(pte_t *pte, struct page *page,
737 struct vm_area_struct *vma,
738 unsigned long address,
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700739 spinlock_t *ptl,
740 struct list_head *compound_pagelist)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700741{
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700742 struct page *src_page, *tmp;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700743 pte_t *_pte;
David Rientjes338a16b2017-05-12 15:47:03 -0700744 for (_pte = pte; _pte < pte + HPAGE_PMD_NR;
745 _pte++, page++, address += PAGE_SIZE) {
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700746 pte_t pteval = *_pte;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700747
748 if (pte_none(pteval) || is_zero_pfn(pte_pfn(pteval))) {
749 clear_user_highpage(page, address);
750 add_mm_counter(vma->vm_mm, MM_ANONPAGES, 1);
751 if (is_zero_pfn(pte_pfn(pteval))) {
752 /*
753 * ptl mostly unnecessary.
754 */
755 spin_lock(ptl);
756 /*
757 * paravirt calls inside pte_clear here are
758 * superfluous.
759 */
760 pte_clear(vma->vm_mm, address, _pte);
761 spin_unlock(ptl);
762 }
763 } else {
764 src_page = pte_page(pteval);
765 copy_user_highpage(page, src_page, address, vma);
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700766 if (!PageCompound(src_page))
767 release_pte_page(src_page);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700768 /*
769 * ptl mostly unnecessary, but preempt has to
770 * be disabled to update the per-cpu stats
771 * inside page_remove_rmap().
772 */
773 spin_lock(ptl);
774 /*
775 * paravirt calls inside pte_clear here are
776 * superfluous.
777 */
778 pte_clear(vma->vm_mm, address, _pte);
779 page_remove_rmap(src_page, false);
780 spin_unlock(ptl);
781 free_page_and_swap_cache(src_page);
782 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700783 }
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -0700784
785 list_for_each_entry_safe(src_page, tmp, compound_pagelist, lru) {
786 list_del(&src_page->lru);
787 release_pte_page(src_page);
788 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700789}
790
791static void khugepaged_alloc_sleep(void)
792{
793 DEFINE_WAIT(wait);
794
795 add_wait_queue(&khugepaged_wait, &wait);
796 freezable_schedule_timeout_interruptible(
797 msecs_to_jiffies(khugepaged_alloc_sleep_millisecs));
798 remove_wait_queue(&khugepaged_wait, &wait);
799}
800
801static int khugepaged_node_load[MAX_NUMNODES];
802
803static bool khugepaged_scan_abort(int nid)
804{
805 int i;
806
807 /*
Mel Gormana5f5f912016-07-28 15:46:32 -0700808 * If node_reclaim_mode is disabled, then no extra effort is made to
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700809 * allocate memory locally.
810 */
Dave Hansen202e35d2021-05-04 18:36:04 -0700811 if (!node_reclaim_enabled())
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700812 return false;
813
814 /* If there is a count for this node already, it must be acceptable */
815 if (khugepaged_node_load[nid])
816 return false;
817
818 for (i = 0; i < MAX_NUMNODES; i++) {
819 if (!khugepaged_node_load[i])
820 continue;
Matt Fleminga55c7452019-08-08 20:53:01 +0100821 if (node_distance(nid, i) > node_reclaim_distance)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700822 return true;
823 }
824 return false;
825}
826
827/* Defrag for khugepaged will enter direct reclaim/compaction if necessary */
828static inline gfp_t alloc_hugepage_khugepaged_gfpmask(void)
829{
Vlastimil Babka25160352016-07-28 15:49:25 -0700830 return khugepaged_defrag() ? GFP_TRANSHUGE : GFP_TRANSHUGE_LIGHT;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700831}
832
833#ifdef CONFIG_NUMA
834static int khugepaged_find_target_node(void)
835{
836 static int last_khugepaged_target_node = NUMA_NO_NODE;
837 int nid, target_node = 0, max_value = 0;
838
839 /* find first node with max normal pages hit */
840 for (nid = 0; nid < MAX_NUMNODES; nid++)
841 if (khugepaged_node_load[nid] > max_value) {
842 max_value = khugepaged_node_load[nid];
843 target_node = nid;
844 }
845
846 /* do some balance if several nodes have the same hit record */
847 if (target_node <= last_khugepaged_target_node)
848 for (nid = last_khugepaged_target_node + 1; nid < MAX_NUMNODES;
849 nid++)
850 if (max_value == khugepaged_node_load[nid]) {
851 target_node = nid;
852 break;
853 }
854
855 last_khugepaged_target_node = target_node;
856 return target_node;
857}
858
859static bool khugepaged_prealloc_page(struct page **hpage, bool *wait)
860{
861 if (IS_ERR(*hpage)) {
862 if (!*wait)
863 return false;
864
865 *wait = false;
866 *hpage = NULL;
867 khugepaged_alloc_sleep();
868 } else if (*hpage) {
869 put_page(*hpage);
870 *hpage = NULL;
871 }
872
873 return true;
874}
875
876static struct page *
Kirill A. Shutemov988ddb72016-07-26 15:26:26 -0700877khugepaged_alloc_page(struct page **hpage, gfp_t gfp, int node)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700878{
879 VM_BUG_ON_PAGE(*hpage, *hpage);
880
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700881 *hpage = __alloc_pages_node(node, gfp, HPAGE_PMD_ORDER);
882 if (unlikely(!*hpage)) {
883 count_vm_event(THP_COLLAPSE_ALLOC_FAILED);
884 *hpage = ERR_PTR(-ENOMEM);
885 return NULL;
886 }
887
888 prep_transhuge_page(*hpage);
889 count_vm_event(THP_COLLAPSE_ALLOC);
890 return *hpage;
891}
892#else
893static int khugepaged_find_target_node(void)
894{
895 return 0;
896}
897
898static inline struct page *alloc_khugepaged_hugepage(void)
899{
900 struct page *page;
901
902 page = alloc_pages(alloc_hugepage_khugepaged_gfpmask(),
903 HPAGE_PMD_ORDER);
904 if (page)
905 prep_transhuge_page(page);
906 return page;
907}
908
909static struct page *khugepaged_alloc_hugepage(bool *wait)
910{
911 struct page *hpage;
912
913 do {
914 hpage = alloc_khugepaged_hugepage();
915 if (!hpage) {
916 count_vm_event(THP_COLLAPSE_ALLOC_FAILED);
917 if (!*wait)
918 return NULL;
919
920 *wait = false;
921 khugepaged_alloc_sleep();
922 } else
923 count_vm_event(THP_COLLAPSE_ALLOC);
924 } while (unlikely(!hpage) && likely(khugepaged_enabled()));
925
926 return hpage;
927}
928
929static bool khugepaged_prealloc_page(struct page **hpage, bool *wait)
930{
Hugh Dickins033b5d72020-10-09 20:07:59 -0700931 /*
932 * If the hpage allocated earlier was briefly exposed in page cache
933 * before collapse_file() failed, it is possible that racing lookups
934 * have not yet completed, and would then be unpleasantly surprised by
935 * finding the hpage reused for the same mapping at a different offset.
936 * Just release the previous allocation if there is any danger of that.
937 */
938 if (*hpage && page_count(*hpage) > 1) {
939 put_page(*hpage);
940 *hpage = NULL;
941 }
942
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700943 if (!*hpage)
944 *hpage = khugepaged_alloc_hugepage(wait);
945
946 if (unlikely(!*hpage))
947 return false;
948
949 return true;
950}
951
952static struct page *
Kirill A. Shutemov988ddb72016-07-26 15:26:26 -0700953khugepaged_alloc_page(struct page **hpage, gfp_t gfp, int node)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700954{
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700955 VM_BUG_ON(!*hpage);
956
957 return *hpage;
958}
959#endif
960
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700961/*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700962 * If mmap_lock temporarily dropped, revalidate vma
963 * before taking mmap_lock.
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700964 * Return 0 if succeeds, otherwise return none-zero
965 * value (scan code).
966 */
967
Kirill A. Shutemovc131f752016-09-19 14:44:01 -0700968static int hugepage_vma_revalidate(struct mm_struct *mm, unsigned long address,
969 struct vm_area_struct **vmap)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700970{
971 struct vm_area_struct *vma;
972 unsigned long hstart, hend;
973
974 if (unlikely(khugepaged_test_exit(mm)))
975 return SCAN_ANY_PROCESS;
976
Kirill A. Shutemovc131f752016-09-19 14:44:01 -0700977 *vmap = vma = find_vma(mm, address);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700978 if (!vma)
979 return SCAN_VMA_NULL;
980
981 hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
982 hend = vma->vm_end & HPAGE_PMD_MASK;
983 if (address < hstart || address + HPAGE_PMD_SIZE > hend)
984 return SCAN_ADDRESS_RANGE;
Song Liu50f8b922018-08-17 15:47:00 -0700985 if (!hugepage_vma_check(vma, vma->vm_flags))
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700986 return SCAN_VMA_CHECK;
Kirill A. Shutemov594cced2020-07-23 21:15:34 -0700987 /* Anon VMA expected */
988 if (!vma->anon_vma || vma->vm_ops)
989 return SCAN_VMA_CHECK;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700990 return 0;
991}
992
993/*
994 * Bring missing pages in from swap, to complete THP collapse.
995 * Only done if khugepaged_scan_pmd believes it is worthwhile.
996 *
997 * Called and returns without pte mapped or spinlocks held,
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700998 * but with mmap_lock held to protect against vma changes.
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700999 */
1000
1001static bool __collapse_huge_page_swapin(struct mm_struct *mm,
1002 struct vm_area_struct *vma,
Will Deacon2b635dd2021-01-14 15:33:49 +00001003 unsigned long haddr, pmd_t *pmd,
Ebru Akagunduz0db501f2016-07-26 15:26:46 -07001004 int referenced)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001005{
Souptick Joarder2b740302018-08-23 17:01:36 -07001006 int swapped_in = 0;
1007 vm_fault_t ret = 0;
Will Deacon2b635dd2021-01-14 15:33:49 +00001008 unsigned long address, end = haddr + (HPAGE_PMD_NR * PAGE_SIZE);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001009
Will Deacon2b635dd2021-01-14 15:33:49 +00001010 for (address = haddr; address < end; address += PAGE_SIZE) {
1011 struct vm_fault vmf = {
1012 .vma = vma,
1013 .address = address,
1014 .pgoff = linear_page_index(vma, haddr),
1015 .flags = FAULT_FLAG_ALLOW_RETRY,
1016 .pmd = pmd,
1017 };
1018
1019 vmf.pte = pte_offset_map(pmd, address);
Jan Kara29943022016-12-14 15:07:16 -08001020 vmf.orig_pte = *vmf.pte;
Will Deacon2b635dd2021-01-14 15:33:49 +00001021 if (!is_swap_pte(vmf.orig_pte)) {
1022 pte_unmap(vmf.pte);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001023 continue;
Will Deacon2b635dd2021-01-14 15:33:49 +00001024 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001025 swapped_in++;
Jan Kara29943022016-12-14 15:07:16 -08001026 ret = do_swap_page(&vmf);
Ebru Akagunduz0db501f2016-07-26 15:26:46 -07001027
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001028 /* do_swap_page returns VM_FAULT_RETRY with released mmap_lock */
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001029 if (ret & VM_FAULT_RETRY) {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001030 mmap_read_lock(mm);
Will Deacon2b635dd2021-01-14 15:33:49 +00001031 if (hugepage_vma_revalidate(mm, haddr, &vma)) {
Ebru Akagunduz47f863e2016-07-26 15:26:43 -07001032 /* vma is no longer available, don't continue to swapin */
Ebru Akagunduz0db501f2016-07-26 15:26:46 -07001033 trace_mm_collapse_huge_page_swapin(mm, swapped_in, referenced, 0);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001034 return false;
Ebru Akagunduz47f863e2016-07-26 15:26:43 -07001035 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001036 /* check if the pmd is still valid */
Will Deacon2b635dd2021-01-14 15:33:49 +00001037 if (mm_find_pmd(mm, haddr) != pmd) {
SeongJae Park835152a2017-05-12 15:46:38 -07001038 trace_mm_collapse_huge_page_swapin(mm, swapped_in, referenced, 0);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001039 return false;
SeongJae Park835152a2017-05-12 15:46:38 -07001040 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001041 }
1042 if (ret & VM_FAULT_ERROR) {
Ebru Akagunduz0db501f2016-07-26 15:26:46 -07001043 trace_mm_collapse_huge_page_swapin(mm, swapped_in, referenced, 0);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001044 return false;
1045 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001046 }
Kirill A. Shutemovae2c5d82020-06-03 16:00:17 -07001047
1048 /* Drain LRU add pagevec to remove extra pin on the swapped in pages */
1049 if (swapped_in)
1050 lru_add_drain();
1051
Ebru Akagunduz0db501f2016-07-26 15:26:46 -07001052 trace_mm_collapse_huge_page_swapin(mm, swapped_in, referenced, 1);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001053 return true;
1054}
1055
1056static void collapse_huge_page(struct mm_struct *mm,
1057 unsigned long address,
1058 struct page **hpage,
Kirill A. Shutemovffe945e2020-06-03 16:00:09 -07001059 int node, int referenced, int unmapped)
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001060{
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -07001061 LIST_HEAD(compound_pagelist);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001062 pmd_t *pmd, _pmd;
1063 pte_t *pte;
1064 pgtable_t pgtable;
1065 struct page *new_page;
1066 spinlock_t *pmd_ptl, *pte_ptl;
1067 int isolated = 0, result = 0;
Kirill A. Shutemovc131f752016-09-19 14:44:01 -07001068 struct vm_area_struct *vma;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001069 struct mmu_notifier_range range;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001070 gfp_t gfp;
1071
1072 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
1073
1074 /* Only allocate from the target node */
Michal Hocko41b61672017-01-10 16:57:42 -08001075 gfp = alloc_hugepage_khugepaged_gfpmask() | __GFP_THISNODE;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001076
Kirill A. Shutemov988ddb72016-07-26 15:26:26 -07001077 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001078 * Before allocating the hugepage, release the mmap_lock read lock.
Kirill A. Shutemov988ddb72016-07-26 15:26:26 -07001079 * The allocation can take potentially a long time if it involves
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001080 * sync compaction, and we do not need to hold the mmap_lock during
Kirill A. Shutemov988ddb72016-07-26 15:26:26 -07001081 * that. We will recheck the vma after taking it again in write mode.
1082 */
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001083 mmap_read_unlock(mm);
Kirill A. Shutemov988ddb72016-07-26 15:26:26 -07001084 new_page = khugepaged_alloc_page(hpage, gfp, node);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001085 if (!new_page) {
1086 result = SCAN_ALLOC_HUGE_PAGE_FAIL;
1087 goto out_nolock;
1088 }
1089
Johannes Weinerd9eb1ea2020-06-03 16:02:24 -07001090 if (unlikely(mem_cgroup_charge(new_page, mm, gfp))) {
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001091 result = SCAN_CGROUP_CHARGE_FAIL;
1092 goto out_nolock;
1093 }
Johannes Weiner9d82c692020-06-03 16:02:04 -07001094 count_memcg_page_event(new_page, THP_COLLAPSE_ALLOC);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001095
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001096 mmap_read_lock(mm);
Kirill A. Shutemovc131f752016-09-19 14:44:01 -07001097 result = hugepage_vma_revalidate(mm, address, &vma);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001098 if (result) {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001099 mmap_read_unlock(mm);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001100 goto out_nolock;
1101 }
1102
1103 pmd = mm_find_pmd(mm, address);
1104 if (!pmd) {
1105 result = SCAN_PMD_NULL;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001106 mmap_read_unlock(mm);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001107 goto out_nolock;
1108 }
1109
1110 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001111 * __collapse_huge_page_swapin always returns with mmap_lock locked.
1112 * If it fails, we release mmap_lock and jump out_nolock.
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001113 * Continuing to collapse causes inconsistency.
1114 */
Kirill A. Shutemovffe945e2020-06-03 16:00:09 -07001115 if (unmapped && !__collapse_huge_page_swapin(mm, vma, address,
1116 pmd, referenced)) {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001117 mmap_read_unlock(mm);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001118 goto out_nolock;
1119 }
1120
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001121 mmap_read_unlock(mm);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001122 /*
1123 * Prevent all access to pagetables with the exception of
1124 * gup_fast later handled by the ptep_clear_flush and the VM
1125 * handled by the anon_vma lock + PG_lock.
1126 */
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001127 mmap_write_lock(mm);
Kirill A. Shutemovc131f752016-09-19 14:44:01 -07001128 result = hugepage_vma_revalidate(mm, address, &vma);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001129 if (result)
Miaohe Lin18d24a72021-05-04 18:34:17 -07001130 goto out_up_write;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001131 /* check if the pmd is still valid */
1132 if (mm_find_pmd(mm, address) != pmd)
Miaohe Lin18d24a72021-05-04 18:34:17 -07001133 goto out_up_write;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001134
1135 anon_vma_lock_write(vma->anon_vma);
1136
Jérôme Glisse7269f992019-05-13 17:20:53 -07001137 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, NULL, mm,
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07001138 address, address + HPAGE_PMD_SIZE);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001139 mmu_notifier_invalidate_range_start(&range);
Ville Syrjäläec649c9d2019-11-05 21:16:48 -08001140
1141 pte = pte_offset_map(pmd, address);
1142 pte_ptl = pte_lockptr(mm, pmd);
1143
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001144 pmd_ptl = pmd_lock(mm, pmd); /* probably unnecessary */
1145 /*
1146 * After this gup_fast can't run anymore. This also removes
1147 * any huge TLB entry from the CPU so we won't allow
1148 * huge and small TLB entries for the same virtual address
1149 * to avoid the risk of CPU bugs in that area.
1150 */
1151 _pmd = pmdp_collapse_flush(vma, address, pmd);
1152 spin_unlock(pmd_ptl);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001153 mmu_notifier_invalidate_range_end(&range);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001154
1155 spin_lock(pte_ptl);
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -07001156 isolated = __collapse_huge_page_isolate(vma, address, pte,
1157 &compound_pagelist);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001158 spin_unlock(pte_ptl);
1159
1160 if (unlikely(!isolated)) {
1161 pte_unmap(pte);
1162 spin_lock(pmd_ptl);
1163 BUG_ON(!pmd_none(*pmd));
1164 /*
1165 * We can only use set_pmd_at when establishing
1166 * hugepmds and never for establishing regular pmds that
1167 * points to regular pagetables. Use pmd_populate for that
1168 */
1169 pmd_populate(mm, pmd, pmd_pgtable(_pmd));
1170 spin_unlock(pmd_ptl);
1171 anon_vma_unlock_write(vma->anon_vma);
1172 result = SCAN_FAIL;
Miaohe Lin18d24a72021-05-04 18:34:17 -07001173 goto out_up_write;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001174 }
1175
1176 /*
1177 * All pages are isolated and locked so anon_vma rmap
1178 * can't run anymore.
1179 */
1180 anon_vma_unlock_write(vma->anon_vma);
1181
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -07001182 __collapse_huge_page_copy(pte, new_page, vma, address, pte_ptl,
1183 &compound_pagelist);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001184 pte_unmap(pte);
Miaohe Lin588d01f2021-05-04 18:33:40 -07001185 /*
1186 * spin_lock() below is not the equivalent of smp_wmb(), but
1187 * the smp_wmb() inside __SetPageUptodate() can be reused to
1188 * avoid the copy_huge_page writes to become visible after
1189 * the set_pmd_at() write.
1190 */
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001191 __SetPageUptodate(new_page);
1192 pgtable = pmd_pgtable(_pmd);
1193
1194 _pmd = mk_huge_pmd(new_page, vma->vm_page_prot);
Linus Torvaldsf55e1012017-11-29 09:01:01 -08001195 _pmd = maybe_pmd_mkwrite(pmd_mkdirty(_pmd), vma);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001196
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001197 spin_lock(pmd_ptl);
1198 BUG_ON(!pmd_none(*pmd));
Johannes Weinerbe5d0a72020-06-03 16:01:57 -07001199 page_add_new_anon_rmap(new_page, vma, address, true);
Joonsoo Kimb5181542020-08-11 18:30:40 -07001200 lru_cache_add_inactive_or_unevictable(new_page, vma);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001201 pgtable_trans_huge_deposit(mm, pmd, pgtable);
1202 set_pmd_at(mm, address, pmd, _pmd);
1203 update_mmu_cache_pmd(vma, address, pmd);
1204 spin_unlock(pmd_ptl);
1205
1206 *hpage = NULL;
1207
1208 khugepaged_pages_collapsed++;
1209 result = SCAN_SUCCEED;
1210out_up_write:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001211 mmap_write_unlock(mm);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001212out_nolock:
Johannes Weiner9d82c692020-06-03 16:02:04 -07001213 if (!IS_ERR_OR_NULL(*hpage))
1214 mem_cgroup_uncharge(*hpage);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001215 trace_mm_collapse_huge_page(mm, isolated, result);
1216 return;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001217}
1218
1219static int khugepaged_scan_pmd(struct mm_struct *mm,
1220 struct vm_area_struct *vma,
1221 unsigned long address,
1222 struct page **hpage)
1223{
1224 pmd_t *pmd;
1225 pte_t *pte, *_pte;
Kirill A. Shutemov71a2c112020-06-03 16:00:30 -07001226 int ret = 0, result = 0, referenced = 0;
1227 int none_or_zero = 0, shared = 0;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001228 struct page *page = NULL;
1229 unsigned long _address;
1230 spinlock_t *ptl;
1231 int node = NUMA_NO_NODE, unmapped = 0;
Ebru Akagunduz0db501f2016-07-26 15:26:46 -07001232 bool writable = false;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001233
1234 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
1235
1236 pmd = mm_find_pmd(mm, address);
1237 if (!pmd) {
1238 result = SCAN_PMD_NULL;
1239 goto out;
1240 }
1241
1242 memset(khugepaged_node_load, 0, sizeof(khugepaged_node_load));
1243 pte = pte_offset_map_lock(mm, pmd, address, &ptl);
1244 for (_address = address, _pte = pte; _pte < pte+HPAGE_PMD_NR;
1245 _pte++, _address += PAGE_SIZE) {
1246 pte_t pteval = *_pte;
1247 if (is_swap_pte(pteval)) {
1248 if (++unmapped <= khugepaged_max_ptes_swap) {
Peter Xue1e267c2020-04-06 20:06:04 -07001249 /*
1250 * Always be strict with uffd-wp
1251 * enabled swap entries. Please see
1252 * comment below for pte_uffd_wp().
1253 */
1254 if (pte_swp_uffd_wp(pteval)) {
1255 result = SCAN_PTE_UFFD_WP;
1256 goto out_unmap;
1257 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001258 continue;
1259 } else {
1260 result = SCAN_EXCEED_SWAP_PTE;
1261 goto out_unmap;
1262 }
1263 }
1264 if (pte_none(pteval) || is_zero_pfn(pte_pfn(pteval))) {
1265 if (!userfaultfd_armed(vma) &&
1266 ++none_or_zero <= khugepaged_max_ptes_none) {
1267 continue;
1268 } else {
1269 result = SCAN_EXCEED_NONE_PTE;
1270 goto out_unmap;
1271 }
1272 }
Peter Xue1e267c2020-04-06 20:06:04 -07001273 if (pte_uffd_wp(pteval)) {
1274 /*
1275 * Don't collapse the page if any of the small
1276 * PTEs are armed with uffd write protection.
1277 * Here we can also mark the new huge pmd as
1278 * write protected if any of the small ones is
Haitao Shi8958b242020-12-15 20:47:26 -08001279 * marked but that could bring unknown
Peter Xue1e267c2020-04-06 20:06:04 -07001280 * userfault messages that falls outside of
1281 * the registered range. So, just be simple.
1282 */
1283 result = SCAN_PTE_UFFD_WP;
1284 goto out_unmap;
1285 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001286 if (pte_write(pteval))
1287 writable = true;
1288
1289 page = vm_normal_page(vma, _address, pteval);
1290 if (unlikely(!page)) {
1291 result = SCAN_PAGE_NULL;
1292 goto out_unmap;
1293 }
1294
Kirill A. Shutemov71a2c112020-06-03 16:00:30 -07001295 if (page_mapcount(page) > 1 &&
1296 ++shared > khugepaged_max_ptes_shared) {
1297 result = SCAN_EXCEED_SHARED_PTE;
1298 goto out_unmap;
1299 }
1300
Kirill A. Shutemov5503fbf2020-06-03 16:00:23 -07001301 page = compound_head(page);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001302
1303 /*
1304 * Record which node the original page is from and save this
1305 * information to khugepaged_node_load[].
1306 * Khupaged will allocate hugepage from the node has the max
1307 * hit record.
1308 */
1309 node = page_to_nid(page);
1310 if (khugepaged_scan_abort(node)) {
1311 result = SCAN_SCAN_ABORT;
1312 goto out_unmap;
1313 }
1314 khugepaged_node_load[node]++;
1315 if (!PageLRU(page)) {
1316 result = SCAN_PAGE_LRU;
1317 goto out_unmap;
1318 }
1319 if (PageLocked(page)) {
1320 result = SCAN_PAGE_LOCK;
1321 goto out_unmap;
1322 }
1323 if (!PageAnon(page)) {
1324 result = SCAN_PAGE_ANON;
1325 goto out_unmap;
1326 }
1327
1328 /*
Kirill A. Shutemov94456892020-06-03 16:00:20 -07001329 * Check if the page has any GUP (or other external) pins.
1330 *
1331 * Here the check is racy it may see totmal_mapcount > refcount
1332 * in some cases.
1333 * For example, one process with one forked child process.
1334 * The parent has the PMD split due to MADV_DONTNEED, then
1335 * the child is trying unmap the whole PMD, but khugepaged
1336 * may be scanning the parent between the child has
1337 * PageDoubleMap flag cleared and dec the mapcount. So
1338 * khugepaged may see total_mapcount > refcount.
1339 *
1340 * But such case is ephemeral we could always retry collapse
1341 * later. However it may report false positive if the page
1342 * has excessive GUP pins (i.e. 512). Anyway the same check
1343 * will be done again later the risk seems low.
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001344 */
Kirill A. Shutemov94456892020-06-03 16:00:20 -07001345 if (!is_refcount_suitable(page)) {
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001346 result = SCAN_PAGE_COUNT;
1347 goto out_unmap;
1348 }
1349 if (pte_young(pteval) ||
1350 page_is_young(page) || PageReferenced(page) ||
1351 mmu_notifier_test_young(vma->vm_mm, address))
Ebru Akagunduz0db501f2016-07-26 15:26:46 -07001352 referenced++;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001353 }
Kirill A. Shutemovffe945e2020-06-03 16:00:09 -07001354 if (!writable) {
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001355 result = SCAN_PAGE_RO;
Kirill A. Shutemovffe945e2020-06-03 16:00:09 -07001356 } else if (!referenced || (unmapped && referenced < HPAGE_PMD_NR/2)) {
1357 result = SCAN_LACK_REFERENCED_PAGE;
1358 } else {
1359 result = SCAN_SUCCEED;
1360 ret = 1;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001361 }
1362out_unmap:
1363 pte_unmap_unlock(pte, ptl);
1364 if (ret) {
1365 node = khugepaged_find_target_node();
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001366 /* collapse_huge_page will return with the mmap_lock released */
Kirill A. Shutemovffe945e2020-06-03 16:00:09 -07001367 collapse_huge_page(mm, address, hpage, node,
1368 referenced, unmapped);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001369 }
1370out:
1371 trace_mm_khugepaged_scan_pmd(mm, page, writable, referenced,
1372 none_or_zero, result, unmapped);
1373 return ret;
1374}
1375
1376static void collect_mm_slot(struct mm_slot *mm_slot)
1377{
1378 struct mm_struct *mm = mm_slot->mm;
1379
Lance Roy35f3aa32018-10-04 23:45:47 -07001380 lockdep_assert_held(&khugepaged_mm_lock);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07001381
1382 if (khugepaged_test_exit(mm)) {
1383 /* free mm_slot */
1384 hash_del(&mm_slot->hash);
1385 list_del(&mm_slot->mm_node);
1386
1387 /*
1388 * Not strictly needed because the mm exited already.
1389 *
1390 * clear_bit(MMF_VM_HUGEPAGE, &mm->flags);
1391 */
1392
1393 /* khugepaged_mm_lock actually not necessary for the below */
1394 free_mm_slot(mm_slot);
1395 mmdrop(mm);
1396 }
1397}
1398
Matthew Wilcox (Oracle)396bcc52020-04-06 20:04:35 -07001399#ifdef CONFIG_SHMEM
Song Liu27e1f822019-09-23 15:38:30 -07001400/*
1401 * Notify khugepaged that given addr of the mm is pte-mapped THP. Then
1402 * khugepaged should try to collapse the page table.
1403 */
1404static int khugepaged_add_pte_mapped_thp(struct mm_struct *mm,
1405 unsigned long addr)
1406{
1407 struct mm_slot *mm_slot;
1408
1409 VM_BUG_ON(addr & ~HPAGE_PMD_MASK);
1410
1411 spin_lock(&khugepaged_mm_lock);
1412 mm_slot = get_mm_slot(mm);
1413 if (likely(mm_slot && mm_slot->nr_pte_mapped_thp < MAX_PTE_MAPPED_THP))
1414 mm_slot->pte_mapped_thp[mm_slot->nr_pte_mapped_thp++] = addr;
1415 spin_unlock(&khugepaged_mm_lock);
1416 return 0;
1417}
1418
1419/**
Alex Shi336e6b52020-12-14 19:12:01 -08001420 * collapse_pte_mapped_thp - Try to collapse a pte-mapped THP for mm at
1421 * address haddr.
1422 *
1423 * @mm: process address space where collapse happens
1424 * @addr: THP collapse address
Song Liu27e1f822019-09-23 15:38:30 -07001425 *
1426 * This function checks whether all the PTEs in the PMD are pointing to the
1427 * right THP. If so, retract the page table so the THP can refault in with
1428 * as pmd-mapped.
1429 */
1430void collapse_pte_mapped_thp(struct mm_struct *mm, unsigned long addr)
1431{
1432 unsigned long haddr = addr & HPAGE_PMD_MASK;
1433 struct vm_area_struct *vma = find_vma(mm, haddr);
Hugh Dickins119a5fc2020-08-06 23:26:18 -07001434 struct page *hpage;
Song Liu27e1f822019-09-23 15:38:30 -07001435 pte_t *start_pte, *pte;
1436 pmd_t *pmd, _pmd;
1437 spinlock_t *ptl;
1438 int count = 0;
1439 int i;
1440
1441 if (!vma || !vma->vm_file ||
Miaohe Linfef792a2021-05-04 18:34:15 -07001442 !range_in_vma(vma, haddr, haddr + HPAGE_PMD_SIZE))
Song Liu27e1f822019-09-23 15:38:30 -07001443 return;
1444
1445 /*
1446 * This vm_flags may not have VM_HUGEPAGE if the page was not
1447 * collapsed by this mm. But we can still collapse if the page is
1448 * the valid THP. Add extra VM_HUGEPAGE so hugepage_vma_check()
1449 * will not fail the vma for missing VM_HUGEPAGE
1450 */
1451 if (!hugepage_vma_check(vma, vma->vm_flags | VM_HUGEPAGE))
1452 return;
1453
Hugh Dickins119a5fc2020-08-06 23:26:18 -07001454 hpage = find_lock_page(vma->vm_file->f_mapping,
1455 linear_page_index(vma, haddr));
1456 if (!hpage)
1457 return;
1458
1459 if (!PageHead(hpage))
1460 goto drop_hpage;
1461
Song Liu27e1f822019-09-23 15:38:30 -07001462 pmd = mm_find_pmd(mm, haddr);
1463 if (!pmd)
Hugh Dickins119a5fc2020-08-06 23:26:18 -07001464 goto drop_hpage;
Song Liu27e1f822019-09-23 15:38:30 -07001465
1466 start_pte = pte_offset_map_lock(mm, pmd, haddr, &ptl);
1467
1468 /* step 1: check all mapped PTEs are to the right huge page */
1469 for (i = 0, addr = haddr, pte = start_pte;
1470 i < HPAGE_PMD_NR; i++, addr += PAGE_SIZE, pte++) {
1471 struct page *page;
1472
1473 /* empty pte, skip */
1474 if (pte_none(*pte))
1475 continue;
1476
1477 /* page swapped out, abort */
1478 if (!pte_present(*pte))
1479 goto abort;
1480
1481 page = vm_normal_page(vma, addr, *pte);
1482
Song Liu27e1f822019-09-23 15:38:30 -07001483 /*
Hugh Dickins119a5fc2020-08-06 23:26:18 -07001484 * Note that uprobe, debugger, or MAP_PRIVATE may change the
1485 * page table, but the new page will not be a subpage of hpage.
Song Liu27e1f822019-09-23 15:38:30 -07001486 */
Hugh Dickins119a5fc2020-08-06 23:26:18 -07001487 if (hpage + i != page)
Song Liu27e1f822019-09-23 15:38:30 -07001488 goto abort;
1489 count++;
1490 }
1491
1492 /* step 2: adjust rmap */
1493 for (i = 0, addr = haddr, pte = start_pte;
1494 i < HPAGE_PMD_NR; i++, addr += PAGE_SIZE, pte++) {
1495 struct page *page;
1496
1497 if (pte_none(*pte))
1498 continue;
1499 page = vm_normal_page(vma, addr, *pte);
1500 page_remove_rmap(page, false);
1501 }
1502
1503 pte_unmap_unlock(start_pte, ptl);
1504
1505 /* step 3: set proper refcount and mm_counters. */
Hugh Dickins119a5fc2020-08-06 23:26:18 -07001506 if (count) {
Song Liu27e1f822019-09-23 15:38:30 -07001507 page_ref_sub(hpage, count);
1508 add_mm_counter(vma->vm_mm, mm_counter_file(hpage), -count);
1509 }
1510
1511 /* step 4: collapse pmd */
1512 ptl = pmd_lock(vma->vm_mm, pmd);
Hugh Dickins723a80d2020-08-06 23:26:15 -07001513 _pmd = pmdp_collapse_flush(vma, haddr, pmd);
Song Liu27e1f822019-09-23 15:38:30 -07001514 spin_unlock(ptl);
1515 mm_dec_nr_ptes(mm);
1516 pte_free(mm, pmd_pgtable(_pmd));
Hugh Dickins119a5fc2020-08-06 23:26:18 -07001517
1518drop_hpage:
1519 unlock_page(hpage);
1520 put_page(hpage);
Song Liu27e1f822019-09-23 15:38:30 -07001521 return;
1522
1523abort:
1524 pte_unmap_unlock(start_pte, ptl);
Hugh Dickins119a5fc2020-08-06 23:26:18 -07001525 goto drop_hpage;
Song Liu27e1f822019-09-23 15:38:30 -07001526}
1527
Miaohe Lin0edf61e2021-05-04 18:33:37 -07001528static void khugepaged_collapse_pte_mapped_thps(struct mm_slot *mm_slot)
Song Liu27e1f822019-09-23 15:38:30 -07001529{
1530 struct mm_struct *mm = mm_slot->mm;
1531 int i;
1532
1533 if (likely(mm_slot->nr_pte_mapped_thp == 0))
Miaohe Lin0edf61e2021-05-04 18:33:37 -07001534 return;
Song Liu27e1f822019-09-23 15:38:30 -07001535
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001536 if (!mmap_write_trylock(mm))
Miaohe Lin0edf61e2021-05-04 18:33:37 -07001537 return;
Song Liu27e1f822019-09-23 15:38:30 -07001538
1539 if (unlikely(khugepaged_test_exit(mm)))
1540 goto out;
1541
1542 for (i = 0; i < mm_slot->nr_pte_mapped_thp; i++)
1543 collapse_pte_mapped_thp(mm, mm_slot->pte_mapped_thp[i]);
1544
1545out:
1546 mm_slot->nr_pte_mapped_thp = 0;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001547 mmap_write_unlock(mm);
Song Liu27e1f822019-09-23 15:38:30 -07001548}
1549
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001550static void retract_page_tables(struct address_space *mapping, pgoff_t pgoff)
1551{
1552 struct vm_area_struct *vma;
Hugh Dickins18e77602020-08-06 23:26:22 -07001553 struct mm_struct *mm;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001554 unsigned long addr;
1555 pmd_t *pmd, _pmd;
1556
1557 i_mmap_lock_write(mapping);
1558 vma_interval_tree_foreach(vma, &mapping->i_mmap, pgoff, pgoff) {
Song Liu27e1f822019-09-23 15:38:30 -07001559 /*
1560 * Check vma->anon_vma to exclude MAP_PRIVATE mappings that
1561 * got written to. These VMAs are likely not worth investing
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07001562 * mmap_write_lock(mm) as PMD-mapping is likely to be split
Song Liu27e1f822019-09-23 15:38:30 -07001563 * later.
1564 *
1565 * Not that vma->anon_vma check is racy: it can be set up after
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001566 * the check but before we took mmap_lock by the fault path.
Song Liu27e1f822019-09-23 15:38:30 -07001567 * But page lock would prevent establishing any new ptes of the
1568 * page, so we are safe.
1569 *
1570 * An alternative would be drop the check, but check that page
1571 * table is clear before calling pmdp_collapse_flush() under
1572 * ptl. It has higher chance to recover THP for the VMA, but
1573 * has higher cost too.
1574 */
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001575 if (vma->anon_vma)
1576 continue;
1577 addr = vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
1578 if (addr & ~HPAGE_PMD_MASK)
1579 continue;
1580 if (vma->vm_end < addr + HPAGE_PMD_SIZE)
1581 continue;
Hugh Dickins18e77602020-08-06 23:26:22 -07001582 mm = vma->vm_mm;
1583 pmd = mm_find_pmd(mm, addr);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001584 if (!pmd)
1585 continue;
1586 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001587 * We need exclusive mmap_lock to retract page table.
Song Liu27e1f822019-09-23 15:38:30 -07001588 *
1589 * We use trylock due to lock inversion: we need to acquire
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001590 * mmap_lock while holding page lock. Fault path does it in
Song Liu27e1f822019-09-23 15:38:30 -07001591 * reverse order. Trylock is a way to avoid deadlock.
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001592 */
Hugh Dickins18e77602020-08-06 23:26:22 -07001593 if (mmap_write_trylock(mm)) {
1594 if (!khugepaged_test_exit(mm)) {
1595 spinlock_t *ptl = pmd_lock(mm, pmd);
1596 /* assume page table is clear */
1597 _pmd = pmdp_collapse_flush(vma, addr, pmd);
1598 spin_unlock(ptl);
1599 mm_dec_nr_ptes(mm);
1600 pte_free(mm, pmd_pgtable(_pmd));
1601 }
1602 mmap_write_unlock(mm);
Song Liu27e1f822019-09-23 15:38:30 -07001603 } else {
1604 /* Try again later */
Hugh Dickins18e77602020-08-06 23:26:22 -07001605 khugepaged_add_pte_mapped_thp(mm, addr);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001606 }
1607 }
1608 i_mmap_unlock_write(mapping);
1609}
1610
1611/**
Song Liu99cb0db2019-09-23 15:38:00 -07001612 * collapse_file - collapse filemap/tmpfs/shmem pages into huge one.
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001613 *
Alex Shi336e6b52020-12-14 19:12:01 -08001614 * @mm: process address space where collapse happens
1615 * @file: file that collapse on
1616 * @start: collapse start address
1617 * @hpage: new allocated huge page for collapse
1618 * @node: appointed node the new huge page allocate from
1619 *
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001620 * Basic scheme is simple, details are more complex:
Hugh Dickins87c460a2018-11-30 14:10:43 -08001621 * - allocate and lock a new huge page;
Matthew Wilcox77da9382017-12-04 14:56:08 -05001622 * - scan page cache replacing old pages with the new one
Song Liu99cb0db2019-09-23 15:38:00 -07001623 * + swap/gup in pages if necessary;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001624 * + fill in gaps;
Matthew Wilcox77da9382017-12-04 14:56:08 -05001625 * + keep old pages around in case rollback is required;
1626 * - if replacing succeeds:
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001627 * + copy data over;
1628 * + free old pages;
Hugh Dickins87c460a2018-11-30 14:10:43 -08001629 * + unlock huge page;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001630 * - if replacing failed;
1631 * + put all pages back and unfreeze them;
Matthew Wilcox77da9382017-12-04 14:56:08 -05001632 * + restore gaps in the page cache;
Hugh Dickins87c460a2018-11-30 14:10:43 -08001633 * + unlock and free huge page;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001634 */
Song Liu579c5712019-09-23 15:37:57 -07001635static void collapse_file(struct mm_struct *mm,
1636 struct file *file, pgoff_t start,
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001637 struct page **hpage, int node)
1638{
Song Liu579c5712019-09-23 15:37:57 -07001639 struct address_space *mapping = file->f_mapping;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001640 gfp_t gfp;
Matthew Wilcox77da9382017-12-04 14:56:08 -05001641 struct page *new_page;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001642 pgoff_t index, end = start + HPAGE_PMD_NR;
1643 LIST_HEAD(pagelist);
Matthew Wilcox77da9382017-12-04 14:56:08 -05001644 XA_STATE_ORDER(xas, &mapping->i_pages, start, HPAGE_PMD_ORDER);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001645 int nr_none = 0, result = SCAN_SUCCEED;
Song Liu99cb0db2019-09-23 15:38:00 -07001646 bool is_shmem = shmem_file(file);
Muchun Songbf9ecea2021-02-24 12:03:27 -08001647 int nr;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001648
Song Liu99cb0db2019-09-23 15:38:00 -07001649 VM_BUG_ON(!IS_ENABLED(CONFIG_READ_ONLY_THP_FOR_FS) && !is_shmem);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001650 VM_BUG_ON(start & (HPAGE_PMD_NR - 1));
1651
1652 /* Only allocate from the target node */
Michal Hocko41b61672017-01-10 16:57:42 -08001653 gfp = alloc_hugepage_khugepaged_gfpmask() | __GFP_THISNODE;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001654
1655 new_page = khugepaged_alloc_page(hpage, gfp, node);
1656 if (!new_page) {
1657 result = SCAN_ALLOC_HUGE_PAGE_FAIL;
1658 goto out;
1659 }
1660
Johannes Weinerd9eb1ea2020-06-03 16:02:24 -07001661 if (unlikely(mem_cgroup_charge(new_page, mm, gfp))) {
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001662 result = SCAN_CGROUP_CHARGE_FAIL;
1663 goto out;
1664 }
Johannes Weiner9d82c692020-06-03 16:02:04 -07001665 count_memcg_page_event(new_page, THP_COLLAPSE_ALLOC);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001666
Hugh Dickins95feeab2018-11-30 14:10:50 -08001667 /* This will be less messy when we use multi-index entries */
1668 do {
1669 xas_lock_irq(&xas);
1670 xas_create_range(&xas);
1671 if (!xas_error(&xas))
1672 break;
1673 xas_unlock_irq(&xas);
1674 if (!xas_nomem(&xas, GFP_KERNEL)) {
Hugh Dickins95feeab2018-11-30 14:10:50 -08001675 result = SCAN_FAIL;
1676 goto out;
1677 }
1678 } while (1);
1679
Hugh Dickins042a3082018-11-30 14:10:39 -08001680 __SetPageLocked(new_page);
Song Liu99cb0db2019-09-23 15:38:00 -07001681 if (is_shmem)
1682 __SetPageSwapBacked(new_page);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001683 new_page->index = start;
1684 new_page->mapping = mapping;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001685
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001686 /*
Hugh Dickins87c460a2018-11-30 14:10:43 -08001687 * At this point the new_page is locked and not up-to-date.
1688 * It's safe to insert it into the page cache, because nobody would
1689 * be able to map it or use it in another way until we unlock it.
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001690 */
1691
Matthew Wilcox77da9382017-12-04 14:56:08 -05001692 xas_set(&xas, start);
1693 for (index = start; index < end; index++) {
1694 struct page *page = xas_next(&xas);
1695
1696 VM_BUG_ON(index != xas.xa_index);
Song Liu99cb0db2019-09-23 15:38:00 -07001697 if (is_shmem) {
1698 if (!page) {
1699 /*
1700 * Stop if extent has been truncated or
1701 * hole-punched, and is now completely
1702 * empty.
1703 */
1704 if (index == start) {
1705 if (!xas_next_entry(&xas, end - 1)) {
1706 result = SCAN_TRUNCATED;
1707 goto xa_locked;
1708 }
1709 xas_set(&xas, index);
1710 }
1711 if (!shmem_charge(mapping->host, 1)) {
1712 result = SCAN_FAIL;
Hugh Dickins042a3082018-11-30 14:10:39 -08001713 goto xa_locked;
Hugh Dickins701270f2018-11-30 14:10:25 -08001714 }
Song Liu99cb0db2019-09-23 15:38:00 -07001715 xas_store(&xas, new_page);
1716 nr_none++;
1717 continue;
Hugh Dickins701270f2018-11-30 14:10:25 -08001718 }
Song Liu99cb0db2019-09-23 15:38:00 -07001719
1720 if (xa_is_value(page) || !PageUptodate(page)) {
1721 xas_unlock_irq(&xas);
1722 /* swap in or instantiate fallocated page */
1723 if (shmem_getpage(mapping->host, index, &page,
1724 SGP_NOHUGE)) {
1725 result = SCAN_FAIL;
1726 goto xa_unlocked;
1727 }
1728 } else if (trylock_page(page)) {
1729 get_page(page);
1730 xas_unlock_irq(&xas);
1731 } else {
1732 result = SCAN_PAGE_LOCK;
Hugh Dickins042a3082018-11-30 14:10:39 -08001733 goto xa_locked;
Matthew Wilcox77da9382017-12-04 14:56:08 -05001734 }
Song Liu99cb0db2019-09-23 15:38:00 -07001735 } else { /* !is_shmem */
1736 if (!page || xa_is_value(page)) {
1737 xas_unlock_irq(&xas);
1738 page_cache_sync_readahead(mapping, &file->f_ra,
1739 file, index,
David Howellse5a59d32020-09-04 16:36:16 -07001740 end - index);
Song Liu99cb0db2019-09-23 15:38:00 -07001741 /* drain pagevecs to help isolate_lru_page() */
1742 lru_add_drain();
1743 page = find_lock_page(mapping, index);
1744 if (unlikely(page == NULL)) {
1745 result = SCAN_FAIL;
1746 goto xa_unlocked;
1747 }
Song Liu75f36062019-11-30 17:57:19 -08001748 } else if (PageDirty(page)) {
1749 /*
1750 * khugepaged only works on read-only fd,
1751 * so this page is dirty because it hasn't
1752 * been flushed since first write. There
1753 * won't be new dirty pages.
1754 *
1755 * Trigger async flush here and hope the
1756 * writeback is done when khugepaged
1757 * revisits this page.
1758 *
1759 * This is a one-off situation. We are not
1760 * forcing writeback in loop.
1761 */
1762 xas_unlock_irq(&xas);
1763 filemap_flush(mapping);
1764 result = SCAN_FAIL;
1765 goto xa_unlocked;
Song Liu99cb0db2019-09-23 15:38:00 -07001766 } else if (trylock_page(page)) {
1767 get_page(page);
1768 xas_unlock_irq(&xas);
1769 } else {
1770 result = SCAN_PAGE_LOCK;
1771 goto xa_locked;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001772 }
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001773 }
1774
1775 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07001776 * The page must be locked, so we can drop the i_pages lock
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001777 * without racing with truncate.
1778 */
1779 VM_BUG_ON_PAGE(!PageLocked(page), page);
Song Liu4655e5e2019-11-15 17:34:53 -08001780
1781 /* make sure the page is up to date */
1782 if (unlikely(!PageUptodate(page))) {
1783 result = SCAN_FAIL;
1784 goto out_unlock;
1785 }
Hugh Dickins06a5e122018-11-30 14:10:47 -08001786
1787 /*
1788 * If file was truncated then extended, or hole-punched, before
1789 * we locked the first page, then a THP might be there already.
1790 */
1791 if (PageTransCompound(page)) {
1792 result = SCAN_PAGE_COMPOUND;
1793 goto out_unlock;
1794 }
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001795
1796 if (page_mapping(page) != mapping) {
1797 result = SCAN_TRUNCATED;
1798 goto out_unlock;
1799 }
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001800
Song Liu4655e5e2019-11-15 17:34:53 -08001801 if (!is_shmem && PageDirty(page)) {
1802 /*
1803 * khugepaged only works on read-only fd, so this
1804 * page is dirty because it hasn't been flushed
1805 * since first write.
1806 */
1807 result = SCAN_FAIL;
1808 goto out_unlock;
1809 }
1810
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001811 if (isolate_lru_page(page)) {
1812 result = SCAN_DEL_PAGE_LRU;
Hugh Dickins042a3082018-11-30 14:10:39 -08001813 goto out_unlock;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001814 }
1815
Song Liu99cb0db2019-09-23 15:38:00 -07001816 if (page_has_private(page) &&
1817 !try_to_release_page(page, GFP_KERNEL)) {
1818 result = SCAN_PAGE_HAS_PRIVATE;
Hugh Dickins2f33a702020-05-27 22:20:43 -07001819 putback_lru_page(page);
Song Liu99cb0db2019-09-23 15:38:00 -07001820 goto out_unlock;
1821 }
1822
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001823 if (page_mapped(page))
Matthew Wilcox977fbdc2018-01-31 16:17:36 -08001824 unmap_mapping_pages(mapping, index, 1, false);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001825
Matthew Wilcox77da9382017-12-04 14:56:08 -05001826 xas_lock_irq(&xas);
1827 xas_set(&xas, index);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001828
Matthew Wilcox77da9382017-12-04 14:56:08 -05001829 VM_BUG_ON_PAGE(page != xas_load(&xas), page);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001830 VM_BUG_ON_PAGE(page_mapped(page), page);
1831
1832 /*
1833 * The page is expected to have page_count() == 3:
1834 * - we hold a pin on it;
Matthew Wilcox77da9382017-12-04 14:56:08 -05001835 * - one reference from page cache;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001836 * - one from isolate_lru_page;
1837 */
1838 if (!page_ref_freeze(page, 3)) {
1839 result = SCAN_PAGE_COUNT;
Hugh Dickins042a3082018-11-30 14:10:39 -08001840 xas_unlock_irq(&xas);
1841 putback_lru_page(page);
1842 goto out_unlock;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001843 }
1844
1845 /*
1846 * Add the page to the list to be able to undo the collapse if
1847 * something go wrong.
1848 */
1849 list_add_tail(&page->lru, &pagelist);
1850
1851 /* Finally, replace with the new page. */
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -07001852 xas_store(&xas, new_page);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001853 continue;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001854out_unlock:
1855 unlock_page(page);
1856 put_page(page);
Hugh Dickins042a3082018-11-30 14:10:39 -08001857 goto xa_unlocked;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001858 }
Muchun Songbf9ecea2021-02-24 12:03:27 -08001859 nr = thp_nr_pages(new_page);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001860
Song Liu99cb0db2019-09-23 15:38:00 -07001861 if (is_shmem)
Muchun Song57b28472021-02-24 12:03:31 -08001862 __mod_lruvec_page_state(new_page, NR_SHMEM_THPS, nr);
Song Liu09d91cd2019-09-23 15:38:03 -07001863 else {
Muchun Songbf9ecea2021-02-24 12:03:27 -08001864 __mod_lruvec_page_state(new_page, NR_FILE_THPS, nr);
Song Liu09d91cd2019-09-23 15:38:03 -07001865 filemap_nr_thps_inc(mapping);
Collin Fijalkovicheb6ecbe2021-06-30 18:51:32 -07001866 /*
1867 * Paired with smp_mb() in do_dentry_open() to ensure
1868 * i_writecount is up to date and the update to nr_thps is
1869 * visible. Ensures the page cache will be truncated if the
1870 * file is opened writable.
1871 */
1872 smp_mb();
1873 if (inode_is_open_for_write(mapping->host)) {
1874 result = SCAN_FAIL;
1875 __mod_lruvec_page_state(new_page, NR_FILE_THPS, -nr);
1876 filemap_nr_thps_dec(mapping);
1877 goto xa_locked;
1878 }
Song Liu09d91cd2019-09-23 15:38:03 -07001879 }
Song Liu99cb0db2019-09-23 15:38:00 -07001880
Hugh Dickins042a3082018-11-30 14:10:39 -08001881 if (nr_none) {
Johannes Weiner9d82c692020-06-03 16:02:04 -07001882 __mod_lruvec_page_state(new_page, NR_FILE_PAGES, nr_none);
Song Liu99cb0db2019-09-23 15:38:00 -07001883 if (is_shmem)
Johannes Weiner9d82c692020-06-03 16:02:04 -07001884 __mod_lruvec_page_state(new_page, NR_SHMEM, nr_none);
Hugh Dickins042a3082018-11-30 14:10:39 -08001885 }
1886
1887xa_locked:
1888 xas_unlock_irq(&xas);
Matthew Wilcox77da9382017-12-04 14:56:08 -05001889xa_unlocked:
Hugh Dickins042a3082018-11-30 14:10:39 -08001890
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001891 if (result == SCAN_SUCCEED) {
Matthew Wilcox77da9382017-12-04 14:56:08 -05001892 struct page *page, *tmp;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001893
1894 /*
Matthew Wilcox77da9382017-12-04 14:56:08 -05001895 * Replacing old pages with new one has succeeded, now we
1896 * need to copy the content and free the old pages.
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001897 */
Hugh Dickins2af8ff22018-11-30 14:10:35 -08001898 index = start;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001899 list_for_each_entry_safe(page, tmp, &pagelist, lru) {
Hugh Dickins2af8ff22018-11-30 14:10:35 -08001900 while (index < page->index) {
1901 clear_highpage(new_page + (index % HPAGE_PMD_NR));
1902 index++;
1903 }
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001904 copy_highpage(new_page + (page->index % HPAGE_PMD_NR),
1905 page);
1906 list_del(&page->lru);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001907 page->mapping = NULL;
Hugh Dickins042a3082018-11-30 14:10:39 -08001908 page_ref_unfreeze(page, 1);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001909 ClearPageActive(page);
1910 ClearPageUnevictable(page);
Hugh Dickins042a3082018-11-30 14:10:39 -08001911 unlock_page(page);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001912 put_page(page);
Hugh Dickins2af8ff22018-11-30 14:10:35 -08001913 index++;
1914 }
1915 while (index < end) {
1916 clear_highpage(new_page + (index % HPAGE_PMD_NR));
1917 index++;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001918 }
1919
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001920 SetPageUptodate(new_page);
Hugh Dickins87c460a2018-11-30 14:10:43 -08001921 page_ref_add(new_page, HPAGE_PMD_NR - 1);
Johannes Weiner6058eae2020-06-03 16:02:40 -07001922 if (is_shmem)
Song Liu99cb0db2019-09-23 15:38:00 -07001923 set_page_dirty(new_page);
Johannes Weiner6058eae2020-06-03 16:02:40 -07001924 lru_cache_add(new_page);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001925
Hugh Dickins042a3082018-11-30 14:10:39 -08001926 /*
1927 * Remove pte page tables, so we can re-fault the page as huge.
1928 */
1929 retract_page_tables(mapping, start);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001930 *hpage = NULL;
Yang Shi87aa7522018-08-17 15:45:29 -07001931
1932 khugepaged_pages_collapsed++;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001933 } else {
Matthew Wilcox77da9382017-12-04 14:56:08 -05001934 struct page *page;
Hugh Dickinsaaa52e32018-11-30 14:10:29 -08001935
Matthew Wilcox77da9382017-12-04 14:56:08 -05001936 /* Something went wrong: roll back page cache changes */
Matthew Wilcox77da9382017-12-04 14:56:08 -05001937 xas_lock_irq(&xas);
Hugh Dickinsaaa52e32018-11-30 14:10:29 -08001938 mapping->nrpages -= nr_none;
Song Liu99cb0db2019-09-23 15:38:00 -07001939
1940 if (is_shmem)
1941 shmem_uncharge(mapping->host, nr_none);
Hugh Dickinsaaa52e32018-11-30 14:10:29 -08001942
Matthew Wilcox77da9382017-12-04 14:56:08 -05001943 xas_set(&xas, start);
1944 xas_for_each(&xas, page, end - 1) {
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001945 page = list_first_entry_or_null(&pagelist,
1946 struct page, lru);
Matthew Wilcox77da9382017-12-04 14:56:08 -05001947 if (!page || xas.xa_index < page->index) {
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001948 if (!nr_none)
1949 break;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001950 nr_none--;
Johannes Weiner59749e62016-12-12 16:43:35 -08001951 /* Put holes back where they were */
Matthew Wilcox77da9382017-12-04 14:56:08 -05001952 xas_store(&xas, NULL);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001953 continue;
1954 }
1955
Matthew Wilcox77da9382017-12-04 14:56:08 -05001956 VM_BUG_ON_PAGE(page->index != xas.xa_index, page);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001957
1958 /* Unfreeze the page. */
1959 list_del(&page->lru);
1960 page_ref_unfreeze(page, 2);
Matthew Wilcox77da9382017-12-04 14:56:08 -05001961 xas_store(&xas, page);
1962 xas_pause(&xas);
1963 xas_unlock_irq(&xas);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001964 unlock_page(page);
Hugh Dickins042a3082018-11-30 14:10:39 -08001965 putback_lru_page(page);
Matthew Wilcox77da9382017-12-04 14:56:08 -05001966 xas_lock_irq(&xas);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001967 }
1968 VM_BUG_ON(nr_none);
Matthew Wilcox77da9382017-12-04 14:56:08 -05001969 xas_unlock_irq(&xas);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001970
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001971 new_page->mapping = NULL;
1972 }
Hugh Dickins042a3082018-11-30 14:10:39 -08001973
1974 unlock_page(new_page);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001975out:
1976 VM_BUG_ON(!list_empty(&pagelist));
Johannes Weiner9d82c692020-06-03 16:02:04 -07001977 if (!IS_ERR_OR_NULL(*hpage))
1978 mem_cgroup_uncharge(*hpage);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001979 /* TODO: tracepoints */
1980}
1981
Song Liu579c5712019-09-23 15:37:57 -07001982static void khugepaged_scan_file(struct mm_struct *mm,
1983 struct file *file, pgoff_t start, struct page **hpage)
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001984{
1985 struct page *page = NULL;
Song Liu579c5712019-09-23 15:37:57 -07001986 struct address_space *mapping = file->f_mapping;
Matthew Wilcox85b392d2017-12-04 15:06:23 -05001987 XA_STATE(xas, &mapping->i_pages, start);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001988 int present, swap;
1989 int node = NUMA_NO_NODE;
1990 int result = SCAN_SUCCEED;
1991
1992 present = 0;
1993 swap = 0;
1994 memset(khugepaged_node_load, 0, sizeof(khugepaged_node_load));
1995 rcu_read_lock();
Matthew Wilcox85b392d2017-12-04 15:06:23 -05001996 xas_for_each(&xas, page, start + HPAGE_PMD_NR - 1) {
1997 if (xas_retry(&xas, page))
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001998 continue;
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07001999
Matthew Wilcox85b392d2017-12-04 15:06:23 -05002000 if (xa_is_value(page)) {
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002001 if (++swap > khugepaged_max_ptes_swap) {
2002 result = SCAN_EXCEED_SWAP_PTE;
2003 break;
2004 }
2005 continue;
2006 }
2007
2008 if (PageTransCompound(page)) {
2009 result = SCAN_PAGE_COMPOUND;
2010 break;
2011 }
2012
2013 node = page_to_nid(page);
2014 if (khugepaged_scan_abort(node)) {
2015 result = SCAN_SCAN_ABORT;
2016 break;
2017 }
2018 khugepaged_node_load[node]++;
2019
2020 if (!PageLRU(page)) {
2021 result = SCAN_PAGE_LRU;
2022 break;
2023 }
2024
Song Liu99cb0db2019-09-23 15:38:00 -07002025 if (page_count(page) !=
2026 1 + page_mapcount(page) + page_has_private(page)) {
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002027 result = SCAN_PAGE_COUNT;
2028 break;
2029 }
2030
2031 /*
2032 * We probably should check if the page is referenced here, but
2033 * nobody would transfer pte_young() to PageReferenced() for us.
2034 * And rmap walk here is just too costly...
2035 */
2036
2037 present++;
2038
2039 if (need_resched()) {
Matthew Wilcox85b392d2017-12-04 15:06:23 -05002040 xas_pause(&xas);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002041 cond_resched_rcu();
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002042 }
2043 }
2044 rcu_read_unlock();
2045
2046 if (result == SCAN_SUCCEED) {
2047 if (present < HPAGE_PMD_NR - khugepaged_max_ptes_none) {
2048 result = SCAN_EXCEED_NONE_PTE;
2049 } else {
2050 node = khugepaged_find_target_node();
Song Liu579c5712019-09-23 15:37:57 -07002051 collapse_file(mm, file, start, hpage, node);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002052 }
2053 }
2054
2055 /* TODO: tracepoints */
2056}
2057#else
Song Liu579c5712019-09-23 15:37:57 -07002058static void khugepaged_scan_file(struct mm_struct *mm,
2059 struct file *file, pgoff_t start, struct page **hpage)
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002060{
2061 BUILD_BUG();
2062}
Song Liu27e1f822019-09-23 15:38:30 -07002063
Miaohe Lin0edf61e2021-05-04 18:33:37 -07002064static void khugepaged_collapse_pte_mapped_thps(struct mm_slot *mm_slot)
Song Liu27e1f822019-09-23 15:38:30 -07002065{
Song Liu27e1f822019-09-23 15:38:30 -07002066}
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002067#endif
2068
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002069static unsigned int khugepaged_scan_mm_slot(unsigned int pages,
2070 struct page **hpage)
2071 __releases(&khugepaged_mm_lock)
2072 __acquires(&khugepaged_mm_lock)
2073{
2074 struct mm_slot *mm_slot;
2075 struct mm_struct *mm;
2076 struct vm_area_struct *vma;
2077 int progress = 0;
2078
2079 VM_BUG_ON(!pages);
Lance Roy35f3aa32018-10-04 23:45:47 -07002080 lockdep_assert_held(&khugepaged_mm_lock);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002081
2082 if (khugepaged_scan.mm_slot)
2083 mm_slot = khugepaged_scan.mm_slot;
2084 else {
2085 mm_slot = list_entry(khugepaged_scan.mm_head.next,
2086 struct mm_slot, mm_node);
2087 khugepaged_scan.address = 0;
2088 khugepaged_scan.mm_slot = mm_slot;
2089 }
2090 spin_unlock(&khugepaged_mm_lock);
Song Liu27e1f822019-09-23 15:38:30 -07002091 khugepaged_collapse_pte_mapped_thps(mm_slot);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002092
2093 mm = mm_slot->mm;
Yang Shi3b454ad2018-01-31 16:18:28 -08002094 /*
2095 * Don't wait for semaphore (to avoid long wait times). Just move to
2096 * the next mm on the list.
2097 */
2098 vma = NULL;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002099 if (unlikely(!mmap_read_trylock(mm)))
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002100 goto breakouterloop_mmap_lock;
Yang Shi3b454ad2018-01-31 16:18:28 -08002101 if (likely(!khugepaged_test_exit(mm)))
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002102 vma = find_vma(mm, khugepaged_scan.address);
2103
2104 progress++;
2105 for (; vma; vma = vma->vm_next) {
2106 unsigned long hstart, hend;
2107
2108 cond_resched();
2109 if (unlikely(khugepaged_test_exit(mm))) {
2110 progress++;
2111 break;
2112 }
Song Liu50f8b922018-08-17 15:47:00 -07002113 if (!hugepage_vma_check(vma, vma->vm_flags)) {
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002114skip:
2115 progress++;
2116 continue;
2117 }
2118 hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
2119 hend = vma->vm_end & HPAGE_PMD_MASK;
2120 if (hstart >= hend)
2121 goto skip;
2122 if (khugepaged_scan.address > hend)
2123 goto skip;
2124 if (khugepaged_scan.address < hstart)
2125 khugepaged_scan.address = hstart;
2126 VM_BUG_ON(khugepaged_scan.address & ~HPAGE_PMD_MASK);
Matthew Wilcox (Oracle)396bcc52020-04-06 20:04:35 -07002127 if (shmem_file(vma->vm_file) && !shmem_huge_enabled(vma))
2128 goto skip;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002129
2130 while (khugepaged_scan.address < hend) {
2131 int ret;
2132 cond_resched();
2133 if (unlikely(khugepaged_test_exit(mm)))
2134 goto breakouterloop;
2135
2136 VM_BUG_ON(khugepaged_scan.address < hstart ||
2137 khugepaged_scan.address + HPAGE_PMD_SIZE >
2138 hend);
Song Liu99cb0db2019-09-23 15:38:00 -07002139 if (IS_ENABLED(CONFIG_SHMEM) && vma->vm_file) {
Matthew Wilcox (Oracle)396bcc52020-04-06 20:04:35 -07002140 struct file *file = get_file(vma->vm_file);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002141 pgoff_t pgoff = linear_page_index(vma,
2142 khugepaged_scan.address);
Song Liu99cb0db2019-09-23 15:38:00 -07002143
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002144 mmap_read_unlock(mm);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002145 ret = 1;
Song Liu579c5712019-09-23 15:37:57 -07002146 khugepaged_scan_file(mm, file, pgoff, hpage);
Kirill A. Shutemovf3f0e1d2016-07-26 15:26:32 -07002147 fput(file);
2148 } else {
2149 ret = khugepaged_scan_pmd(mm, vma,
2150 khugepaged_scan.address,
2151 hpage);
2152 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002153 /* move to next address */
2154 khugepaged_scan.address += HPAGE_PMD_SIZE;
2155 progress += HPAGE_PMD_NR;
2156 if (ret)
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002157 /* we released mmap_lock so break loop */
2158 goto breakouterloop_mmap_lock;
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002159 if (progress >= pages)
2160 goto breakouterloop;
2161 }
2162 }
2163breakouterloop:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002164 mmap_read_unlock(mm); /* exit_mmap will destroy ptes after this */
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002165breakouterloop_mmap_lock:
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002166
2167 spin_lock(&khugepaged_mm_lock);
2168 VM_BUG_ON(khugepaged_scan.mm_slot != mm_slot);
2169 /*
2170 * Release the current mm_slot if this mm is about to die, or
2171 * if we scanned all vmas of this mm.
2172 */
2173 if (khugepaged_test_exit(mm) || !vma) {
2174 /*
2175 * Make sure that if mm_users is reaching zero while
2176 * khugepaged runs here, khugepaged_exit will find
2177 * mm_slot not pointing to the exiting mm.
2178 */
2179 if (mm_slot->mm_node.next != &khugepaged_scan.mm_head) {
2180 khugepaged_scan.mm_slot = list_entry(
2181 mm_slot->mm_node.next,
2182 struct mm_slot, mm_node);
2183 khugepaged_scan.address = 0;
2184 } else {
2185 khugepaged_scan.mm_slot = NULL;
2186 khugepaged_full_scans++;
2187 }
2188
2189 collect_mm_slot(mm_slot);
2190 }
2191
2192 return progress;
2193}
2194
2195static int khugepaged_has_work(void)
2196{
2197 return !list_empty(&khugepaged_scan.mm_head) &&
2198 khugepaged_enabled();
2199}
2200
2201static int khugepaged_wait_event(void)
2202{
2203 return !list_empty(&khugepaged_scan.mm_head) ||
2204 kthread_should_stop();
2205}
2206
2207static void khugepaged_do_scan(void)
2208{
2209 struct page *hpage = NULL;
2210 unsigned int progress = 0, pass_through_head = 0;
Yanfei Xu89dc6a92021-05-04 18:34:12 -07002211 unsigned int pages = READ_ONCE(khugepaged_pages_to_scan);
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002212 bool wait = true;
2213
Kirill A. Shutemova980df32020-06-03 16:00:12 -07002214 lru_add_drain_all();
2215
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002216 while (progress < pages) {
2217 if (!khugepaged_prealloc_page(&hpage, &wait))
2218 break;
2219
2220 cond_resched();
2221
2222 if (unlikely(kthread_should_stop() || try_to_freeze()))
2223 break;
2224
2225 spin_lock(&khugepaged_mm_lock);
2226 if (!khugepaged_scan.mm_slot)
2227 pass_through_head++;
2228 if (khugepaged_has_work() &&
2229 pass_through_head < 2)
2230 progress += khugepaged_scan_mm_slot(pages - progress,
2231 &hpage);
2232 else
2233 progress = pages;
2234 spin_unlock(&khugepaged_mm_lock);
2235 }
2236
2237 if (!IS_ERR_OR_NULL(hpage))
2238 put_page(hpage);
2239}
2240
2241static bool khugepaged_should_wakeup(void)
2242{
2243 return kthread_should_stop() ||
2244 time_after_eq(jiffies, khugepaged_sleep_expire);
2245}
2246
2247static void khugepaged_wait_work(void)
2248{
2249 if (khugepaged_has_work()) {
2250 const unsigned long scan_sleep_jiffies =
2251 msecs_to_jiffies(khugepaged_scan_sleep_millisecs);
2252
2253 if (!scan_sleep_jiffies)
2254 return;
2255
2256 khugepaged_sleep_expire = jiffies + scan_sleep_jiffies;
2257 wait_event_freezable_timeout(khugepaged_wait,
2258 khugepaged_should_wakeup(),
2259 scan_sleep_jiffies);
2260 return;
2261 }
2262
2263 if (khugepaged_enabled())
2264 wait_event_freezable(khugepaged_wait, khugepaged_wait_event());
2265}
2266
2267static int khugepaged(void *none)
2268{
2269 struct mm_slot *mm_slot;
2270
2271 set_freezable();
2272 set_user_nice(current, MAX_NICE);
2273
2274 while (!kthread_should_stop()) {
2275 khugepaged_do_scan();
2276 khugepaged_wait_work();
2277 }
2278
2279 spin_lock(&khugepaged_mm_lock);
2280 mm_slot = khugepaged_scan.mm_slot;
2281 khugepaged_scan.mm_slot = NULL;
2282 if (mm_slot)
2283 collect_mm_slot(mm_slot);
2284 spin_unlock(&khugepaged_mm_lock);
2285 return 0;
2286}
2287
2288static void set_recommended_min_free_kbytes(void)
2289{
2290 struct zone *zone;
2291 int nr_zones = 0;
2292 unsigned long recommended_min;
2293
Joonsoo Kimb7d349c2018-04-10 16:30:27 -07002294 for_each_populated_zone(zone) {
2295 /*
2296 * We don't need to worry about fragmentation of
2297 * ZONE_MOVABLE since it only has movable pages.
2298 */
2299 if (zone_idx(zone) > gfp_zone(GFP_USER))
2300 continue;
2301
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002302 nr_zones++;
Joonsoo Kimb7d349c2018-04-10 16:30:27 -07002303 }
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002304
2305 /* Ensure 2 pageblocks are free to assist fragmentation avoidance */
2306 recommended_min = pageblock_nr_pages * nr_zones * 2;
2307
2308 /*
2309 * Make sure that on average at least two pageblocks are almost free
2310 * of another type, one for a migratetype to fall back to and a
2311 * second to avoid subsequent fallbacks of other types There are 3
2312 * MIGRATE_TYPES we care about.
2313 */
2314 recommended_min += pageblock_nr_pages * nr_zones *
2315 MIGRATE_PCPTYPES * MIGRATE_PCPTYPES;
2316
2317 /* don't ever allow to reserve more than 5% of the lowmem */
2318 recommended_min = min(recommended_min,
2319 (unsigned long) nr_free_buffer_pages() / 20);
2320 recommended_min <<= (PAGE_SHIFT-10);
2321
2322 if (recommended_min > min_free_kbytes) {
2323 if (user_min_free_kbytes >= 0)
2324 pr_info("raising min_free_kbytes from %d to %lu to help transparent hugepage allocations\n",
2325 min_free_kbytes, recommended_min);
2326
2327 min_free_kbytes = recommended_min;
2328 }
2329 setup_per_zone_wmarks();
2330}
2331
2332int start_stop_khugepaged(void)
2333{
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -07002334 int err = 0;
2335
2336 mutex_lock(&khugepaged_mutex);
2337 if (khugepaged_enabled()) {
2338 if (!khugepaged_thread)
2339 khugepaged_thread = kthread_run(khugepaged, NULL,
2340 "khugepaged");
2341 if (IS_ERR(khugepaged_thread)) {
2342 pr_err("khugepaged: kthread_run(khugepaged) failed\n");
2343 err = PTR_ERR(khugepaged_thread);
2344 khugepaged_thread = NULL;
2345 goto fail;
2346 }
2347
2348 if (!list_empty(&khugepaged_scan.mm_head))
2349 wake_up_interruptible(&khugepaged_wait);
2350
2351 set_recommended_min_free_kbytes();
2352 } else if (khugepaged_thread) {
2353 kthread_stop(khugepaged_thread);
2354 khugepaged_thread = NULL;
2355 }
2356fail:
2357 mutex_unlock(&khugepaged_mutex);
2358 return err;
2359}
Vijay Balakrishna4aab2be2020-10-10 23:16:40 -07002360
2361void khugepaged_min_free_kbytes_update(void)
2362{
2363 mutex_lock(&khugepaged_mutex);
2364 if (khugepaged_enabled() && khugepaged_thread)
2365 set_recommended_min_free_kbytes();
2366 mutex_unlock(&khugepaged_mutex);
2367}