]> git.ipfire.org Git - thirdparty/linux.git/blame - mm/huge_memory.c
mm: streamline COW logic in do_swap_page()
[thirdparty/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);
d281ee61 650 page_add_new_anon_rmap(page, vma, haddr, true);
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));
4dd845b5
AP
1057 if (is_writable_migration_entry(entry)) {
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
PX
1099
1100 /*
1101 * If this page is a potentially pinned page, split and retry the fault
1102 * with smaller page size. Normally this should not happen because the
1103 * userspace should use MADV_DONTFORK upon pinned regions. This is a
1104 * best effort that the pinned pages won't be replaced by another
1105 * random page during the coming copy-on-write.
1106 */
8f34f1ea 1107 if (unlikely(page_needs_cow_for_dma(src_vma, src_page))) {
d042035e
PX
1108 pte_free(dst_mm, pgtable);
1109 spin_unlock(src_ptl);
1110 spin_unlock(dst_ptl);
8f34f1ea 1111 __split_huge_pmd(src_vma, src_pmd, addr, false, NULL);
d042035e
PX
1112 return -EAGAIN;
1113 }
1114
628d47ce
KS
1115 get_page(src_page);
1116 page_dup_rmap(src_page, true);
1117 add_mm_counter(dst_mm, MM_ANONPAGES, HPAGE_PMD_NR);
5fc7a5f6 1118out_zero_page:
c4812909 1119 mm_inc_nr_ptes(dst_mm);
628d47ce 1120 pgtable_trans_huge_deposit(dst_mm, dst_pmd, pgtable);
71e3aac0 1121 pmdp_set_wrprotect(src_mm, addr, src_pmd);
8f34f1ea
PX
1122 if (!userfaultfd_wp(dst_vma))
1123 pmd = pmd_clear_uffd_wp(pmd);
71e3aac0
AA
1124 pmd = pmd_mkold(pmd_wrprotect(pmd));
1125 set_pmd_at(dst_mm, addr, dst_pmd, pmd);
71e3aac0
AA
1126
1127 ret = 0;
1128out_unlock:
c4088ebd
KS
1129 spin_unlock(src_ptl);
1130 spin_unlock(dst_ptl);
71e3aac0
AA
1131out:
1132 return ret;
1133}
1134
a00cc7d9
MW
1135#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
1136static void touch_pud(struct vm_area_struct *vma, unsigned long addr,
a8f97366 1137 pud_t *pud, int flags)
a00cc7d9
MW
1138{
1139 pud_t _pud;
1140
a8f97366
KS
1141 _pud = pud_mkyoung(*pud);
1142 if (flags & FOLL_WRITE)
1143 _pud = pud_mkdirty(_pud);
a00cc7d9 1144 if (pudp_set_access_flags(vma, addr & HPAGE_PUD_MASK,
a8f97366 1145 pud, _pud, flags & FOLL_WRITE))
a00cc7d9
MW
1146 update_mmu_cache_pud(vma, addr, pud);
1147}
1148
1149struct page *follow_devmap_pud(struct vm_area_struct *vma, unsigned long addr,
df06b37f 1150 pud_t *pud, int flags, struct dev_pagemap **pgmap)
a00cc7d9
MW
1151{
1152 unsigned long pfn = pud_pfn(*pud);
1153 struct mm_struct *mm = vma->vm_mm;
a00cc7d9
MW
1154 struct page *page;
1155
1156 assert_spin_locked(pud_lockptr(mm, pud));
1157
f6f37321 1158 if (flags & FOLL_WRITE && !pud_write(*pud))
a00cc7d9
MW
1159 return NULL;
1160
3faa52c0
JH
1161 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
1162 if (WARN_ON_ONCE((flags & (FOLL_PIN | FOLL_GET)) ==
1163 (FOLL_PIN | FOLL_GET)))
1164 return NULL;
1165
a00cc7d9
MW
1166 if (pud_present(*pud) && pud_devmap(*pud))
1167 /* pass */;
1168 else
1169 return NULL;
1170
1171 if (flags & FOLL_TOUCH)
a8f97366 1172 touch_pud(vma, addr, pud, flags);
a00cc7d9
MW
1173
1174 /*
1175 * device mapped pages can only be returned if the
1176 * caller will manage the page reference count.
3faa52c0
JH
1177 *
1178 * At least one of FOLL_GET | FOLL_PIN must be set, so assert that here:
a00cc7d9 1179 */
3faa52c0 1180 if (!(flags & (FOLL_GET | FOLL_PIN)))
a00cc7d9
MW
1181 return ERR_PTR(-EEXIST);
1182
1183 pfn += (addr & ~PUD_MASK) >> PAGE_SHIFT;
df06b37f
KB
1184 *pgmap = get_dev_pagemap(pfn, *pgmap);
1185 if (!*pgmap)
a00cc7d9
MW
1186 return ERR_PTR(-EFAULT);
1187 page = pfn_to_page(pfn);
3faa52c0
JH
1188 if (!try_grab_page(page, flags))
1189 page = ERR_PTR(-ENOMEM);
a00cc7d9
MW
1190
1191 return page;
1192}
1193
1194int copy_huge_pud(struct mm_struct *dst_mm, struct mm_struct *src_mm,
1195 pud_t *dst_pud, pud_t *src_pud, unsigned long addr,
1196 struct vm_area_struct *vma)
1197{
1198 spinlock_t *dst_ptl, *src_ptl;
1199 pud_t pud;
1200 int ret;
1201
1202 dst_ptl = pud_lock(dst_mm, dst_pud);
1203 src_ptl = pud_lockptr(src_mm, src_pud);
1204 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
1205
1206 ret = -EAGAIN;
1207 pud = *src_pud;
1208 if (unlikely(!pud_trans_huge(pud) && !pud_devmap(pud)))
1209 goto out_unlock;
1210
1211 /*
1212 * When page table lock is held, the huge zero pud should not be
1213 * under splitting since we don't split the page itself, only pud to
1214 * a page table.
1215 */
1216 if (is_huge_zero_pud(pud)) {
1217 /* No huge zero pud yet */
1218 }
1219
d042035e 1220 /* Please refer to comments in copy_huge_pmd() */
97a7e473 1221 if (unlikely(page_needs_cow_for_dma(vma, pud_page(pud)))) {
d042035e
PX
1222 spin_unlock(src_ptl);
1223 spin_unlock(dst_ptl);
1224 __split_huge_pud(vma, src_pud, addr);
1225 return -EAGAIN;
1226 }
1227
a00cc7d9
MW
1228 pudp_set_wrprotect(src_mm, addr, src_pud);
1229 pud = pud_mkold(pud_wrprotect(pud));
1230 set_pud_at(dst_mm, addr, dst_pud, pud);
1231
1232 ret = 0;
1233out_unlock:
1234 spin_unlock(src_ptl);
1235 spin_unlock(dst_ptl);
1236 return ret;
1237}
1238
1239void huge_pud_set_accessed(struct vm_fault *vmf, pud_t orig_pud)
1240{
1241 pud_t entry;
1242 unsigned long haddr;
1243 bool write = vmf->flags & FAULT_FLAG_WRITE;
1244
1245 vmf->ptl = pud_lock(vmf->vma->vm_mm, vmf->pud);
1246 if (unlikely(!pud_same(*vmf->pud, orig_pud)))
1247 goto unlock;
1248
1249 entry = pud_mkyoung(orig_pud);
1250 if (write)
1251 entry = pud_mkdirty(entry);
1252 haddr = vmf->address & HPAGE_PUD_MASK;
1253 if (pudp_set_access_flags(vmf->vma, haddr, vmf->pud, entry, write))
1254 update_mmu_cache_pud(vmf->vma, vmf->address, vmf->pud);
1255
1256unlock:
1257 spin_unlock(vmf->ptl);
1258}
1259#endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
1260
5db4f15c 1261void huge_pmd_set_accessed(struct vm_fault *vmf)
a1dd450b
WD
1262{
1263 pmd_t entry;
1264 unsigned long haddr;
20f664aa 1265 bool write = vmf->flags & FAULT_FLAG_WRITE;
5db4f15c 1266 pmd_t orig_pmd = vmf->orig_pmd;
a1dd450b 1267
82b0f8c3
JK
1268 vmf->ptl = pmd_lock(vmf->vma->vm_mm, vmf->pmd);
1269 if (unlikely(!pmd_same(*vmf->pmd, orig_pmd)))
a1dd450b
WD
1270 goto unlock;
1271
1272 entry = pmd_mkyoung(orig_pmd);
20f664aa
MK
1273 if (write)
1274 entry = pmd_mkdirty(entry);
82b0f8c3 1275 haddr = vmf->address & HPAGE_PMD_MASK;
20f664aa 1276 if (pmdp_set_access_flags(vmf->vma, haddr, vmf->pmd, entry, write))
82b0f8c3 1277 update_mmu_cache_pmd(vmf->vma, vmf->address, vmf->pmd);
a1dd450b
WD
1278
1279unlock:
82b0f8c3 1280 spin_unlock(vmf->ptl);
a1dd450b
WD
1281}
1282
5db4f15c 1283vm_fault_t do_huge_pmd_wp_page(struct vm_fault *vmf)
71e3aac0 1284{
82b0f8c3 1285 struct vm_area_struct *vma = vmf->vma;
3917c802 1286 struct page *page;
82b0f8c3 1287 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
5db4f15c 1288 pmd_t orig_pmd = vmf->orig_pmd;
71e3aac0 1289
82b0f8c3 1290 vmf->ptl = pmd_lockptr(vma->vm_mm, vmf->pmd);
81d1b09c 1291 VM_BUG_ON_VMA(!vma->anon_vma, vma);
3917c802 1292
93b4796d 1293 if (is_huge_zero_pmd(orig_pmd))
3917c802
KS
1294 goto fallback;
1295
82b0f8c3 1296 spin_lock(vmf->ptl);
3917c802
KS
1297
1298 if (unlikely(!pmd_same(*vmf->pmd, orig_pmd))) {
1299 spin_unlock(vmf->ptl);
1300 return 0;
1301 }
71e3aac0
AA
1302
1303 page = pmd_page(orig_pmd);
f6004e73 1304 VM_BUG_ON_PAGE(!PageHead(page), page);
3917c802
KS
1305
1306 /* Lock page for reuse_swap_page() */
ba3c4ce6
HY
1307 if (!trylock_page(page)) {
1308 get_page(page);
1309 spin_unlock(vmf->ptl);
1310 lock_page(page);
1311 spin_lock(vmf->ptl);
1312 if (unlikely(!pmd_same(*vmf->pmd, orig_pmd))) {
3917c802 1313 spin_unlock(vmf->ptl);
ba3c4ce6
HY
1314 unlock_page(page);
1315 put_page(page);
3917c802 1316 return 0;
ba3c4ce6
HY
1317 }
1318 put_page(page);
1319 }
3917c802
KS
1320
1321 /*
1322 * We can only reuse the page if nobody else maps the huge page or it's
1323 * part.
1324 */
020e8765 1325 if (reuse_swap_page(page)) {
71e3aac0
AA
1326 pmd_t entry;
1327 entry = pmd_mkyoung(orig_pmd);
f55e1014 1328 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
3917c802 1329 if (pmdp_set_access_flags(vma, haddr, vmf->pmd, entry, 1))
82b0f8c3 1330 update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
ba3c4ce6 1331 unlock_page(page);
82b0f8c3 1332 spin_unlock(vmf->ptl);
3917c802 1333 return VM_FAULT_WRITE;
71e3aac0 1334 }
3917c802
KS
1335
1336 unlock_page(page);
82b0f8c3 1337 spin_unlock(vmf->ptl);
3917c802
KS
1338fallback:
1339 __split_huge_pmd(vma, vmf->pmd, vmf->address, false, NULL);
1340 return VM_FAULT_FALLBACK;
71e3aac0
AA
1341}
1342
8310d48b 1343/*
a308c71b
PX
1344 * FOLL_FORCE can write to even unwritable pmd's, but only
1345 * after we've gone through a COW cycle and they are dirty.
8310d48b
KF
1346 */
1347static inline bool can_follow_write_pmd(pmd_t pmd, unsigned int flags)
1348{
a308c71b
PX
1349 return pmd_write(pmd) ||
1350 ((flags & FOLL_FORCE) && (flags & FOLL_COW) && pmd_dirty(pmd));
8310d48b
KF
1351}
1352
b676b293 1353struct page *follow_trans_huge_pmd(struct vm_area_struct *vma,
71e3aac0
AA
1354 unsigned long addr,
1355 pmd_t *pmd,
1356 unsigned int flags)
1357{
b676b293 1358 struct mm_struct *mm = vma->vm_mm;
71e3aac0
AA
1359 struct page *page = NULL;
1360
c4088ebd 1361 assert_spin_locked(pmd_lockptr(mm, pmd));
71e3aac0 1362
8310d48b 1363 if (flags & FOLL_WRITE && !can_follow_write_pmd(*pmd, flags))
71e3aac0
AA
1364 goto out;
1365
85facf25
KS
1366 /* Avoid dumping huge zero page */
1367 if ((flags & FOLL_DUMP) && is_huge_zero_pmd(*pmd))
1368 return ERR_PTR(-EFAULT);
1369
2b4847e7 1370 /* Full NUMA hinting faults to serialise migration in fault paths */
8a0516ed 1371 if ((flags & FOLL_NUMA) && pmd_protnone(*pmd))
2b4847e7
MG
1372 goto out;
1373
71e3aac0 1374 page = pmd_page(*pmd);
ca120cf6 1375 VM_BUG_ON_PAGE(!PageHead(page) && !is_zone_device_page(page), page);
3faa52c0
JH
1376
1377 if (!try_grab_page(page, flags))
1378 return ERR_PTR(-ENOMEM);
1379
3565fce3 1380 if (flags & FOLL_TOUCH)
a8f97366 1381 touch_pmd(vma, addr, pmd, flags);
3faa52c0 1382
71e3aac0 1383 page += (addr & ~HPAGE_PMD_MASK) >> PAGE_SHIFT;
ca120cf6 1384 VM_BUG_ON_PAGE(!PageCompound(page) && !is_zone_device_page(page), page);
71e3aac0
AA
1385
1386out:
1387 return page;
1388}
1389
d10e63f2 1390/* NUMA hinting page fault entry point for trans huge pmds */
5db4f15c 1391vm_fault_t do_huge_pmd_numa_page(struct vm_fault *vmf)
d10e63f2 1392{
82b0f8c3 1393 struct vm_area_struct *vma = vmf->vma;
c5b5a3dd
YS
1394 pmd_t oldpmd = vmf->orig_pmd;
1395 pmd_t pmd;
b32967ff 1396 struct page *page;
82b0f8c3 1397 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
c5b5a3dd 1398 int page_nid = NUMA_NO_NODE;
90572890 1399 int target_nid, last_cpupid = -1;
8191acbd 1400 bool migrated = false;
c5b5a3dd 1401 bool was_writable = pmd_savedwrite(oldpmd);
6688cc05 1402 int flags = 0;
d10e63f2 1403
82b0f8c3 1404 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
c5b5a3dd 1405 if (unlikely(!pmd_same(oldpmd, *vmf->pmd))) {
82b0f8c3 1406 spin_unlock(vmf->ptl);
de466bd6
MG
1407 goto out;
1408 }
1409
c5b5a3dd
YS
1410 pmd = pmd_modify(oldpmd, vma->vm_page_prot);
1411 page = vm_normal_page_pmd(vma, haddr, pmd);
1412 if (!page)
1413 goto out_map;
1414
1415 /* See similar comment in do_numa_page for explanation */
1416 if (!was_writable)
1417 flags |= TNF_NO_GROUP;
1418
1419 page_nid = page_to_nid(page);
1420 last_cpupid = page_cpupid_last(page);
1421 target_nid = numa_migrate_prep(page, vma, haddr, page_nid,
1422 &flags);
1423
1424 if (target_nid == NUMA_NO_NODE) {
1425 put_page(page);
1426 goto out_map;
1427 }
1428
82b0f8c3 1429 spin_unlock(vmf->ptl);
8b1b436d 1430
c5b5a3dd 1431 migrated = migrate_misplaced_page(page, vma, target_nid);
6688cc05
PZ
1432 if (migrated) {
1433 flags |= TNF_MIGRATED;
8191acbd 1434 page_nid = target_nid;
c5b5a3dd 1435 } else {
074c2381 1436 flags |= TNF_MIGRATE_FAIL;
c5b5a3dd
YS
1437 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
1438 if (unlikely(!pmd_same(oldpmd, *vmf->pmd))) {
1439 spin_unlock(vmf->ptl);
1440 goto out;
1441 }
1442 goto out_map;
1443 }
b8916634
MG
1444
1445out:
98fa15f3 1446 if (page_nid != NUMA_NO_NODE)
82b0f8c3 1447 task_numa_fault(last_cpupid, page_nid, HPAGE_PMD_NR,
9a8b300f 1448 flags);
8191acbd 1449
d10e63f2 1450 return 0;
c5b5a3dd
YS
1451
1452out_map:
1453 /* Restore the PMD */
1454 pmd = pmd_modify(oldpmd, vma->vm_page_prot);
1455 pmd = pmd_mkyoung(pmd);
1456 if (was_writable)
1457 pmd = pmd_mkwrite(pmd);
1458 set_pmd_at(vma->vm_mm, haddr, vmf->pmd, pmd);
1459 update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
1460 spin_unlock(vmf->ptl);
1461 goto out;
d10e63f2
MG
1462}
1463
319904ad
HY
1464/*
1465 * Return true if we do MADV_FREE successfully on entire pmd page.
1466 * Otherwise, return false.
1467 */
1468bool madvise_free_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
b8d3c4c3 1469 pmd_t *pmd, unsigned long addr, unsigned long next)
b8d3c4c3
MK
1470{
1471 spinlock_t *ptl;
1472 pmd_t orig_pmd;
1473 struct page *page;
1474 struct mm_struct *mm = tlb->mm;
319904ad 1475 bool ret = false;
b8d3c4c3 1476
ed6a7935 1477 tlb_change_page_size(tlb, HPAGE_PMD_SIZE);
07e32661 1478
b6ec57f4
KS
1479 ptl = pmd_trans_huge_lock(pmd, vma);
1480 if (!ptl)
25eedabe 1481 goto out_unlocked;
b8d3c4c3
MK
1482
1483 orig_pmd = *pmd;
319904ad 1484 if (is_huge_zero_pmd(orig_pmd))
b8d3c4c3 1485 goto out;
b8d3c4c3 1486
84c3fc4e
ZY
1487 if (unlikely(!pmd_present(orig_pmd))) {
1488 VM_BUG_ON(thp_migration_supported() &&
1489 !is_pmd_migration_entry(orig_pmd));
1490 goto out;
1491 }
1492
b8d3c4c3
MK
1493 page = pmd_page(orig_pmd);
1494 /*
1495 * If other processes are mapping this page, we couldn't discard
1496 * the page unless they all do MADV_FREE so let's skip the page.
1497 */
babbbdd0 1498 if (total_mapcount(page) != 1)
b8d3c4c3
MK
1499 goto out;
1500
1501 if (!trylock_page(page))
1502 goto out;
1503
1504 /*
1505 * If user want to discard part-pages of THP, split it so MADV_FREE
1506 * will deactivate only them.
1507 */
1508 if (next - addr != HPAGE_PMD_SIZE) {
1509 get_page(page);
1510 spin_unlock(ptl);
9818b8cd 1511 split_huge_page(page);
b8d3c4c3 1512 unlock_page(page);
bbf29ffc 1513 put_page(page);
b8d3c4c3
MK
1514 goto out_unlocked;
1515 }
1516
1517 if (PageDirty(page))
1518 ClearPageDirty(page);
1519 unlock_page(page);
1520
b8d3c4c3 1521 if (pmd_young(orig_pmd) || pmd_dirty(orig_pmd)) {
58ceeb6b 1522 pmdp_invalidate(vma, addr, pmd);
b8d3c4c3
MK
1523 orig_pmd = pmd_mkold(orig_pmd);
1524 orig_pmd = pmd_mkclean(orig_pmd);
1525
1526 set_pmd_at(mm, addr, pmd, orig_pmd);
1527 tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
1528 }
802a3a92
SL
1529
1530 mark_page_lazyfree(page);
319904ad 1531 ret = true;
b8d3c4c3
MK
1532out:
1533 spin_unlock(ptl);
1534out_unlocked:
1535 return ret;
1536}
1537
953c66c2
AK
1538static inline void zap_deposited_table(struct mm_struct *mm, pmd_t *pmd)
1539{
1540 pgtable_t pgtable;
1541
1542 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
1543 pte_free(mm, pgtable);
c4812909 1544 mm_dec_nr_ptes(mm);
953c66c2
AK
1545}
1546
71e3aac0 1547int zap_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
f21760b1 1548 pmd_t *pmd, unsigned long addr)
71e3aac0 1549{
da146769 1550 pmd_t orig_pmd;
bf929152 1551 spinlock_t *ptl;
71e3aac0 1552
ed6a7935 1553 tlb_change_page_size(tlb, HPAGE_PMD_SIZE);
07e32661 1554
b6ec57f4
KS
1555 ptl = __pmd_trans_huge_lock(pmd, vma);
1556 if (!ptl)
da146769
KS
1557 return 0;
1558 /*
1559 * For architectures like ppc64 we look at deposited pgtable
1560 * when calling pmdp_huge_get_and_clear. So do the
1561 * pgtable_trans_huge_withdraw after finishing pmdp related
1562 * operations.
1563 */
93a98695
AK
1564 orig_pmd = pmdp_huge_get_and_clear_full(vma, addr, pmd,
1565 tlb->fullmm);
da146769 1566 tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
2484ca9b 1567 if (vma_is_special_huge(vma)) {
3b6521f5
OH
1568 if (arch_needs_pgtable_deposit())
1569 zap_deposited_table(tlb->mm, pmd);
da146769 1570 spin_unlock(ptl);
da146769 1571 } else if (is_huge_zero_pmd(orig_pmd)) {
c14a6eb4 1572 zap_deposited_table(tlb->mm, pmd);
da146769 1573 spin_unlock(ptl);
da146769 1574 } else {
616b8371
ZY
1575 struct page *page = NULL;
1576 int flush_needed = 1;
1577
1578 if (pmd_present(orig_pmd)) {
1579 page = pmd_page(orig_pmd);
cea86fe2 1580 page_remove_rmap(page, vma, true);
616b8371
ZY
1581 VM_BUG_ON_PAGE(page_mapcount(page) < 0, page);
1582 VM_BUG_ON_PAGE(!PageHead(page), page);
1583 } else if (thp_migration_supported()) {
1584 swp_entry_t entry;
1585
1586 VM_BUG_ON(!is_pmd_migration_entry(orig_pmd));
1587 entry = pmd_to_swp_entry(orig_pmd);
af5cdaf8 1588 page = pfn_swap_entry_to_page(entry);
616b8371
ZY
1589 flush_needed = 0;
1590 } else
1591 WARN_ONCE(1, "Non present huge pmd without pmd migration enabled!");
1592
b5072380 1593 if (PageAnon(page)) {
c14a6eb4 1594 zap_deposited_table(tlb->mm, pmd);
b5072380
KS
1595 add_mm_counter(tlb->mm, MM_ANONPAGES, -HPAGE_PMD_NR);
1596 } else {
953c66c2
AK
1597 if (arch_needs_pgtable_deposit())
1598 zap_deposited_table(tlb->mm, pmd);
fadae295 1599 add_mm_counter(tlb->mm, mm_counter_file(page), -HPAGE_PMD_NR);
b5072380 1600 }
616b8371 1601
da146769 1602 spin_unlock(ptl);
616b8371
ZY
1603 if (flush_needed)
1604 tlb_remove_page_size(tlb, page, HPAGE_PMD_SIZE);
025c5b24 1605 }
da146769 1606 return 1;
71e3aac0
AA
1607}
1608
1dd38b6c
AK
1609#ifndef pmd_move_must_withdraw
1610static inline int pmd_move_must_withdraw(spinlock_t *new_pmd_ptl,
1611 spinlock_t *old_pmd_ptl,
1612 struct vm_area_struct *vma)
1613{
1614 /*
1615 * With split pmd lock we also need to move preallocated
1616 * PTE page table if new_pmd is on different PMD page table.
1617 *
1618 * We also don't deposit and withdraw tables for file pages.
1619 */
1620 return (new_pmd_ptl != old_pmd_ptl) && vma_is_anonymous(vma);
1621}
1622#endif
1623
ab6e3d09
NH
1624static pmd_t move_soft_dirty_pmd(pmd_t pmd)
1625{
1626#ifdef CONFIG_MEM_SOFT_DIRTY
1627 if (unlikely(is_pmd_migration_entry(pmd)))
1628 pmd = pmd_swp_mksoft_dirty(pmd);
1629 else if (pmd_present(pmd))
1630 pmd = pmd_mksoft_dirty(pmd);
1631#endif
1632 return pmd;
1633}
1634
bf8616d5 1635bool move_huge_pmd(struct vm_area_struct *vma, unsigned long old_addr,
b8aa9d9d 1636 unsigned long new_addr, pmd_t *old_pmd, pmd_t *new_pmd)
37a1c49a 1637{
bf929152 1638 spinlock_t *old_ptl, *new_ptl;
37a1c49a 1639 pmd_t pmd;
37a1c49a 1640 struct mm_struct *mm = vma->vm_mm;
5d190420 1641 bool force_flush = false;
37a1c49a 1642
37a1c49a
AA
1643 /*
1644 * The destination pmd shouldn't be established, free_pgtables()
1645 * should have release it.
1646 */
1647 if (WARN_ON(!pmd_none(*new_pmd))) {
1648 VM_BUG_ON(pmd_trans_huge(*new_pmd));
4b471e88 1649 return false;
37a1c49a
AA
1650 }
1651
bf929152
KS
1652 /*
1653 * We don't have to worry about the ordering of src and dst
c1e8d7c6 1654 * ptlocks because exclusive mmap_lock prevents deadlock.
bf929152 1655 */
b6ec57f4
KS
1656 old_ptl = __pmd_trans_huge_lock(old_pmd, vma);
1657 if (old_ptl) {
bf929152
KS
1658 new_ptl = pmd_lockptr(mm, new_pmd);
1659 if (new_ptl != old_ptl)
1660 spin_lock_nested(new_ptl, SINGLE_DEPTH_NESTING);
8809aa2d 1661 pmd = pmdp_huge_get_and_clear(mm, old_addr, old_pmd);
eb66ae03 1662 if (pmd_present(pmd))
a2ce2666 1663 force_flush = true;
025c5b24 1664 VM_BUG_ON(!pmd_none(*new_pmd));
3592806c 1665
1dd38b6c 1666 if (pmd_move_must_withdraw(new_ptl, old_ptl, vma)) {
b3084f4d 1667 pgtable_t pgtable;
3592806c
KS
1668 pgtable = pgtable_trans_huge_withdraw(mm, old_pmd);
1669 pgtable_trans_huge_deposit(mm, new_pmd, pgtable);
3592806c 1670 }
ab6e3d09
NH
1671 pmd = move_soft_dirty_pmd(pmd);
1672 set_pmd_at(mm, new_addr, new_pmd, pmd);
5d190420
AL
1673 if (force_flush)
1674 flush_tlb_range(vma, old_addr, old_addr + PMD_SIZE);
eb66ae03
LT
1675 if (new_ptl != old_ptl)
1676 spin_unlock(new_ptl);
bf929152 1677 spin_unlock(old_ptl);
4b471e88 1678 return true;
37a1c49a 1679 }
4b471e88 1680 return false;
37a1c49a
AA
1681}
1682
f123d74a
MG
1683/*
1684 * Returns
1685 * - 0 if PMD could not be locked
f0953a1b 1686 * - 1 if PMD was locked but protections unchanged and TLB flush unnecessary
e346e668 1687 * or if prot_numa but THP migration is not supported
f0953a1b 1688 * - HPAGE_PMD_NR if protections changed and TLB flush necessary
f123d74a 1689 */
cd7548ab 1690int change_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
58705444 1691 unsigned long addr, pgprot_t newprot, unsigned long cp_flags)
cd7548ab
JW
1692{
1693 struct mm_struct *mm = vma->vm_mm;
bf929152 1694 spinlock_t *ptl;
0a85e51d
KS
1695 pmd_t entry;
1696 bool preserve_write;
1697 int ret;
58705444 1698 bool prot_numa = cp_flags & MM_CP_PROT_NUMA;
292924b2
PX
1699 bool uffd_wp = cp_flags & MM_CP_UFFD_WP;
1700 bool uffd_wp_resolve = cp_flags & MM_CP_UFFD_WP_RESOLVE;
cd7548ab 1701
e346e668
YS
1702 if (prot_numa && !thp_migration_supported())
1703 return 1;
1704
b6ec57f4 1705 ptl = __pmd_trans_huge_lock(pmd, vma);
0a85e51d
KS
1706 if (!ptl)
1707 return 0;
e944fd67 1708
0a85e51d
KS
1709 preserve_write = prot_numa && pmd_write(*pmd);
1710 ret = 1;
e944fd67 1711
84c3fc4e
ZY
1712#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
1713 if (is_swap_pmd(*pmd)) {
1714 swp_entry_t entry = pmd_to_swp_entry(*pmd);
1715
1716 VM_BUG_ON(!is_pmd_migration_entry(*pmd));
4dd845b5 1717 if (is_writable_migration_entry(entry)) {
84c3fc4e
ZY
1718 pmd_t newpmd;
1719 /*
1720 * A protection check is difficult so
1721 * just be safe and disable write
1722 */
4dd845b5
AP
1723 entry = make_readable_migration_entry(
1724 swp_offset(entry));
84c3fc4e 1725 newpmd = swp_entry_to_pmd(entry);
ab6e3d09
NH
1726 if (pmd_swp_soft_dirty(*pmd))
1727 newpmd = pmd_swp_mksoft_dirty(newpmd);
8f34f1ea
PX
1728 if (pmd_swp_uffd_wp(*pmd))
1729 newpmd = pmd_swp_mkuffd_wp(newpmd);
84c3fc4e
ZY
1730 set_pmd_at(mm, addr, pmd, newpmd);
1731 }
1732 goto unlock;
1733 }
1734#endif
1735
a1a3a2fc
HY
1736 if (prot_numa) {
1737 struct page *page;
1738 /*
1739 * Avoid trapping faults against the zero page. The read-only
1740 * data is likely to be read-cached on the local CPU and
1741 * local/remote hits to the zero page are not interesting.
1742 */
1743 if (is_huge_zero_pmd(*pmd))
1744 goto unlock;
025c5b24 1745
a1a3a2fc
HY
1746 if (pmd_protnone(*pmd))
1747 goto unlock;
0a85e51d 1748
a1a3a2fc
HY
1749 page = pmd_page(*pmd);
1750 /*
1751 * Skip scanning top tier node if normal numa
1752 * balancing is disabled
1753 */
1754 if (!(sysctl_numa_balancing_mode & NUMA_BALANCING_NORMAL) &&
1755 node_is_toptier(page_to_nid(page)))
1756 goto unlock;
1757 }
ced10803 1758 /*
3e4e28c5 1759 * In case prot_numa, we are under mmap_read_lock(mm). It's critical
ced10803 1760 * to not clear pmd intermittently to avoid race with MADV_DONTNEED
3e4e28c5 1761 * which is also under mmap_read_lock(mm):
ced10803
KS
1762 *
1763 * CPU0: CPU1:
1764 * change_huge_pmd(prot_numa=1)
1765 * pmdp_huge_get_and_clear_notify()
1766 * madvise_dontneed()
1767 * zap_pmd_range()
1768 * pmd_trans_huge(*pmd) == 0 (without ptl)
1769 * // skip the pmd
1770 * set_pmd_at();
1771 * // pmd is re-established
1772 *
1773 * The race makes MADV_DONTNEED miss the huge pmd and don't clear it
1774 * which may break userspace.
1775 *
1776 * pmdp_invalidate() is required to make sure we don't miss
1777 * dirty/young flags set by hardware.
1778 */
a3cf988f 1779 entry = pmdp_invalidate(vma, addr, pmd);
ced10803 1780
0a85e51d
KS
1781 entry = pmd_modify(entry, newprot);
1782 if (preserve_write)
1783 entry = pmd_mk_savedwrite(entry);
292924b2
PX
1784 if (uffd_wp) {
1785 entry = pmd_wrprotect(entry);
1786 entry = pmd_mkuffd_wp(entry);
1787 } else if (uffd_wp_resolve) {
1788 /*
1789 * Leave the write bit to be handled by PF interrupt
1790 * handler, then things like COW could be properly
1791 * handled.
1792 */
1793 entry = pmd_clear_uffd_wp(entry);
1794 }
0a85e51d
KS
1795 ret = HPAGE_PMD_NR;
1796 set_pmd_at(mm, addr, pmd, entry);
1797 BUG_ON(vma_is_anonymous(vma) && !preserve_write && pmd_write(entry));
1798unlock:
1799 spin_unlock(ptl);
025c5b24
NH
1800 return ret;
1801}
1802
1803/*
8f19b0c0 1804 * Returns page table lock pointer if a given pmd maps a thp, NULL otherwise.
025c5b24 1805 *
8f19b0c0
HY
1806 * Note that if it returns page table lock pointer, this routine returns without
1807 * unlocking page table lock. So callers must unlock it.
025c5b24 1808 */
b6ec57f4 1809spinlock_t *__pmd_trans_huge_lock(pmd_t *pmd, struct vm_area_struct *vma)
025c5b24 1810{
b6ec57f4
KS
1811 spinlock_t *ptl;
1812 ptl = pmd_lock(vma->vm_mm, pmd);
84c3fc4e
ZY
1813 if (likely(is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) ||
1814 pmd_devmap(*pmd)))
b6ec57f4
KS
1815 return ptl;
1816 spin_unlock(ptl);
1817 return NULL;
cd7548ab
JW
1818}
1819
a00cc7d9
MW
1820/*
1821 * Returns true if a given pud maps a thp, false otherwise.
1822 *
1823 * Note that if it returns true, this routine returns without unlocking page
1824 * table lock. So callers must unlock it.
1825 */
1826spinlock_t *__pud_trans_huge_lock(pud_t *pud, struct vm_area_struct *vma)
1827{
1828 spinlock_t *ptl;
1829
1830 ptl = pud_lock(vma->vm_mm, pud);
1831 if (likely(pud_trans_huge(*pud) || pud_devmap(*pud)))
1832 return ptl;
1833 spin_unlock(ptl);
1834 return NULL;
1835}
1836
1837#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
1838int zap_huge_pud(struct mmu_gather *tlb, struct vm_area_struct *vma,
1839 pud_t *pud, unsigned long addr)
1840{
a00cc7d9
MW
1841 spinlock_t *ptl;
1842
1843 ptl = __pud_trans_huge_lock(pud, vma);
1844 if (!ptl)
1845 return 0;
1846 /*
1847 * For architectures like ppc64 we look at deposited pgtable
1848 * when calling pudp_huge_get_and_clear. So do the
1849 * pgtable_trans_huge_withdraw after finishing pudp related
1850 * operations.
1851 */
70516b93 1852 pudp_huge_get_and_clear_full(tlb->mm, addr, pud, tlb->fullmm);
a00cc7d9 1853 tlb_remove_pud_tlb_entry(tlb, pud, addr);
2484ca9b 1854 if (vma_is_special_huge(vma)) {
a00cc7d9
MW
1855 spin_unlock(ptl);
1856 /* No zero page support yet */
1857 } else {
1858 /* No support for anonymous PUD pages yet */
1859 BUG();
1860 }
1861 return 1;
1862}
1863
1864static void __split_huge_pud_locked(struct vm_area_struct *vma, pud_t *pud,
1865 unsigned long haddr)
1866{
1867 VM_BUG_ON(haddr & ~HPAGE_PUD_MASK);
1868 VM_BUG_ON_VMA(vma->vm_start > haddr, vma);
1869 VM_BUG_ON_VMA(vma->vm_end < haddr + HPAGE_PUD_SIZE, vma);
1870 VM_BUG_ON(!pud_trans_huge(*pud) && !pud_devmap(*pud));
1871
ce9311cf 1872 count_vm_event(THP_SPLIT_PUD);
a00cc7d9
MW
1873
1874 pudp_huge_clear_flush_notify(vma, haddr, pud);
1875}
1876
1877void __split_huge_pud(struct vm_area_struct *vma, pud_t *pud,
1878 unsigned long address)
1879{
1880 spinlock_t *ptl;
ac46d4f3 1881 struct mmu_notifier_range range;
a00cc7d9 1882
7269f999 1883 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, vma->vm_mm,
6f4f13e8 1884 address & HPAGE_PUD_MASK,
ac46d4f3
JG
1885 (address & HPAGE_PUD_MASK) + HPAGE_PUD_SIZE);
1886 mmu_notifier_invalidate_range_start(&range);
1887 ptl = pud_lock(vma->vm_mm, pud);
a00cc7d9
MW
1888 if (unlikely(!pud_trans_huge(*pud) && !pud_devmap(*pud)))
1889 goto out;
ac46d4f3 1890 __split_huge_pud_locked(vma, pud, range.start);
a00cc7d9
MW
1891
1892out:
1893 spin_unlock(ptl);
4645b9fe
JG
1894 /*
1895 * No need to double call mmu_notifier->invalidate_range() callback as
1896 * the above pudp_huge_clear_flush_notify() did already call it.
1897 */
ac46d4f3 1898 mmu_notifier_invalidate_range_only_end(&range);
a00cc7d9
MW
1899}
1900#endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
1901
eef1b3ba
KS
1902static void __split_huge_zero_page_pmd(struct vm_area_struct *vma,
1903 unsigned long haddr, pmd_t *pmd)
1904{
1905 struct mm_struct *mm = vma->vm_mm;
1906 pgtable_t pgtable;
1907 pmd_t _pmd;
1908 int i;
1909
0f10851e
JG
1910 /*
1911 * Leave pmd empty until pte is filled note that it is fine to delay
1912 * notification until mmu_notifier_invalidate_range_end() as we are
1913 * replacing a zero pmd write protected page with a zero pte write
1914 * protected page.
1915 *
ad56b738 1916 * See Documentation/vm/mmu_notifier.rst
0f10851e
JG
1917 */
1918 pmdp_huge_clear_flush(vma, haddr, pmd);
eef1b3ba
KS
1919
1920 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
1921 pmd_populate(mm, &_pmd, pgtable);
1922
1923 for (i = 0; i < HPAGE_PMD_NR; i++, haddr += PAGE_SIZE) {
1924 pte_t *pte, entry;
1925 entry = pfn_pte(my_zero_pfn(haddr), vma->vm_page_prot);
1926 entry = pte_mkspecial(entry);
1927 pte = pte_offset_map(&_pmd, haddr);
1928 VM_BUG_ON(!pte_none(*pte));
1929 set_pte_at(mm, haddr, pte, entry);
1930 pte_unmap(pte);
1931 }
1932 smp_wmb(); /* make pte visible before pmd */
1933 pmd_populate(mm, pmd, pgtable);
eef1b3ba
KS
1934}
1935
1936static void __split_huge_pmd_locked(struct vm_area_struct *vma, pmd_t *pmd,
ba988280 1937 unsigned long haddr, bool freeze)
eef1b3ba
KS
1938{
1939 struct mm_struct *mm = vma->vm_mm;
1940 struct page *page;
1941 pgtable_t pgtable;
423ac9af 1942 pmd_t old_pmd, _pmd;
292924b2 1943 bool young, write, soft_dirty, pmd_migration = false, uffd_wp = false;
2ac015e2 1944 unsigned long addr;
eef1b3ba
KS
1945 int i;
1946
1947 VM_BUG_ON(haddr & ~HPAGE_PMD_MASK);
1948 VM_BUG_ON_VMA(vma->vm_start > haddr, vma);
1949 VM_BUG_ON_VMA(vma->vm_end < haddr + HPAGE_PMD_SIZE, vma);
84c3fc4e
ZY
1950 VM_BUG_ON(!is_pmd_migration_entry(*pmd) && !pmd_trans_huge(*pmd)
1951 && !pmd_devmap(*pmd));
eef1b3ba
KS
1952
1953 count_vm_event(THP_SPLIT_PMD);
1954
d21b9e57 1955 if (!vma_is_anonymous(vma)) {
99fa8a48 1956 old_pmd = pmdp_huge_clear_flush_notify(vma, haddr, pmd);
953c66c2
AK
1957 /*
1958 * We are going to unmap this huge page. So
1959 * just go ahead and zap it
1960 */
1961 if (arch_needs_pgtable_deposit())
1962 zap_deposited_table(mm, pmd);
2484ca9b 1963 if (vma_is_special_huge(vma))
d21b9e57 1964 return;
99fa8a48
HD
1965 if (unlikely(is_pmd_migration_entry(old_pmd))) {
1966 swp_entry_t entry;
1967
1968 entry = pmd_to_swp_entry(old_pmd);
af5cdaf8 1969 page = pfn_swap_entry_to_page(entry);
99fa8a48
HD
1970 } else {
1971 page = pmd_page(old_pmd);
1972 if (!PageDirty(page) && pmd_dirty(old_pmd))
1973 set_page_dirty(page);
1974 if (!PageReferenced(page) && pmd_young(old_pmd))
1975 SetPageReferenced(page);
cea86fe2 1976 page_remove_rmap(page, vma, true);
99fa8a48
HD
1977 put_page(page);
1978 }
fadae295 1979 add_mm_counter(mm, mm_counter_file(page), -HPAGE_PMD_NR);
eef1b3ba 1980 return;
99fa8a48
HD
1981 }
1982
3b77e8c8 1983 if (is_huge_zero_pmd(*pmd)) {
4645b9fe
JG
1984 /*
1985 * FIXME: Do we want to invalidate secondary mmu by calling
1986 * mmu_notifier_invalidate_range() see comments below inside
1987 * __split_huge_pmd() ?
1988 *
1989 * We are going from a zero huge page write protected to zero
1990 * small page also write protected so it does not seems useful
1991 * to invalidate secondary mmu at this time.
1992 */
eef1b3ba
KS
1993 return __split_huge_zero_page_pmd(vma, haddr, pmd);
1994 }
1995
423ac9af
AK
1996 /*
1997 * Up to this point the pmd is present and huge and userland has the
1998 * whole access to the hugepage during the split (which happens in
1999 * place). If we overwrite the pmd with the not-huge version pointing
2000 * to the pte here (which of course we could if all CPUs were bug
2001 * free), userland could trigger a small page size TLB miss on the
2002 * small sized TLB while the hugepage TLB entry is still established in
2003 * the huge TLB. Some CPU doesn't like that.
42742d9b
AK
2004 * See http://support.amd.com/TechDocs/41322_10h_Rev_Gd.pdf, Erratum
2005 * 383 on page 105. Intel should be safe but is also warns that it's
423ac9af
AK
2006 * only safe if the permission and cache attributes of the two entries
2007 * loaded in the two TLB is identical (which should be the case here).
2008 * But it is generally safer to never allow small and huge TLB entries
2009 * for the same virtual address to be loaded simultaneously. So instead
2010 * of doing "pmd_populate(); flush_pmd_tlb_range();" we first mark the
2011 * current pmd notpresent (atomically because here the pmd_trans_huge
2012 * must remain set at all times on the pmd until the split is complete
2013 * for this pmd), then we flush the SMP TLB and finally we write the
2014 * non-huge version of the pmd entry with pmd_populate.
2015 */
2016 old_pmd = pmdp_invalidate(vma, haddr, pmd);
2017
423ac9af 2018 pmd_migration = is_pmd_migration_entry(old_pmd);
2e83ee1d 2019 if (unlikely(pmd_migration)) {
84c3fc4e
ZY
2020 swp_entry_t entry;
2021
423ac9af 2022 entry = pmd_to_swp_entry(old_pmd);
af5cdaf8 2023 page = pfn_swap_entry_to_page(entry);
4dd845b5 2024 write = is_writable_migration_entry(entry);
2e83ee1d
PX
2025 young = false;
2026 soft_dirty = pmd_swp_soft_dirty(old_pmd);
f45ec5ff 2027 uffd_wp = pmd_swp_uffd_wp(old_pmd);
2e83ee1d 2028 } else {
423ac9af 2029 page = pmd_page(old_pmd);
2e83ee1d
PX
2030 if (pmd_dirty(old_pmd))
2031 SetPageDirty(page);
2032 write = pmd_write(old_pmd);
2033 young = pmd_young(old_pmd);
2034 soft_dirty = pmd_soft_dirty(old_pmd);
292924b2 2035 uffd_wp = pmd_uffd_wp(old_pmd);
9d84604b
HD
2036 VM_BUG_ON_PAGE(!page_count(page), page);
2037 page_ref_add(page, HPAGE_PMD_NR - 1);
2e83ee1d 2038 }
eef1b3ba 2039
423ac9af
AK
2040 /*
2041 * Withdraw the table only after we mark the pmd entry invalid.
2042 * This's critical for some architectures (Power).
2043 */
eef1b3ba
KS
2044 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
2045 pmd_populate(mm, &_pmd, pgtable);
2046
2ac015e2 2047 for (i = 0, addr = haddr; i < HPAGE_PMD_NR; i++, addr += PAGE_SIZE) {
eef1b3ba
KS
2048 pte_t entry, *pte;
2049 /*
2050 * Note that NUMA hinting access restrictions are not
2051 * transferred to avoid any possibility of altering
2052 * permissions across VMAs.
2053 */
84c3fc4e 2054 if (freeze || pmd_migration) {
ba988280 2055 swp_entry_t swp_entry;
4dd845b5
AP
2056 if (write)
2057 swp_entry = make_writable_migration_entry(
2058 page_to_pfn(page + i));
2059 else
2060 swp_entry = make_readable_migration_entry(
2061 page_to_pfn(page + i));
ba988280 2062 entry = swp_entry_to_pte(swp_entry);
804dd150
AA
2063 if (soft_dirty)
2064 entry = pte_swp_mksoft_dirty(entry);
f45ec5ff
PX
2065 if (uffd_wp)
2066 entry = pte_swp_mkuffd_wp(entry);
ba988280 2067 } else {
6d2329f8 2068 entry = mk_pte(page + i, READ_ONCE(vma->vm_page_prot));
b8d3c4c3 2069 entry = maybe_mkwrite(entry, vma);
ba988280
KS
2070 if (!write)
2071 entry = pte_wrprotect(entry);
2072 if (!young)
2073 entry = pte_mkold(entry);
804dd150
AA
2074 if (soft_dirty)
2075 entry = pte_mksoft_dirty(entry);
292924b2
PX
2076 if (uffd_wp)
2077 entry = pte_mkuffd_wp(entry);
ba988280 2078 }
2ac015e2 2079 pte = pte_offset_map(&_pmd, addr);
eef1b3ba 2080 BUG_ON(!pte_none(*pte));
2ac015e2 2081 set_pte_at(mm, addr, pte, entry);
ec0abae6 2082 if (!pmd_migration)
eef1b3ba 2083 atomic_inc(&page[i]._mapcount);
ec0abae6 2084 pte_unmap(pte);
eef1b3ba
KS
2085 }
2086
ec0abae6
RC
2087 if (!pmd_migration) {
2088 /*
2089 * Set PG_double_map before dropping compound_mapcount to avoid
2090 * false-negative page_mapped().
2091 */
2092 if (compound_mapcount(page) > 1 &&
2093 !TestSetPageDoubleMap(page)) {
eef1b3ba 2094 for (i = 0; i < HPAGE_PMD_NR; i++)
ec0abae6
RC
2095 atomic_inc(&page[i]._mapcount);
2096 }
2097
2098 lock_page_memcg(page);
2099 if (atomic_add_negative(-1, compound_mapcount_ptr(page))) {
2100 /* Last compound_mapcount is gone. */
69473e5d
MS
2101 __mod_lruvec_page_state(page, NR_ANON_THPS,
2102 -HPAGE_PMD_NR);
ec0abae6
RC
2103 if (TestClearPageDoubleMap(page)) {
2104 /* No need in mapcount reference anymore */
2105 for (i = 0; i < HPAGE_PMD_NR; i++)
2106 atomic_dec(&page[i]._mapcount);
2107 }
eef1b3ba 2108 }
ec0abae6 2109 unlock_page_memcg(page);
cea86fe2
HD
2110
2111 /* Above is effectively page_remove_rmap(page, vma, true) */
2112 munlock_vma_page(page, vma, true);
eef1b3ba
KS
2113 }
2114
2115 smp_wmb(); /* make pte visible before pmd */
2116 pmd_populate(mm, pmd, pgtable);
e9b61f19
KS
2117
2118 if (freeze) {
2ac015e2 2119 for (i = 0; i < HPAGE_PMD_NR; i++) {
cea86fe2 2120 page_remove_rmap(page + i, vma, false);
e9b61f19
KS
2121 put_page(page + i);
2122 }
2123 }
eef1b3ba
KS
2124}
2125
2126void __split_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
af28a988 2127 unsigned long address, bool freeze, struct folio *folio)
eef1b3ba
KS
2128{
2129 spinlock_t *ptl;
ac46d4f3 2130 struct mmu_notifier_range range;
af28a988 2131 bool do_unlock_folio = false;
c444eb56 2132 pmd_t _pmd;
eef1b3ba 2133
7269f999 2134 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, vma->vm_mm,
6f4f13e8 2135 address & HPAGE_PMD_MASK,
ac46d4f3
JG
2136 (address & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE);
2137 mmu_notifier_invalidate_range_start(&range);
2138 ptl = pmd_lock(vma->vm_mm, pmd);
33f4751e
NH
2139
2140 /*
af28a988
MWO
2141 * If caller asks to setup a migration entry, we need a folio to check
2142 * pmd against. Otherwise we can end up replacing wrong folio.
33f4751e 2143 */
af28a988
MWO
2144 VM_BUG_ON(freeze && !folio);
2145 if (folio) {
2146 VM_WARN_ON_ONCE(!folio_test_locked(folio));
2147 if (folio != page_folio(pmd_page(*pmd)))
c444eb56
AA
2148 goto out;
2149 }
33f4751e 2150
c444eb56 2151repeat:
5c7fb56e 2152 if (pmd_trans_huge(*pmd)) {
af28a988
MWO
2153 if (!folio) {
2154 folio = page_folio(pmd_page(*pmd));
1c2f6730
HD
2155 /*
2156 * An anonymous page must be locked, to ensure that a
2157 * concurrent reuse_swap_page() sees stable mapcount;
2158 * but reuse_swap_page() is not used on shmem or file,
2159 * and page lock must not be taken when zap_pmd_range()
2160 * calls __split_huge_pmd() while i_mmap_lock is held.
2161 */
af28a988
MWO
2162 if (folio_test_anon(folio)) {
2163 if (unlikely(!folio_trylock(folio))) {
2164 folio_get(folio);
1c2f6730
HD
2165 _pmd = *pmd;
2166 spin_unlock(ptl);
af28a988 2167 folio_lock(folio);
1c2f6730
HD
2168 spin_lock(ptl);
2169 if (unlikely(!pmd_same(*pmd, _pmd))) {
af28a988
MWO
2170 folio_unlock(folio);
2171 folio_put(folio);
2172 folio = NULL;
1c2f6730
HD
2173 goto repeat;
2174 }
af28a988 2175 folio_put(folio);
c444eb56 2176 }
af28a988 2177 do_unlock_folio = true;
c444eb56
AA
2178 }
2179 }
84c3fc4e 2180 } else if (!(pmd_devmap(*pmd) || is_pmd_migration_entry(*pmd)))
e90309c9 2181 goto out;
ac46d4f3 2182 __split_huge_pmd_locked(vma, pmd, range.start, freeze);
e90309c9 2183out:
eef1b3ba 2184 spin_unlock(ptl);
af28a988
MWO
2185 if (do_unlock_folio)
2186 folio_unlock(folio);
4645b9fe
JG
2187 /*
2188 * No need to double call mmu_notifier->invalidate_range() callback.
2189 * They are 3 cases to consider inside __split_huge_pmd_locked():
2190 * 1) pmdp_huge_clear_flush_notify() call invalidate_range() obvious
2191 * 2) __split_huge_zero_page_pmd() read only zero page and any write
2192 * fault will trigger a flush_notify before pointing to a new page
2193 * (it is fine if the secondary mmu keeps pointing to the old zero
2194 * page in the meantime)
2195 * 3) Split a huge pmd into pte pointing to the same page. No need
2196 * to invalidate secondary tlb entry they are all still valid.
2197 * any further changes to individual pte will notify. So no need
2198 * to call mmu_notifier->invalidate_range()
2199 */
ac46d4f3 2200 mmu_notifier_invalidate_range_only_end(&range);
eef1b3ba
KS
2201}
2202
fec89c10 2203void split_huge_pmd_address(struct vm_area_struct *vma, unsigned long address,
af28a988 2204 bool freeze, struct folio *folio)
94fcc585 2205{
f72e7dcd 2206 pgd_t *pgd;
c2febafc 2207 p4d_t *p4d;
f72e7dcd 2208 pud_t *pud;
94fcc585
AA
2209 pmd_t *pmd;
2210
78ddc534 2211 pgd = pgd_offset(vma->vm_mm, address);
f72e7dcd
HD
2212 if (!pgd_present(*pgd))
2213 return;
2214
c2febafc
KS
2215 p4d = p4d_offset(pgd, address);
2216 if (!p4d_present(*p4d))
2217 return;
2218
2219 pud = pud_offset(p4d, address);
f72e7dcd
HD
2220 if (!pud_present(*pud))
2221 return;
2222
2223 pmd = pmd_offset(pud, address);
fec89c10 2224
af28a988 2225 __split_huge_pmd(vma, pmd, address, freeze, folio);
94fcc585
AA
2226}
2227
71f9e58e
ML
2228static inline void split_huge_pmd_if_needed(struct vm_area_struct *vma, unsigned long address)
2229{
2230 /*
2231 * If the new address isn't hpage aligned and it could previously
2232 * contain an hugepage: check if we need to split an huge pmd.
2233 */
2234 if (!IS_ALIGNED(address, HPAGE_PMD_SIZE) &&
2235 range_in_vma(vma, ALIGN_DOWN(address, HPAGE_PMD_SIZE),
2236 ALIGN(address, HPAGE_PMD_SIZE)))
2237 split_huge_pmd_address(vma, address, false, NULL);
2238}
2239
e1b9996b 2240void vma_adjust_trans_huge(struct vm_area_struct *vma,
94fcc585
AA
2241 unsigned long start,
2242 unsigned long end,
2243 long adjust_next)
2244{
71f9e58e
ML
2245 /* Check if we need to split start first. */
2246 split_huge_pmd_if_needed(vma, start);
94fcc585 2247
71f9e58e
ML
2248 /* Check if we need to split end next. */
2249 split_huge_pmd_if_needed(vma, end);
94fcc585
AA
2250
2251 /*
71f9e58e
ML
2252 * If we're also updating the vma->vm_next->vm_start,
2253 * check if we need to split it.
94fcc585
AA
2254 */
2255 if (adjust_next > 0) {
2256 struct vm_area_struct *next = vma->vm_next;
2257 unsigned long nstart = next->vm_start;
f9d86a60 2258 nstart += adjust_next;
71f9e58e 2259 split_huge_pmd_if_needed(next, nstart);
94fcc585
AA
2260 }
2261}
e9b61f19 2262
906f9cdf 2263static void unmap_page(struct page *page)
e9b61f19 2264{
869f7ee6 2265 struct folio *folio = page_folio(page);
a98a2f0c
AP
2266 enum ttu_flags ttu_flags = TTU_RMAP_LOCKED | TTU_SPLIT_HUGE_PMD |
2267 TTU_SYNC;
e9b61f19
KS
2268
2269 VM_BUG_ON_PAGE(!PageHead(page), page);
2270
a98a2f0c
AP
2271 /*
2272 * Anon pages need migration entries to preserve them, but file
2273 * pages can simply be left unmapped, then faulted back on demand.
2274 * If that is ever changed (perhaps for mlock), update remap_page().
2275 */
4b8554c5
MWO
2276 if (folio_test_anon(folio))
2277 try_to_migrate(folio, ttu_flags);
a98a2f0c 2278 else
869f7ee6 2279 try_to_unmap(folio, ttu_flags | TTU_IGNORE_MLOCK);
504e070d
YS
2280
2281 VM_WARN_ON_ONCE_PAGE(page_mapped(page), page);
e9b61f19
KS
2282}
2283
4eecb8b9 2284static void remap_page(struct folio *folio, unsigned long nr)
e9b61f19 2285{
4eecb8b9 2286 int i = 0;
ab02c252 2287
64b586d1 2288 /* If unmap_page() uses try_to_migrate() on file, remove this check */
4eecb8b9 2289 if (!folio_test_anon(folio))
ab02c252 2290 return;
4eecb8b9
MWO
2291 for (;;) {
2292 remove_migration_ptes(folio, folio, true);
2293 i += folio_nr_pages(folio);
2294 if (i >= nr)
2295 break;
2296 folio = folio_next(folio);
ace71a19 2297 }
e9b61f19
KS
2298}
2299
94866635 2300static void lru_add_page_tail(struct page *head, struct page *tail,
88dcb9a3
AS
2301 struct lruvec *lruvec, struct list_head *list)
2302{
94866635
AS
2303 VM_BUG_ON_PAGE(!PageHead(head), head);
2304 VM_BUG_ON_PAGE(PageCompound(tail), head);
2305 VM_BUG_ON_PAGE(PageLRU(tail), head);
6168d0da 2306 lockdep_assert_held(&lruvec->lru_lock);
88dcb9a3 2307
6dbb5741 2308 if (list) {
88dcb9a3 2309 /* page reclaim is reclaiming a huge page */
6dbb5741 2310 VM_WARN_ON(PageLRU(head));
94866635
AS
2311 get_page(tail);
2312 list_add_tail(&tail->lru, list);
88dcb9a3 2313 } else {
6dbb5741
AS
2314 /* head is still on lru (and we have it frozen) */
2315 VM_WARN_ON(!PageLRU(head));
07ca7606
HD
2316 if (PageUnevictable(tail))
2317 tail->mlock_count = 0;
2318 else
2319 list_add_tail(&tail->lru, &head->lru);
6dbb5741 2320 SetPageLRU(tail);
88dcb9a3
AS
2321 }
2322}
2323
8df651c7 2324static void __split_huge_page_tail(struct page *head, int tail,
e9b61f19
KS
2325 struct lruvec *lruvec, struct list_head *list)
2326{
e9b61f19
KS
2327 struct page *page_tail = head + tail;
2328
8df651c7 2329 VM_BUG_ON_PAGE(atomic_read(&page_tail->_mapcount) != -1, page_tail);
e9b61f19
KS
2330
2331 /*
605ca5ed
KK
2332 * Clone page flags before unfreezing refcount.
2333 *
2334 * After successful get_page_unless_zero() might follow flags change,
8958b249 2335 * for example lock_page() which set PG_waiters.
e9b61f19 2336 */
e9b61f19
KS
2337 page_tail->flags &= ~PAGE_FLAGS_CHECK_AT_PREP;
2338 page_tail->flags |= (head->flags &
2339 ((1L << PG_referenced) |
2340 (1L << PG_swapbacked) |
38d8b4e6 2341 (1L << PG_swapcache) |
e9b61f19
KS
2342 (1L << PG_mlocked) |
2343 (1L << PG_uptodate) |
2344 (1L << PG_active) |
1899ad18 2345 (1L << PG_workingset) |
e9b61f19 2346 (1L << PG_locked) |
b8d3c4c3 2347 (1L << PG_unevictable) |
72e6afa0
CM
2348#ifdef CONFIG_64BIT
2349 (1L << PG_arch_2) |
2350#endif
b8d3c4c3 2351 (1L << PG_dirty)));
e9b61f19 2352
173d9d9f
HD
2353 /* ->mapping in first tail page is compound_mapcount */
2354 VM_BUG_ON_PAGE(tail > 2 && page_tail->mapping != TAIL_MAPPING,
2355 page_tail);
2356 page_tail->mapping = head->mapping;
2357 page_tail->index = head->index + tail;
2358
605ca5ed 2359 /* Page flags must be visible before we make the page non-compound. */
e9b61f19
KS
2360 smp_wmb();
2361
605ca5ed
KK
2362 /*
2363 * Clear PageTail before unfreezing page refcount.
2364 *
2365 * After successful get_page_unless_zero() might follow put_page()
2366 * which needs correct compound_head().
2367 */
e9b61f19
KS
2368 clear_compound_head(page_tail);
2369
605ca5ed
KK
2370 /* Finally unfreeze refcount. Additional reference from page cache. */
2371 page_ref_unfreeze(page_tail, 1 + (!PageAnon(head) ||
2372 PageSwapCache(head)));
2373
e9b61f19
KS
2374 if (page_is_young(head))
2375 set_page_young(page_tail);
2376 if (page_is_idle(head))
2377 set_page_idle(page_tail);
2378
e9b61f19 2379 page_cpupid_xchg_last(page_tail, page_cpupid_last(head));
94723aaf
MH
2380
2381 /*
2382 * always add to the tail because some iterators expect new
2383 * pages to show after the currently processed elements - e.g.
2384 * migrate_pages
2385 */
e9b61f19 2386 lru_add_page_tail(head, page_tail, lruvec, list);
e9b61f19
KS
2387}
2388
baa355fd 2389static void __split_huge_page(struct page *page, struct list_head *list,
b6769834 2390 pgoff_t end)
e9b61f19 2391{
e809c3fe
MWO
2392 struct folio *folio = page_folio(page);
2393 struct page *head = &folio->page;
e9b61f19 2394 struct lruvec *lruvec;
4101196b
MWO
2395 struct address_space *swap_cache = NULL;
2396 unsigned long offset = 0;
8cce5475 2397 unsigned int nr = thp_nr_pages(head);
8df651c7 2398 int i;
e9b61f19 2399
e9b61f19 2400 /* complete memcg works before add pages to LRU */
be6c8982 2401 split_page_memcg(head, nr);
e9b61f19 2402
4101196b
MWO
2403 if (PageAnon(head) && PageSwapCache(head)) {
2404 swp_entry_t entry = { .val = page_private(head) };
2405
2406 offset = swp_offset(entry);
2407 swap_cache = swap_address_space(entry);
2408 xa_lock(&swap_cache->i_pages);
2409 }
2410
f0953a1b 2411 /* lock lru list/PageCompound, ref frozen by page_ref_freeze */
e809c3fe 2412 lruvec = folio_lruvec_lock(folio);
b6769834 2413
eac96c3e
YS
2414 ClearPageHasHWPoisoned(head);
2415
8cce5475 2416 for (i = nr - 1; i >= 1; i--) {
8df651c7 2417 __split_huge_page_tail(head, i, lruvec, list);
d144bf62 2418 /* Some pages can be beyond EOF: drop them from page cache */
baa355fd 2419 if (head[i].index >= end) {
2d077d4b 2420 ClearPageDirty(head + i);
baa355fd 2421 __delete_from_page_cache(head + i, NULL);
d144bf62 2422 if (shmem_mapping(head->mapping))
800d8c63 2423 shmem_uncharge(head->mapping->host, 1);
baa355fd 2424 put_page(head + i);
4101196b
MWO
2425 } else if (!PageAnon(page)) {
2426 __xa_store(&head->mapping->i_pages, head[i].index,
2427 head + i, 0);
2428 } else if (swap_cache) {
2429 __xa_store(&swap_cache->i_pages, offset + i,
2430 head + i, 0);
baa355fd
KS
2431 }
2432 }
e9b61f19
KS
2433
2434 ClearPageCompound(head);
6168d0da 2435 unlock_page_lruvec(lruvec);
b6769834 2436 /* Caller disabled irqs, so they are still disabled here */
f7da677b 2437
8cce5475 2438 split_page_owner(head, nr);
f7da677b 2439
baa355fd
KS
2440 /* See comment in __split_huge_page_tail() */
2441 if (PageAnon(head)) {
aa5dc07f 2442 /* Additional pin to swap cache */
4101196b 2443 if (PageSwapCache(head)) {
38d8b4e6 2444 page_ref_add(head, 2);
4101196b
MWO
2445 xa_unlock(&swap_cache->i_pages);
2446 } else {
38d8b4e6 2447 page_ref_inc(head);
4101196b 2448 }
baa355fd 2449 } else {
aa5dc07f 2450 /* Additional pin to page cache */
baa355fd 2451 page_ref_add(head, 2);
b93b0163 2452 xa_unlock(&head->mapping->i_pages);
baa355fd 2453 }
b6769834 2454 local_irq_enable();
e9b61f19 2455
4eecb8b9 2456 remap_page(folio, nr);
e9b61f19 2457
c4f9c701
HY
2458 if (PageSwapCache(head)) {
2459 swp_entry_t entry = { .val = page_private(head) };
2460
2461 split_swap_cluster(entry);
2462 }
2463
8cce5475 2464 for (i = 0; i < nr; i++) {
e9b61f19
KS
2465 struct page *subpage = head + i;
2466 if (subpage == page)
2467 continue;
2468 unlock_page(subpage);
2469
2470 /*
2471 * Subpages may be freed if there wasn't any mapping
2472 * like if add_to_swap() is running on a lru page that
2473 * had its mapping zapped. And freeing these pages
2474 * requires taking the lru_lock so we do the put_page
2475 * of the tail pages after the split is complete.
2476 */
2477 put_page(subpage);
2478 }
2479}
2480
6d0a07ed
AA
2481/*
2482 * This calculates accurately how many mappings a transparent hugepage
2483 * has (unlike page_mapcount() which isn't fully accurate). This full
2484 * accuracy is primarily needed to know if copy-on-write faults can
2485 * reuse the page and change the mapping to read-write instead of
2486 * copying them. At the same time this returns the total_mapcount too.
2487 *
2488 * The function returns the highest mapcount any one of the subpages
2489 * has. If the return value is one, even if different processes are
2490 * mapping different subpages of the transparent hugepage, they can
2491 * all reuse it, because each process is reusing a different subpage.
2492 *
2493 * The total_mapcount is instead counting all virtual mappings of the
2494 * subpages. If the total_mapcount is equal to "one", it tells the
2495 * caller all mappings belong to the same "mm" and in turn the
2496 * anon_vma of the transparent hugepage can become the vma->anon_vma
2497 * local one as no other process may be mapping any of the subpages.
2498 *
2499 * It would be more accurate to replace page_mapcount() with
2500 * page_trans_huge_mapcount(), however we only use
2501 * page_trans_huge_mapcount() in the copy-on-write faults where we
2502 * need full accuracy to avoid breaking page pinning, because
2503 * page_trans_huge_mapcount() is slower than page_mapcount().
2504 */
d08d2b62 2505int page_trans_huge_mapcount(struct page *page)
6d0a07ed 2506{
d08d2b62 2507 int i, ret;
6d0a07ed
AA
2508
2509 /* hugetlbfs shouldn't call it */
2510 VM_BUG_ON_PAGE(PageHuge(page), page);
2511
d08d2b62
MWO
2512 if (likely(!PageTransCompound(page)))
2513 return atomic_read(&page->_mapcount) + 1;
6d0a07ed
AA
2514
2515 page = compound_head(page);
2516
d08d2b62 2517 ret = 0;
65dfe3c3 2518 for (i = 0; i < thp_nr_pages(page); i++) {
d08d2b62 2519 int mapcount = atomic_read(&page[i]._mapcount) + 1;
6d0a07ed 2520 ret = max(ret, mapcount);
6d0a07ed 2521 }
d08d2b62
MWO
2522
2523 if (PageDoubleMap(page))
6d0a07ed 2524 ret -= 1;
d08d2b62
MWO
2525
2526 return ret + compound_mapcount(page);
6d0a07ed
AA
2527}
2528
b8f593cd 2529/* Racy check whether the huge page can be split */
d4b4084a 2530bool can_split_folio(struct folio *folio, int *pextra_pins)
b8f593cd
HY
2531{
2532 int extra_pins;
2533
aa5dc07f 2534 /* Additional pins from page cache */
d4b4084a
MWO
2535 if (folio_test_anon(folio))
2536 extra_pins = folio_test_swapcache(folio) ?
2537 folio_nr_pages(folio) : 0;
b8f593cd 2538 else
d4b4084a 2539 extra_pins = folio_nr_pages(folio);
b8f593cd
HY
2540 if (pextra_pins)
2541 *pextra_pins = extra_pins;
d4b4084a 2542 return folio_mapcount(folio) == folio_ref_count(folio) - extra_pins - 1;
b8f593cd
HY
2543}
2544
e9b61f19
KS
2545/*
2546 * This function splits huge page into normal pages. @page can point to any
2547 * subpage of huge page to split. Split doesn't change the position of @page.
2548 *
2549 * Only caller must hold pin on the @page, otherwise split fails with -EBUSY.
2550 * The huge page must be locked.
2551 *
2552 * If @list is null, tail pages will be added to LRU list, otherwise, to @list.
2553 *
2554 * Both head page and tail pages will inherit mapping, flags, and so on from
2555 * the hugepage.
2556 *
2557 * GUP pin and PG_locked transferred to @page. Rest subpages can be freed if
2558 * they are not mapped.
2559 *
2560 * Returns 0 if the hugepage is split successfully.
2561 * Returns -EBUSY if the page is pinned or if anon_vma disappeared from under
2562 * us.
2563 */
2564int split_huge_page_to_list(struct page *page, struct list_head *list)
2565{
4eecb8b9
MWO
2566 struct folio *folio = page_folio(page);
2567 struct page *head = &folio->page;
a8803e6c 2568 struct deferred_split *ds_queue = get_deferred_split_queue(head);
6b24ca4a 2569 XA_STATE(xas, &head->mapping->i_pages, head->index);
baa355fd
KS
2570 struct anon_vma *anon_vma = NULL;
2571 struct address_space *mapping = NULL;
504e070d 2572 int extra_pins, ret;
006d3ff2 2573 pgoff_t end;
e9b61f19 2574
cb829624 2575 VM_BUG_ON_PAGE(is_huge_zero_page(head), head);
a8803e6c
WY
2576 VM_BUG_ON_PAGE(!PageLocked(head), head);
2577 VM_BUG_ON_PAGE(!PageCompound(head), head);
e9b61f19 2578
a8803e6c 2579 if (PageWriteback(head))
59807685
HY
2580 return -EBUSY;
2581
baa355fd
KS
2582 if (PageAnon(head)) {
2583 /*
c1e8d7c6 2584 * The caller does not necessarily hold an mmap_lock that would
baa355fd
KS
2585 * prevent the anon_vma disappearing so we first we take a
2586 * reference to it and then lock the anon_vma for write. This
2f031c6f 2587 * is similar to folio_lock_anon_vma_read except the write lock
baa355fd
KS
2588 * is taken to serialise against parallel split or collapse
2589 * operations.
2590 */
2591 anon_vma = page_get_anon_vma(head);
2592 if (!anon_vma) {
2593 ret = -EBUSY;
2594 goto out;
2595 }
006d3ff2 2596 end = -1;
baa355fd
KS
2597 mapping = NULL;
2598 anon_vma_lock_write(anon_vma);
2599 } else {
2600 mapping = head->mapping;
2601
2602 /* Truncated ? */
2603 if (!mapping) {
2604 ret = -EBUSY;
2605 goto out;
2606 }
2607
6b24ca4a
MWO
2608 xas_split_alloc(&xas, head, compound_order(head),
2609 mapping_gfp_mask(mapping) & GFP_RECLAIM_MASK);
2610 if (xas_error(&xas)) {
2611 ret = xas_error(&xas);
2612 goto out;
2613 }
2614
baa355fd
KS
2615 anon_vma = NULL;
2616 i_mmap_lock_read(mapping);
006d3ff2
HD
2617
2618 /*
2619 *__split_huge_page() may need to trim off pages beyond EOF:
2620 * but on 32-bit, i_size_read() takes an irq-unsafe seqlock,
2621 * which cannot be nested inside the page tree lock. So note
2622 * end now: i_size itself may be changed at any moment, but
2623 * head page lock is good enough to serialize the trimming.
2624 */
2625 end = DIV_ROUND_UP(i_size_read(mapping->host), PAGE_SIZE);
d144bf62
HD
2626 if (shmem_mapping(mapping))
2627 end = shmem_fallocend(mapping->host, end);
e9b61f19 2628 }
e9b61f19
KS
2629
2630 /*
906f9cdf 2631 * Racy check if we can split the page, before unmap_page() will
e9b61f19
KS
2632 * split PMDs
2633 */
d4b4084a 2634 if (!can_split_folio(folio, &extra_pins)) {
e9b61f19
KS
2635 ret = -EBUSY;
2636 goto out_unlock;
2637 }
2638
906f9cdf 2639 unmap_page(head);
e9b61f19 2640
b6769834
AS
2641 /* block interrupt reentry in xa_lock and spinlock */
2642 local_irq_disable();
baa355fd 2643 if (mapping) {
baa355fd 2644 /*
aa5dc07f 2645 * Check if the head page is present in page cache.
baa355fd
KS
2646 * We assume all tail are present too, if head is there.
2647 */
6b24ca4a
MWO
2648 xas_lock(&xas);
2649 xas_reset(&xas);
aa5dc07f 2650 if (xas_load(&xas) != head)
baa355fd
KS
2651 goto fail;
2652 }
2653
0139aa7b 2654 /* Prevent deferred_split_scan() touching ->_refcount */
364c1eeb 2655 spin_lock(&ds_queue->split_queue_lock);
504e070d 2656 if (page_ref_freeze(head, 1 + extra_pins)) {
9a982250 2657 if (!list_empty(page_deferred_list(head))) {
364c1eeb 2658 ds_queue->split_queue_len--;
9a982250
KS
2659 list_del(page_deferred_list(head));
2660 }
afb97172 2661 spin_unlock(&ds_queue->split_queue_lock);
06d3eff6 2662 if (mapping) {
bf9ecead
MS
2663 int nr = thp_nr_pages(head);
2664
6b24ca4a 2665 xas_split(&xas, head, thp_order(head));
1ca7554d 2666 if (PageSwapBacked(head)) {
57b2847d
MS
2667 __mod_lruvec_page_state(head, NR_SHMEM_THPS,
2668 -nr);
1ca7554d 2669 } else {
bf9ecead
MS
2670 __mod_lruvec_page_state(head, NR_FILE_THPS,
2671 -nr);
1ca7554d
MS
2672 filemap_nr_thps_dec(mapping);
2673 }
06d3eff6
KS
2674 }
2675
b6769834 2676 __split_huge_page(page, list, end);
c4f9c701 2677 ret = 0;
e9b61f19 2678 } else {
364c1eeb 2679 spin_unlock(&ds_queue->split_queue_lock);
504e070d
YS
2680fail:
2681 if (mapping)
6b24ca4a 2682 xas_unlock(&xas);
b6769834 2683 local_irq_enable();
4eecb8b9 2684 remap_page(folio, folio_nr_pages(folio));
e9b61f19
KS
2685 ret = -EBUSY;
2686 }
2687
2688out_unlock:
baa355fd
KS
2689 if (anon_vma) {
2690 anon_vma_unlock_write(anon_vma);
2691 put_anon_vma(anon_vma);
2692 }
2693 if (mapping)
2694 i_mmap_unlock_read(mapping);
e9b61f19 2695out:
6b24ca4a
MWO
2696 /* Free any memory we didn't use */
2697 xas_nomem(&xas, 0);
e9b61f19
KS
2698 count_vm_event(!ret ? THP_SPLIT_PAGE : THP_SPLIT_PAGE_FAILED);
2699 return ret;
2700}
9a982250
KS
2701
2702void free_transhuge_page(struct page *page)
2703{
87eaceb3 2704 struct deferred_split *ds_queue = get_deferred_split_queue(page);
9a982250
KS
2705 unsigned long flags;
2706
364c1eeb 2707 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
9a982250 2708 if (!list_empty(page_deferred_list(page))) {
364c1eeb 2709 ds_queue->split_queue_len--;
9a982250
KS
2710 list_del(page_deferred_list(page));
2711 }
364c1eeb 2712 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
9a982250
KS
2713 free_compound_page(page);
2714}
2715
2716void deferred_split_huge_page(struct page *page)
2717{
87eaceb3
YS
2718 struct deferred_split *ds_queue = get_deferred_split_queue(page);
2719#ifdef CONFIG_MEMCG
bcfe06bf 2720 struct mem_cgroup *memcg = page_memcg(compound_head(page));
87eaceb3 2721#endif
9a982250
KS
2722 unsigned long flags;
2723
2724 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
2725
87eaceb3
YS
2726 /*
2727 * The try_to_unmap() in page reclaim path might reach here too,
2728 * this may cause a race condition to corrupt deferred split queue.
2729 * And, if page reclaim is already handling the same page, it is
2730 * unnecessary to handle it again in shrinker.
2731 *
2732 * Check PageSwapCache to determine if the page is being
2733 * handled by page reclaim since THP swap would add the page into
2734 * swap cache before calling try_to_unmap().
2735 */
2736 if (PageSwapCache(page))
2737 return;
2738
364c1eeb 2739 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
9a982250 2740 if (list_empty(page_deferred_list(page))) {
f9719a03 2741 count_vm_event(THP_DEFERRED_SPLIT_PAGE);
364c1eeb
YS
2742 list_add_tail(page_deferred_list(page), &ds_queue->split_queue);
2743 ds_queue->split_queue_len++;
87eaceb3
YS
2744#ifdef CONFIG_MEMCG
2745 if (memcg)
2bfd3637
YS
2746 set_shrinker_bit(memcg, page_to_nid(page),
2747 deferred_split_shrinker.id);
87eaceb3 2748#endif
9a982250 2749 }
364c1eeb 2750 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
9a982250
KS
2751}
2752
2753static unsigned long deferred_split_count(struct shrinker *shrink,
2754 struct shrink_control *sc)
2755{
a3d0a918 2756 struct pglist_data *pgdata = NODE_DATA(sc->nid);
364c1eeb 2757 struct deferred_split *ds_queue = &pgdata->deferred_split_queue;
87eaceb3
YS
2758
2759#ifdef CONFIG_MEMCG
2760 if (sc->memcg)
2761 ds_queue = &sc->memcg->deferred_split_queue;
2762#endif
364c1eeb 2763 return READ_ONCE(ds_queue->split_queue_len);
9a982250
KS
2764}
2765
2766static unsigned long deferred_split_scan(struct shrinker *shrink,
2767 struct shrink_control *sc)
2768{
a3d0a918 2769 struct pglist_data *pgdata = NODE_DATA(sc->nid);
364c1eeb 2770 struct deferred_split *ds_queue = &pgdata->deferred_split_queue;
9a982250
KS
2771 unsigned long flags;
2772 LIST_HEAD(list), *pos, *next;
2773 struct page *page;
2774 int split = 0;
2775
87eaceb3
YS
2776#ifdef CONFIG_MEMCG
2777 if (sc->memcg)
2778 ds_queue = &sc->memcg->deferred_split_queue;
2779#endif
2780
364c1eeb 2781 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
9a982250 2782 /* Take pin on all head pages to avoid freeing them under us */
364c1eeb 2783 list_for_each_safe(pos, next, &ds_queue->split_queue) {
dfe5c51c 2784 page = list_entry((void *)pos, struct page, deferred_list);
9a982250 2785 page = compound_head(page);
e3ae1953
KS
2786 if (get_page_unless_zero(page)) {
2787 list_move(page_deferred_list(page), &list);
2788 } else {
2789 /* We lost race with put_compound_page() */
9a982250 2790 list_del_init(page_deferred_list(page));
364c1eeb 2791 ds_queue->split_queue_len--;
9a982250 2792 }
e3ae1953
KS
2793 if (!--sc->nr_to_scan)
2794 break;
9a982250 2795 }
364c1eeb 2796 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
9a982250
KS
2797
2798 list_for_each_safe(pos, next, &list) {
dfe5c51c 2799 page = list_entry((void *)pos, struct page, deferred_list);
fa41b900
KS
2800 if (!trylock_page(page))
2801 goto next;
9a982250
KS
2802 /* split_huge_page() removes page from list on success */
2803 if (!split_huge_page(page))
2804 split++;
2805 unlock_page(page);
fa41b900 2806next:
9a982250
KS
2807 put_page(page);
2808 }
2809
364c1eeb
YS
2810 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
2811 list_splice_tail(&list, &ds_queue->split_queue);
2812 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
9a982250 2813
cb8d68ec
KS
2814 /*
2815 * Stop shrinker if we didn't split any page, but the queue is empty.
2816 * This can happen if pages were freed under us.
2817 */
364c1eeb 2818 if (!split && list_empty(&ds_queue->split_queue))
cb8d68ec
KS
2819 return SHRINK_STOP;
2820 return split;
9a982250
KS
2821}
2822
2823static struct shrinker deferred_split_shrinker = {
2824 .count_objects = deferred_split_count,
2825 .scan_objects = deferred_split_scan,
2826 .seeks = DEFAULT_SEEKS,
87eaceb3
YS
2827 .flags = SHRINKER_NUMA_AWARE | SHRINKER_MEMCG_AWARE |
2828 SHRINKER_NONSLAB,
9a982250 2829};
49071d43
KS
2830
2831#ifdef CONFIG_DEBUG_FS
fa6c0231 2832static void split_huge_pages_all(void)
49071d43
KS
2833{
2834 struct zone *zone;
2835 struct page *page;
2836 unsigned long pfn, max_zone_pfn;
2837 unsigned long total = 0, split = 0;
2838
fa6c0231 2839 pr_debug("Split all THPs\n");
49071d43
KS
2840 for_each_populated_zone(zone) {
2841 max_zone_pfn = zone_end_pfn(zone);
2842 for (pfn = zone->zone_start_pfn; pfn < max_zone_pfn; pfn++) {
2843 if (!pfn_valid(pfn))
2844 continue;
2845
2846 page = pfn_to_page(pfn);
2847 if (!get_page_unless_zero(page))
2848 continue;
2849
2850 if (zone != page_zone(page))
2851 goto next;
2852
baa355fd 2853 if (!PageHead(page) || PageHuge(page) || !PageLRU(page))
49071d43
KS
2854 goto next;
2855
2856 total++;
2857 lock_page(page);
2858 if (!split_huge_page(page))
2859 split++;
2860 unlock_page(page);
2861next:
2862 put_page(page);
fa6c0231 2863 cond_resched();
49071d43
KS
2864 }
2865 }
2866
fa6c0231
ZY
2867 pr_debug("%lu of %lu THP split\n", split, total);
2868}
49071d43 2869
fa6c0231
ZY
2870static inline bool vma_not_suitable_for_thp_split(struct vm_area_struct *vma)
2871{
2872 return vma_is_special_huge(vma) || (vma->vm_flags & VM_IO) ||
2873 is_vm_hugetlb_page(vma);
2874}
2875
2876static int split_huge_pages_pid(int pid, unsigned long vaddr_start,
2877 unsigned long vaddr_end)
2878{
2879 int ret = 0;
2880 struct task_struct *task;
2881 struct mm_struct *mm;
2882 unsigned long total = 0, split = 0;
2883 unsigned long addr;
2884
2885 vaddr_start &= PAGE_MASK;
2886 vaddr_end &= PAGE_MASK;
2887
2888 /* Find the task_struct from pid */
2889 rcu_read_lock();
2890 task = find_task_by_vpid(pid);
2891 if (!task) {
2892 rcu_read_unlock();
2893 ret = -ESRCH;
2894 goto out;
2895 }
2896 get_task_struct(task);
2897 rcu_read_unlock();
2898
2899 /* Find the mm_struct */
2900 mm = get_task_mm(task);
2901 put_task_struct(task);
2902
2903 if (!mm) {
2904 ret = -EINVAL;
2905 goto out;
2906 }
2907
2908 pr_debug("Split huge pages in pid: %d, vaddr: [0x%lx - 0x%lx]\n",
2909 pid, vaddr_start, vaddr_end);
2910
2911 mmap_read_lock(mm);
2912 /*
2913 * always increase addr by PAGE_SIZE, since we could have a PTE page
2914 * table filled with PTE-mapped THPs, each of which is distinct.
2915 */
2916 for (addr = vaddr_start; addr < vaddr_end; addr += PAGE_SIZE) {
2917 struct vm_area_struct *vma = find_vma(mm, addr);
fa6c0231
ZY
2918 struct page *page;
2919
2920 if (!vma || addr < vma->vm_start)
2921 break;
2922
2923 /* skip special VMA and hugetlb VMA */
2924 if (vma_not_suitable_for_thp_split(vma)) {
2925 addr = vma->vm_end;
2926 continue;
2927 }
2928
2929 /* FOLL_DUMP to ignore special (like zero) pages */
87d2762e 2930 page = follow_page(vma, addr, FOLL_GET | FOLL_DUMP);
fa6c0231
ZY
2931
2932 if (IS_ERR(page))
2933 continue;
2934 if (!page)
2935 continue;
2936
2937 if (!is_transparent_hugepage(page))
2938 goto next;
2939
2940 total++;
d4b4084a 2941 if (!can_split_folio(page_folio(page), NULL))
fa6c0231
ZY
2942 goto next;
2943
2944 if (!trylock_page(page))
2945 goto next;
2946
2947 if (!split_huge_page(page))
2948 split++;
2949
2950 unlock_page(page);
2951next:
2952 put_page(page);
2953 cond_resched();
2954 }
2955 mmap_read_unlock(mm);
2956 mmput(mm);
2957
2958 pr_debug("%lu of %lu THP split\n", split, total);
2959
2960out:
2961 return ret;
49071d43 2962}
fa6c0231 2963
fbe37501
ZY
2964static int split_huge_pages_in_file(const char *file_path, pgoff_t off_start,
2965 pgoff_t off_end)
2966{
2967 struct filename *file;
2968 struct file *candidate;
2969 struct address_space *mapping;
2970 int ret = -EINVAL;
2971 pgoff_t index;
2972 int nr_pages = 1;
2973 unsigned long total = 0, split = 0;
2974
2975 file = getname_kernel(file_path);
2976 if (IS_ERR(file))
2977 return ret;
2978
2979 candidate = file_open_name(file, O_RDONLY, 0);
2980 if (IS_ERR(candidate))
2981 goto out;
2982
2983 pr_debug("split file-backed THPs in file: %s, page offset: [0x%lx - 0x%lx]\n",
2984 file_path, off_start, off_end);
2985
2986 mapping = candidate->f_mapping;
2987
2988 for (index = off_start; index < off_end; index += nr_pages) {
2989 struct page *fpage = pagecache_get_page(mapping, index,
2990 FGP_ENTRY | FGP_HEAD, 0);
2991
2992 nr_pages = 1;
2993 if (xa_is_value(fpage) || !fpage)
2994 continue;
2995
2996 if (!is_transparent_hugepage(fpage))
2997 goto next;
2998
2999 total++;
3000 nr_pages = thp_nr_pages(fpage);
3001
3002 if (!trylock_page(fpage))
3003 goto next;
3004
3005 if (!split_huge_page(fpage))
3006 split++;
3007
3008 unlock_page(fpage);
3009next:
3010 put_page(fpage);
3011 cond_resched();
3012 }
3013
3014 filp_close(candidate, NULL);
3015 ret = 0;
3016
3017 pr_debug("%lu of %lu file-backed THP split\n", split, total);
3018out:
3019 putname(file);
3020 return ret;
3021}
3022
fa6c0231
ZY
3023#define MAX_INPUT_BUF_SZ 255
3024
3025static ssize_t split_huge_pages_write(struct file *file, const char __user *buf,
3026 size_t count, loff_t *ppops)
3027{
3028 static DEFINE_MUTEX(split_debug_mutex);
3029 ssize_t ret;
fbe37501
ZY
3030 /* hold pid, start_vaddr, end_vaddr or file_path, off_start, off_end */
3031 char input_buf[MAX_INPUT_BUF_SZ];
fa6c0231
ZY
3032 int pid;
3033 unsigned long vaddr_start, vaddr_end;
3034
3035 ret = mutex_lock_interruptible(&split_debug_mutex);
3036 if (ret)
3037 return ret;
3038
3039 ret = -EFAULT;
3040
3041 memset(input_buf, 0, MAX_INPUT_BUF_SZ);
3042 if (copy_from_user(input_buf, buf, min_t(size_t, count, MAX_INPUT_BUF_SZ)))
3043 goto out;
3044
3045 input_buf[MAX_INPUT_BUF_SZ - 1] = '\0';
fbe37501
ZY
3046
3047 if (input_buf[0] == '/') {
3048 char *tok;
3049 char *buf = input_buf;
3050 char file_path[MAX_INPUT_BUF_SZ];
3051 pgoff_t off_start = 0, off_end = 0;
3052 size_t input_len = strlen(input_buf);
3053
3054 tok = strsep(&buf, ",");
3055 if (tok) {
1212e00c 3056 strcpy(file_path, tok);
fbe37501
ZY
3057 } else {
3058 ret = -EINVAL;
3059 goto out;
3060 }
3061
3062 ret = sscanf(buf, "0x%lx,0x%lx", &off_start, &off_end);
3063 if (ret != 2) {
3064 ret = -EINVAL;
3065 goto out;
3066 }
3067 ret = split_huge_pages_in_file(file_path, off_start, off_end);
3068 if (!ret)
3069 ret = input_len;
3070
3071 goto out;
3072 }
3073
fa6c0231
ZY
3074 ret = sscanf(input_buf, "%d,0x%lx,0x%lx", &pid, &vaddr_start, &vaddr_end);
3075 if (ret == 1 && pid == 1) {
3076 split_huge_pages_all();
3077 ret = strlen(input_buf);
3078 goto out;
3079 } else if (ret != 3) {
3080 ret = -EINVAL;
3081 goto out;
3082 }
3083
3084 ret = split_huge_pages_pid(pid, vaddr_start, vaddr_end);
3085 if (!ret)
3086 ret = strlen(input_buf);
3087out:
3088 mutex_unlock(&split_debug_mutex);
3089 return ret;
3090
3091}
3092
3093static const struct file_operations split_huge_pages_fops = {
3094 .owner = THIS_MODULE,
3095 .write = split_huge_pages_write,
3096 .llseek = no_llseek,
3097};
49071d43
KS
3098
3099static int __init split_huge_pages_debugfs(void)
3100{
d9f7979c
GKH
3101 debugfs_create_file("split_huge_pages", 0200, NULL, NULL,
3102 &split_huge_pages_fops);
49071d43
KS
3103 return 0;
3104}
3105late_initcall(split_huge_pages_debugfs);
3106#endif
616b8371
ZY
3107
3108#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
3109void set_pmd_migration_entry(struct page_vma_mapped_walk *pvmw,
3110 struct page *page)
3111{
3112 struct vm_area_struct *vma = pvmw->vma;
3113 struct mm_struct *mm = vma->vm_mm;
3114 unsigned long address = pvmw->address;
3115 pmd_t pmdval;
3116 swp_entry_t entry;
ab6e3d09 3117 pmd_t pmdswp;
616b8371
ZY
3118
3119 if (!(pvmw->pmd && !pvmw->pte))
3120 return;
3121
616b8371 3122 flush_cache_range(vma, address, address + HPAGE_PMD_SIZE);
8a8683ad 3123 pmdval = pmdp_invalidate(vma, address, pvmw->pmd);
616b8371
ZY
3124 if (pmd_dirty(pmdval))
3125 set_page_dirty(page);
4dd845b5
AP
3126 if (pmd_write(pmdval))
3127 entry = make_writable_migration_entry(page_to_pfn(page));
3128 else
3129 entry = make_readable_migration_entry(page_to_pfn(page));
ab6e3d09
NH
3130 pmdswp = swp_entry_to_pmd(entry);
3131 if (pmd_soft_dirty(pmdval))
3132 pmdswp = pmd_swp_mksoft_dirty(pmdswp);
3133 set_pmd_at(mm, address, pvmw->pmd, pmdswp);
cea86fe2 3134 page_remove_rmap(page, vma, true);
616b8371 3135 put_page(page);
283fd6fe 3136 trace_set_migration_pmd(address, pmd_val(pmdswp));
616b8371
ZY
3137}
3138
3139void remove_migration_pmd(struct page_vma_mapped_walk *pvmw, struct page *new)
3140{
3141 struct vm_area_struct *vma = pvmw->vma;
3142 struct mm_struct *mm = vma->vm_mm;
3143 unsigned long address = pvmw->address;
3144 unsigned long mmun_start = address & HPAGE_PMD_MASK;
3145 pmd_t pmde;
3146 swp_entry_t entry;
3147
3148 if (!(pvmw->pmd && !pvmw->pte))
3149 return;
3150
3151 entry = pmd_to_swp_entry(*pvmw->pmd);
3152 get_page(new);
3153 pmde = pmd_mkold(mk_huge_pmd(new, vma->vm_page_prot));
ab6e3d09
NH
3154 if (pmd_swp_soft_dirty(*pvmw->pmd))
3155 pmde = pmd_mksoft_dirty(pmde);
4dd845b5 3156 if (is_writable_migration_entry(entry))
f55e1014 3157 pmde = maybe_pmd_mkwrite(pmde, vma);
8f34f1ea
PX
3158 if (pmd_swp_uffd_wp(*pvmw->pmd))
3159 pmde = pmd_wrprotect(pmd_mkuffd_wp(pmde));
616b8371 3160
e71769ae
NH
3161 if (PageAnon(new))
3162 page_add_anon_rmap(new, vma, mmun_start, true);
3163 else
cea86fe2 3164 page_add_file_rmap(new, vma, true);
616b8371 3165 set_pmd_at(mm, mmun_start, pvmw->pmd, pmde);
5cbcf225
MS
3166
3167 /* No need to invalidate - it was non-present before */
616b8371 3168 update_mmu_cache_pmd(vma, address, pvmw->pmd);
283fd6fe 3169 trace_remove_migration_pmd(address, pmd_val(pmde));
616b8371
ZY
3170}
3171#endif