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