]> git.ipfire.org Git - people/ms/linux.git/blame - mm/huge_memory.c
mm/huge_memory: fix comment of page_deferred_list
[people/ms/linux.git] / mm / huge_memory.c
CommitLineData
20c8ccb1 1// SPDX-License-Identifier: GPL-2.0-only
71e3aac0
AA
2/*
3 * Copyright (C) 2009 Red Hat, Inc.
71e3aac0
AA
4 */
5
ae3a8c1c
AM
6#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7
71e3aac0
AA
8#include <linux/mm.h>
9#include <linux/sched.h>
fa6c0231 10#include <linux/sched/mm.h>
f7ccbae4 11#include <linux/sched/coredump.h>
6a3827d7 12#include <linux/sched/numa_balancing.h>
71e3aac0
AA
13#include <linux/highmem.h>
14#include <linux/hugetlb.h>
15#include <linux/mmu_notifier.h>
16#include <linux/rmap.h>
17#include <linux/swap.h>
97ae1749 18#include <linux/shrinker.h>
ba76149f 19#include <linux/mm_inline.h>
e9b61f19 20#include <linux/swapops.h>
4897c765 21#include <linux/dax.h>
ba76149f 22#include <linux/khugepaged.h>
878aee7d 23#include <linux/freezer.h>
f25748e3 24#include <linux/pfn_t.h>
a664b2d8 25#include <linux/mman.h>
3565fce3 26#include <linux/memremap.h>
325adeb5 27#include <linux/pagemap.h>
49071d43 28#include <linux/debugfs.h>
4daae3b4 29#include <linux/migrate.h>
43b5fbbd 30#include <linux/hashtable.h>
6b251fc9 31#include <linux/userfaultfd_k.h>
33c3fc71 32#include <linux/page_idle.h>
baa355fd 33#include <linux/shmem_fs.h>
6b31d595 34#include <linux/oom.h>
98fa15f3 35#include <linux/numa.h>
f7da677b 36#include <linux/page_owner.h>
a1a3a2fc 37#include <linux/sched/sysctl.h>
97ae1749 38
71e3aac0
AA
39#include <asm/tlb.h>
40#include <asm/pgalloc.h>
41#include "internal.h"
014bb1de 42#include "swap.h"
71e3aac0 43
283fd6fe
AK
44#define CREATE_TRACE_POINTS
45#include <trace/events/thp.h>
46
ba76149f 47/*
b14d595a
MD
48 * By default, transparent hugepage support is disabled in order to avoid
49 * risking an increased memory footprint for applications that are not
50 * guaranteed to benefit from it. When transparent hugepage support is
51 * enabled, it is for all mappings, and khugepaged scans all mappings.
8bfa3f9a
JW
52 * Defrag is invoked by khugepaged hugepage allocations and by page faults
53 * for all hugepage allocations.
ba76149f 54 */
71e3aac0 55unsigned long transparent_hugepage_flags __read_mostly =
13ece886 56#ifdef CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS
ba76149f 57 (1<<TRANSPARENT_HUGEPAGE_FLAG)|
13ece886
AA
58#endif
59#ifdef CONFIG_TRANSPARENT_HUGEPAGE_MADVISE
60 (1<<TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG)|
61#endif
444eb2a4 62 (1<<TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG)|
79da5407
KS
63 (1<<TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG)|
64 (1<<TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
ba76149f 65
9a982250 66static struct shrinker deferred_split_shrinker;
f000565a 67
97ae1749 68static atomic_t huge_zero_refcount;
56873f43 69struct page *huge_zero_page __read_mostly;
3b77e8c8 70unsigned long huge_zero_pfn __read_mostly = ~0UL;
4a6c1297 71
9fec5168
YS
72bool hugepage_vma_check(struct vm_area_struct *vma,
73 unsigned long vm_flags,
7da4e2cb 74 bool smaps, bool in_pf)
7635d9cb 75{
9fec5168
YS
76 if (!vma->vm_mm) /* vdso */
77 return false;
78
7da4e2cb
YS
79 /*
80 * Explicitly disabled through madvise or prctl, or some
81 * architectures may disable THP for some mappings, for
82 * example, s390 kvm.
83 * */
84 if ((vm_flags & VM_NOHUGEPAGE) ||
85 test_bit(MMF_DISABLE_THP, &vma->vm_mm->flags))
9fec5168 86 return false;
7da4e2cb
YS
87 /*
88 * If the hardware/firmware marked hugepage support disabled.
89 */
90 if (transparent_hugepage_flags & (1 << TRANSPARENT_HUGEPAGE_NEVER_DAX))
c0630669 91 return false;
9fec5168 92
7da4e2cb 93 /* khugepaged doesn't collapse DAX vma, but page fault is fine. */
9fec5168 94 if (vma_is_dax(vma))
7da4e2cb
YS
95 return in_pf;
96
97 /*
98 * Special VMA and hugetlb VMA.
99 * Must be checked after dax since some dax mappings may have
100 * VM_MIXEDMAP set.
101 */
102 if (vm_flags & VM_NO_KHUGEPAGED)
9fec5168
YS
103 return false;
104
7da4e2cb
YS
105 /*
106 * Check alignment for file vma and size for both file and anon vma.
107 *
108 * Skip the check for page fault. Huge fault does the check in fault
109 * handlers. And this check is not suitable for huge PUD fault.
110 */
111 if (!in_pf &&
112 !transhuge_vma_suitable(vma, (vma->vm_end - HPAGE_PMD_SIZE)))
9fec5168
YS
113 return false;
114
7da4e2cb
YS
115 /*
116 * Enabled via shmem mount options or sysfs settings.
117 * Must be done before hugepage flags check since shmem has its
118 * own flags.
119 */
120 if (!in_pf && shmem_file(vma->vm_file))
c0630669 121 return shmem_huge_enabled(vma);
9fec5168 122
1064026b 123 if (!hugepage_flags_enabled())
9fec5168
YS
124 return false;
125
126 /* THP settings require madvise. */
1064026b 127 if (!(vm_flags & VM_HUGEPAGE) && !hugepage_flags_always())
9fec5168
YS
128 return false;
129
130 /* Only regular file is valid */
7da4e2cb 131 if (!in_pf && file_thp_enabled(vma))
78d12c19 132 return true;
7635d9cb 133
9fec5168
YS
134 if (!vma_is_anonymous(vma))
135 return false;
136
137 if (vma_is_temporary_stack(vma))
138 return false;
139
140 /*
141 * THPeligible bit of smaps should show 1 for proper VMAs even
142 * though anon_vma is not initialized yet.
7da4e2cb
YS
143 *
144 * Allow page fault since anon_vma may be not initialized until
145 * the first page fault.
9fec5168
YS
146 */
147 if (!vma->anon_vma)
7da4e2cb 148 return (smaps || in_pf);
9fec5168
YS
149
150 return true;
7635d9cb
MH
151}
152
aaa9705b 153static bool get_huge_zero_page(void)
97ae1749
KS
154{
155 struct page *zero_page;
156retry:
157 if (likely(atomic_inc_not_zero(&huge_zero_refcount)))
aaa9705b 158 return true;
97ae1749
KS
159
160 zero_page = alloc_pages((GFP_TRANSHUGE | __GFP_ZERO) & ~__GFP_MOVABLE,
4a6c1297 161 HPAGE_PMD_ORDER);
d8a8e1f0
KS
162 if (!zero_page) {
163 count_vm_event(THP_ZERO_PAGE_ALLOC_FAILED);
aaa9705b 164 return false;
d8a8e1f0
KS
165 }
166 count_vm_event(THP_ZERO_PAGE_ALLOC);
97ae1749 167 preempt_disable();
5918d10a 168 if (cmpxchg(&huge_zero_page, NULL, zero_page)) {
97ae1749 169 preempt_enable();
5ddacbe9 170 __free_pages(zero_page, compound_order(zero_page));
97ae1749
KS
171 goto retry;
172 }
3b77e8c8 173 WRITE_ONCE(huge_zero_pfn, page_to_pfn(zero_page));
97ae1749
KS
174
175 /* We take additional reference here. It will be put back by shrinker */
176 atomic_set(&huge_zero_refcount, 2);
177 preempt_enable();
aaa9705b 178 return true;
4a6c1297
KS
179}
180
6fcb52a5 181static void put_huge_zero_page(void)
4a6c1297 182{
97ae1749
KS
183 /*
184 * Counter should never go to zero here. Only shrinker can put
185 * last reference.
186 */
187 BUG_ON(atomic_dec_and_test(&huge_zero_refcount));
4a6c1297
KS
188}
189
6fcb52a5
AL
190struct page *mm_get_huge_zero_page(struct mm_struct *mm)
191{
192 if (test_bit(MMF_HUGE_ZERO_PAGE, &mm->flags))
193 return READ_ONCE(huge_zero_page);
194
195 if (!get_huge_zero_page())
196 return NULL;
197
198 if (test_and_set_bit(MMF_HUGE_ZERO_PAGE, &mm->flags))
199 put_huge_zero_page();
200
201 return READ_ONCE(huge_zero_page);
202}
203
204void mm_put_huge_zero_page(struct mm_struct *mm)
205{
206 if (test_bit(MMF_HUGE_ZERO_PAGE, &mm->flags))
207 put_huge_zero_page();
208}
209
48896466
GC
210static unsigned long shrink_huge_zero_page_count(struct shrinker *shrink,
211 struct shrink_control *sc)
4a6c1297 212{
48896466
GC
213 /* we can free zero page only if last reference remains */
214 return atomic_read(&huge_zero_refcount) == 1 ? HPAGE_PMD_NR : 0;
215}
97ae1749 216
48896466
GC
217static unsigned long shrink_huge_zero_page_scan(struct shrinker *shrink,
218 struct shrink_control *sc)
219{
97ae1749 220 if (atomic_cmpxchg(&huge_zero_refcount, 1, 0) == 1) {
5918d10a
KS
221 struct page *zero_page = xchg(&huge_zero_page, NULL);
222 BUG_ON(zero_page == NULL);
3b77e8c8 223 WRITE_ONCE(huge_zero_pfn, ~0UL);
5ddacbe9 224 __free_pages(zero_page, compound_order(zero_page));
48896466 225 return HPAGE_PMD_NR;
97ae1749
KS
226 }
227
228 return 0;
4a6c1297
KS
229}
230
97ae1749 231static struct shrinker huge_zero_page_shrinker = {
48896466
GC
232 .count_objects = shrink_huge_zero_page_count,
233 .scan_objects = shrink_huge_zero_page_scan,
97ae1749
KS
234 .seeks = DEFAULT_SEEKS,
235};
236
71e3aac0 237#ifdef CONFIG_SYSFS
71e3aac0
AA
238static ssize_t enabled_show(struct kobject *kobj,
239 struct kobj_attribute *attr, char *buf)
240{
bfb0ffeb
JP
241 const char *output;
242
444eb2a4 243 if (test_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags))
bfb0ffeb
JP
244 output = "[always] madvise never";
245 else if (test_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
246 &transparent_hugepage_flags))
247 output = "always [madvise] never";
444eb2a4 248 else
bfb0ffeb
JP
249 output = "always madvise [never]";
250
251 return sysfs_emit(buf, "%s\n", output);
71e3aac0 252}
444eb2a4 253
71e3aac0
AA
254static ssize_t enabled_store(struct kobject *kobj,
255 struct kobj_attribute *attr,
256 const char *buf, size_t count)
257{
21440d7e 258 ssize_t ret = count;
ba76149f 259
f42f2552 260 if (sysfs_streq(buf, "always")) {
21440d7e
DR
261 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags);
262 set_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags);
f42f2552 263 } else if (sysfs_streq(buf, "madvise")) {
21440d7e
DR
264 clear_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags);
265 set_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags);
f42f2552 266 } else if (sysfs_streq(buf, "never")) {
21440d7e
DR
267 clear_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags);
268 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags);
269 } else
270 ret = -EINVAL;
ba76149f
AA
271
272 if (ret > 0) {
b46e756f 273 int err = start_stop_khugepaged();
ba76149f
AA
274 if (err)
275 ret = err;
276 }
ba76149f 277 return ret;
71e3aac0 278}
37139bb0
ML
279
280static struct kobj_attribute enabled_attr = __ATTR_RW(enabled);
71e3aac0 281
b46e756f 282ssize_t single_hugepage_flag_show(struct kobject *kobj,
bfb0ffeb
JP
283 struct kobj_attribute *attr, char *buf,
284 enum transparent_hugepage_flag flag)
71e3aac0 285{
bfb0ffeb
JP
286 return sysfs_emit(buf, "%d\n",
287 !!test_bit(flag, &transparent_hugepage_flags));
71e3aac0 288}
e27e6151 289
b46e756f 290ssize_t single_hugepage_flag_store(struct kobject *kobj,
71e3aac0
AA
291 struct kobj_attribute *attr,
292 const char *buf, size_t count,
293 enum transparent_hugepage_flag flag)
294{
e27e6151
BH
295 unsigned long value;
296 int ret;
297
298 ret = kstrtoul(buf, 10, &value);
299 if (ret < 0)
300 return ret;
301 if (value > 1)
302 return -EINVAL;
303
304 if (value)
71e3aac0 305 set_bit(flag, &transparent_hugepage_flags);
e27e6151 306 else
71e3aac0 307 clear_bit(flag, &transparent_hugepage_flags);
71e3aac0
AA
308
309 return count;
310}
311
71e3aac0
AA
312static ssize_t defrag_show(struct kobject *kobj,
313 struct kobj_attribute *attr, char *buf)
314{
bfb0ffeb
JP
315 const char *output;
316
317 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG,
318 &transparent_hugepage_flags))
319 output = "[always] defer defer+madvise madvise never";
320 else if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG,
321 &transparent_hugepage_flags))
322 output = "always [defer] defer+madvise madvise never";
323 else if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG,
324 &transparent_hugepage_flags))
325 output = "always defer [defer+madvise] madvise never";
326 else if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG,
327 &transparent_hugepage_flags))
328 output = "always defer defer+madvise [madvise] never";
329 else
330 output = "always defer defer+madvise madvise [never]";
331
332 return sysfs_emit(buf, "%s\n", output);
71e3aac0 333}
21440d7e 334
71e3aac0
AA
335static ssize_t defrag_store(struct kobject *kobj,
336 struct kobj_attribute *attr,
337 const char *buf, size_t count)
338{
f42f2552 339 if (sysfs_streq(buf, "always")) {
21440d7e
DR
340 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
341 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
342 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
343 set_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
f42f2552 344 } else if (sysfs_streq(buf, "defer+madvise")) {
21440d7e
DR
345 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
346 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
347 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
348 set_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
f42f2552 349 } else if (sysfs_streq(buf, "defer")) {
4fad7fb6
DR
350 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
351 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
352 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
353 set_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
f42f2552 354 } else if (sysfs_streq(buf, "madvise")) {
21440d7e
DR
355 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
356 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
357 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
358 set_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
f42f2552 359 } else if (sysfs_streq(buf, "never")) {
21440d7e
DR
360 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
361 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
362 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
363 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
364 } else
365 return -EINVAL;
366
367 return count;
71e3aac0 368}
37139bb0 369static struct kobj_attribute defrag_attr = __ATTR_RW(defrag);
71e3aac0 370
79da5407 371static ssize_t use_zero_page_show(struct kobject *kobj,
ae7a927d 372 struct kobj_attribute *attr, char *buf)
79da5407 373{
b46e756f 374 return single_hugepage_flag_show(kobj, attr, buf,
ae7a927d 375 TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
79da5407
KS
376}
377static ssize_t use_zero_page_store(struct kobject *kobj,
378 struct kobj_attribute *attr, const char *buf, size_t count)
379{
b46e756f 380 return single_hugepage_flag_store(kobj, attr, buf, count,
79da5407
KS
381 TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
382}
37139bb0 383static struct kobj_attribute use_zero_page_attr = __ATTR_RW(use_zero_page);
49920d28
HD
384
385static ssize_t hpage_pmd_size_show(struct kobject *kobj,
ae7a927d 386 struct kobj_attribute *attr, char *buf)
49920d28 387{
ae7a927d 388 return sysfs_emit(buf, "%lu\n", HPAGE_PMD_SIZE);
49920d28
HD
389}
390static struct kobj_attribute hpage_pmd_size_attr =
391 __ATTR_RO(hpage_pmd_size);
392
71e3aac0
AA
393static struct attribute *hugepage_attr[] = {
394 &enabled_attr.attr,
395 &defrag_attr.attr,
79da5407 396 &use_zero_page_attr.attr,
49920d28 397 &hpage_pmd_size_attr.attr,
396bcc52 398#ifdef CONFIG_SHMEM
5a6e75f8 399 &shmem_enabled_attr.attr,
71e3aac0
AA
400#endif
401 NULL,
402};
403
8aa95a21 404static const struct attribute_group hugepage_attr_group = {
71e3aac0 405 .attrs = hugepage_attr,
ba76149f
AA
406};
407
569e5590 408static int __init hugepage_init_sysfs(struct kobject **hugepage_kobj)
71e3aac0 409{
71e3aac0
AA
410 int err;
411
569e5590
SL
412 *hugepage_kobj = kobject_create_and_add("transparent_hugepage", mm_kobj);
413 if (unlikely(!*hugepage_kobj)) {
ae3a8c1c 414 pr_err("failed to create transparent hugepage kobject\n");
569e5590 415 return -ENOMEM;
ba76149f
AA
416 }
417
569e5590 418 err = sysfs_create_group(*hugepage_kobj, &hugepage_attr_group);
ba76149f 419 if (err) {
ae3a8c1c 420 pr_err("failed to register transparent hugepage group\n");
569e5590 421 goto delete_obj;
ba76149f
AA
422 }
423
569e5590 424 err = sysfs_create_group(*hugepage_kobj, &khugepaged_attr_group);
ba76149f 425 if (err) {
ae3a8c1c 426 pr_err("failed to register transparent hugepage group\n");
569e5590 427 goto remove_hp_group;
ba76149f 428 }
569e5590
SL
429
430 return 0;
431
432remove_hp_group:
433 sysfs_remove_group(*hugepage_kobj, &hugepage_attr_group);
434delete_obj:
435 kobject_put(*hugepage_kobj);
436 return err;
437}
438
439static void __init hugepage_exit_sysfs(struct kobject *hugepage_kobj)
440{
441 sysfs_remove_group(hugepage_kobj, &khugepaged_attr_group);
442 sysfs_remove_group(hugepage_kobj, &hugepage_attr_group);
443 kobject_put(hugepage_kobj);
444}
445#else
446static inline int hugepage_init_sysfs(struct kobject **hugepage_kobj)
447{
448 return 0;
449}
450
451static inline void hugepage_exit_sysfs(struct kobject *hugepage_kobj)
452{
453}
454#endif /* CONFIG_SYSFS */
455
456static int __init hugepage_init(void)
457{
458 int err;
459 struct kobject *hugepage_kobj;
460
461 if (!has_transparent_hugepage()) {
bae84953
AK
462 /*
463 * Hardware doesn't support hugepages, hence disable
464 * DAX PMD support.
465 */
466 transparent_hugepage_flags = 1 << TRANSPARENT_HUGEPAGE_NEVER_DAX;
569e5590
SL
467 return -EINVAL;
468 }
469
ff20c2e0
KS
470 /*
471 * hugepages can't be allocated by the buddy allocator
472 */
473 MAYBE_BUILD_BUG_ON(HPAGE_PMD_ORDER >= MAX_ORDER);
474 /*
475 * we use page->mapping and page->index in second tail page
476 * as list_head: assuming THP order >= 2
477 */
478 MAYBE_BUILD_BUG_ON(HPAGE_PMD_ORDER < 2);
479
569e5590
SL
480 err = hugepage_init_sysfs(&hugepage_kobj);
481 if (err)
65ebb64f 482 goto err_sysfs;
ba76149f 483
b46e756f 484 err = khugepaged_init();
ba76149f 485 if (err)
65ebb64f 486 goto err_slab;
ba76149f 487
e33c267a 488 err = register_shrinker(&huge_zero_page_shrinker, "thp-zero");
65ebb64f
KS
489 if (err)
490 goto err_hzp_shrinker;
e33c267a 491 err = register_shrinker(&deferred_split_shrinker, "thp-deferred_split");
9a982250
KS
492 if (err)
493 goto err_split_shrinker;
97ae1749 494
97562cd2
RR
495 /*
496 * By default disable transparent hugepages on smaller systems,
497 * where the extra memory used could hurt more than TLB overhead
498 * is likely to save. The admin can still enable it through /sys.
499 */
ca79b0c2 500 if (totalram_pages() < (512 << (20 - PAGE_SHIFT))) {
97562cd2 501 transparent_hugepage_flags = 0;
79553da2
KS
502 return 0;
503 }
97562cd2 504
79553da2 505 err = start_stop_khugepaged();
65ebb64f
KS
506 if (err)
507 goto err_khugepaged;
ba76149f 508
569e5590 509 return 0;
65ebb64f 510err_khugepaged:
9a982250
KS
511 unregister_shrinker(&deferred_split_shrinker);
512err_split_shrinker:
65ebb64f
KS
513 unregister_shrinker(&huge_zero_page_shrinker);
514err_hzp_shrinker:
b46e756f 515 khugepaged_destroy();
65ebb64f 516err_slab:
569e5590 517 hugepage_exit_sysfs(hugepage_kobj);
65ebb64f 518err_sysfs:
ba76149f 519 return err;
71e3aac0 520}
a64fb3cd 521subsys_initcall(hugepage_init);
71e3aac0
AA
522
523static int __init setup_transparent_hugepage(char *str)
524{
525 int ret = 0;
526 if (!str)
527 goto out;
528 if (!strcmp(str, "always")) {
529 set_bit(TRANSPARENT_HUGEPAGE_FLAG,
530 &transparent_hugepage_flags);
531 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
532 &transparent_hugepage_flags);
533 ret = 1;
534 } else if (!strcmp(str, "madvise")) {
535 clear_bit(TRANSPARENT_HUGEPAGE_FLAG,
536 &transparent_hugepage_flags);
537 set_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
538 &transparent_hugepage_flags);
539 ret = 1;
540 } else if (!strcmp(str, "never")) {
541 clear_bit(TRANSPARENT_HUGEPAGE_FLAG,
542 &transparent_hugepage_flags);
543 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
544 &transparent_hugepage_flags);
545 ret = 1;
546 }
547out:
548 if (!ret)
ae3a8c1c 549 pr_warn("transparent_hugepage= cannot parse, ignored\n");
71e3aac0
AA
550 return ret;
551}
552__setup("transparent_hugepage=", setup_transparent_hugepage);
553
f55e1014 554pmd_t maybe_pmd_mkwrite(pmd_t pmd, struct vm_area_struct *vma)
71e3aac0 555{
f55e1014 556 if (likely(vma->vm_flags & VM_WRITE))
71e3aac0
AA
557 pmd = pmd_mkwrite(pmd);
558 return pmd;
559}
560
87eaceb3
YS
561#ifdef CONFIG_MEMCG
562static inline struct deferred_split *get_deferred_split_queue(struct page *page)
9a982250 563{
bcfe06bf 564 struct mem_cgroup *memcg = page_memcg(compound_head(page));
87eaceb3
YS
565 struct pglist_data *pgdat = NODE_DATA(page_to_nid(page));
566
567 if (memcg)
568 return &memcg->deferred_split_queue;
569 else
570 return &pgdat->deferred_split_queue;
9a982250 571}
87eaceb3
YS
572#else
573static inline struct deferred_split *get_deferred_split_queue(struct page *page)
574{
575 struct pglist_data *pgdat = NODE_DATA(page_to_nid(page));
576
577 return &pgdat->deferred_split_queue;
578}
579#endif
9a982250
KS
580
581void prep_transhuge_page(struct page *page)
582{
583 /*
584 * we use page->mapping and page->indexlru in second tail page
585 * as list_head: assuming THP order >= 2
586 */
9a982250
KS
587
588 INIT_LIST_HEAD(page_deferred_list(page));
589 set_compound_page_dtor(page, TRANSHUGE_PAGE_DTOR);
590}
591
562beb72 592static inline bool is_transparent_hugepage(struct page *page)
005ba37c
SC
593{
594 if (!PageCompound(page))
fa1f68cc 595 return false;
005ba37c
SC
596
597 page = compound_head(page);
598 return is_huge_zero_page(page) ||
599 page[1].compound_dtor == TRANSHUGE_PAGE_DTOR;
600}
005ba37c 601
97d3d0f9
KS
602static unsigned long __thp_get_unmapped_area(struct file *filp,
603 unsigned long addr, unsigned long len,
74d2fad1
TK
604 loff_t off, unsigned long flags, unsigned long size)
605{
74d2fad1
TK
606 loff_t off_end = off + len;
607 loff_t off_align = round_up(off, size);
97d3d0f9 608 unsigned long len_pad, ret;
74d2fad1
TK
609
610 if (off_end <= off_align || (off_end - off_align) < size)
611 return 0;
612
613 len_pad = len + size;
614 if (len_pad < len || (off + len_pad) < off)
615 return 0;
616
97d3d0f9 617 ret = current->mm->get_unmapped_area(filp, addr, len_pad,
74d2fad1 618 off >> PAGE_SHIFT, flags);
97d3d0f9
KS
619
620 /*
621 * The failure might be due to length padding. The caller will retry
622 * without the padding.
623 */
624 if (IS_ERR_VALUE(ret))
74d2fad1
TK
625 return 0;
626
97d3d0f9
KS
627 /*
628 * Do not try to align to THP boundary if allocation at the address
629 * hint succeeds.
630 */
631 if (ret == addr)
632 return addr;
633
634 ret += (off - ret) & (size - 1);
635 return ret;
74d2fad1
TK
636}
637
638unsigned long thp_get_unmapped_area(struct file *filp, unsigned long addr,
639 unsigned long len, unsigned long pgoff, unsigned long flags)
640{
97d3d0f9 641 unsigned long ret;
74d2fad1
TK
642 loff_t off = (loff_t)pgoff << PAGE_SHIFT;
643
97d3d0f9
KS
644 ret = __thp_get_unmapped_area(filp, addr, len, off, flags, PMD_SIZE);
645 if (ret)
646 return ret;
1854bc6e 647
74d2fad1
TK
648 return current->mm->get_unmapped_area(filp, addr, len, pgoff, flags);
649}
650EXPORT_SYMBOL_GPL(thp_get_unmapped_area);
651
2b740303
SJ
652static vm_fault_t __do_huge_pmd_anonymous_page(struct vm_fault *vmf,
653 struct page *page, gfp_t gfp)
71e3aac0 654{
82b0f8c3 655 struct vm_area_struct *vma = vmf->vma;
71e3aac0 656 pgtable_t pgtable;
82b0f8c3 657 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
2b740303 658 vm_fault_t ret = 0;
71e3aac0 659
309381fe 660 VM_BUG_ON_PAGE(!PageCompound(page), page);
00501b53 661
8f425e4e 662 if (mem_cgroup_charge(page_folio(page), vma->vm_mm, gfp)) {
6b251fc9
AA
663 put_page(page);
664 count_vm_event(THP_FAULT_FALLBACK);
85b9f46e 665 count_vm_event(THP_FAULT_FALLBACK_CHARGE);
6b251fc9
AA
666 return VM_FAULT_FALLBACK;
667 }
9d82c694 668 cgroup_throttle_swaprate(page, gfp);
00501b53 669
4cf58924 670 pgtable = pte_alloc_one(vma->vm_mm);
00501b53 671 if (unlikely(!pgtable)) {
6b31d595
MH
672 ret = VM_FAULT_OOM;
673 goto release;
00501b53 674 }
71e3aac0 675
c79b57e4 676 clear_huge_page(page, vmf->address, HPAGE_PMD_NR);
52f37629
MK
677 /*
678 * The memory barrier inside __SetPageUptodate makes sure that
679 * clear_huge_page writes become visible before the set_pmd_at()
680 * write.
681 */
71e3aac0
AA
682 __SetPageUptodate(page);
683
82b0f8c3
JK
684 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
685 if (unlikely(!pmd_none(*vmf->pmd))) {
6b31d595 686 goto unlock_release;
71e3aac0
AA
687 } else {
688 pmd_t entry;
6b251fc9 689
6b31d595
MH
690 ret = check_stable_address_space(vma->vm_mm);
691 if (ret)
692 goto unlock_release;
693
6b251fc9
AA
694 /* Deliver the page fault to userland */
695 if (userfaultfd_missing(vma)) {
82b0f8c3 696 spin_unlock(vmf->ptl);
6b251fc9 697 put_page(page);
bae473a4 698 pte_free(vma->vm_mm, pgtable);
8fd5eda4
ML
699 ret = handle_userfault(vmf, VM_UFFD_MISSING);
700 VM_BUG_ON(ret & VM_FAULT_FALLBACK);
701 return ret;
6b251fc9
AA
702 }
703
3122359a 704 entry = mk_huge_pmd(page, vma->vm_page_prot);
f55e1014 705 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
40f2bbf7 706 page_add_new_anon_rmap(page, vma, haddr);
b518154e 707 lru_cache_add_inactive_or_unevictable(page, vma);
82b0f8c3
JK
708 pgtable_trans_huge_deposit(vma->vm_mm, vmf->pmd, pgtable);
709 set_pmd_at(vma->vm_mm, haddr, vmf->pmd, entry);
fca40573 710 update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
bae473a4 711 add_mm_counter(vma->vm_mm, MM_ANONPAGES, HPAGE_PMD_NR);
c4812909 712 mm_inc_nr_ptes(vma->vm_mm);
82b0f8c3 713 spin_unlock(vmf->ptl);
6b251fc9 714 count_vm_event(THP_FAULT_ALLOC);
9d82c694 715 count_memcg_event_mm(vma->vm_mm, THP_FAULT_ALLOC);
71e3aac0
AA
716 }
717
aa2e878e 718 return 0;
6b31d595
MH
719unlock_release:
720 spin_unlock(vmf->ptl);
721release:
722 if (pgtable)
723 pte_free(vma->vm_mm, pgtable);
6b31d595
MH
724 put_page(page);
725 return ret;
726
71e3aac0
AA
727}
728
444eb2a4 729/*
21440d7e
DR
730 * always: directly stall for all thp allocations
731 * defer: wake kswapd and fail if not immediately available
732 * defer+madvise: wake kswapd and directly stall for MADV_HUGEPAGE, otherwise
733 * fail if not immediately available
734 * madvise: directly stall for MADV_HUGEPAGE, otherwise fail if not immediately
735 * available
736 * never: never stall for any thp allocation
444eb2a4 737 */
164cc4fe 738gfp_t vma_thp_gfp_mask(struct vm_area_struct *vma)
444eb2a4 739{
164cc4fe 740 const bool vma_madvised = vma && (vma->vm_flags & VM_HUGEPAGE);
2f0799a0 741
ac79f78d 742 /* Always do synchronous compaction */
a8282608
AA
743 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags))
744 return GFP_TRANSHUGE | (vma_madvised ? 0 : __GFP_NORETRY);
ac79f78d
DR
745
746 /* Kick kcompactd and fail quickly */
21440d7e 747 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags))
19deb769 748 return GFP_TRANSHUGE_LIGHT | __GFP_KSWAPD_RECLAIM;
ac79f78d
DR
749
750 /* Synchronous compaction if madvised, otherwise kick kcompactd */
21440d7e 751 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags))
19deb769
DR
752 return GFP_TRANSHUGE_LIGHT |
753 (vma_madvised ? __GFP_DIRECT_RECLAIM :
754 __GFP_KSWAPD_RECLAIM);
ac79f78d
DR
755
756 /* Only do synchronous compaction if madvised */
21440d7e 757 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags))
19deb769
DR
758 return GFP_TRANSHUGE_LIGHT |
759 (vma_madvised ? __GFP_DIRECT_RECLAIM : 0);
ac79f78d 760
19deb769 761 return GFP_TRANSHUGE_LIGHT;
444eb2a4
MG
762}
763
c4088ebd 764/* Caller must hold page table lock. */
2efeb8da 765static void set_huge_zero_page(pgtable_t pgtable, struct mm_struct *mm,
97ae1749 766 struct vm_area_struct *vma, unsigned long haddr, pmd_t *pmd,
5918d10a 767 struct page *zero_page)
fc9fe822
KS
768{
769 pmd_t entry;
7c414164 770 if (!pmd_none(*pmd))
2efeb8da 771 return;
5918d10a 772 entry = mk_pmd(zero_page, vma->vm_page_prot);
fc9fe822 773 entry = pmd_mkhuge(entry);
12c9d70b
MW
774 if (pgtable)
775 pgtable_trans_huge_deposit(mm, pmd, pgtable);
fc9fe822 776 set_pmd_at(mm, haddr, pmd, entry);
c4812909 777 mm_inc_nr_ptes(mm);
fc9fe822
KS
778}
779
2b740303 780vm_fault_t do_huge_pmd_anonymous_page(struct vm_fault *vmf)
71e3aac0 781{
82b0f8c3 782 struct vm_area_struct *vma = vmf->vma;
077fcf11 783 gfp_t gfp;
cb196ee1 784 struct folio *folio;
82b0f8c3 785 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
71e3aac0 786
43675e6f 787 if (!transhuge_vma_suitable(vma, haddr))
c0292554 788 return VM_FAULT_FALLBACK;
128ec037
KS
789 if (unlikely(anon_vma_prepare(vma)))
790 return VM_FAULT_OOM;
4fa6893f 791 khugepaged_enter_vma(vma, vma->vm_flags);
d2081b2b 792
82b0f8c3 793 if (!(vmf->flags & FAULT_FLAG_WRITE) &&
bae473a4 794 !mm_forbids_zeropage(vma->vm_mm) &&
128ec037
KS
795 transparent_hugepage_use_zero_page()) {
796 pgtable_t pgtable;
797 struct page *zero_page;
2b740303 798 vm_fault_t ret;
4cf58924 799 pgtable = pte_alloc_one(vma->vm_mm);
128ec037 800 if (unlikely(!pgtable))
ba76149f 801 return VM_FAULT_OOM;
6fcb52a5 802 zero_page = mm_get_huge_zero_page(vma->vm_mm);
128ec037 803 if (unlikely(!zero_page)) {
bae473a4 804 pte_free(vma->vm_mm, pgtable);
81ab4201 805 count_vm_event(THP_FAULT_FALLBACK);
c0292554 806 return VM_FAULT_FALLBACK;
b9bbfbe3 807 }
82b0f8c3 808 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
6b251fc9 809 ret = 0;
82b0f8c3 810 if (pmd_none(*vmf->pmd)) {
6b31d595
MH
811 ret = check_stable_address_space(vma->vm_mm);
812 if (ret) {
813 spin_unlock(vmf->ptl);
bfe8cc1d 814 pte_free(vma->vm_mm, pgtable);
6b31d595 815 } else if (userfaultfd_missing(vma)) {
82b0f8c3 816 spin_unlock(vmf->ptl);
bfe8cc1d 817 pte_free(vma->vm_mm, pgtable);
82b0f8c3 818 ret = handle_userfault(vmf, VM_UFFD_MISSING);
6b251fc9
AA
819 VM_BUG_ON(ret & VM_FAULT_FALLBACK);
820 } else {
bae473a4 821 set_huge_zero_page(pgtable, vma->vm_mm, vma,
82b0f8c3 822 haddr, vmf->pmd, zero_page);
fca40573 823 update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
82b0f8c3 824 spin_unlock(vmf->ptl);
6b251fc9 825 }
bfe8cc1d 826 } else {
82b0f8c3 827 spin_unlock(vmf->ptl);
bae473a4 828 pte_free(vma->vm_mm, pgtable);
bfe8cc1d 829 }
6b251fc9 830 return ret;
71e3aac0 831 }
164cc4fe 832 gfp = vma_thp_gfp_mask(vma);
cb196ee1
MWO
833 folio = vma_alloc_folio(gfp, HPAGE_PMD_ORDER, vma, haddr, true);
834 if (unlikely(!folio)) {
128ec037 835 count_vm_event(THP_FAULT_FALLBACK);
c0292554 836 return VM_FAULT_FALLBACK;
128ec037 837 }
cb196ee1 838 return __do_huge_pmd_anonymous_page(vmf, &folio->page, gfp);
71e3aac0
AA
839}
840
ae18d6dc 841static void insert_pfn_pmd(struct vm_area_struct *vma, unsigned long addr,
3b6521f5
OH
842 pmd_t *pmd, pfn_t pfn, pgprot_t prot, bool write,
843 pgtable_t pgtable)
5cad465d
MW
844{
845 struct mm_struct *mm = vma->vm_mm;
846 pmd_t entry;
847 spinlock_t *ptl;
848
849 ptl = pmd_lock(mm, pmd);
c6f3c5ee
AK
850 if (!pmd_none(*pmd)) {
851 if (write) {
852 if (pmd_pfn(*pmd) != pfn_t_to_pfn(pfn)) {
853 WARN_ON_ONCE(!is_huge_zero_pmd(*pmd));
854 goto out_unlock;
855 }
856 entry = pmd_mkyoung(*pmd);
857 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
858 if (pmdp_set_access_flags(vma, addr, pmd, entry, 1))
859 update_mmu_cache_pmd(vma, addr, pmd);
860 }
861
862 goto out_unlock;
863 }
864
f25748e3
DW
865 entry = pmd_mkhuge(pfn_t_pmd(pfn, prot));
866 if (pfn_t_devmap(pfn))
867 entry = pmd_mkdevmap(entry);
01871e59 868 if (write) {
f55e1014
LT
869 entry = pmd_mkyoung(pmd_mkdirty(entry));
870 entry = maybe_pmd_mkwrite(entry, vma);
5cad465d 871 }
3b6521f5
OH
872
873 if (pgtable) {
874 pgtable_trans_huge_deposit(mm, pmd, pgtable);
c4812909 875 mm_inc_nr_ptes(mm);
c6f3c5ee 876 pgtable = NULL;
3b6521f5
OH
877 }
878
01871e59
RZ
879 set_pmd_at(mm, addr, pmd, entry);
880 update_mmu_cache_pmd(vma, addr, pmd);
c6f3c5ee
AK
881
882out_unlock:
5cad465d 883 spin_unlock(ptl);
c6f3c5ee
AK
884 if (pgtable)
885 pte_free(mm, pgtable);
5cad465d
MW
886}
887
9a9731b1
THV
888/**
889 * vmf_insert_pfn_pmd_prot - insert a pmd size pfn
890 * @vmf: Structure describing the fault
891 * @pfn: pfn to insert
892 * @pgprot: page protection to use
893 * @write: whether it's a write fault
894 *
895 * Insert a pmd size pfn. See vmf_insert_pfn() for additional info and
896 * also consult the vmf_insert_mixed_prot() documentation when
897 * @pgprot != @vmf->vma->vm_page_prot.
898 *
899 * Return: vm_fault_t value.
900 */
901vm_fault_t vmf_insert_pfn_pmd_prot(struct vm_fault *vmf, pfn_t pfn,
902 pgprot_t pgprot, bool write)
5cad465d 903{
fce86ff5
DW
904 unsigned long addr = vmf->address & PMD_MASK;
905 struct vm_area_struct *vma = vmf->vma;
3b6521f5 906 pgtable_t pgtable = NULL;
fce86ff5 907
5cad465d
MW
908 /*
909 * If we had pmd_special, we could avoid all these restrictions,
910 * but we need to be consistent with PTEs and architectures that
911 * can't support a 'special' bit.
912 */
e1fb4a08
DJ
913 BUG_ON(!(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) &&
914 !pfn_t_devmap(pfn));
5cad465d
MW
915 BUG_ON((vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) ==
916 (VM_PFNMAP|VM_MIXEDMAP));
917 BUG_ON((vma->vm_flags & VM_PFNMAP) && is_cow_mapping(vma->vm_flags));
5cad465d
MW
918
919 if (addr < vma->vm_start || addr >= vma->vm_end)
920 return VM_FAULT_SIGBUS;
308a047c 921
3b6521f5 922 if (arch_needs_pgtable_deposit()) {
4cf58924 923 pgtable = pte_alloc_one(vma->vm_mm);
3b6521f5
OH
924 if (!pgtable)
925 return VM_FAULT_OOM;
926 }
927
308a047c
BP
928 track_pfn_insert(vma, &pgprot, pfn);
929
fce86ff5 930 insert_pfn_pmd(vma, addr, vmf->pmd, pfn, pgprot, write, pgtable);
ae18d6dc 931 return VM_FAULT_NOPAGE;
5cad465d 932}
9a9731b1 933EXPORT_SYMBOL_GPL(vmf_insert_pfn_pmd_prot);
5cad465d 934
a00cc7d9 935#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
f55e1014 936static pud_t maybe_pud_mkwrite(pud_t pud, struct vm_area_struct *vma)
a00cc7d9 937{
f55e1014 938 if (likely(vma->vm_flags & VM_WRITE))
a00cc7d9
MW
939 pud = pud_mkwrite(pud);
940 return pud;
941}
942
943static void insert_pfn_pud(struct vm_area_struct *vma, unsigned long addr,
944 pud_t *pud, pfn_t pfn, pgprot_t prot, bool write)
945{
946 struct mm_struct *mm = vma->vm_mm;
947 pud_t entry;
948 spinlock_t *ptl;
949
950 ptl = pud_lock(mm, pud);
c6f3c5ee
AK
951 if (!pud_none(*pud)) {
952 if (write) {
953 if (pud_pfn(*pud) != pfn_t_to_pfn(pfn)) {
954 WARN_ON_ONCE(!is_huge_zero_pud(*pud));
955 goto out_unlock;
956 }
957 entry = pud_mkyoung(*pud);
958 entry = maybe_pud_mkwrite(pud_mkdirty(entry), vma);
959 if (pudp_set_access_flags(vma, addr, pud, entry, 1))
960 update_mmu_cache_pud(vma, addr, pud);
961 }
962 goto out_unlock;
963 }
964
a00cc7d9
MW
965 entry = pud_mkhuge(pfn_t_pud(pfn, prot));
966 if (pfn_t_devmap(pfn))
967 entry = pud_mkdevmap(entry);
968 if (write) {
f55e1014
LT
969 entry = pud_mkyoung(pud_mkdirty(entry));
970 entry = maybe_pud_mkwrite(entry, vma);
a00cc7d9
MW
971 }
972 set_pud_at(mm, addr, pud, entry);
973 update_mmu_cache_pud(vma, addr, pud);
c6f3c5ee
AK
974
975out_unlock:
a00cc7d9
MW
976 spin_unlock(ptl);
977}
978
9a9731b1
THV
979/**
980 * vmf_insert_pfn_pud_prot - insert a pud size pfn
981 * @vmf: Structure describing the fault
982 * @pfn: pfn to insert
983 * @pgprot: page protection to use
984 * @write: whether it's a write fault
985 *
986 * Insert a pud size pfn. See vmf_insert_pfn() for additional info and
987 * also consult the vmf_insert_mixed_prot() documentation when
988 * @pgprot != @vmf->vma->vm_page_prot.
989 *
990 * Return: vm_fault_t value.
991 */
992vm_fault_t vmf_insert_pfn_pud_prot(struct vm_fault *vmf, pfn_t pfn,
993 pgprot_t pgprot, bool write)
a00cc7d9 994{
fce86ff5
DW
995 unsigned long addr = vmf->address & PUD_MASK;
996 struct vm_area_struct *vma = vmf->vma;
fce86ff5 997
a00cc7d9
MW
998 /*
999 * If we had pud_special, we could avoid all these restrictions,
1000 * but we need to be consistent with PTEs and architectures that
1001 * can't support a 'special' bit.
1002 */
62ec0d8c
DJ
1003 BUG_ON(!(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) &&
1004 !pfn_t_devmap(pfn));
a00cc7d9
MW
1005 BUG_ON((vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) ==
1006 (VM_PFNMAP|VM_MIXEDMAP));
1007 BUG_ON((vma->vm_flags & VM_PFNMAP) && is_cow_mapping(vma->vm_flags));
a00cc7d9
MW
1008
1009 if (addr < vma->vm_start || addr >= vma->vm_end)
1010 return VM_FAULT_SIGBUS;
1011
1012 track_pfn_insert(vma, &pgprot, pfn);
1013
fce86ff5 1014 insert_pfn_pud(vma, addr, vmf->pud, pfn, pgprot, write);
a00cc7d9
MW
1015 return VM_FAULT_NOPAGE;
1016}
9a9731b1 1017EXPORT_SYMBOL_GPL(vmf_insert_pfn_pud_prot);
a00cc7d9
MW
1018#endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
1019
3565fce3 1020static void touch_pmd(struct vm_area_struct *vma, unsigned long addr,
a69e4717 1021 pmd_t *pmd, bool write)
3565fce3
DW
1022{
1023 pmd_t _pmd;
1024
a8f97366 1025 _pmd = pmd_mkyoung(*pmd);
a69e4717 1026 if (write)
a8f97366 1027 _pmd = pmd_mkdirty(_pmd);
3565fce3 1028 if (pmdp_set_access_flags(vma, addr & HPAGE_PMD_MASK,
a69e4717 1029 pmd, _pmd, write))
3565fce3
DW
1030 update_mmu_cache_pmd(vma, addr, pmd);
1031}
1032
1033struct page *follow_devmap_pmd(struct vm_area_struct *vma, unsigned long addr,
df06b37f 1034 pmd_t *pmd, int flags, struct dev_pagemap **pgmap)
3565fce3
DW
1035{
1036 unsigned long pfn = pmd_pfn(*pmd);
1037 struct mm_struct *mm = vma->vm_mm;
3565fce3
DW
1038 struct page *page;
1039
1040 assert_spin_locked(pmd_lockptr(mm, pmd));
1041
8310d48b
KF
1042 /*
1043 * When we COW a devmap PMD entry, we split it into PTEs, so we should
1044 * not be in this function with `flags & FOLL_COW` set.
1045 */
1046 WARN_ONCE(flags & FOLL_COW, "mm: In follow_devmap_pmd with FOLL_COW set");
1047
3faa52c0
JH
1048 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
1049 if (WARN_ON_ONCE((flags & (FOLL_PIN | FOLL_GET)) ==
1050 (FOLL_PIN | FOLL_GET)))
1051 return NULL;
1052
f6f37321 1053 if (flags & FOLL_WRITE && !pmd_write(*pmd))
3565fce3
DW
1054 return NULL;
1055
1056 if (pmd_present(*pmd) && pmd_devmap(*pmd))
1057 /* pass */;
1058 else
1059 return NULL;
1060
1061 if (flags & FOLL_TOUCH)
a69e4717 1062 touch_pmd(vma, addr, pmd, flags & FOLL_WRITE);
3565fce3
DW
1063
1064 /*
1065 * device mapped pages can only be returned if the
1066 * caller will manage the page reference count.
1067 */
3faa52c0 1068 if (!(flags & (FOLL_GET | FOLL_PIN)))
3565fce3
DW
1069 return ERR_PTR(-EEXIST);
1070
1071 pfn += (addr & ~PMD_MASK) >> PAGE_SHIFT;
df06b37f
KB
1072 *pgmap = get_dev_pagemap(pfn, *pgmap);
1073 if (!*pgmap)
3565fce3
DW
1074 return ERR_PTR(-EFAULT);
1075 page = pfn_to_page(pfn);
3faa52c0
JH
1076 if (!try_grab_page(page, flags))
1077 page = ERR_PTR(-ENOMEM);
3565fce3
DW
1078
1079 return page;
1080}
1081
71e3aac0
AA
1082int copy_huge_pmd(struct mm_struct *dst_mm, struct mm_struct *src_mm,
1083 pmd_t *dst_pmd, pmd_t *src_pmd, unsigned long addr,
8f34f1ea 1084 struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma)
71e3aac0 1085{
c4088ebd 1086 spinlock_t *dst_ptl, *src_ptl;
71e3aac0
AA
1087 struct page *src_page;
1088 pmd_t pmd;
12c9d70b 1089 pgtable_t pgtable = NULL;
628d47ce 1090 int ret = -ENOMEM;
71e3aac0 1091
628d47ce 1092 /* Skip if can be re-fill on fault */
8f34f1ea 1093 if (!vma_is_anonymous(dst_vma))
628d47ce
KS
1094 return 0;
1095
4cf58924 1096 pgtable = pte_alloc_one(dst_mm);
628d47ce
KS
1097 if (unlikely(!pgtable))
1098 goto out;
71e3aac0 1099
c4088ebd
KS
1100 dst_ptl = pmd_lock(dst_mm, dst_pmd);
1101 src_ptl = pmd_lockptr(src_mm, src_pmd);
1102 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
71e3aac0
AA
1103
1104 ret = -EAGAIN;
1105 pmd = *src_pmd;
84c3fc4e
ZY
1106
1107#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
1108 if (unlikely(is_swap_pmd(pmd))) {
1109 swp_entry_t entry = pmd_to_swp_entry(pmd);
1110
1111 VM_BUG_ON(!is_pmd_migration_entry(pmd));
6c287605 1112 if (!is_readable_migration_entry(entry)) {
4dd845b5
AP
1113 entry = make_readable_migration_entry(
1114 swp_offset(entry));
84c3fc4e 1115 pmd = swp_entry_to_pmd(entry);
ab6e3d09
NH
1116 if (pmd_swp_soft_dirty(*src_pmd))
1117 pmd = pmd_swp_mksoft_dirty(pmd);
8f34f1ea
PX
1118 if (pmd_swp_uffd_wp(*src_pmd))
1119 pmd = pmd_swp_mkuffd_wp(pmd);
84c3fc4e
ZY
1120 set_pmd_at(src_mm, addr, src_pmd, pmd);
1121 }
dd8a67f9 1122 add_mm_counter(dst_mm, MM_ANONPAGES, HPAGE_PMD_NR);
af5b0f6a 1123 mm_inc_nr_ptes(dst_mm);
dd8a67f9 1124 pgtable_trans_huge_deposit(dst_mm, dst_pmd, pgtable);
8f34f1ea
PX
1125 if (!userfaultfd_wp(dst_vma))
1126 pmd = pmd_swp_clear_uffd_wp(pmd);
84c3fc4e
ZY
1127 set_pmd_at(dst_mm, addr, dst_pmd, pmd);
1128 ret = 0;
1129 goto out_unlock;
1130 }
1131#endif
1132
628d47ce 1133 if (unlikely(!pmd_trans_huge(pmd))) {
71e3aac0
AA
1134 pte_free(dst_mm, pgtable);
1135 goto out_unlock;
1136 }
fc9fe822 1137 /*
c4088ebd 1138 * When page table lock is held, the huge zero pmd should not be
fc9fe822
KS
1139 * under splitting since we don't split the page itself, only pmd to
1140 * a page table.
1141 */
1142 if (is_huge_zero_pmd(pmd)) {
97ae1749
KS
1143 /*
1144 * get_huge_zero_page() will never allocate a new page here,
1145 * since we already have a zero page to copy. It just takes a
1146 * reference.
1147 */
5fc7a5f6
PX
1148 mm_get_huge_zero_page(dst_mm);
1149 goto out_zero_page;
fc9fe822 1150 }
de466bd6 1151
628d47ce
KS
1152 src_page = pmd_page(pmd);
1153 VM_BUG_ON_PAGE(!PageHead(src_page), src_page);
d042035e 1154
fb3d824d
DH
1155 get_page(src_page);
1156 if (unlikely(page_try_dup_anon_rmap(src_page, true, src_vma))) {
1157 /* Page maybe pinned: split and retry the fault on PTEs. */
1158 put_page(src_page);
d042035e
PX
1159 pte_free(dst_mm, pgtable);
1160 spin_unlock(src_ptl);
1161 spin_unlock(dst_ptl);
8f34f1ea 1162 __split_huge_pmd(src_vma, src_pmd, addr, false, NULL);
d042035e
PX
1163 return -EAGAIN;
1164 }
628d47ce 1165 add_mm_counter(dst_mm, MM_ANONPAGES, HPAGE_PMD_NR);
5fc7a5f6 1166out_zero_page:
c4812909 1167 mm_inc_nr_ptes(dst_mm);
628d47ce 1168 pgtable_trans_huge_deposit(dst_mm, dst_pmd, pgtable);
71e3aac0 1169 pmdp_set_wrprotect(src_mm, addr, src_pmd);
8f34f1ea
PX
1170 if (!userfaultfd_wp(dst_vma))
1171 pmd = pmd_clear_uffd_wp(pmd);
71e3aac0
AA
1172 pmd = pmd_mkold(pmd_wrprotect(pmd));
1173 set_pmd_at(dst_mm, addr, dst_pmd, pmd);
71e3aac0
AA
1174
1175 ret = 0;
1176out_unlock:
c4088ebd
KS
1177 spin_unlock(src_ptl);
1178 spin_unlock(dst_ptl);
71e3aac0
AA
1179out:
1180 return ret;
1181}
1182
a00cc7d9
MW
1183#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
1184static void touch_pud(struct vm_area_struct *vma, unsigned long addr,
5fe653e9 1185 pud_t *pud, bool write)
a00cc7d9
MW
1186{
1187 pud_t _pud;
1188
a8f97366 1189 _pud = pud_mkyoung(*pud);
5fe653e9 1190 if (write)
a8f97366 1191 _pud = pud_mkdirty(_pud);
a00cc7d9 1192 if (pudp_set_access_flags(vma, addr & HPAGE_PUD_MASK,
5fe653e9 1193 pud, _pud, write))
a00cc7d9
MW
1194 update_mmu_cache_pud(vma, addr, pud);
1195}
1196
1197struct page *follow_devmap_pud(struct vm_area_struct *vma, unsigned long addr,
df06b37f 1198 pud_t *pud, int flags, struct dev_pagemap **pgmap)
a00cc7d9
MW
1199{
1200 unsigned long pfn = pud_pfn(*pud);
1201 struct mm_struct *mm = vma->vm_mm;
a00cc7d9
MW
1202 struct page *page;
1203
1204 assert_spin_locked(pud_lockptr(mm, pud));
1205
f6f37321 1206 if (flags & FOLL_WRITE && !pud_write(*pud))
a00cc7d9
MW
1207 return NULL;
1208
3faa52c0
JH
1209 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
1210 if (WARN_ON_ONCE((flags & (FOLL_PIN | FOLL_GET)) ==
1211 (FOLL_PIN | FOLL_GET)))
1212 return NULL;
1213
a00cc7d9
MW
1214 if (pud_present(*pud) && pud_devmap(*pud))
1215 /* pass */;
1216 else
1217 return NULL;
1218
1219 if (flags & FOLL_TOUCH)
5fe653e9 1220 touch_pud(vma, addr, pud, flags & FOLL_WRITE);
a00cc7d9
MW
1221
1222 /*
1223 * device mapped pages can only be returned if the
1224 * caller will manage the page reference count.
3faa52c0
JH
1225 *
1226 * At least one of FOLL_GET | FOLL_PIN must be set, so assert that here:
a00cc7d9 1227 */
3faa52c0 1228 if (!(flags & (FOLL_GET | FOLL_PIN)))
a00cc7d9
MW
1229 return ERR_PTR(-EEXIST);
1230
1231 pfn += (addr & ~PUD_MASK) >> PAGE_SHIFT;
df06b37f
KB
1232 *pgmap = get_dev_pagemap(pfn, *pgmap);
1233 if (!*pgmap)
a00cc7d9
MW
1234 return ERR_PTR(-EFAULT);
1235 page = pfn_to_page(pfn);
3faa52c0
JH
1236 if (!try_grab_page(page, flags))
1237 page = ERR_PTR(-ENOMEM);
a00cc7d9
MW
1238
1239 return page;
1240}
1241
1242int copy_huge_pud(struct mm_struct *dst_mm, struct mm_struct *src_mm,
1243 pud_t *dst_pud, pud_t *src_pud, unsigned long addr,
1244 struct vm_area_struct *vma)
1245{
1246 spinlock_t *dst_ptl, *src_ptl;
1247 pud_t pud;
1248 int ret;
1249
1250 dst_ptl = pud_lock(dst_mm, dst_pud);
1251 src_ptl = pud_lockptr(src_mm, src_pud);
1252 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
1253
1254 ret = -EAGAIN;
1255 pud = *src_pud;
1256 if (unlikely(!pud_trans_huge(pud) && !pud_devmap(pud)))
1257 goto out_unlock;
1258
1259 /*
1260 * When page table lock is held, the huge zero pud should not be
1261 * under splitting since we don't split the page itself, only pud to
1262 * a page table.
1263 */
1264 if (is_huge_zero_pud(pud)) {
1265 /* No huge zero pud yet */
1266 }
1267
fb3d824d
DH
1268 /*
1269 * TODO: once we support anonymous pages, use page_try_dup_anon_rmap()
1270 * and split if duplicating fails.
1271 */
a00cc7d9
MW
1272 pudp_set_wrprotect(src_mm, addr, src_pud);
1273 pud = pud_mkold(pud_wrprotect(pud));
1274 set_pud_at(dst_mm, addr, dst_pud, pud);
1275
1276 ret = 0;
1277out_unlock:
1278 spin_unlock(src_ptl);
1279 spin_unlock(dst_ptl);
1280 return ret;
1281}
1282
1283void huge_pud_set_accessed(struct vm_fault *vmf, pud_t orig_pud)
1284{
a00cc7d9
MW
1285 bool write = vmf->flags & FAULT_FLAG_WRITE;
1286
1287 vmf->ptl = pud_lock(vmf->vma->vm_mm, vmf->pud);
1288 if (unlikely(!pud_same(*vmf->pud, orig_pud)))
1289 goto unlock;
1290
5fe653e9 1291 touch_pud(vmf->vma, vmf->address, vmf->pud, write);
a00cc7d9
MW
1292unlock:
1293 spin_unlock(vmf->ptl);
1294}
1295#endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
1296
5db4f15c 1297void huge_pmd_set_accessed(struct vm_fault *vmf)
a1dd450b 1298{
20f664aa 1299 bool write = vmf->flags & FAULT_FLAG_WRITE;
a1dd450b 1300
82b0f8c3 1301 vmf->ptl = pmd_lock(vmf->vma->vm_mm, vmf->pmd);
a69e4717 1302 if (unlikely(!pmd_same(*vmf->pmd, vmf->orig_pmd)))
a1dd450b
WD
1303 goto unlock;
1304
a69e4717 1305 touch_pmd(vmf->vma, vmf->address, vmf->pmd, write);
a1dd450b
WD
1306
1307unlock:
82b0f8c3 1308 spin_unlock(vmf->ptl);
a1dd450b
WD
1309}
1310
5db4f15c 1311vm_fault_t do_huge_pmd_wp_page(struct vm_fault *vmf)
71e3aac0 1312{
c89357e2 1313 const bool unshare = vmf->flags & FAULT_FLAG_UNSHARE;
82b0f8c3 1314 struct vm_area_struct *vma = vmf->vma;
3917c802 1315 struct page *page;
82b0f8c3 1316 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
5db4f15c 1317 pmd_t orig_pmd = vmf->orig_pmd;
71e3aac0 1318
82b0f8c3 1319 vmf->ptl = pmd_lockptr(vma->vm_mm, vmf->pmd);
81d1b09c 1320 VM_BUG_ON_VMA(!vma->anon_vma, vma);
3917c802 1321
c89357e2
DH
1322 VM_BUG_ON(unshare && (vmf->flags & FAULT_FLAG_WRITE));
1323 VM_BUG_ON(!unshare && !(vmf->flags & FAULT_FLAG_WRITE));
1324
93b4796d 1325 if (is_huge_zero_pmd(orig_pmd))
3917c802
KS
1326 goto fallback;
1327
82b0f8c3 1328 spin_lock(vmf->ptl);
3917c802
KS
1329
1330 if (unlikely(!pmd_same(*vmf->pmd, orig_pmd))) {
1331 spin_unlock(vmf->ptl);
1332 return 0;
1333 }
71e3aac0
AA
1334
1335 page = pmd_page(orig_pmd);
f6004e73 1336 VM_BUG_ON_PAGE(!PageHead(page), page);
3917c802 1337
6c287605
DH
1338 /* Early check when only holding the PT lock. */
1339 if (PageAnonExclusive(page))
1340 goto reuse;
1341
ba3c4ce6
HY
1342 if (!trylock_page(page)) {
1343 get_page(page);
1344 spin_unlock(vmf->ptl);
1345 lock_page(page);
1346 spin_lock(vmf->ptl);
1347 if (unlikely(!pmd_same(*vmf->pmd, orig_pmd))) {
3917c802 1348 spin_unlock(vmf->ptl);
ba3c4ce6
HY
1349 unlock_page(page);
1350 put_page(page);
3917c802 1351 return 0;
ba3c4ce6
HY
1352 }
1353 put_page(page);
1354 }
3917c802 1355
6c287605
DH
1356 /* Recheck after temporarily dropping the PT lock. */
1357 if (PageAnonExclusive(page)) {
1358 unlock_page(page);
1359 goto reuse;
1360 }
1361
3917c802 1362 /*
c89357e2 1363 * See do_wp_page(): we can only reuse the page exclusively if there are
3bff7e3f
DH
1364 * no additional references. Note that we always drain the LRU
1365 * pagevecs immediately after adding a THP.
3917c802 1366 */
3bff7e3f
DH
1367 if (page_count(page) > 1 + PageSwapCache(page) * thp_nr_pages(page))
1368 goto unlock_fallback;
1369 if (PageSwapCache(page))
1370 try_to_free_swap(page);
1371 if (page_count(page) == 1) {
71e3aac0 1372 pmd_t entry;
6c54dc6c
DH
1373
1374 page_move_anon_rmap(page, vma);
6c287605
DH
1375 unlock_page(page);
1376reuse:
c89357e2
DH
1377 if (unlikely(unshare)) {
1378 spin_unlock(vmf->ptl);
1379 return 0;
1380 }
71e3aac0 1381 entry = pmd_mkyoung(orig_pmd);
f55e1014 1382 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
3917c802 1383 if (pmdp_set_access_flags(vma, haddr, vmf->pmd, entry, 1))
82b0f8c3 1384 update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
82b0f8c3 1385 spin_unlock(vmf->ptl);
3917c802 1386 return VM_FAULT_WRITE;
71e3aac0 1387 }
3917c802 1388
3bff7e3f 1389unlock_fallback:
3917c802 1390 unlock_page(page);
82b0f8c3 1391 spin_unlock(vmf->ptl);
3917c802
KS
1392fallback:
1393 __split_huge_pmd(vma, vmf->pmd, vmf->address, false, NULL);
1394 return VM_FAULT_FALLBACK;
71e3aac0
AA
1395}
1396
8310d48b 1397/*
a308c71b
PX
1398 * FOLL_FORCE can write to even unwritable pmd's, but only
1399 * after we've gone through a COW cycle and they are dirty.
8310d48b
KF
1400 */
1401static inline bool can_follow_write_pmd(pmd_t pmd, unsigned int flags)
1402{
a308c71b
PX
1403 return pmd_write(pmd) ||
1404 ((flags & FOLL_FORCE) && (flags & FOLL_COW) && pmd_dirty(pmd));
8310d48b
KF
1405}
1406
b676b293 1407struct page *follow_trans_huge_pmd(struct vm_area_struct *vma,
71e3aac0
AA
1408 unsigned long addr,
1409 pmd_t *pmd,
1410 unsigned int flags)
1411{
b676b293 1412 struct mm_struct *mm = vma->vm_mm;
71e3aac0
AA
1413 struct page *page = NULL;
1414
c4088ebd 1415 assert_spin_locked(pmd_lockptr(mm, pmd));
71e3aac0 1416
8310d48b 1417 if (flags & FOLL_WRITE && !can_follow_write_pmd(*pmd, flags))
71e3aac0
AA
1418 goto out;
1419
85facf25
KS
1420 /* Avoid dumping huge zero page */
1421 if ((flags & FOLL_DUMP) && is_huge_zero_pmd(*pmd))
1422 return ERR_PTR(-EFAULT);
1423
2b4847e7 1424 /* Full NUMA hinting faults to serialise migration in fault paths */
8a0516ed 1425 if ((flags & FOLL_NUMA) && pmd_protnone(*pmd))
2b4847e7
MG
1426 goto out;
1427
71e3aac0 1428 page = pmd_page(*pmd);
ca120cf6 1429 VM_BUG_ON_PAGE(!PageHead(page) && !is_zone_device_page(page), page);
3faa52c0 1430
a7f22660
DH
1431 if (!pmd_write(*pmd) && gup_must_unshare(flags, page))
1432 return ERR_PTR(-EMLINK);
1433
b6a2619c
DH
1434 VM_BUG_ON_PAGE((flags & FOLL_PIN) && PageAnon(page) &&
1435 !PageAnonExclusive(page), page);
1436
3faa52c0
JH
1437 if (!try_grab_page(page, flags))
1438 return ERR_PTR(-ENOMEM);
1439
3565fce3 1440 if (flags & FOLL_TOUCH)
a69e4717 1441 touch_pmd(vma, addr, pmd, flags & FOLL_WRITE);
3faa52c0 1442
71e3aac0 1443 page += (addr & ~HPAGE_PMD_MASK) >> PAGE_SHIFT;
ca120cf6 1444 VM_BUG_ON_PAGE(!PageCompound(page) && !is_zone_device_page(page), page);
71e3aac0
AA
1445
1446out:
1447 return page;
1448}
1449
d10e63f2 1450/* NUMA hinting page fault entry point for trans huge pmds */
5db4f15c 1451vm_fault_t do_huge_pmd_numa_page(struct vm_fault *vmf)
d10e63f2 1452{
82b0f8c3 1453 struct vm_area_struct *vma = vmf->vma;
c5b5a3dd
YS
1454 pmd_t oldpmd = vmf->orig_pmd;
1455 pmd_t pmd;
b32967ff 1456 struct page *page;
82b0f8c3 1457 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
c5b5a3dd 1458 int page_nid = NUMA_NO_NODE;
90572890 1459 int target_nid, last_cpupid = -1;
8191acbd 1460 bool migrated = false;
c5b5a3dd 1461 bool was_writable = pmd_savedwrite(oldpmd);
6688cc05 1462 int flags = 0;
d10e63f2 1463
82b0f8c3 1464 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
c5b5a3dd 1465 if (unlikely(!pmd_same(oldpmd, *vmf->pmd))) {
82b0f8c3 1466 spin_unlock(vmf->ptl);
de466bd6
MG
1467 goto out;
1468 }
1469
c5b5a3dd
YS
1470 pmd = pmd_modify(oldpmd, vma->vm_page_prot);
1471 page = vm_normal_page_pmd(vma, haddr, pmd);
1472 if (!page)
1473 goto out_map;
1474
1475 /* See similar comment in do_numa_page for explanation */
1476 if (!was_writable)
1477 flags |= TNF_NO_GROUP;
1478
1479 page_nid = page_to_nid(page);
1480 last_cpupid = page_cpupid_last(page);
1481 target_nid = numa_migrate_prep(page, vma, haddr, page_nid,
1482 &flags);
1483
1484 if (target_nid == NUMA_NO_NODE) {
1485 put_page(page);
1486 goto out_map;
1487 }
1488
82b0f8c3 1489 spin_unlock(vmf->ptl);
8b1b436d 1490
c5b5a3dd 1491 migrated = migrate_misplaced_page(page, vma, target_nid);
6688cc05
PZ
1492 if (migrated) {
1493 flags |= TNF_MIGRATED;
8191acbd 1494 page_nid = target_nid;
c5b5a3dd 1495 } else {
074c2381 1496 flags |= TNF_MIGRATE_FAIL;
c5b5a3dd
YS
1497 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
1498 if (unlikely(!pmd_same(oldpmd, *vmf->pmd))) {
1499 spin_unlock(vmf->ptl);
1500 goto out;
1501 }
1502 goto out_map;
1503 }
b8916634
MG
1504
1505out:
98fa15f3 1506 if (page_nid != NUMA_NO_NODE)
82b0f8c3 1507 task_numa_fault(last_cpupid, page_nid, HPAGE_PMD_NR,
9a8b300f 1508 flags);
8191acbd 1509
d10e63f2 1510 return 0;
c5b5a3dd
YS
1511
1512out_map:
1513 /* Restore the PMD */
1514 pmd = pmd_modify(oldpmd, vma->vm_page_prot);
1515 pmd = pmd_mkyoung(pmd);
1516 if (was_writable)
1517 pmd = pmd_mkwrite(pmd);
1518 set_pmd_at(vma->vm_mm, haddr, vmf->pmd, pmd);
1519 update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
1520 spin_unlock(vmf->ptl);
1521 goto out;
d10e63f2
MG
1522}
1523
319904ad
HY
1524/*
1525 * Return true if we do MADV_FREE successfully on entire pmd page.
1526 * Otherwise, return false.
1527 */
1528bool madvise_free_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
b8d3c4c3 1529 pmd_t *pmd, unsigned long addr, unsigned long next)
b8d3c4c3
MK
1530{
1531 spinlock_t *ptl;
1532 pmd_t orig_pmd;
1533 struct page *page;
1534 struct mm_struct *mm = tlb->mm;
319904ad 1535 bool ret = false;
b8d3c4c3 1536
ed6a7935 1537 tlb_change_page_size(tlb, HPAGE_PMD_SIZE);
07e32661 1538
b6ec57f4
KS
1539 ptl = pmd_trans_huge_lock(pmd, vma);
1540 if (!ptl)
25eedabe 1541 goto out_unlocked;
b8d3c4c3
MK
1542
1543 orig_pmd = *pmd;
319904ad 1544 if (is_huge_zero_pmd(orig_pmd))
b8d3c4c3 1545 goto out;
b8d3c4c3 1546
84c3fc4e
ZY
1547 if (unlikely(!pmd_present(orig_pmd))) {
1548 VM_BUG_ON(thp_migration_supported() &&
1549 !is_pmd_migration_entry(orig_pmd));
1550 goto out;
1551 }
1552
b8d3c4c3
MK
1553 page = pmd_page(orig_pmd);
1554 /*
1555 * If other processes are mapping this page, we couldn't discard
1556 * the page unless they all do MADV_FREE so let's skip the page.
1557 */
babbbdd0 1558 if (total_mapcount(page) != 1)
b8d3c4c3
MK
1559 goto out;
1560
1561 if (!trylock_page(page))
1562 goto out;
1563
1564 /*
1565 * If user want to discard part-pages of THP, split it so MADV_FREE
1566 * will deactivate only them.
1567 */
1568 if (next - addr != HPAGE_PMD_SIZE) {
1569 get_page(page);
1570 spin_unlock(ptl);
9818b8cd 1571 split_huge_page(page);
b8d3c4c3 1572 unlock_page(page);
bbf29ffc 1573 put_page(page);
b8d3c4c3
MK
1574 goto out_unlocked;
1575 }
1576
1577 if (PageDirty(page))
1578 ClearPageDirty(page);
1579 unlock_page(page);
1580
b8d3c4c3 1581 if (pmd_young(orig_pmd) || pmd_dirty(orig_pmd)) {
58ceeb6b 1582 pmdp_invalidate(vma, addr, pmd);
b8d3c4c3
MK
1583 orig_pmd = pmd_mkold(orig_pmd);
1584 orig_pmd = pmd_mkclean(orig_pmd);
1585
1586 set_pmd_at(mm, addr, pmd, orig_pmd);
1587 tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
1588 }
802a3a92
SL
1589
1590 mark_page_lazyfree(page);
319904ad 1591 ret = true;
b8d3c4c3
MK
1592out:
1593 spin_unlock(ptl);
1594out_unlocked:
1595 return ret;
1596}
1597
953c66c2
AK
1598static inline void zap_deposited_table(struct mm_struct *mm, pmd_t *pmd)
1599{
1600 pgtable_t pgtable;
1601
1602 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
1603 pte_free(mm, pgtable);
c4812909 1604 mm_dec_nr_ptes(mm);
953c66c2
AK
1605}
1606
71e3aac0 1607int zap_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
f21760b1 1608 pmd_t *pmd, unsigned long addr)
71e3aac0 1609{
da146769 1610 pmd_t orig_pmd;
bf929152 1611 spinlock_t *ptl;
71e3aac0 1612
ed6a7935 1613 tlb_change_page_size(tlb, HPAGE_PMD_SIZE);
07e32661 1614
b6ec57f4
KS
1615 ptl = __pmd_trans_huge_lock(pmd, vma);
1616 if (!ptl)
da146769
KS
1617 return 0;
1618 /*
1619 * For architectures like ppc64 we look at deposited pgtable
1620 * when calling pmdp_huge_get_and_clear. So do the
1621 * pgtable_trans_huge_withdraw after finishing pmdp related
1622 * operations.
1623 */
93a98695
AK
1624 orig_pmd = pmdp_huge_get_and_clear_full(vma, addr, pmd,
1625 tlb->fullmm);
da146769 1626 tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
2484ca9b 1627 if (vma_is_special_huge(vma)) {
3b6521f5
OH
1628 if (arch_needs_pgtable_deposit())
1629 zap_deposited_table(tlb->mm, pmd);
da146769 1630 spin_unlock(ptl);
da146769 1631 } else if (is_huge_zero_pmd(orig_pmd)) {
c14a6eb4 1632 zap_deposited_table(tlb->mm, pmd);
da146769 1633 spin_unlock(ptl);
da146769 1634 } else {
616b8371
ZY
1635 struct page *page = NULL;
1636 int flush_needed = 1;
1637
1638 if (pmd_present(orig_pmd)) {
1639 page = pmd_page(orig_pmd);
cea86fe2 1640 page_remove_rmap(page, vma, true);
616b8371
ZY
1641 VM_BUG_ON_PAGE(page_mapcount(page) < 0, page);
1642 VM_BUG_ON_PAGE(!PageHead(page), page);
1643 } else if (thp_migration_supported()) {
1644 swp_entry_t entry;
1645
1646 VM_BUG_ON(!is_pmd_migration_entry(orig_pmd));
1647 entry = pmd_to_swp_entry(orig_pmd);
af5cdaf8 1648 page = pfn_swap_entry_to_page(entry);
616b8371
ZY
1649 flush_needed = 0;
1650 } else
1651 WARN_ONCE(1, "Non present huge pmd without pmd migration enabled!");
1652
b5072380 1653 if (PageAnon(page)) {
c14a6eb4 1654 zap_deposited_table(tlb->mm, pmd);
b5072380
KS
1655 add_mm_counter(tlb->mm, MM_ANONPAGES, -HPAGE_PMD_NR);
1656 } else {
953c66c2
AK
1657 if (arch_needs_pgtable_deposit())
1658 zap_deposited_table(tlb->mm, pmd);
fadae295 1659 add_mm_counter(tlb->mm, mm_counter_file(page), -HPAGE_PMD_NR);
b5072380 1660 }
616b8371 1661
da146769 1662 spin_unlock(ptl);
616b8371
ZY
1663 if (flush_needed)
1664 tlb_remove_page_size(tlb, page, HPAGE_PMD_SIZE);
025c5b24 1665 }
da146769 1666 return 1;
71e3aac0
AA
1667}
1668
1dd38b6c
AK
1669#ifndef pmd_move_must_withdraw
1670static inline int pmd_move_must_withdraw(spinlock_t *new_pmd_ptl,
1671 spinlock_t *old_pmd_ptl,
1672 struct vm_area_struct *vma)
1673{
1674 /*
1675 * With split pmd lock we also need to move preallocated
1676 * PTE page table if new_pmd is on different PMD page table.
1677 *
1678 * We also don't deposit and withdraw tables for file pages.
1679 */
1680 return (new_pmd_ptl != old_pmd_ptl) && vma_is_anonymous(vma);
1681}
1682#endif
1683
ab6e3d09
NH
1684static pmd_t move_soft_dirty_pmd(pmd_t pmd)
1685{
1686#ifdef CONFIG_MEM_SOFT_DIRTY
1687 if (unlikely(is_pmd_migration_entry(pmd)))
1688 pmd = pmd_swp_mksoft_dirty(pmd);
1689 else if (pmd_present(pmd))
1690 pmd = pmd_mksoft_dirty(pmd);
1691#endif
1692 return pmd;
1693}
1694
bf8616d5 1695bool move_huge_pmd(struct vm_area_struct *vma, unsigned long old_addr,
b8aa9d9d 1696 unsigned long new_addr, pmd_t *old_pmd, pmd_t *new_pmd)
37a1c49a 1697{
bf929152 1698 spinlock_t *old_ptl, *new_ptl;
37a1c49a 1699 pmd_t pmd;
37a1c49a 1700 struct mm_struct *mm = vma->vm_mm;
5d190420 1701 bool force_flush = false;
37a1c49a 1702
37a1c49a
AA
1703 /*
1704 * The destination pmd shouldn't be established, free_pgtables()
1705 * should have release it.
1706 */
1707 if (WARN_ON(!pmd_none(*new_pmd))) {
1708 VM_BUG_ON(pmd_trans_huge(*new_pmd));
4b471e88 1709 return false;
37a1c49a
AA
1710 }
1711
bf929152
KS
1712 /*
1713 * We don't have to worry about the ordering of src and dst
c1e8d7c6 1714 * ptlocks because exclusive mmap_lock prevents deadlock.
bf929152 1715 */
b6ec57f4
KS
1716 old_ptl = __pmd_trans_huge_lock(old_pmd, vma);
1717 if (old_ptl) {
bf929152
KS
1718 new_ptl = pmd_lockptr(mm, new_pmd);
1719 if (new_ptl != old_ptl)
1720 spin_lock_nested(new_ptl, SINGLE_DEPTH_NESTING);
8809aa2d 1721 pmd = pmdp_huge_get_and_clear(mm, old_addr, old_pmd);
eb66ae03 1722 if (pmd_present(pmd))
a2ce2666 1723 force_flush = true;
025c5b24 1724 VM_BUG_ON(!pmd_none(*new_pmd));
3592806c 1725
1dd38b6c 1726 if (pmd_move_must_withdraw(new_ptl, old_ptl, vma)) {
b3084f4d 1727 pgtable_t pgtable;
3592806c
KS
1728 pgtable = pgtable_trans_huge_withdraw(mm, old_pmd);
1729 pgtable_trans_huge_deposit(mm, new_pmd, pgtable);
3592806c 1730 }
ab6e3d09
NH
1731 pmd = move_soft_dirty_pmd(pmd);
1732 set_pmd_at(mm, new_addr, new_pmd, pmd);
5d190420 1733 if (force_flush)
7c38f181 1734 flush_pmd_tlb_range(vma, old_addr, old_addr + PMD_SIZE);
eb66ae03
LT
1735 if (new_ptl != old_ptl)
1736 spin_unlock(new_ptl);
bf929152 1737 spin_unlock(old_ptl);
4b471e88 1738 return true;
37a1c49a 1739 }
4b471e88 1740 return false;
37a1c49a
AA
1741}
1742
f123d74a
MG
1743/*
1744 * Returns
1745 * - 0 if PMD could not be locked
f0953a1b 1746 * - 1 if PMD was locked but protections unchanged and TLB flush unnecessary
e346e668 1747 * or if prot_numa but THP migration is not supported
f0953a1b 1748 * - HPAGE_PMD_NR if protections changed and TLB flush necessary
f123d74a 1749 */
4a18419f
NA
1750int change_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
1751 pmd_t *pmd, unsigned long addr, pgprot_t newprot,
1752 unsigned long cp_flags)
cd7548ab
JW
1753{
1754 struct mm_struct *mm = vma->vm_mm;
bf929152 1755 spinlock_t *ptl;
c9fe6656 1756 pmd_t oldpmd, entry;
0a85e51d
KS
1757 bool preserve_write;
1758 int ret;
58705444 1759 bool prot_numa = cp_flags & MM_CP_PROT_NUMA;
292924b2
PX
1760 bool uffd_wp = cp_flags & MM_CP_UFFD_WP;
1761 bool uffd_wp_resolve = cp_flags & MM_CP_UFFD_WP_RESOLVE;
cd7548ab 1762
4a18419f
NA
1763 tlb_change_page_size(tlb, HPAGE_PMD_SIZE);
1764
e346e668
YS
1765 if (prot_numa && !thp_migration_supported())
1766 return 1;
1767
b6ec57f4 1768 ptl = __pmd_trans_huge_lock(pmd, vma);
0a85e51d
KS
1769 if (!ptl)
1770 return 0;
e944fd67 1771
0a85e51d
KS
1772 preserve_write = prot_numa && pmd_write(*pmd);
1773 ret = 1;
e944fd67 1774
84c3fc4e
ZY
1775#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
1776 if (is_swap_pmd(*pmd)) {
1777 swp_entry_t entry = pmd_to_swp_entry(*pmd);
6c287605 1778 struct page *page = pfn_swap_entry_to_page(entry);
84c3fc4e
ZY
1779
1780 VM_BUG_ON(!is_pmd_migration_entry(*pmd));
4dd845b5 1781 if (is_writable_migration_entry(entry)) {
84c3fc4e
ZY
1782 pmd_t newpmd;
1783 /*
1784 * A protection check is difficult so
1785 * just be safe and disable write
1786 */
6c287605
DH
1787 if (PageAnon(page))
1788 entry = make_readable_exclusive_migration_entry(swp_offset(entry));
1789 else
1790 entry = make_readable_migration_entry(swp_offset(entry));
84c3fc4e 1791 newpmd = swp_entry_to_pmd(entry);
ab6e3d09
NH
1792 if (pmd_swp_soft_dirty(*pmd))
1793 newpmd = pmd_swp_mksoft_dirty(newpmd);
8f34f1ea
PX
1794 if (pmd_swp_uffd_wp(*pmd))
1795 newpmd = pmd_swp_mkuffd_wp(newpmd);
84c3fc4e
ZY
1796 set_pmd_at(mm, addr, pmd, newpmd);
1797 }
1798 goto unlock;
1799 }
1800#endif
1801
a1a3a2fc
HY
1802 if (prot_numa) {
1803 struct page *page;
1804 /*
1805 * Avoid trapping faults against the zero page. The read-only
1806 * data is likely to be read-cached on the local CPU and
1807 * local/remote hits to the zero page are not interesting.
1808 */
1809 if (is_huge_zero_pmd(*pmd))
1810 goto unlock;
025c5b24 1811
a1a3a2fc
HY
1812 if (pmd_protnone(*pmd))
1813 goto unlock;
0a85e51d 1814
a1a3a2fc
HY
1815 page = pmd_page(*pmd);
1816 /*
1817 * Skip scanning top tier node if normal numa
1818 * balancing is disabled
1819 */
1820 if (!(sysctl_numa_balancing_mode & NUMA_BALANCING_NORMAL) &&
1821 node_is_toptier(page_to_nid(page)))
1822 goto unlock;
1823 }
ced10803 1824 /*
3e4e28c5 1825 * In case prot_numa, we are under mmap_read_lock(mm). It's critical
ced10803 1826 * to not clear pmd intermittently to avoid race with MADV_DONTNEED
3e4e28c5 1827 * which is also under mmap_read_lock(mm):
ced10803
KS
1828 *
1829 * CPU0: CPU1:
1830 * change_huge_pmd(prot_numa=1)
1831 * pmdp_huge_get_and_clear_notify()
1832 * madvise_dontneed()
1833 * zap_pmd_range()
1834 * pmd_trans_huge(*pmd) == 0 (without ptl)
1835 * // skip the pmd
1836 * set_pmd_at();
1837 * // pmd is re-established
1838 *
1839 * The race makes MADV_DONTNEED miss the huge pmd and don't clear it
1840 * which may break userspace.
1841 *
4f831457 1842 * pmdp_invalidate_ad() is required to make sure we don't miss
ced10803
KS
1843 * dirty/young flags set by hardware.
1844 */
4f831457 1845 oldpmd = pmdp_invalidate_ad(vma, addr, pmd);
ced10803 1846
c9fe6656 1847 entry = pmd_modify(oldpmd, newprot);
0a85e51d
KS
1848 if (preserve_write)
1849 entry = pmd_mk_savedwrite(entry);
292924b2
PX
1850 if (uffd_wp) {
1851 entry = pmd_wrprotect(entry);
1852 entry = pmd_mkuffd_wp(entry);
1853 } else if (uffd_wp_resolve) {
1854 /*
1855 * Leave the write bit to be handled by PF interrupt
1856 * handler, then things like COW could be properly
1857 * handled.
1858 */
1859 entry = pmd_clear_uffd_wp(entry);
1860 }
0a85e51d
KS
1861 ret = HPAGE_PMD_NR;
1862 set_pmd_at(mm, addr, pmd, entry);
4a18419f 1863
c9fe6656
NA
1864 if (huge_pmd_needs_flush(oldpmd, entry))
1865 tlb_flush_pmd_range(tlb, addr, HPAGE_PMD_SIZE);
4a18419f 1866
0a85e51d
KS
1867 BUG_ON(vma_is_anonymous(vma) && !preserve_write && pmd_write(entry));
1868unlock:
1869 spin_unlock(ptl);
025c5b24
NH
1870 return ret;
1871}
1872
1873/*
8f19b0c0 1874 * Returns page table lock pointer if a given pmd maps a thp, NULL otherwise.
025c5b24 1875 *
8f19b0c0
HY
1876 * Note that if it returns page table lock pointer, this routine returns without
1877 * unlocking page table lock. So callers must unlock it.
025c5b24 1878 */
b6ec57f4 1879spinlock_t *__pmd_trans_huge_lock(pmd_t *pmd, struct vm_area_struct *vma)
025c5b24 1880{
b6ec57f4
KS
1881 spinlock_t *ptl;
1882 ptl = pmd_lock(vma->vm_mm, pmd);
84c3fc4e
ZY
1883 if (likely(is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) ||
1884 pmd_devmap(*pmd)))
b6ec57f4
KS
1885 return ptl;
1886 spin_unlock(ptl);
1887 return NULL;
cd7548ab
JW
1888}
1889
a00cc7d9 1890/*
d965e390 1891 * Returns page table lock pointer if a given pud maps a thp, NULL otherwise.
a00cc7d9 1892 *
d965e390
ML
1893 * Note that if it returns page table lock pointer, this routine returns without
1894 * unlocking page table lock. So callers must unlock it.
a00cc7d9
MW
1895 */
1896spinlock_t *__pud_trans_huge_lock(pud_t *pud, struct vm_area_struct *vma)
1897{
1898 spinlock_t *ptl;
1899
1900 ptl = pud_lock(vma->vm_mm, pud);
1901 if (likely(pud_trans_huge(*pud) || pud_devmap(*pud)))
1902 return ptl;
1903 spin_unlock(ptl);
1904 return NULL;
1905}
1906
1907#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
1908int zap_huge_pud(struct mmu_gather *tlb, struct vm_area_struct *vma,
1909 pud_t *pud, unsigned long addr)
1910{
a00cc7d9
MW
1911 spinlock_t *ptl;
1912
1913 ptl = __pud_trans_huge_lock(pud, vma);
1914 if (!ptl)
1915 return 0;
74929079 1916
70516b93 1917 pudp_huge_get_and_clear_full(tlb->mm, addr, pud, tlb->fullmm);
a00cc7d9 1918 tlb_remove_pud_tlb_entry(tlb, pud, addr);
2484ca9b 1919 if (vma_is_special_huge(vma)) {
a00cc7d9
MW
1920 spin_unlock(ptl);
1921 /* No zero page support yet */
1922 } else {
1923 /* No support for anonymous PUD pages yet */
1924 BUG();
1925 }
1926 return 1;
1927}
1928
1929static void __split_huge_pud_locked(struct vm_area_struct *vma, pud_t *pud,
1930 unsigned long haddr)
1931{
1932 VM_BUG_ON(haddr & ~HPAGE_PUD_MASK);
1933 VM_BUG_ON_VMA(vma->vm_start > haddr, vma);
1934 VM_BUG_ON_VMA(vma->vm_end < haddr + HPAGE_PUD_SIZE, vma);
1935 VM_BUG_ON(!pud_trans_huge(*pud) && !pud_devmap(*pud));
1936
ce9311cf 1937 count_vm_event(THP_SPLIT_PUD);
a00cc7d9
MW
1938
1939 pudp_huge_clear_flush_notify(vma, haddr, pud);
1940}
1941
1942void __split_huge_pud(struct vm_area_struct *vma, pud_t *pud,
1943 unsigned long address)
1944{
1945 spinlock_t *ptl;
ac46d4f3 1946 struct mmu_notifier_range range;
a00cc7d9 1947
7269f999 1948 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, vma->vm_mm,
6f4f13e8 1949 address & HPAGE_PUD_MASK,
ac46d4f3
JG
1950 (address & HPAGE_PUD_MASK) + HPAGE_PUD_SIZE);
1951 mmu_notifier_invalidate_range_start(&range);
1952 ptl = pud_lock(vma->vm_mm, pud);
a00cc7d9
MW
1953 if (unlikely(!pud_trans_huge(*pud) && !pud_devmap(*pud)))
1954 goto out;
ac46d4f3 1955 __split_huge_pud_locked(vma, pud, range.start);
a00cc7d9
MW
1956
1957out:
1958 spin_unlock(ptl);
4645b9fe
JG
1959 /*
1960 * No need to double call mmu_notifier->invalidate_range() callback as
1961 * the above pudp_huge_clear_flush_notify() did already call it.
1962 */
ac46d4f3 1963 mmu_notifier_invalidate_range_only_end(&range);
a00cc7d9
MW
1964}
1965#endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
1966
eef1b3ba
KS
1967static void __split_huge_zero_page_pmd(struct vm_area_struct *vma,
1968 unsigned long haddr, pmd_t *pmd)
1969{
1970 struct mm_struct *mm = vma->vm_mm;
1971 pgtable_t pgtable;
1972 pmd_t _pmd;
1973 int i;
1974
0f10851e
JG
1975 /*
1976 * Leave pmd empty until pte is filled note that it is fine to delay
1977 * notification until mmu_notifier_invalidate_range_end() as we are
1978 * replacing a zero pmd write protected page with a zero pte write
1979 * protected page.
1980 *
ee65728e 1981 * See Documentation/mm/mmu_notifier.rst
0f10851e
JG
1982 */
1983 pmdp_huge_clear_flush(vma, haddr, pmd);
eef1b3ba
KS
1984
1985 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
1986 pmd_populate(mm, &_pmd, pgtable);
1987
1988 for (i = 0; i < HPAGE_PMD_NR; i++, haddr += PAGE_SIZE) {
1989 pte_t *pte, entry;
1990 entry = pfn_pte(my_zero_pfn(haddr), vma->vm_page_prot);
1991 entry = pte_mkspecial(entry);
1992 pte = pte_offset_map(&_pmd, haddr);
1993 VM_BUG_ON(!pte_none(*pte));
1994 set_pte_at(mm, haddr, pte, entry);
1995 pte_unmap(pte);
1996 }
1997 smp_wmb(); /* make pte visible before pmd */
1998 pmd_populate(mm, pmd, pgtable);
eef1b3ba
KS
1999}
2000
2001static void __split_huge_pmd_locked(struct vm_area_struct *vma, pmd_t *pmd,
ba988280 2002 unsigned long haddr, bool freeze)
eef1b3ba
KS
2003{
2004 struct mm_struct *mm = vma->vm_mm;
2005 struct page *page;
2006 pgtable_t pgtable;
423ac9af 2007 pmd_t old_pmd, _pmd;
292924b2 2008 bool young, write, soft_dirty, pmd_migration = false, uffd_wp = false;
6c287605 2009 bool anon_exclusive = false;
2ac015e2 2010 unsigned long addr;
eef1b3ba
KS
2011 int i;
2012
2013 VM_BUG_ON(haddr & ~HPAGE_PMD_MASK);
2014 VM_BUG_ON_VMA(vma->vm_start > haddr, vma);
2015 VM_BUG_ON_VMA(vma->vm_end < haddr + HPAGE_PMD_SIZE, vma);
84c3fc4e
ZY
2016 VM_BUG_ON(!is_pmd_migration_entry(*pmd) && !pmd_trans_huge(*pmd)
2017 && !pmd_devmap(*pmd));
eef1b3ba
KS
2018
2019 count_vm_event(THP_SPLIT_PMD);
2020
d21b9e57 2021 if (!vma_is_anonymous(vma)) {
99fa8a48 2022 old_pmd = pmdp_huge_clear_flush_notify(vma, haddr, pmd);
953c66c2
AK
2023 /*
2024 * We are going to unmap this huge page. So
2025 * just go ahead and zap it
2026 */
2027 if (arch_needs_pgtable_deposit())
2028 zap_deposited_table(mm, pmd);
2484ca9b 2029 if (vma_is_special_huge(vma))
d21b9e57 2030 return;
99fa8a48
HD
2031 if (unlikely(is_pmd_migration_entry(old_pmd))) {
2032 swp_entry_t entry;
2033
2034 entry = pmd_to_swp_entry(old_pmd);
af5cdaf8 2035 page = pfn_swap_entry_to_page(entry);
99fa8a48
HD
2036 } else {
2037 page = pmd_page(old_pmd);
2038 if (!PageDirty(page) && pmd_dirty(old_pmd))
2039 set_page_dirty(page);
2040 if (!PageReferenced(page) && pmd_young(old_pmd))
2041 SetPageReferenced(page);
cea86fe2 2042 page_remove_rmap(page, vma, true);
99fa8a48
HD
2043 put_page(page);
2044 }
fadae295 2045 add_mm_counter(mm, mm_counter_file(page), -HPAGE_PMD_NR);
eef1b3ba 2046 return;
99fa8a48
HD
2047 }
2048
3b77e8c8 2049 if (is_huge_zero_pmd(*pmd)) {
4645b9fe
JG
2050 /*
2051 * FIXME: Do we want to invalidate secondary mmu by calling
2052 * mmu_notifier_invalidate_range() see comments below inside
2053 * __split_huge_pmd() ?
2054 *
2055 * We are going from a zero huge page write protected to zero
2056 * small page also write protected so it does not seems useful
2057 * to invalidate secondary mmu at this time.
2058 */
eef1b3ba
KS
2059 return __split_huge_zero_page_pmd(vma, haddr, pmd);
2060 }
2061
423ac9af
AK
2062 /*
2063 * Up to this point the pmd is present and huge and userland has the
2064 * whole access to the hugepage during the split (which happens in
2065 * place). If we overwrite the pmd with the not-huge version pointing
2066 * to the pte here (which of course we could if all CPUs were bug
2067 * free), userland could trigger a small page size TLB miss on the
2068 * small sized TLB while the hugepage TLB entry is still established in
2069 * the huge TLB. Some CPU doesn't like that.
42742d9b
AK
2070 * See http://support.amd.com/TechDocs/41322_10h_Rev_Gd.pdf, Erratum
2071 * 383 on page 105. Intel should be safe but is also warns that it's
423ac9af
AK
2072 * only safe if the permission and cache attributes of the two entries
2073 * loaded in the two TLB is identical (which should be the case here).
2074 * But it is generally safer to never allow small and huge TLB entries
2075 * for the same virtual address to be loaded simultaneously. So instead
2076 * of doing "pmd_populate(); flush_pmd_tlb_range();" we first mark the
2077 * current pmd notpresent (atomically because here the pmd_trans_huge
2078 * must remain set at all times on the pmd until the split is complete
2079 * for this pmd), then we flush the SMP TLB and finally we write the
2080 * non-huge version of the pmd entry with pmd_populate.
2081 */
2082 old_pmd = pmdp_invalidate(vma, haddr, pmd);
2083
423ac9af 2084 pmd_migration = is_pmd_migration_entry(old_pmd);
2e83ee1d 2085 if (unlikely(pmd_migration)) {
84c3fc4e
ZY
2086 swp_entry_t entry;
2087
423ac9af 2088 entry = pmd_to_swp_entry(old_pmd);
af5cdaf8 2089 page = pfn_swap_entry_to_page(entry);
4dd845b5 2090 write = is_writable_migration_entry(entry);
6c287605
DH
2091 if (PageAnon(page))
2092 anon_exclusive = is_readable_exclusive_migration_entry(entry);
2e83ee1d
PX
2093 young = false;
2094 soft_dirty = pmd_swp_soft_dirty(old_pmd);
f45ec5ff 2095 uffd_wp = pmd_swp_uffd_wp(old_pmd);
2e83ee1d 2096 } else {
423ac9af 2097 page = pmd_page(old_pmd);
2e83ee1d
PX
2098 if (pmd_dirty(old_pmd))
2099 SetPageDirty(page);
2100 write = pmd_write(old_pmd);
2101 young = pmd_young(old_pmd);
2102 soft_dirty = pmd_soft_dirty(old_pmd);
292924b2 2103 uffd_wp = pmd_uffd_wp(old_pmd);
6c287605 2104
9d84604b
HD
2105 VM_BUG_ON_PAGE(!page_count(page), page);
2106 page_ref_add(page, HPAGE_PMD_NR - 1);
6c287605
DH
2107
2108 /*
2109 * Without "freeze", we'll simply split the PMD, propagating the
2110 * PageAnonExclusive() flag for each PTE by setting it for
2111 * each subpage -- no need to (temporarily) clear.
2112 *
2113 * With "freeze" we want to replace mapped pages by
2114 * migration entries right away. This is only possible if we
2115 * managed to clear PageAnonExclusive() -- see
2116 * set_pmd_migration_entry().
2117 *
2118 * In case we cannot clear PageAnonExclusive(), split the PMD
2119 * only and let try_to_migrate_one() fail later.
2120 */
2121 anon_exclusive = PageAnon(page) && PageAnonExclusive(page);
2122 if (freeze && anon_exclusive && page_try_share_anon_rmap(page))
2123 freeze = false;
2e83ee1d 2124 }
eef1b3ba 2125
423ac9af
AK
2126 /*
2127 * Withdraw the table only after we mark the pmd entry invalid.
2128 * This's critical for some architectures (Power).
2129 */
eef1b3ba
KS
2130 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
2131 pmd_populate(mm, &_pmd, pgtable);
2132
2ac015e2 2133 for (i = 0, addr = haddr; i < HPAGE_PMD_NR; i++, addr += PAGE_SIZE) {
eef1b3ba
KS
2134 pte_t entry, *pte;
2135 /*
2136 * Note that NUMA hinting access restrictions are not
2137 * transferred to avoid any possibility of altering
2138 * permissions across VMAs.
2139 */
84c3fc4e 2140 if (freeze || pmd_migration) {
ba988280 2141 swp_entry_t swp_entry;
4dd845b5
AP
2142 if (write)
2143 swp_entry = make_writable_migration_entry(
2144 page_to_pfn(page + i));
6c287605
DH
2145 else if (anon_exclusive)
2146 swp_entry = make_readable_exclusive_migration_entry(
2147 page_to_pfn(page + i));
4dd845b5
AP
2148 else
2149 swp_entry = make_readable_migration_entry(
2150 page_to_pfn(page + i));
ba988280 2151 entry = swp_entry_to_pte(swp_entry);
804dd150
AA
2152 if (soft_dirty)
2153 entry = pte_swp_mksoft_dirty(entry);
f45ec5ff
PX
2154 if (uffd_wp)
2155 entry = pte_swp_mkuffd_wp(entry);
ba988280 2156 } else {
6d2329f8 2157 entry = mk_pte(page + i, READ_ONCE(vma->vm_page_prot));
b8d3c4c3 2158 entry = maybe_mkwrite(entry, vma);
6c287605
DH
2159 if (anon_exclusive)
2160 SetPageAnonExclusive(page + i);
ba988280
KS
2161 if (!write)
2162 entry = pte_wrprotect(entry);
2163 if (!young)
2164 entry = pte_mkold(entry);
804dd150
AA
2165 if (soft_dirty)
2166 entry = pte_mksoft_dirty(entry);
292924b2
PX
2167 if (uffd_wp)
2168 entry = pte_mkuffd_wp(entry);
ba988280 2169 }
2ac015e2 2170 pte = pte_offset_map(&_pmd, addr);
eef1b3ba 2171 BUG_ON(!pte_none(*pte));
2ac015e2 2172 set_pte_at(mm, addr, pte, entry);
ec0abae6 2173 if (!pmd_migration)
eef1b3ba 2174 atomic_inc(&page[i]._mapcount);
ec0abae6 2175 pte_unmap(pte);
eef1b3ba
KS
2176 }
2177
ec0abae6
RC
2178 if (!pmd_migration) {
2179 /*
2180 * Set PG_double_map before dropping compound_mapcount to avoid
2181 * false-negative page_mapped().
2182 */
2183 if (compound_mapcount(page) > 1 &&
2184 !TestSetPageDoubleMap(page)) {
eef1b3ba 2185 for (i = 0; i < HPAGE_PMD_NR; i++)
ec0abae6
RC
2186 atomic_inc(&page[i]._mapcount);
2187 }
2188
2189 lock_page_memcg(page);
2190 if (atomic_add_negative(-1, compound_mapcount_ptr(page))) {
2191 /* Last compound_mapcount is gone. */
69473e5d
MS
2192 __mod_lruvec_page_state(page, NR_ANON_THPS,
2193 -HPAGE_PMD_NR);
ec0abae6
RC
2194 if (TestClearPageDoubleMap(page)) {
2195 /* No need in mapcount reference anymore */
2196 for (i = 0; i < HPAGE_PMD_NR; i++)
2197 atomic_dec(&page[i]._mapcount);
2198 }
eef1b3ba 2199 }
ec0abae6 2200 unlock_page_memcg(page);
cea86fe2
HD
2201
2202 /* Above is effectively page_remove_rmap(page, vma, true) */
2203 munlock_vma_page(page, vma, true);
eef1b3ba
KS
2204 }
2205
2206 smp_wmb(); /* make pte visible before pmd */
2207 pmd_populate(mm, pmd, pgtable);
e9b61f19
KS
2208
2209 if (freeze) {
2ac015e2 2210 for (i = 0; i < HPAGE_PMD_NR; i++) {
cea86fe2 2211 page_remove_rmap(page + i, vma, false);
e9b61f19
KS
2212 put_page(page + i);
2213 }
2214 }
eef1b3ba
KS
2215}
2216
2217void __split_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
af28a988 2218 unsigned long address, bool freeze, struct folio *folio)
eef1b3ba
KS
2219{
2220 spinlock_t *ptl;
ac46d4f3 2221 struct mmu_notifier_range range;
eef1b3ba 2222
7269f999 2223 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, vma->vm_mm,
6f4f13e8 2224 address & HPAGE_PMD_MASK,
ac46d4f3
JG
2225 (address & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE);
2226 mmu_notifier_invalidate_range_start(&range);
2227 ptl = pmd_lock(vma->vm_mm, pmd);
33f4751e
NH
2228
2229 /*
af28a988
MWO
2230 * If caller asks to setup a migration entry, we need a folio to check
2231 * pmd against. Otherwise we can end up replacing wrong folio.
33f4751e 2232 */
af28a988 2233 VM_BUG_ON(freeze && !folio);
83a8441f 2234 VM_WARN_ON_ONCE(folio && !folio_test_locked(folio));
33f4751e 2235
7f760917 2236 if (pmd_trans_huge(*pmd) || pmd_devmap(*pmd) ||
83a8441f
MWO
2237 is_pmd_migration_entry(*pmd)) {
2238 if (folio && folio != page_folio(pmd_page(*pmd)))
2239 goto out;
7f760917 2240 __split_huge_pmd_locked(vma, pmd, range.start, freeze);
83a8441f 2241 }
7f760917 2242
e90309c9 2243out:
eef1b3ba 2244 spin_unlock(ptl);
4645b9fe
JG
2245 /*
2246 * No need to double call mmu_notifier->invalidate_range() callback.
2247 * They are 3 cases to consider inside __split_huge_pmd_locked():
2248 * 1) pmdp_huge_clear_flush_notify() call invalidate_range() obvious
2249 * 2) __split_huge_zero_page_pmd() read only zero page and any write
2250 * fault will trigger a flush_notify before pointing to a new page
2251 * (it is fine if the secondary mmu keeps pointing to the old zero
2252 * page in the meantime)
2253 * 3) Split a huge pmd into pte pointing to the same page. No need
2254 * to invalidate secondary tlb entry they are all still valid.
2255 * any further changes to individual pte will notify. So no need
2256 * to call mmu_notifier->invalidate_range()
2257 */
ac46d4f3 2258 mmu_notifier_invalidate_range_only_end(&range);
eef1b3ba
KS
2259}
2260
fec89c10 2261void split_huge_pmd_address(struct vm_area_struct *vma, unsigned long address,
af28a988 2262 bool freeze, struct folio *folio)
94fcc585 2263{
f72e7dcd 2264 pgd_t *pgd;
c2febafc 2265 p4d_t *p4d;
f72e7dcd 2266 pud_t *pud;
94fcc585
AA
2267 pmd_t *pmd;
2268
78ddc534 2269 pgd = pgd_offset(vma->vm_mm, address);
f72e7dcd
HD
2270 if (!pgd_present(*pgd))
2271 return;
2272
c2febafc
KS
2273 p4d = p4d_offset(pgd, address);
2274 if (!p4d_present(*p4d))
2275 return;
2276
2277 pud = pud_offset(p4d, address);
f72e7dcd
HD
2278 if (!pud_present(*pud))
2279 return;
2280
2281 pmd = pmd_offset(pud, address);
fec89c10 2282
af28a988 2283 __split_huge_pmd(vma, pmd, address, freeze, folio);
94fcc585
AA
2284}
2285
71f9e58e
ML
2286static inline void split_huge_pmd_if_needed(struct vm_area_struct *vma, unsigned long address)
2287{
2288 /*
2289 * If the new address isn't hpage aligned and it could previously
2290 * contain an hugepage: check if we need to split an huge pmd.
2291 */
2292 if (!IS_ALIGNED(address, HPAGE_PMD_SIZE) &&
2293 range_in_vma(vma, ALIGN_DOWN(address, HPAGE_PMD_SIZE),
2294 ALIGN(address, HPAGE_PMD_SIZE)))
2295 split_huge_pmd_address(vma, address, false, NULL);
2296}
2297
e1b9996b 2298void vma_adjust_trans_huge(struct vm_area_struct *vma,
94fcc585
AA
2299 unsigned long start,
2300 unsigned long end,
2301 long adjust_next)
2302{
71f9e58e
ML
2303 /* Check if we need to split start first. */
2304 split_huge_pmd_if_needed(vma, start);
94fcc585 2305
71f9e58e
ML
2306 /* Check if we need to split end next. */
2307 split_huge_pmd_if_needed(vma, end);
94fcc585
AA
2308
2309 /*
71f9e58e
ML
2310 * If we're also updating the vma->vm_next->vm_start,
2311 * check if we need to split it.
94fcc585
AA
2312 */
2313 if (adjust_next > 0) {
2314 struct vm_area_struct *next = vma->vm_next;
2315 unsigned long nstart = next->vm_start;
f9d86a60 2316 nstart += adjust_next;
71f9e58e 2317 split_huge_pmd_if_needed(next, nstart);
94fcc585
AA
2318 }
2319}
e9b61f19 2320
906f9cdf 2321static void unmap_page(struct page *page)
e9b61f19 2322{
869f7ee6 2323 struct folio *folio = page_folio(page);
a98a2f0c
AP
2324 enum ttu_flags ttu_flags = TTU_RMAP_LOCKED | TTU_SPLIT_HUGE_PMD |
2325 TTU_SYNC;
e9b61f19
KS
2326
2327 VM_BUG_ON_PAGE(!PageHead(page), page);
2328
a98a2f0c
AP
2329 /*
2330 * Anon pages need migration entries to preserve them, but file
2331 * pages can simply be left unmapped, then faulted back on demand.
2332 * If that is ever changed (perhaps for mlock), update remap_page().
2333 */
4b8554c5
MWO
2334 if (folio_test_anon(folio))
2335 try_to_migrate(folio, ttu_flags);
a98a2f0c 2336 else
869f7ee6 2337 try_to_unmap(folio, ttu_flags | TTU_IGNORE_MLOCK);
e9b61f19
KS
2338}
2339
4eecb8b9 2340static void remap_page(struct folio *folio, unsigned long nr)
e9b61f19 2341{
4eecb8b9 2342 int i = 0;
ab02c252 2343
64b586d1 2344 /* If unmap_page() uses try_to_migrate() on file, remove this check */
4eecb8b9 2345 if (!folio_test_anon(folio))
ab02c252 2346 return;
4eecb8b9
MWO
2347 for (;;) {
2348 remove_migration_ptes(folio, folio, true);
2349 i += folio_nr_pages(folio);
2350 if (i >= nr)
2351 break;
2352 folio = folio_next(folio);
ace71a19 2353 }
e9b61f19
KS
2354}
2355
94866635 2356static void lru_add_page_tail(struct page *head, struct page *tail,
88dcb9a3
AS
2357 struct lruvec *lruvec, struct list_head *list)
2358{
94866635
AS
2359 VM_BUG_ON_PAGE(!PageHead(head), head);
2360 VM_BUG_ON_PAGE(PageCompound(tail), head);
2361 VM_BUG_ON_PAGE(PageLRU(tail), head);
6168d0da 2362 lockdep_assert_held(&lruvec->lru_lock);
88dcb9a3 2363
6dbb5741 2364 if (list) {
88dcb9a3 2365 /* page reclaim is reclaiming a huge page */
6dbb5741 2366 VM_WARN_ON(PageLRU(head));
94866635
AS
2367 get_page(tail);
2368 list_add_tail(&tail->lru, list);
88dcb9a3 2369 } else {
6dbb5741
AS
2370 /* head is still on lru (and we have it frozen) */
2371 VM_WARN_ON(!PageLRU(head));
07ca7606
HD
2372 if (PageUnevictable(tail))
2373 tail->mlock_count = 0;
2374 else
2375 list_add_tail(&tail->lru, &head->lru);
6dbb5741 2376 SetPageLRU(tail);
88dcb9a3
AS
2377 }
2378}
2379
8df651c7 2380static void __split_huge_page_tail(struct page *head, int tail,
e9b61f19
KS
2381 struct lruvec *lruvec, struct list_head *list)
2382{
e9b61f19
KS
2383 struct page *page_tail = head + tail;
2384
8df651c7 2385 VM_BUG_ON_PAGE(atomic_read(&page_tail->_mapcount) != -1, page_tail);
e9b61f19
KS
2386
2387 /*
605ca5ed
KK
2388 * Clone page flags before unfreezing refcount.
2389 *
2390 * After successful get_page_unless_zero() might follow flags change,
8958b249 2391 * for example lock_page() which set PG_waiters.
6c287605
DH
2392 *
2393 * Note that for mapped sub-pages of an anonymous THP,
2394 * PG_anon_exclusive has been cleared in unmap_page() and is stored in
2395 * the migration entry instead from where remap_page() will restore it.
2396 * We can still have PG_anon_exclusive set on effectively unmapped and
2397 * unreferenced sub-pages of an anonymous THP: we can simply drop
2398 * PG_anon_exclusive (-> PG_mappedtodisk) for these here.
e9b61f19 2399 */
e9b61f19
KS
2400 page_tail->flags &= ~PAGE_FLAGS_CHECK_AT_PREP;
2401 page_tail->flags |= (head->flags &
2402 ((1L << PG_referenced) |
2403 (1L << PG_swapbacked) |
38d8b4e6 2404 (1L << PG_swapcache) |
e9b61f19
KS
2405 (1L << PG_mlocked) |
2406 (1L << PG_uptodate) |
2407 (1L << PG_active) |
1899ad18 2408 (1L << PG_workingset) |
e9b61f19 2409 (1L << PG_locked) |
b8d3c4c3 2410 (1L << PG_unevictable) |
72e6afa0
CM
2411#ifdef CONFIG_64BIT
2412 (1L << PG_arch_2) |
2413#endif
b8d3c4c3 2414 (1L << PG_dirty)));
e9b61f19 2415
173d9d9f
HD
2416 /* ->mapping in first tail page is compound_mapcount */
2417 VM_BUG_ON_PAGE(tail > 2 && page_tail->mapping != TAIL_MAPPING,
2418 page_tail);
2419 page_tail->mapping = head->mapping;
2420 page_tail->index = head->index + tail;
b653db77 2421 page_tail->private = 0;
173d9d9f 2422
605ca5ed 2423 /* Page flags must be visible before we make the page non-compound. */
e9b61f19
KS
2424 smp_wmb();
2425
605ca5ed
KK
2426 /*
2427 * Clear PageTail before unfreezing page refcount.
2428 *
2429 * After successful get_page_unless_zero() might follow put_page()
2430 * which needs correct compound_head().
2431 */
e9b61f19
KS
2432 clear_compound_head(page_tail);
2433
605ca5ed
KK
2434 /* Finally unfreeze refcount. Additional reference from page cache. */
2435 page_ref_unfreeze(page_tail, 1 + (!PageAnon(head) ||
2436 PageSwapCache(head)));
2437
e9b61f19
KS
2438 if (page_is_young(head))
2439 set_page_young(page_tail);
2440 if (page_is_idle(head))
2441 set_page_idle(page_tail);
2442
e9b61f19 2443 page_cpupid_xchg_last(page_tail, page_cpupid_last(head));
94723aaf
MH
2444
2445 /*
2446 * always add to the tail because some iterators expect new
2447 * pages to show after the currently processed elements - e.g.
2448 * migrate_pages
2449 */
e9b61f19 2450 lru_add_page_tail(head, page_tail, lruvec, list);
e9b61f19
KS
2451}
2452
baa355fd 2453static void __split_huge_page(struct page *page, struct list_head *list,
b6769834 2454 pgoff_t end)
e9b61f19 2455{
e809c3fe
MWO
2456 struct folio *folio = page_folio(page);
2457 struct page *head = &folio->page;
e9b61f19 2458 struct lruvec *lruvec;
4101196b
MWO
2459 struct address_space *swap_cache = NULL;
2460 unsigned long offset = 0;
8cce5475 2461 unsigned int nr = thp_nr_pages(head);
8df651c7 2462 int i;
e9b61f19 2463
e9b61f19 2464 /* complete memcg works before add pages to LRU */
be6c8982 2465 split_page_memcg(head, nr);
e9b61f19 2466
4101196b
MWO
2467 if (PageAnon(head) && PageSwapCache(head)) {
2468 swp_entry_t entry = { .val = page_private(head) };
2469
2470 offset = swp_offset(entry);
2471 swap_cache = swap_address_space(entry);
2472 xa_lock(&swap_cache->i_pages);
2473 }
2474
f0953a1b 2475 /* lock lru list/PageCompound, ref frozen by page_ref_freeze */
e809c3fe 2476 lruvec = folio_lruvec_lock(folio);
b6769834 2477
eac96c3e
YS
2478 ClearPageHasHWPoisoned(head);
2479
8cce5475 2480 for (i = nr - 1; i >= 1; i--) {
8df651c7 2481 __split_huge_page_tail(head, i, lruvec, list);
d144bf62 2482 /* Some pages can be beyond EOF: drop them from page cache */
baa355fd 2483 if (head[i].index >= end) {
2d077d4b 2484 ClearPageDirty(head + i);
baa355fd 2485 __delete_from_page_cache(head + i, NULL);
d144bf62 2486 if (shmem_mapping(head->mapping))
800d8c63 2487 shmem_uncharge(head->mapping->host, 1);
baa355fd 2488 put_page(head + i);
4101196b
MWO
2489 } else if (!PageAnon(page)) {
2490 __xa_store(&head->mapping->i_pages, head[i].index,
2491 head + i, 0);
2492 } else if (swap_cache) {
2493 __xa_store(&swap_cache->i_pages, offset + i,
2494 head + i, 0);
baa355fd
KS
2495 }
2496 }
e9b61f19
KS
2497
2498 ClearPageCompound(head);
6168d0da 2499 unlock_page_lruvec(lruvec);
b6769834 2500 /* Caller disabled irqs, so they are still disabled here */
f7da677b 2501
8cce5475 2502 split_page_owner(head, nr);
f7da677b 2503
baa355fd
KS
2504 /* See comment in __split_huge_page_tail() */
2505 if (PageAnon(head)) {
aa5dc07f 2506 /* Additional pin to swap cache */
4101196b 2507 if (PageSwapCache(head)) {
38d8b4e6 2508 page_ref_add(head, 2);
4101196b
MWO
2509 xa_unlock(&swap_cache->i_pages);
2510 } else {
38d8b4e6 2511 page_ref_inc(head);
4101196b 2512 }
baa355fd 2513 } else {
aa5dc07f 2514 /* Additional pin to page cache */
baa355fd 2515 page_ref_add(head, 2);
b93b0163 2516 xa_unlock(&head->mapping->i_pages);
baa355fd 2517 }
b6769834 2518 local_irq_enable();
e9b61f19 2519
4eecb8b9 2520 remap_page(folio, nr);
e9b61f19 2521
c4f9c701
HY
2522 if (PageSwapCache(head)) {
2523 swp_entry_t entry = { .val = page_private(head) };
2524
2525 split_swap_cluster(entry);
2526 }
2527
8cce5475 2528 for (i = 0; i < nr; i++) {
e9b61f19
KS
2529 struct page *subpage = head + i;
2530 if (subpage == page)
2531 continue;
2532 unlock_page(subpage);
2533
2534 /*
2535 * Subpages may be freed if there wasn't any mapping
2536 * like if add_to_swap() is running on a lru page that
2537 * had its mapping zapped. And freeing these pages
2538 * requires taking the lru_lock so we do the put_page
2539 * of the tail pages after the split is complete.
2540 */
0b175468 2541 free_page_and_swap_cache(subpage);
e9b61f19
KS
2542 }
2543}
2544
b8f593cd 2545/* Racy check whether the huge page can be split */
d4b4084a 2546bool can_split_folio(struct folio *folio, int *pextra_pins)
b8f593cd
HY
2547{
2548 int extra_pins;
2549
aa5dc07f 2550 /* Additional pins from page cache */
d4b4084a
MWO
2551 if (folio_test_anon(folio))
2552 extra_pins = folio_test_swapcache(folio) ?
2553 folio_nr_pages(folio) : 0;
b8f593cd 2554 else
d4b4084a 2555 extra_pins = folio_nr_pages(folio);
b8f593cd
HY
2556 if (pextra_pins)
2557 *pextra_pins = extra_pins;
d4b4084a 2558 return folio_mapcount(folio) == folio_ref_count(folio) - extra_pins - 1;
b8f593cd
HY
2559}
2560
e9b61f19
KS
2561/*
2562 * This function splits huge page into normal pages. @page can point to any
2563 * subpage of huge page to split. Split doesn't change the position of @page.
2564 *
2565 * Only caller must hold pin on the @page, otherwise split fails with -EBUSY.
2566 * The huge page must be locked.
2567 *
2568 * If @list is null, tail pages will be added to LRU list, otherwise, to @list.
2569 *
2570 * Both head page and tail pages will inherit mapping, flags, and so on from
2571 * the hugepage.
2572 *
2573 * GUP pin and PG_locked transferred to @page. Rest subpages can be freed if
2574 * they are not mapped.
2575 *
2576 * Returns 0 if the hugepage is split successfully.
2577 * Returns -EBUSY if the page is pinned or if anon_vma disappeared from under
2578 * us.
2579 */
2580int split_huge_page_to_list(struct page *page, struct list_head *list)
2581{
4eecb8b9
MWO
2582 struct folio *folio = page_folio(page);
2583 struct page *head = &folio->page;
a8803e6c 2584 struct deferred_split *ds_queue = get_deferred_split_queue(head);
6b24ca4a 2585 XA_STATE(xas, &head->mapping->i_pages, head->index);
baa355fd
KS
2586 struct anon_vma *anon_vma = NULL;
2587 struct address_space *mapping = NULL;
504e070d 2588 int extra_pins, ret;
006d3ff2 2589 pgoff_t end;
478d134e 2590 bool is_hzp;
e9b61f19 2591
a8803e6c
WY
2592 VM_BUG_ON_PAGE(!PageLocked(head), head);
2593 VM_BUG_ON_PAGE(!PageCompound(head), head);
e9b61f19 2594
478d134e
XY
2595 is_hzp = is_huge_zero_page(head);
2596 VM_WARN_ON_ONCE_PAGE(is_hzp, head);
2597 if (is_hzp)
2598 return -EBUSY;
2599
a8803e6c 2600 if (PageWriteback(head))
59807685
HY
2601 return -EBUSY;
2602
baa355fd
KS
2603 if (PageAnon(head)) {
2604 /*
c1e8d7c6 2605 * The caller does not necessarily hold an mmap_lock that would
baa355fd
KS
2606 * prevent the anon_vma disappearing so we first we take a
2607 * reference to it and then lock the anon_vma for write. This
2f031c6f 2608 * is similar to folio_lock_anon_vma_read except the write lock
baa355fd
KS
2609 * is taken to serialise against parallel split or collapse
2610 * operations.
2611 */
2612 anon_vma = page_get_anon_vma(head);
2613 if (!anon_vma) {
2614 ret = -EBUSY;
2615 goto out;
2616 }
006d3ff2 2617 end = -1;
baa355fd
KS
2618 mapping = NULL;
2619 anon_vma_lock_write(anon_vma);
2620 } else {
2621 mapping = head->mapping;
2622
2623 /* Truncated ? */
2624 if (!mapping) {
2625 ret = -EBUSY;
2626 goto out;
2627 }
2628
6b24ca4a
MWO
2629 xas_split_alloc(&xas, head, compound_order(head),
2630 mapping_gfp_mask(mapping) & GFP_RECLAIM_MASK);
2631 if (xas_error(&xas)) {
2632 ret = xas_error(&xas);
2633 goto out;
2634 }
2635
baa355fd
KS
2636 anon_vma = NULL;
2637 i_mmap_lock_read(mapping);
006d3ff2
HD
2638
2639 /*
2640 *__split_huge_page() may need to trim off pages beyond EOF:
2641 * but on 32-bit, i_size_read() takes an irq-unsafe seqlock,
2642 * which cannot be nested inside the page tree lock. So note
2643 * end now: i_size itself may be changed at any moment, but
2644 * head page lock is good enough to serialize the trimming.
2645 */
2646 end = DIV_ROUND_UP(i_size_read(mapping->host), PAGE_SIZE);
d144bf62
HD
2647 if (shmem_mapping(mapping))
2648 end = shmem_fallocend(mapping->host, end);
e9b61f19 2649 }
e9b61f19
KS
2650
2651 /*
906f9cdf 2652 * Racy check if we can split the page, before unmap_page() will
e9b61f19
KS
2653 * split PMDs
2654 */
d4b4084a 2655 if (!can_split_folio(folio, &extra_pins)) {
e9b61f19
KS
2656 ret = -EBUSY;
2657 goto out_unlock;
2658 }
2659
906f9cdf 2660 unmap_page(head);
e9b61f19 2661
b6769834
AS
2662 /* block interrupt reentry in xa_lock and spinlock */
2663 local_irq_disable();
baa355fd 2664 if (mapping) {
baa355fd 2665 /*
aa5dc07f 2666 * Check if the head page is present in page cache.
baa355fd
KS
2667 * We assume all tail are present too, if head is there.
2668 */
6b24ca4a
MWO
2669 xas_lock(&xas);
2670 xas_reset(&xas);
aa5dc07f 2671 if (xas_load(&xas) != head)
baa355fd
KS
2672 goto fail;
2673 }
2674
0139aa7b 2675 /* Prevent deferred_split_scan() touching ->_refcount */
364c1eeb 2676 spin_lock(&ds_queue->split_queue_lock);
504e070d 2677 if (page_ref_freeze(head, 1 + extra_pins)) {
9a982250 2678 if (!list_empty(page_deferred_list(head))) {
364c1eeb 2679 ds_queue->split_queue_len--;
9a982250
KS
2680 list_del(page_deferred_list(head));
2681 }
afb97172 2682 spin_unlock(&ds_queue->split_queue_lock);
06d3eff6 2683 if (mapping) {
bf9ecead
MS
2684 int nr = thp_nr_pages(head);
2685
6b24ca4a 2686 xas_split(&xas, head, thp_order(head));
1ca7554d 2687 if (PageSwapBacked(head)) {
57b2847d
MS
2688 __mod_lruvec_page_state(head, NR_SHMEM_THPS,
2689 -nr);
1ca7554d 2690 } else {
bf9ecead
MS
2691 __mod_lruvec_page_state(head, NR_FILE_THPS,
2692 -nr);
1ca7554d
MS
2693 filemap_nr_thps_dec(mapping);
2694 }
06d3eff6
KS
2695 }
2696
b6769834 2697 __split_huge_page(page, list, end);
c4f9c701 2698 ret = 0;
e9b61f19 2699 } else {
364c1eeb 2700 spin_unlock(&ds_queue->split_queue_lock);
504e070d
YS
2701fail:
2702 if (mapping)
6b24ca4a 2703 xas_unlock(&xas);
b6769834 2704 local_irq_enable();
4eecb8b9 2705 remap_page(folio, folio_nr_pages(folio));
e9b61f19
KS
2706 ret = -EBUSY;
2707 }
2708
2709out_unlock:
baa355fd
KS
2710 if (anon_vma) {
2711 anon_vma_unlock_write(anon_vma);
2712 put_anon_vma(anon_vma);
2713 }
2714 if (mapping)
2715 i_mmap_unlock_read(mapping);
e9b61f19 2716out:
69a37a8b 2717 xas_destroy(&xas);
e9b61f19
KS
2718 count_vm_event(!ret ? THP_SPLIT_PAGE : THP_SPLIT_PAGE_FAILED);
2719 return ret;
2720}
9a982250
KS
2721
2722void free_transhuge_page(struct page *page)
2723{
87eaceb3 2724 struct deferred_split *ds_queue = get_deferred_split_queue(page);
9a982250
KS
2725 unsigned long flags;
2726
364c1eeb 2727 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
9a982250 2728 if (!list_empty(page_deferred_list(page))) {
364c1eeb 2729 ds_queue->split_queue_len--;
9a982250
KS
2730 list_del(page_deferred_list(page));
2731 }
364c1eeb 2732 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
9a982250
KS
2733 free_compound_page(page);
2734}
2735
2736void deferred_split_huge_page(struct page *page)
2737{
87eaceb3
YS
2738 struct deferred_split *ds_queue = get_deferred_split_queue(page);
2739#ifdef CONFIG_MEMCG
bcfe06bf 2740 struct mem_cgroup *memcg = page_memcg(compound_head(page));
87eaceb3 2741#endif
9a982250
KS
2742 unsigned long flags;
2743
2744 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
2745
87eaceb3
YS
2746 /*
2747 * The try_to_unmap() in page reclaim path might reach here too,
2748 * this may cause a race condition to corrupt deferred split queue.
2749 * And, if page reclaim is already handling the same page, it is
2750 * unnecessary to handle it again in shrinker.
2751 *
2752 * Check PageSwapCache to determine if the page is being
2753 * handled by page reclaim since THP swap would add the page into
2754 * swap cache before calling try_to_unmap().
2755 */
2756 if (PageSwapCache(page))
2757 return;
2758
364c1eeb 2759 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
9a982250 2760 if (list_empty(page_deferred_list(page))) {
f9719a03 2761 count_vm_event(THP_DEFERRED_SPLIT_PAGE);
364c1eeb
YS
2762 list_add_tail(page_deferred_list(page), &ds_queue->split_queue);
2763 ds_queue->split_queue_len++;
87eaceb3
YS
2764#ifdef CONFIG_MEMCG
2765 if (memcg)
2bfd3637
YS
2766 set_shrinker_bit(memcg, page_to_nid(page),
2767 deferred_split_shrinker.id);
87eaceb3 2768#endif
9a982250 2769 }
364c1eeb 2770 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
9a982250
KS
2771}
2772
2773static unsigned long deferred_split_count(struct shrinker *shrink,
2774 struct shrink_control *sc)
2775{
a3d0a918 2776 struct pglist_data *pgdata = NODE_DATA(sc->nid);
364c1eeb 2777 struct deferred_split *ds_queue = &pgdata->deferred_split_queue;
87eaceb3
YS
2778
2779#ifdef CONFIG_MEMCG
2780 if (sc->memcg)
2781 ds_queue = &sc->memcg->deferred_split_queue;
2782#endif
364c1eeb 2783 return READ_ONCE(ds_queue->split_queue_len);
9a982250
KS
2784}
2785
2786static unsigned long deferred_split_scan(struct shrinker *shrink,
2787 struct shrink_control *sc)
2788{
a3d0a918 2789 struct pglist_data *pgdata = NODE_DATA(sc->nid);
364c1eeb 2790 struct deferred_split *ds_queue = &pgdata->deferred_split_queue;
9a982250
KS
2791 unsigned long flags;
2792 LIST_HEAD(list), *pos, *next;
2793 struct page *page;
2794 int split = 0;
2795
87eaceb3
YS
2796#ifdef CONFIG_MEMCG
2797 if (sc->memcg)
2798 ds_queue = &sc->memcg->deferred_split_queue;
2799#endif
2800
364c1eeb 2801 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
9a982250 2802 /* Take pin on all head pages to avoid freeing them under us */
364c1eeb 2803 list_for_each_safe(pos, next, &ds_queue->split_queue) {
dfe5c51c 2804 page = list_entry((void *)pos, struct page, deferred_list);
9a982250 2805 page = compound_head(page);
e3ae1953
KS
2806 if (get_page_unless_zero(page)) {
2807 list_move(page_deferred_list(page), &list);
2808 } else {
2809 /* We lost race with put_compound_page() */
9a982250 2810 list_del_init(page_deferred_list(page));
364c1eeb 2811 ds_queue->split_queue_len--;
9a982250 2812 }
e3ae1953
KS
2813 if (!--sc->nr_to_scan)
2814 break;
9a982250 2815 }
364c1eeb 2816 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
9a982250
KS
2817
2818 list_for_each_safe(pos, next, &list) {
dfe5c51c 2819 page = list_entry((void *)pos, struct page, deferred_list);
fa41b900
KS
2820 if (!trylock_page(page))
2821 goto next;
9a982250
KS
2822 /* split_huge_page() removes page from list on success */
2823 if (!split_huge_page(page))
2824 split++;
2825 unlock_page(page);
fa41b900 2826next:
9a982250
KS
2827 put_page(page);
2828 }
2829
364c1eeb
YS
2830 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
2831 list_splice_tail(&list, &ds_queue->split_queue);
2832 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
9a982250 2833
cb8d68ec
KS
2834 /*
2835 * Stop shrinker if we didn't split any page, but the queue is empty.
2836 * This can happen if pages were freed under us.
2837 */
364c1eeb 2838 if (!split && list_empty(&ds_queue->split_queue))
cb8d68ec
KS
2839 return SHRINK_STOP;
2840 return split;
9a982250
KS
2841}
2842
2843static struct shrinker deferred_split_shrinker = {
2844 .count_objects = deferred_split_count,
2845 .scan_objects = deferred_split_scan,
2846 .seeks = DEFAULT_SEEKS,
87eaceb3
YS
2847 .flags = SHRINKER_NUMA_AWARE | SHRINKER_MEMCG_AWARE |
2848 SHRINKER_NONSLAB,
9a982250 2849};
49071d43
KS
2850
2851#ifdef CONFIG_DEBUG_FS
fa6c0231 2852static void split_huge_pages_all(void)
49071d43
KS
2853{
2854 struct zone *zone;
2855 struct page *page;
2856 unsigned long pfn, max_zone_pfn;
2857 unsigned long total = 0, split = 0;
2858
fa6c0231 2859 pr_debug("Split all THPs\n");
a17206da
ML
2860 for_each_zone(zone) {
2861 if (!managed_zone(zone))
2862 continue;
49071d43
KS
2863 max_zone_pfn = zone_end_pfn(zone);
2864 for (pfn = zone->zone_start_pfn; pfn < max_zone_pfn; pfn++) {
a17206da 2865 int nr_pages;
49071d43
KS
2866 if (!pfn_valid(pfn))
2867 continue;
2868
2869 page = pfn_to_page(pfn);
2870 if (!get_page_unless_zero(page))
2871 continue;
2872
2873 if (zone != page_zone(page))
2874 goto next;
2875
baa355fd 2876 if (!PageHead(page) || PageHuge(page) || !PageLRU(page))
49071d43
KS
2877 goto next;
2878
2879 total++;
2880 lock_page(page);
a17206da 2881 nr_pages = thp_nr_pages(page);
49071d43
KS
2882 if (!split_huge_page(page))
2883 split++;
a17206da 2884 pfn += nr_pages - 1;
49071d43
KS
2885 unlock_page(page);
2886next:
2887 put_page(page);
fa6c0231 2888 cond_resched();
49071d43
KS
2889 }
2890 }
2891
fa6c0231
ZY
2892 pr_debug("%lu of %lu THP split\n", split, total);
2893}
49071d43 2894
fa6c0231
ZY
2895static inline bool vma_not_suitable_for_thp_split(struct vm_area_struct *vma)
2896{
2897 return vma_is_special_huge(vma) || (vma->vm_flags & VM_IO) ||
2898 is_vm_hugetlb_page(vma);
2899}
2900
2901static int split_huge_pages_pid(int pid, unsigned long vaddr_start,
2902 unsigned long vaddr_end)
2903{
2904 int ret = 0;
2905 struct task_struct *task;
2906 struct mm_struct *mm;
2907 unsigned long total = 0, split = 0;
2908 unsigned long addr;
2909
2910 vaddr_start &= PAGE_MASK;
2911 vaddr_end &= PAGE_MASK;
2912
2913 /* Find the task_struct from pid */
2914 rcu_read_lock();
2915 task = find_task_by_vpid(pid);
2916 if (!task) {
2917 rcu_read_unlock();
2918 ret = -ESRCH;
2919 goto out;
2920 }
2921 get_task_struct(task);
2922 rcu_read_unlock();
2923
2924 /* Find the mm_struct */
2925 mm = get_task_mm(task);
2926 put_task_struct(task);
2927
2928 if (!mm) {
2929 ret = -EINVAL;
2930 goto out;
2931 }
2932
2933 pr_debug("Split huge pages in pid: %d, vaddr: [0x%lx - 0x%lx]\n",
2934 pid, vaddr_start, vaddr_end);
2935
2936 mmap_read_lock(mm);
2937 /*
2938 * always increase addr by PAGE_SIZE, since we could have a PTE page
2939 * table filled with PTE-mapped THPs, each of which is distinct.
2940 */
2941 for (addr = vaddr_start; addr < vaddr_end; addr += PAGE_SIZE) {
74ba2b38 2942 struct vm_area_struct *vma = vma_lookup(mm, addr);
fa6c0231
ZY
2943 struct page *page;
2944
74ba2b38 2945 if (!vma)
fa6c0231
ZY
2946 break;
2947
2948 /* skip special VMA and hugetlb VMA */
2949 if (vma_not_suitable_for_thp_split(vma)) {
2950 addr = vma->vm_end;
2951 continue;
2952 }
2953
2954 /* FOLL_DUMP to ignore special (like zero) pages */
87d2762e 2955 page = follow_page(vma, addr, FOLL_GET | FOLL_DUMP);
fa6c0231
ZY
2956
2957 if (IS_ERR(page))
2958 continue;
3218f871 2959 if (!page || is_zone_device_page(page))
fa6c0231
ZY
2960 continue;
2961
2962 if (!is_transparent_hugepage(page))
2963 goto next;
2964
2965 total++;
d4b4084a 2966 if (!can_split_folio(page_folio(page), NULL))
fa6c0231
ZY
2967 goto next;
2968
2969 if (!trylock_page(page))
2970 goto next;
2971
2972 if (!split_huge_page(page))
2973 split++;
2974
2975 unlock_page(page);
2976next:
2977 put_page(page);
2978 cond_resched();
2979 }
2980 mmap_read_unlock(mm);
2981 mmput(mm);
2982
2983 pr_debug("%lu of %lu THP split\n", split, total);
2984
2985out:
2986 return ret;
49071d43 2987}
fa6c0231 2988
fbe37501
ZY
2989static int split_huge_pages_in_file(const char *file_path, pgoff_t off_start,
2990 pgoff_t off_end)
2991{
2992 struct filename *file;
2993 struct file *candidate;
2994 struct address_space *mapping;
2995 int ret = -EINVAL;
2996 pgoff_t index;
2997 int nr_pages = 1;
2998 unsigned long total = 0, split = 0;
2999
3000 file = getname_kernel(file_path);
3001 if (IS_ERR(file))
3002 return ret;
3003
3004 candidate = file_open_name(file, O_RDONLY, 0);
3005 if (IS_ERR(candidate))
3006 goto out;
3007
3008 pr_debug("split file-backed THPs in file: %s, page offset: [0x%lx - 0x%lx]\n",
3009 file_path, off_start, off_end);
3010
3011 mapping = candidate->f_mapping;
3012
3013 for (index = off_start; index < off_end; index += nr_pages) {
3014 struct page *fpage = pagecache_get_page(mapping, index,
3015 FGP_ENTRY | FGP_HEAD, 0);
3016
3017 nr_pages = 1;
3018 if (xa_is_value(fpage) || !fpage)
3019 continue;
3020
3021 if (!is_transparent_hugepage(fpage))
3022 goto next;
3023
3024 total++;
3025 nr_pages = thp_nr_pages(fpage);
3026
3027 if (!trylock_page(fpage))
3028 goto next;
3029
3030 if (!split_huge_page(fpage))
3031 split++;
3032
3033 unlock_page(fpage);
3034next:
3035 put_page(fpage);
3036 cond_resched();
3037 }
3038
3039 filp_close(candidate, NULL);
3040 ret = 0;
3041
3042 pr_debug("%lu of %lu file-backed THP split\n", split, total);
3043out:
3044 putname(file);
3045 return ret;
3046}
3047
fa6c0231
ZY
3048#define MAX_INPUT_BUF_SZ 255
3049
3050static ssize_t split_huge_pages_write(struct file *file, const char __user *buf,
3051 size_t count, loff_t *ppops)
3052{
3053 static DEFINE_MUTEX(split_debug_mutex);
3054 ssize_t ret;
fbe37501
ZY
3055 /* hold pid, start_vaddr, end_vaddr or file_path, off_start, off_end */
3056 char input_buf[MAX_INPUT_BUF_SZ];
fa6c0231
ZY
3057 int pid;
3058 unsigned long vaddr_start, vaddr_end;
3059
3060 ret = mutex_lock_interruptible(&split_debug_mutex);
3061 if (ret)
3062 return ret;
3063
3064 ret = -EFAULT;
3065
3066 memset(input_buf, 0, MAX_INPUT_BUF_SZ);
3067 if (copy_from_user(input_buf, buf, min_t(size_t, count, MAX_INPUT_BUF_SZ)))
3068 goto out;
3069
3070 input_buf[MAX_INPUT_BUF_SZ - 1] = '\0';
fbe37501
ZY
3071
3072 if (input_buf[0] == '/') {
3073 char *tok;
3074 char *buf = input_buf;
3075 char file_path[MAX_INPUT_BUF_SZ];
3076 pgoff_t off_start = 0, off_end = 0;
3077 size_t input_len = strlen(input_buf);
3078
3079 tok = strsep(&buf, ",");
3080 if (tok) {
1212e00c 3081 strcpy(file_path, tok);
fbe37501
ZY
3082 } else {
3083 ret = -EINVAL;
3084 goto out;
3085 }
3086
3087 ret = sscanf(buf, "0x%lx,0x%lx", &off_start, &off_end);
3088 if (ret != 2) {
3089 ret = -EINVAL;
3090 goto out;
3091 }
3092 ret = split_huge_pages_in_file(file_path, off_start, off_end);
3093 if (!ret)
3094 ret = input_len;
3095
3096 goto out;
3097 }
3098
fa6c0231
ZY
3099 ret = sscanf(input_buf, "%d,0x%lx,0x%lx", &pid, &vaddr_start, &vaddr_end);
3100 if (ret == 1 && pid == 1) {
3101 split_huge_pages_all();
3102 ret = strlen(input_buf);
3103 goto out;
3104 } else if (ret != 3) {
3105 ret = -EINVAL;
3106 goto out;
3107 }
3108
3109 ret = split_huge_pages_pid(pid, vaddr_start, vaddr_end);
3110 if (!ret)
3111 ret = strlen(input_buf);
3112out:
3113 mutex_unlock(&split_debug_mutex);
3114 return ret;
3115
3116}
3117
3118static const struct file_operations split_huge_pages_fops = {
3119 .owner = THIS_MODULE,
3120 .write = split_huge_pages_write,
3121 .llseek = no_llseek,
3122};
49071d43
KS
3123
3124static int __init split_huge_pages_debugfs(void)
3125{
d9f7979c
GKH
3126 debugfs_create_file("split_huge_pages", 0200, NULL, NULL,
3127 &split_huge_pages_fops);
49071d43
KS
3128 return 0;
3129}
3130late_initcall(split_huge_pages_debugfs);
3131#endif
616b8371
ZY
3132
3133#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
7f5abe60 3134int set_pmd_migration_entry(struct page_vma_mapped_walk *pvmw,
616b8371
ZY
3135 struct page *page)
3136{
3137 struct vm_area_struct *vma = pvmw->vma;
3138 struct mm_struct *mm = vma->vm_mm;
3139 unsigned long address = pvmw->address;
6c287605 3140 bool anon_exclusive;
616b8371
ZY
3141 pmd_t pmdval;
3142 swp_entry_t entry;
ab6e3d09 3143 pmd_t pmdswp;
616b8371
ZY
3144
3145 if (!(pvmw->pmd && !pvmw->pte))
7f5abe60 3146 return 0;
616b8371 3147
616b8371 3148 flush_cache_range(vma, address, address + HPAGE_PMD_SIZE);
8a8683ad 3149 pmdval = pmdp_invalidate(vma, address, pvmw->pmd);
6c287605
DH
3150
3151 anon_exclusive = PageAnon(page) && PageAnonExclusive(page);
3152 if (anon_exclusive && page_try_share_anon_rmap(page)) {
3153 set_pmd_at(mm, address, pvmw->pmd, pmdval);
7f5abe60 3154 return -EBUSY;
6c287605
DH
3155 }
3156
616b8371
ZY
3157 if (pmd_dirty(pmdval))
3158 set_page_dirty(page);
4dd845b5
AP
3159 if (pmd_write(pmdval))
3160 entry = make_writable_migration_entry(page_to_pfn(page));
6c287605
DH
3161 else if (anon_exclusive)
3162 entry = make_readable_exclusive_migration_entry(page_to_pfn(page));
4dd845b5
AP
3163 else
3164 entry = make_readable_migration_entry(page_to_pfn(page));
ab6e3d09
NH
3165 pmdswp = swp_entry_to_pmd(entry);
3166 if (pmd_soft_dirty(pmdval))
3167 pmdswp = pmd_swp_mksoft_dirty(pmdswp);
3168 set_pmd_at(mm, address, pvmw->pmd, pmdswp);
cea86fe2 3169 page_remove_rmap(page, vma, true);
616b8371 3170 put_page(page);
283fd6fe 3171 trace_set_migration_pmd(address, pmd_val(pmdswp));
7f5abe60
DH
3172
3173 return 0;
616b8371
ZY
3174}
3175
3176void remove_migration_pmd(struct page_vma_mapped_walk *pvmw, struct page *new)
3177{
3178 struct vm_area_struct *vma = pvmw->vma;
3179 struct mm_struct *mm = vma->vm_mm;
3180 unsigned long address = pvmw->address;
4fba8f2a 3181 unsigned long haddr = address & HPAGE_PMD_MASK;
616b8371
ZY
3182 pmd_t pmde;
3183 swp_entry_t entry;
3184
3185 if (!(pvmw->pmd && !pvmw->pte))
3186 return;
3187
3188 entry = pmd_to_swp_entry(*pvmw->pmd);
3189 get_page(new);
4286f147 3190 pmde = pmd_mkold(mk_huge_pmd(new, READ_ONCE(vma->vm_page_prot)));
ab6e3d09
NH
3191 if (pmd_swp_soft_dirty(*pvmw->pmd))
3192 pmde = pmd_mksoft_dirty(pmde);
4dd845b5 3193 if (is_writable_migration_entry(entry))
f55e1014 3194 pmde = maybe_pmd_mkwrite(pmde, vma);
8f34f1ea
PX
3195 if (pmd_swp_uffd_wp(*pvmw->pmd))
3196 pmde = pmd_wrprotect(pmd_mkuffd_wp(pmde));
616b8371 3197
6c287605
DH
3198 if (PageAnon(new)) {
3199 rmap_t rmap_flags = RMAP_COMPOUND;
3200
3201 if (!is_readable_migration_entry(entry))
3202 rmap_flags |= RMAP_EXCLUSIVE;
3203
4fba8f2a 3204 page_add_anon_rmap(new, vma, haddr, rmap_flags);
6c287605 3205 } else {
cea86fe2 3206 page_add_file_rmap(new, vma, true);
6c287605
DH
3207 }
3208 VM_BUG_ON(pmd_write(pmde) && PageAnon(new) && !PageAnonExclusive(new));
4fba8f2a 3209 set_pmd_at(mm, haddr, pvmw->pmd, pmde);
5cbcf225
MS
3210
3211 /* No need to invalidate - it was non-present before */
616b8371 3212 update_mmu_cache_pmd(vma, address, pvmw->pmd);
283fd6fe 3213 trace_remove_migration_pmd(address, pmd_val(pmde));
616b8371
ZY
3214}
3215#endif