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