blob: 594368f6134f126fa513faaa2fb6e184ac8a4cc7 [file] [log] [blame]
Thomas Gleixner20c8ccb2019-06-04 10:11:32 +02001// SPDX-License-Identifier: GPL-2.0-only
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08002/*
3 * Copyright (C) 2009 Red Hat, Inc.
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08004 */
5
Andrew Mortonae3a8c12014-06-04 16:06:58 -07006#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08008#include <linux/mm.h>
9#include <linux/sched.h>
Ingo Molnarf7ccbae2017-02-08 18:51:30 +010010#include <linux/sched/coredump.h>
Ingo Molnar6a3827d2017-02-08 18:51:31 +010011#include <linux/sched/numa_balancing.h>
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -080012#include <linux/highmem.h>
13#include <linux/hugetlb.h>
14#include <linux/mmu_notifier.h>
15#include <linux/rmap.h>
16#include <linux/swap.h>
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -080017#include <linux/shrinker.h>
Andrea Arcangeliba761492011-01-13 15:46:58 -080018#include <linux/mm_inline.h>
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -080019#include <linux/swapops.h>
Matthew Wilcox4897c762015-09-08 14:58:45 -070020#include <linux/dax.h>
Andrea Arcangeliba761492011-01-13 15:46:58 -080021#include <linux/khugepaged.h>
Andrea Arcangeli878aee72011-01-13 15:47:10 -080022#include <linux/freezer.h>
Dan Williamsf25748e32016-01-15 16:56:43 -080023#include <linux/pfn_t.h>
Andrea Arcangelia664b2d2011-01-13 15:47:17 -080024#include <linux/mman.h>
Dan Williams3565fce2016-01-15 16:56:55 -080025#include <linux/memremap.h>
Ralf Baechle325adeb2012-10-15 13:44:56 +020026#include <linux/pagemap.h>
Kirill A. Shutemov49071d42016-01-15 16:54:40 -080027#include <linux/debugfs.h>
Mel Gorman4daae3b2012-11-02 11:33:45 +000028#include <linux/migrate.h>
Sasha Levin43b5fbb2013-02-22 16:32:27 -080029#include <linux/hashtable.h>
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -070030#include <linux/userfaultfd_k.h>
Vladimir Davydov33c3fc72015-09-09 15:35:45 -070031#include <linux/page_idle.h>
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -070032#include <linux/shmem_fs.h>
Michal Hocko6b31d592017-08-18 15:16:15 -070033#include <linux/oom.h>
Anshuman Khandual98fa15f2019-03-05 15:42:58 -080034#include <linux/numa.h>
Vlastimil Babkaf7da6772019-08-24 17:54:59 -070035#include <linux/page_owner.h>
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -080036
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -080037#include <asm/tlb.h>
38#include <asm/pgalloc.h>
39#include "internal.h"
40
Andrea Arcangeliba761492011-01-13 15:46:58 -080041/*
Michael DeGuzisb14d5952017-05-17 15:19:21 -040042 * By default, transparent hugepage support is disabled in order to avoid
43 * risking an increased memory footprint for applications that are not
44 * guaranteed to benefit from it. When transparent hugepage support is
45 * enabled, it is for all mappings, and khugepaged scans all mappings.
Jianguo Wu8bfa3f92013-11-12 15:07:16 -080046 * Defrag is invoked by khugepaged hugepage allocations and by page faults
47 * for all hugepage allocations.
Andrea Arcangeliba761492011-01-13 15:46:58 -080048 */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -080049unsigned long transparent_hugepage_flags __read_mostly =
Andrea Arcangeli13ece882011-01-13 15:47:07 -080050#ifdef CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS
Andrea Arcangeliba761492011-01-13 15:46:58 -080051 (1<<TRANSPARENT_HUGEPAGE_FLAG)|
Andrea Arcangeli13ece882011-01-13 15:47:07 -080052#endif
53#ifdef CONFIG_TRANSPARENT_HUGEPAGE_MADVISE
54 (1<<TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG)|
55#endif
Mel Gorman444eb2a42016-03-17 14:19:23 -070056 (1<<TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG)|
Kirill A. Shutemov79da5402012-12-12 13:51:12 -080057 (1<<TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG)|
58 (1<<TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
Andrea Arcangeliba761492011-01-13 15:46:58 -080059
Kirill A. Shutemov9a982252016-01-15 16:54:17 -080060static struct shrinker deferred_split_shrinker;
Andrea Arcangelif0005652011-01-13 15:47:04 -080061
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -080062static atomic_t huge_zero_refcount;
Wang, Yalin56873f42015-02-11 15:24:51 -080063struct page *huge_zero_page __read_mostly;
Hugh Dickins6527d8e2021-06-15 18:23:49 -070064unsigned long huge_zero_pfn __read_mostly = ~0UL;
Kirill A. Shutemov4a6c1292012-12-12 13:50:47 -080065
Miaohe Linb6559732021-06-30 18:47:50 -070066static inline bool file_thp_enabled(struct vm_area_struct *vma)
67{
68 return transhuge_vma_enabled(vma, vma->vm_flags) && vma->vm_file &&
69 !inode_is_open_for_write(vma->vm_file->f_inode) &&
70 (vma->vm_flags & VM_EXEC);
71}
72
73bool transparent_hugepage_active(struct vm_area_struct *vma)
Michal Hocko7635d9c2018-12-28 00:38:21 -080074{
Yang Shic0630662019-07-18 15:57:27 -070075 /* The addr is used to check if the vma size fits */
76 unsigned long addr = (vma->vm_end & HPAGE_PMD_MASK) - HPAGE_PMD_SIZE;
77
78 if (!transhuge_vma_suitable(vma, addr))
79 return false;
Michal Hocko7635d9c2018-12-28 00:38:21 -080080 if (vma_is_anonymous(vma))
81 return __transparent_hugepage_enabled(vma);
Yang Shic0630662019-07-18 15:57:27 -070082 if (vma_is_shmem(vma))
83 return shmem_huge_enabled(vma);
Miaohe Linb6559732021-06-30 18:47:50 -070084 if (IS_ENABLED(CONFIG_READ_ONLY_THP_FOR_FS))
85 return file_thp_enabled(vma);
Michal Hocko7635d9c2018-12-28 00:38:21 -080086
87 return false;
88}
89
Aaron Lu6fcb52a2016-10-07 17:00:08 -070090static struct page *get_huge_zero_page(void)
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -080091{
92 struct page *zero_page;
93retry:
94 if (likely(atomic_inc_not_zero(&huge_zero_refcount)))
Jason Low4db0c3c2015-04-15 16:14:08 -070095 return READ_ONCE(huge_zero_page);
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -080096
97 zero_page = alloc_pages((GFP_TRANSHUGE | __GFP_ZERO) & ~__GFP_MOVABLE,
98 HPAGE_PMD_ORDER);
Kirill A. Shutemovd8a8e1f2012-12-12 13:51:09 -080099 if (!zero_page) {
100 count_vm_event(THP_ZERO_PAGE_ALLOC_FAILED);
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700101 return NULL;
Kirill A. Shutemovd8a8e1f2012-12-12 13:51:09 -0800102 }
103 count_vm_event(THP_ZERO_PAGE_ALLOC);
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800104 preempt_disable();
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700105 if (cmpxchg(&huge_zero_page, NULL, zero_page)) {
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800106 preempt_enable();
Yu Zhao5ddacbe2014-10-29 14:50:26 -0700107 __free_pages(zero_page, compound_order(zero_page));
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800108 goto retry;
109 }
Hugh Dickins6527d8e2021-06-15 18:23:49 -0700110 WRITE_ONCE(huge_zero_pfn, page_to_pfn(zero_page));
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800111
112 /* We take additional reference here. It will be put back by shrinker */
113 atomic_set(&huge_zero_refcount, 2);
114 preempt_enable();
Jason Low4db0c3c2015-04-15 16:14:08 -0700115 return READ_ONCE(huge_zero_page);
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800116}
117
Aaron Lu6fcb52a2016-10-07 17:00:08 -0700118static void put_huge_zero_page(void)
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800119{
120 /*
121 * Counter should never go to zero here. Only shrinker can put
122 * last reference.
123 */
124 BUG_ON(atomic_dec_and_test(&huge_zero_refcount));
125}
126
Aaron Lu6fcb52a2016-10-07 17:00:08 -0700127struct page *mm_get_huge_zero_page(struct mm_struct *mm)
128{
129 if (test_bit(MMF_HUGE_ZERO_PAGE, &mm->flags))
130 return READ_ONCE(huge_zero_page);
131
132 if (!get_huge_zero_page())
133 return NULL;
134
135 if (test_and_set_bit(MMF_HUGE_ZERO_PAGE, &mm->flags))
136 put_huge_zero_page();
137
138 return READ_ONCE(huge_zero_page);
139}
140
141void mm_put_huge_zero_page(struct mm_struct *mm)
142{
143 if (test_bit(MMF_HUGE_ZERO_PAGE, &mm->flags))
144 put_huge_zero_page();
145}
146
Glauber Costa48896462013-08-28 10:18:15 +1000147static unsigned long shrink_huge_zero_page_count(struct shrinker *shrink,
148 struct shrink_control *sc)
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800149{
Glauber Costa48896462013-08-28 10:18:15 +1000150 /* we can free zero page only if last reference remains */
151 return atomic_read(&huge_zero_refcount) == 1 ? HPAGE_PMD_NR : 0;
152}
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800153
Glauber Costa48896462013-08-28 10:18:15 +1000154static unsigned long shrink_huge_zero_page_scan(struct shrinker *shrink,
155 struct shrink_control *sc)
156{
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800157 if (atomic_cmpxchg(&huge_zero_refcount, 1, 0) == 1) {
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700158 struct page *zero_page = xchg(&huge_zero_page, NULL);
159 BUG_ON(zero_page == NULL);
Hugh Dickins6527d8e2021-06-15 18:23:49 -0700160 WRITE_ONCE(huge_zero_pfn, ~0UL);
Yu Zhao5ddacbe2014-10-29 14:50:26 -0700161 __free_pages(zero_page, compound_order(zero_page));
Glauber Costa48896462013-08-28 10:18:15 +1000162 return HPAGE_PMD_NR;
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800163 }
164
165 return 0;
166}
167
168static struct shrinker huge_zero_page_shrinker = {
Glauber Costa48896462013-08-28 10:18:15 +1000169 .count_objects = shrink_huge_zero_page_count,
170 .scan_objects = shrink_huge_zero_page_scan,
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800171 .seeks = DEFAULT_SEEKS,
172};
173
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800174#ifdef CONFIG_SYSFS
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800175static ssize_t enabled_show(struct kobject *kobj,
176 struct kobj_attribute *attr, char *buf)
177{
Mel Gorman444eb2a42016-03-17 14:19:23 -0700178 if (test_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags))
179 return sprintf(buf, "[always] madvise never\n");
180 else if (test_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags))
181 return sprintf(buf, "always [madvise] never\n");
182 else
183 return sprintf(buf, "always madvise [never]\n");
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800184}
Mel Gorman444eb2a42016-03-17 14:19:23 -0700185
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800186static ssize_t enabled_store(struct kobject *kobj,
187 struct kobj_attribute *attr,
188 const char *buf, size_t count)
189{
David Rientjes21440d72017-02-22 15:45:49 -0800190 ssize_t ret = count;
Andrea Arcangeliba761492011-01-13 15:46:58 -0800191
David Rientjesf42f2552020-01-30 22:14:48 -0800192 if (sysfs_streq(buf, "always")) {
David Rientjes21440d72017-02-22 15:45:49 -0800193 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags);
194 set_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags);
David Rientjesf42f2552020-01-30 22:14:48 -0800195 } else if (sysfs_streq(buf, "madvise")) {
David Rientjes21440d72017-02-22 15:45:49 -0800196 clear_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags);
197 set_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags);
David Rientjesf42f2552020-01-30 22:14:48 -0800198 } else if (sysfs_streq(buf, "never")) {
David Rientjes21440d72017-02-22 15:45:49 -0800199 clear_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags);
200 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags);
201 } else
202 ret = -EINVAL;
Andrea Arcangeliba761492011-01-13 15:46:58 -0800203
204 if (ret > 0) {
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700205 int err = start_stop_khugepaged();
Andrea Arcangeliba761492011-01-13 15:46:58 -0800206 if (err)
207 ret = err;
208 }
Andrea Arcangeliba761492011-01-13 15:46:58 -0800209 return ret;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800210}
211static struct kobj_attribute enabled_attr =
212 __ATTR(enabled, 0644, enabled_show, enabled_store);
213
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700214ssize_t single_hugepage_flag_show(struct kobject *kobj,
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800215 struct kobj_attribute *attr, char *buf,
216 enum transparent_hugepage_flag flag)
217{
Ben Hutchingse27e6152011-04-14 15:22:21 -0700218 return sprintf(buf, "%d\n",
219 !!test_bit(flag, &transparent_hugepage_flags));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800220}
Ben Hutchingse27e6152011-04-14 15:22:21 -0700221
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700222ssize_t single_hugepage_flag_store(struct kobject *kobj,
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800223 struct kobj_attribute *attr,
224 const char *buf, size_t count,
225 enum transparent_hugepage_flag flag)
226{
Ben Hutchingse27e6152011-04-14 15:22:21 -0700227 unsigned long value;
228 int ret;
229
230 ret = kstrtoul(buf, 10, &value);
231 if (ret < 0)
232 return ret;
233 if (value > 1)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800234 return -EINVAL;
235
Ben Hutchingse27e6152011-04-14 15:22:21 -0700236 if (value)
237 set_bit(flag, &transparent_hugepage_flags);
238 else
239 clear_bit(flag, &transparent_hugepage_flags);
240
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800241 return count;
242}
243
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800244static ssize_t defrag_show(struct kobject *kobj,
245 struct kobj_attribute *attr, char *buf)
246{
Mel Gorman444eb2a42016-03-17 14:19:23 -0700247 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags))
David Rientjes21440d72017-02-22 15:45:49 -0800248 return sprintf(buf, "[always] defer defer+madvise madvise never\n");
Mel Gorman444eb2a42016-03-17 14:19:23 -0700249 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags))
David Rientjes21440d72017-02-22 15:45:49 -0800250 return sprintf(buf, "always [defer] defer+madvise madvise never\n");
251 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags))
252 return sprintf(buf, "always defer [defer+madvise] madvise never\n");
253 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags))
254 return sprintf(buf, "always defer defer+madvise [madvise] never\n");
255 return sprintf(buf, "always defer defer+madvise madvise [never]\n");
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800256}
David Rientjes21440d72017-02-22 15:45:49 -0800257
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800258static ssize_t defrag_store(struct kobject *kobj,
259 struct kobj_attribute *attr,
260 const char *buf, size_t count)
261{
David Rientjesf42f2552020-01-30 22:14:48 -0800262 if (sysfs_streq(buf, "always")) {
David Rientjes21440d72017-02-22 15:45:49 -0800263 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
264 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
265 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
266 set_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
David Rientjesf42f2552020-01-30 22:14:48 -0800267 } else if (sysfs_streq(buf, "defer+madvise")) {
David Rientjes21440d72017-02-22 15:45:49 -0800268 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
269 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
270 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
271 set_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
David Rientjesf42f2552020-01-30 22:14:48 -0800272 } else if (sysfs_streq(buf, "defer")) {
David Rientjes4fad7fb2017-04-07 16:04:54 -0700273 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
274 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
275 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
276 set_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
David Rientjesf42f2552020-01-30 22:14:48 -0800277 } else if (sysfs_streq(buf, "madvise")) {
David Rientjes21440d72017-02-22 15:45:49 -0800278 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
279 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
280 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
281 set_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
David Rientjesf42f2552020-01-30 22:14:48 -0800282 } else if (sysfs_streq(buf, "never")) {
David Rientjes21440d72017-02-22 15:45:49 -0800283 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_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
286 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
287 } else
288 return -EINVAL;
289
290 return count;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800291}
292static struct kobj_attribute defrag_attr =
293 __ATTR(defrag, 0644, defrag_show, defrag_store);
294
Kirill A. Shutemov79da5402012-12-12 13:51:12 -0800295static ssize_t use_zero_page_show(struct kobject *kobj,
296 struct kobj_attribute *attr, char *buf)
297{
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700298 return single_hugepage_flag_show(kobj, attr, buf,
Kirill A. Shutemov79da5402012-12-12 13:51:12 -0800299 TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
300}
301static ssize_t use_zero_page_store(struct kobject *kobj,
302 struct kobj_attribute *attr, const char *buf, size_t count)
303{
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700304 return single_hugepage_flag_store(kobj, attr, buf, count,
Kirill A. Shutemov79da5402012-12-12 13:51:12 -0800305 TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
306}
307static struct kobj_attribute use_zero_page_attr =
308 __ATTR(use_zero_page, 0644, use_zero_page_show, use_zero_page_store);
Hugh Dickins49920d22016-12-12 16:44:50 -0800309
310static ssize_t hpage_pmd_size_show(struct kobject *kobj,
311 struct kobj_attribute *attr, char *buf)
312{
313 return sprintf(buf, "%lu\n", HPAGE_PMD_SIZE);
314}
315static struct kobj_attribute hpage_pmd_size_attr =
316 __ATTR_RO(hpage_pmd_size);
317
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800318static struct attribute *hugepage_attr[] = {
319 &enabled_attr.attr,
320 &defrag_attr.attr,
Kirill A. Shutemov79da5402012-12-12 13:51:12 -0800321 &use_zero_page_attr.attr,
Hugh Dickins49920d22016-12-12 16:44:50 -0800322 &hpage_pmd_size_attr.attr,
Matthew Wilcox (Oracle)396bcc52020-04-06 20:04:35 -0700323#ifdef CONFIG_SHMEM
Kirill A. Shutemov5a6e75f2016-07-26 15:26:13 -0700324 &shmem_enabled_attr.attr,
325#endif
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800326 NULL,
327};
328
Arvind Yadav8aa95a22017-09-06 16:22:03 -0700329static const struct attribute_group hugepage_attr_group = {
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800330 .attrs = hugepage_attr,
Andrea Arcangeliba761492011-01-13 15:46:58 -0800331};
332
Shaohua Li569e5592012-01-12 17:19:11 -0800333static int __init hugepage_init_sysfs(struct kobject **hugepage_kobj)
334{
335 int err;
336
337 *hugepage_kobj = kobject_create_and_add("transparent_hugepage", mm_kobj);
338 if (unlikely(!*hugepage_kobj)) {
Andrew Mortonae3a8c12014-06-04 16:06:58 -0700339 pr_err("failed to create transparent hugepage kobject\n");
Shaohua Li569e5592012-01-12 17:19:11 -0800340 return -ENOMEM;
341 }
342
343 err = sysfs_create_group(*hugepage_kobj, &hugepage_attr_group);
344 if (err) {
Andrew Mortonae3a8c12014-06-04 16:06:58 -0700345 pr_err("failed to register transparent hugepage group\n");
Shaohua Li569e5592012-01-12 17:19:11 -0800346 goto delete_obj;
347 }
348
349 err = sysfs_create_group(*hugepage_kobj, &khugepaged_attr_group);
350 if (err) {
Andrew Mortonae3a8c12014-06-04 16:06:58 -0700351 pr_err("failed to register transparent hugepage group\n");
Shaohua Li569e5592012-01-12 17:19:11 -0800352 goto remove_hp_group;
353 }
354
355 return 0;
356
357remove_hp_group:
358 sysfs_remove_group(*hugepage_kobj, &hugepage_attr_group);
359delete_obj:
360 kobject_put(*hugepage_kobj);
361 return err;
362}
363
364static void __init hugepage_exit_sysfs(struct kobject *hugepage_kobj)
365{
366 sysfs_remove_group(hugepage_kobj, &khugepaged_attr_group);
367 sysfs_remove_group(hugepage_kobj, &hugepage_attr_group);
368 kobject_put(hugepage_kobj);
369}
370#else
371static inline int hugepage_init_sysfs(struct kobject **hugepage_kobj)
372{
373 return 0;
374}
375
376static inline void hugepage_exit_sysfs(struct kobject *hugepage_kobj)
377{
378}
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800379#endif /* CONFIG_SYSFS */
380
381static int __init hugepage_init(void)
382{
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800383 int err;
Shaohua Li569e5592012-01-12 17:19:11 -0800384 struct kobject *hugepage_kobj;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800385
Andrea Arcangeli4b7167b2011-01-13 15:47:09 -0800386 if (!has_transparent_hugepage()) {
Aneesh Kumar K.V9b0b9ed2021-02-24 12:07:32 -0800387 /*
388 * Hardware doesn't support hugepages, hence disable
389 * DAX PMD support.
390 */
391 transparent_hugepage_flags = 1 << TRANSPARENT_HUGEPAGE_NEVER_DAX;
Shaohua Li569e5592012-01-12 17:19:11 -0800392 return -EINVAL;
Andrea Arcangeli4b7167b2011-01-13 15:47:09 -0800393 }
394
Kirill A. Shutemovff20c2e2016-03-01 09:45:14 +0530395 /*
396 * hugepages can't be allocated by the buddy allocator
397 */
398 MAYBE_BUILD_BUG_ON(HPAGE_PMD_ORDER >= MAX_ORDER);
399 /*
400 * we use page->mapping and page->index in second tail page
401 * as list_head: assuming THP order >= 2
402 */
403 MAYBE_BUILD_BUG_ON(HPAGE_PMD_ORDER < 2);
404
Shaohua Li569e5592012-01-12 17:19:11 -0800405 err = hugepage_init_sysfs(&hugepage_kobj);
406 if (err)
Kirill A. Shutemov65ebb642015-04-15 16:14:20 -0700407 goto err_sysfs;
Andrea Arcangeliba761492011-01-13 15:46:58 -0800408
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700409 err = khugepaged_init();
Andrea Arcangeliba761492011-01-13 15:46:58 -0800410 if (err)
Kirill A. Shutemov65ebb642015-04-15 16:14:20 -0700411 goto err_slab;
Andrea Arcangeliba761492011-01-13 15:46:58 -0800412
Kirill A. Shutemov65ebb642015-04-15 16:14:20 -0700413 err = register_shrinker(&huge_zero_page_shrinker);
414 if (err)
415 goto err_hzp_shrinker;
Kirill A. Shutemov9a982252016-01-15 16:54:17 -0800416 err = register_shrinker(&deferred_split_shrinker);
417 if (err)
418 goto err_split_shrinker;
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800419
Rik van Riel97562cd2011-01-13 15:47:12 -0800420 /*
421 * By default disable transparent hugepages on smaller systems,
422 * where the extra memory used could hurt more than TLB overhead
423 * is likely to save. The admin can still enable it through /sys.
424 */
Arun KSca79b0c2018-12-28 00:34:29 -0800425 if (totalram_pages() < (512 << (20 - PAGE_SHIFT))) {
Rik van Riel97562cd2011-01-13 15:47:12 -0800426 transparent_hugepage_flags = 0;
Kirill A. Shutemov79553da2932015-04-15 16:14:56 -0700427 return 0;
428 }
Rik van Riel97562cd2011-01-13 15:47:12 -0800429
Kirill A. Shutemov79553da2932015-04-15 16:14:56 -0700430 err = start_stop_khugepaged();
Kirill A. Shutemov65ebb642015-04-15 16:14:20 -0700431 if (err)
432 goto err_khugepaged;
Andrea Arcangeliba761492011-01-13 15:46:58 -0800433
Shaohua Li569e5592012-01-12 17:19:11 -0800434 return 0;
Kirill A. Shutemov65ebb642015-04-15 16:14:20 -0700435err_khugepaged:
Kirill A. Shutemov9a982252016-01-15 16:54:17 -0800436 unregister_shrinker(&deferred_split_shrinker);
437err_split_shrinker:
Kirill A. Shutemov65ebb642015-04-15 16:14:20 -0700438 unregister_shrinker(&huge_zero_page_shrinker);
439err_hzp_shrinker:
Kirill A. Shutemovb46e7562016-07-26 15:26:24 -0700440 khugepaged_destroy();
Kirill A. Shutemov65ebb642015-04-15 16:14:20 -0700441err_slab:
Shaohua Li569e5592012-01-12 17:19:11 -0800442 hugepage_exit_sysfs(hugepage_kobj);
Kirill A. Shutemov65ebb642015-04-15 16:14:20 -0700443err_sysfs:
Andrea Arcangeliba761492011-01-13 15:46:58 -0800444 return err;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800445}
Paul Gortmakera64fb3c2014-01-23 15:53:30 -0800446subsys_initcall(hugepage_init);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800447
448static int __init setup_transparent_hugepage(char *str)
449{
450 int ret = 0;
451 if (!str)
452 goto out;
453 if (!strcmp(str, "always")) {
454 set_bit(TRANSPARENT_HUGEPAGE_FLAG,
455 &transparent_hugepage_flags);
456 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
457 &transparent_hugepage_flags);
458 ret = 1;
459 } else if (!strcmp(str, "madvise")) {
460 clear_bit(TRANSPARENT_HUGEPAGE_FLAG,
461 &transparent_hugepage_flags);
462 set_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
463 &transparent_hugepage_flags);
464 ret = 1;
465 } else if (!strcmp(str, "never")) {
466 clear_bit(TRANSPARENT_HUGEPAGE_FLAG,
467 &transparent_hugepage_flags);
468 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
469 &transparent_hugepage_flags);
470 ret = 1;
471 }
472out:
473 if (!ret)
Andrew Mortonae3a8c12014-06-04 16:06:58 -0700474 pr_warn("transparent_hugepage= cannot parse, ignored\n");
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800475 return ret;
476}
477__setup("transparent_hugepage=", setup_transparent_hugepage);
478
Linus Torvaldsf55e1012017-11-29 09:01:01 -0800479pmd_t maybe_pmd_mkwrite(pmd_t pmd, struct vm_area_struct *vma)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800480{
Linus Torvaldsf55e1012017-11-29 09:01:01 -0800481 if (likely(vma->vm_flags & VM_WRITE))
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800482 pmd = pmd_mkwrite(pmd);
483 return pmd;
484}
485
Yang Shi87eaceb2019-09-23 15:38:15 -0700486#ifdef CONFIG_MEMCG
487static inline struct deferred_split *get_deferred_split_queue(struct page *page)
Kirill A. Shutemov9a982252016-01-15 16:54:17 -0800488{
Yang Shi87eaceb2019-09-23 15:38:15 -0700489 struct mem_cgroup *memcg = compound_head(page)->mem_cgroup;
490 struct pglist_data *pgdat = NODE_DATA(page_to_nid(page));
491
492 if (memcg)
493 return &memcg->deferred_split_queue;
494 else
495 return &pgdat->deferred_split_queue;
Kirill A. Shutemov9a982252016-01-15 16:54:17 -0800496}
Yang Shi87eaceb2019-09-23 15:38:15 -0700497#else
498static inline struct deferred_split *get_deferred_split_queue(struct page *page)
499{
500 struct pglist_data *pgdat = NODE_DATA(page_to_nid(page));
501
502 return &pgdat->deferred_split_queue;
503}
504#endif
Kirill A. Shutemov9a982252016-01-15 16:54:17 -0800505
506void prep_transhuge_page(struct page *page)
507{
508 /*
509 * we use page->mapping and page->indexlru in second tail page
510 * as list_head: assuming THP order >= 2
511 */
Kirill A. Shutemov9a982252016-01-15 16:54:17 -0800512
513 INIT_LIST_HEAD(page_deferred_list(page));
514 set_compound_page_dtor(page, TRANSHUGE_PAGE_DTOR);
515}
516
Sean Christopherson005ba372020-01-08 12:24:36 -0800517bool is_transparent_hugepage(struct page *page)
518{
519 if (!PageCompound(page))
Zou Weifa1f68c2020-06-04 16:49:46 -0700520 return false;
Sean Christopherson005ba372020-01-08 12:24:36 -0800521
522 page = compound_head(page);
523 return is_huge_zero_page(page) ||
524 page[1].compound_dtor == TRANSHUGE_PAGE_DTOR;
525}
526EXPORT_SYMBOL_GPL(is_transparent_hugepage);
527
Kirill A. Shutemov97d3d0f2020-01-13 16:29:10 -0800528static unsigned long __thp_get_unmapped_area(struct file *filp,
529 unsigned long addr, unsigned long len,
Toshi Kani74d2fad2016-10-07 16:59:56 -0700530 loff_t off, unsigned long flags, unsigned long size)
531{
Toshi Kani74d2fad2016-10-07 16:59:56 -0700532 loff_t off_end = off + len;
533 loff_t off_align = round_up(off, size);
Kirill A. Shutemov97d3d0f2020-01-13 16:29:10 -0800534 unsigned long len_pad, ret;
Toshi Kani74d2fad2016-10-07 16:59:56 -0700535
536 if (off_end <= off_align || (off_end - off_align) < size)
537 return 0;
538
539 len_pad = len + size;
540 if (len_pad < len || (off + len_pad) < off)
541 return 0;
542
Kirill A. Shutemov97d3d0f2020-01-13 16:29:10 -0800543 ret = current->mm->get_unmapped_area(filp, addr, len_pad,
Toshi Kani74d2fad2016-10-07 16:59:56 -0700544 off >> PAGE_SHIFT, flags);
Kirill A. Shutemov97d3d0f2020-01-13 16:29:10 -0800545
546 /*
547 * The failure might be due to length padding. The caller will retry
548 * without the padding.
549 */
550 if (IS_ERR_VALUE(ret))
Toshi Kani74d2fad2016-10-07 16:59:56 -0700551 return 0;
552
Kirill A. Shutemov97d3d0f2020-01-13 16:29:10 -0800553 /*
554 * Do not try to align to THP boundary if allocation at the address
555 * hint succeeds.
556 */
557 if (ret == addr)
558 return addr;
559
560 ret += (off - ret) & (size - 1);
561 return ret;
Toshi Kani74d2fad2016-10-07 16:59:56 -0700562}
563
564unsigned long thp_get_unmapped_area(struct file *filp, unsigned long addr,
565 unsigned long len, unsigned long pgoff, unsigned long flags)
566{
Kirill A. Shutemov97d3d0f2020-01-13 16:29:10 -0800567 unsigned long ret;
Toshi Kani74d2fad2016-10-07 16:59:56 -0700568 loff_t off = (loff_t)pgoff << PAGE_SHIFT;
569
Toshi Kani74d2fad2016-10-07 16:59:56 -0700570 if (!IS_DAX(filp->f_mapping->host) || !IS_ENABLED(CONFIG_FS_DAX_PMD))
571 goto out;
572
Kirill A. Shutemov97d3d0f2020-01-13 16:29:10 -0800573 ret = __thp_get_unmapped_area(filp, addr, len, off, flags, PMD_SIZE);
574 if (ret)
575 return ret;
576out:
Toshi Kani74d2fad2016-10-07 16:59:56 -0700577 return current->mm->get_unmapped_area(filp, addr, len, pgoff, flags);
578}
579EXPORT_SYMBOL_GPL(thp_get_unmapped_area);
580
Souptick Joarder2b740302018-08-23 17:01:36 -0700581static vm_fault_t __do_huge_pmd_anonymous_page(struct vm_fault *vmf,
582 struct page *page, gfp_t gfp)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800583{
Jan Kara82b0f8c2016-12-14 15:06:58 -0800584 struct vm_area_struct *vma = vmf->vma;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800585 pgtable_t pgtable;
Jan Kara82b0f8c2016-12-14 15:06:58 -0800586 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
Souptick Joarder2b740302018-08-23 17:01:36 -0700587 vm_fault_t ret = 0;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800588
Sasha Levin309381fea2014-01-23 15:52:54 -0800589 VM_BUG_ON_PAGE(!PageCompound(page), page);
Johannes Weiner00501b52014-08-08 14:19:20 -0700590
Johannes Weinerd9eb1ea2020-06-03 16:02:24 -0700591 if (mem_cgroup_charge(page, vma->vm_mm, gfp)) {
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700592 put_page(page);
593 count_vm_event(THP_FAULT_FALLBACK);
David Rientjes85b9f462020-04-06 20:04:28 -0700594 count_vm_event(THP_FAULT_FALLBACK_CHARGE);
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700595 return VM_FAULT_FALLBACK;
596 }
Johannes Weiner9d82c692020-06-03 16:02:04 -0700597 cgroup_throttle_swaprate(page, gfp);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800598
Joel Fernandes (Google)4cf58922019-01-03 15:28:34 -0800599 pgtable = pte_alloc_one(vma->vm_mm);
Johannes Weiner00501b52014-08-08 14:19:20 -0700600 if (unlikely(!pgtable)) {
Michal Hocko6b31d592017-08-18 15:16:15 -0700601 ret = VM_FAULT_OOM;
602 goto release;
Johannes Weiner00501b52014-08-08 14:19:20 -0700603 }
604
Huang Yingc79b57e2017-09-06 16:25:04 -0700605 clear_huge_page(page, vmf->address, HPAGE_PMD_NR);
Minchan Kim52f37622013-04-29 15:08:15 -0700606 /*
607 * The memory barrier inside __SetPageUptodate makes sure that
608 * clear_huge_page writes become visible before the set_pmd_at()
609 * write.
610 */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800611 __SetPageUptodate(page);
612
Jan Kara82b0f8c2016-12-14 15:06:58 -0800613 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
614 if (unlikely(!pmd_none(*vmf->pmd))) {
Michal Hocko6b31d592017-08-18 15:16:15 -0700615 goto unlock_release;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800616 } else {
617 pmd_t entry;
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700618
Michal Hocko6b31d592017-08-18 15:16:15 -0700619 ret = check_stable_address_space(vma->vm_mm);
620 if (ret)
621 goto unlock_release;
622
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700623 /* Deliver the page fault to userland */
624 if (userfaultfd_missing(vma)) {
Souptick Joarder2b740302018-08-23 17:01:36 -0700625 vm_fault_t ret2;
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700626
Jan Kara82b0f8c2016-12-14 15:06:58 -0800627 spin_unlock(vmf->ptl);
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700628 put_page(page);
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -0700629 pte_free(vma->vm_mm, pgtable);
Souptick Joarder2b740302018-08-23 17:01:36 -0700630 ret2 = handle_userfault(vmf, VM_UFFD_MISSING);
631 VM_BUG_ON(ret2 & VM_FAULT_FALLBACK);
632 return ret2;
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700633 }
634
Kirill A. Shutemov31223592013-09-12 15:14:01 -0700635 entry = mk_huge_pmd(page, vma->vm_page_prot);
Linus Torvaldsf55e1012017-11-29 09:01:01 -0800636 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -0800637 page_add_new_anon_rmap(page, vma, haddr, true);
Joonsoo Kimb5181542020-08-11 18:30:40 -0700638 lru_cache_add_inactive_or_unevictable(page, vma);
Jan Kara82b0f8c2016-12-14 15:06:58 -0800639 pgtable_trans_huge_deposit(vma->vm_mm, vmf->pmd, pgtable);
640 set_pmd_at(vma->vm_mm, haddr, vmf->pmd, entry);
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -0700641 add_mm_counter(vma->vm_mm, MM_ANONPAGES, HPAGE_PMD_NR);
Kirill A. Shutemovc4812902017-11-15 17:35:37 -0800642 mm_inc_nr_ptes(vma->vm_mm);
Jan Kara82b0f8c2016-12-14 15:06:58 -0800643 spin_unlock(vmf->ptl);
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700644 count_vm_event(THP_FAULT_ALLOC);
Johannes Weiner9d82c692020-06-03 16:02:04 -0700645 count_memcg_event_mm(vma->vm_mm, THP_FAULT_ALLOC);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800646 }
647
David Rientjesaa2e8782012-05-29 15:06:17 -0700648 return 0;
Michal Hocko6b31d592017-08-18 15:16:15 -0700649unlock_release:
650 spin_unlock(vmf->ptl);
651release:
652 if (pgtable)
653 pte_free(vma->vm_mm, pgtable);
Michal Hocko6b31d592017-08-18 15:16:15 -0700654 put_page(page);
655 return ret;
656
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800657}
658
Mel Gorman444eb2a42016-03-17 14:19:23 -0700659/*
David Rientjes21440d72017-02-22 15:45:49 -0800660 * always: directly stall for all thp allocations
661 * defer: wake kswapd and fail if not immediately available
662 * defer+madvise: wake kswapd and directly stall for MADV_HUGEPAGE, otherwise
663 * fail if not immediately available
664 * madvise: directly stall for MADV_HUGEPAGE, otherwise fail if not immediately
665 * available
666 * never: never stall for any thp allocation
Mel Gorman444eb2a42016-03-17 14:19:23 -0700667 */
David Rientjes19deb762019-09-04 12:54:20 -0700668static inline gfp_t alloc_hugepage_direct_gfpmask(struct vm_area_struct *vma)
Andrea Arcangeli0bbbc0b2011-01-13 15:47:05 -0800669{
David Rientjes21440d72017-02-22 15:45:49 -0800670 const bool vma_madvised = !!(vma->vm_flags & VM_HUGEPAGE);
Michal Hocko89c83fb2018-11-02 15:48:31 -0700671
David Rientjesac79f782019-09-04 12:54:18 -0700672 /* Always do synchronous compaction */
David Rientjes21440d72017-02-22 15:45:49 -0800673 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags))
Andrea Arcangelia8282602019-08-13 15:37:53 -0700674 return GFP_TRANSHUGE | (vma_madvised ? 0 : __GFP_NORETRY);
David Rientjesac79f782019-09-04 12:54:18 -0700675
676 /* Kick kcompactd and fail quickly */
David Rientjes21440d72017-02-22 15:45:49 -0800677 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags))
David Rientjes19deb762019-09-04 12:54:20 -0700678 return GFP_TRANSHUGE_LIGHT | __GFP_KSWAPD_RECLAIM;
David Rientjesac79f782019-09-04 12:54:18 -0700679
680 /* Synchronous compaction if madvised, otherwise kick kcompactd */
David Rientjes21440d72017-02-22 15:45:49 -0800681 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags))
David Rientjes19deb762019-09-04 12:54:20 -0700682 return GFP_TRANSHUGE_LIGHT |
683 (vma_madvised ? __GFP_DIRECT_RECLAIM :
684 __GFP_KSWAPD_RECLAIM);
David Rientjesac79f782019-09-04 12:54:18 -0700685
686 /* Only do synchronous compaction if madvised */
David Rientjes21440d72017-02-22 15:45:49 -0800687 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags))
David Rientjes19deb762019-09-04 12:54:20 -0700688 return GFP_TRANSHUGE_LIGHT |
689 (vma_madvised ? __GFP_DIRECT_RECLAIM : 0);
David Rientjesac79f782019-09-04 12:54:18 -0700690
David Rientjes19deb762019-09-04 12:54:20 -0700691 return GFP_TRANSHUGE_LIGHT;
Mel Gorman444eb2a42016-03-17 14:19:23 -0700692}
693
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800694/* Caller must hold page table lock. */
Kirill A. Shutemovd295e342015-09-08 14:59:34 -0700695static bool set_huge_zero_page(pgtable_t pgtable, struct mm_struct *mm,
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800696 struct vm_area_struct *vma, unsigned long haddr, pmd_t *pmd,
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700697 struct page *zero_page)
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800698{
699 pmd_t entry;
Andrew Morton7c414162015-09-08 14:58:43 -0700700 if (!pmd_none(*pmd))
701 return false;
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700702 entry = mk_pmd(zero_page, vma->vm_page_prot);
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800703 entry = pmd_mkhuge(entry);
Matthew Wilcox12c9d702016-02-02 16:57:57 -0800704 if (pgtable)
705 pgtable_trans_huge_deposit(mm, pmd, pgtable);
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800706 set_pmd_at(mm, haddr, pmd, entry);
Kirill A. Shutemovc4812902017-11-15 17:35:37 -0800707 mm_inc_nr_ptes(mm);
Andrew Morton7c414162015-09-08 14:58:43 -0700708 return true;
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800709}
710
Souptick Joarder2b740302018-08-23 17:01:36 -0700711vm_fault_t do_huge_pmd_anonymous_page(struct vm_fault *vmf)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800712{
Jan Kara82b0f8c2016-12-14 15:06:58 -0800713 struct vm_area_struct *vma = vmf->vma;
Aneesh Kumar K.V077fcf12015-02-11 15:27:12 -0800714 gfp_t gfp;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800715 struct page *page;
Jan Kara82b0f8c2016-12-14 15:06:58 -0800716 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800717
Yang Shi43675e62019-07-18 15:57:24 -0700718 if (!transhuge_vma_suitable(vma, haddr))
Kirill A. Shutemovc0292552013-09-12 15:14:05 -0700719 return VM_FAULT_FALLBACK;
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700720 if (unlikely(anon_vma_prepare(vma)))
721 return VM_FAULT_OOM;
David Rientjes6d50e602014-10-29 14:50:31 -0700722 if (unlikely(khugepaged_enter(vma, vma->vm_flags)))
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700723 return VM_FAULT_OOM;
Jan Kara82b0f8c2016-12-14 15:06:58 -0800724 if (!(vmf->flags & FAULT_FLAG_WRITE) &&
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -0700725 !mm_forbids_zeropage(vma->vm_mm) &&
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700726 transparent_hugepage_use_zero_page()) {
727 pgtable_t pgtable;
728 struct page *zero_page;
Souptick Joarder2b740302018-08-23 17:01:36 -0700729 vm_fault_t ret;
Joel Fernandes (Google)4cf58922019-01-03 15:28:34 -0800730 pgtable = pte_alloc_one(vma->vm_mm);
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700731 if (unlikely(!pgtable))
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800732 return VM_FAULT_OOM;
Aaron Lu6fcb52a2016-10-07 17:00:08 -0700733 zero_page = mm_get_huge_zero_page(vma->vm_mm);
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700734 if (unlikely(!zero_page)) {
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -0700735 pte_free(vma->vm_mm, pgtable);
Andi Kleen81ab4202011-04-14 15:22:06 -0700736 count_vm_event(THP_FAULT_FALLBACK);
Kirill A. Shutemovc0292552013-09-12 15:14:05 -0700737 return VM_FAULT_FALLBACK;
Andi Kleen81ab4202011-04-14 15:22:06 -0700738 }
Jan Kara82b0f8c2016-12-14 15:06:58 -0800739 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700740 ret = 0;
Jan Kara82b0f8c2016-12-14 15:06:58 -0800741 if (pmd_none(*vmf->pmd)) {
Michal Hocko6b31d592017-08-18 15:16:15 -0700742 ret = check_stable_address_space(vma->vm_mm);
743 if (ret) {
744 spin_unlock(vmf->ptl);
Gerald Schaeferbfe8cc12020-11-21 22:17:15 -0800745 pte_free(vma->vm_mm, pgtable);
Michal Hocko6b31d592017-08-18 15:16:15 -0700746 } else if (userfaultfd_missing(vma)) {
Jan Kara82b0f8c2016-12-14 15:06:58 -0800747 spin_unlock(vmf->ptl);
Gerald Schaeferbfe8cc12020-11-21 22:17:15 -0800748 pte_free(vma->vm_mm, pgtable);
Jan Kara82b0f8c2016-12-14 15:06:58 -0800749 ret = handle_userfault(vmf, VM_UFFD_MISSING);
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700750 VM_BUG_ON(ret & VM_FAULT_FALLBACK);
751 } else {
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -0700752 set_huge_zero_page(pgtable, vma->vm_mm, vma,
Jan Kara82b0f8c2016-12-14 15:06:58 -0800753 haddr, vmf->pmd, zero_page);
754 spin_unlock(vmf->ptl);
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700755 }
Gerald Schaeferbfe8cc12020-11-21 22:17:15 -0800756 } else {
Jan Kara82b0f8c2016-12-14 15:06:58 -0800757 spin_unlock(vmf->ptl);
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -0700758 pte_free(vma->vm_mm, pgtable);
Gerald Schaeferbfe8cc12020-11-21 22:17:15 -0800759 }
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700760 return ret;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800761 }
David Rientjes19deb762019-09-04 12:54:20 -0700762 gfp = alloc_hugepage_direct_gfpmask(vma);
763 page = alloc_hugepage_vma(gfp, vma, haddr, HPAGE_PMD_ORDER);
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700764 if (unlikely(!page)) {
765 count_vm_event(THP_FAULT_FALLBACK);
Kirill A. Shutemovc0292552013-09-12 15:14:05 -0700766 return VM_FAULT_FALLBACK;
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700767 }
Kirill A. Shutemov9a982252016-01-15 16:54:17 -0800768 prep_transhuge_page(page);
Jan Kara82b0f8c2016-12-14 15:06:58 -0800769 return __do_huge_pmd_anonymous_page(vmf, page, gfp);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800770}
771
Matthew Wilcoxae18d6d2015-09-08 14:59:14 -0700772static void insert_pfn_pmd(struct vm_area_struct *vma, unsigned long addr,
Oliver O'Halloran3b6521f2017-05-08 15:59:43 -0700773 pmd_t *pmd, pfn_t pfn, pgprot_t prot, bool write,
774 pgtable_t pgtable)
Matthew Wilcox5cad4652015-09-08 14:58:54 -0700775{
776 struct mm_struct *mm = vma->vm_mm;
777 pmd_t entry;
778 spinlock_t *ptl;
779
780 ptl = pmd_lock(mm, pmd);
Aneesh Kumar K.Vc6f3c5e2019-04-05 18:39:10 -0700781 if (!pmd_none(*pmd)) {
782 if (write) {
783 if (pmd_pfn(*pmd) != pfn_t_to_pfn(pfn)) {
784 WARN_ON_ONCE(!is_huge_zero_pmd(*pmd));
785 goto out_unlock;
786 }
787 entry = pmd_mkyoung(*pmd);
788 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
789 if (pmdp_set_access_flags(vma, addr, pmd, entry, 1))
790 update_mmu_cache_pmd(vma, addr, pmd);
791 }
792
793 goto out_unlock;
794 }
795
Dan Williamsf25748e32016-01-15 16:56:43 -0800796 entry = pmd_mkhuge(pfn_t_pmd(pfn, prot));
797 if (pfn_t_devmap(pfn))
798 entry = pmd_mkdevmap(entry);
Ross Zwisler01871e52016-01-15 16:56:02 -0800799 if (write) {
Linus Torvaldsf55e1012017-11-29 09:01:01 -0800800 entry = pmd_mkyoung(pmd_mkdirty(entry));
801 entry = maybe_pmd_mkwrite(entry, vma);
Matthew Wilcox5cad4652015-09-08 14:58:54 -0700802 }
Oliver O'Halloran3b6521f2017-05-08 15:59:43 -0700803
804 if (pgtable) {
805 pgtable_trans_huge_deposit(mm, pmd, pgtable);
Kirill A. Shutemovc4812902017-11-15 17:35:37 -0800806 mm_inc_nr_ptes(mm);
Aneesh Kumar K.Vc6f3c5e2019-04-05 18:39:10 -0700807 pgtable = NULL;
Oliver O'Halloran3b6521f2017-05-08 15:59:43 -0700808 }
809
Ross Zwisler01871e52016-01-15 16:56:02 -0800810 set_pmd_at(mm, addr, pmd, entry);
811 update_mmu_cache_pmd(vma, addr, pmd);
Aneesh Kumar K.Vc6f3c5e2019-04-05 18:39:10 -0700812
813out_unlock:
Matthew Wilcox5cad4652015-09-08 14:58:54 -0700814 spin_unlock(ptl);
Aneesh Kumar K.Vc6f3c5e2019-04-05 18:39:10 -0700815 if (pgtable)
816 pte_free(mm, pgtable);
Matthew Wilcox5cad4652015-09-08 14:58:54 -0700817}
818
Thomas Hellstrom (VMware)9a9731b2020-03-24 18:48:09 +0100819/**
820 * vmf_insert_pfn_pmd_prot - insert a pmd size pfn
821 * @vmf: Structure describing the fault
822 * @pfn: pfn to insert
823 * @pgprot: page protection to use
824 * @write: whether it's a write fault
825 *
826 * Insert a pmd size pfn. See vmf_insert_pfn() for additional info and
827 * also consult the vmf_insert_mixed_prot() documentation when
828 * @pgprot != @vmf->vma->vm_page_prot.
829 *
830 * Return: vm_fault_t value.
831 */
832vm_fault_t vmf_insert_pfn_pmd_prot(struct vm_fault *vmf, pfn_t pfn,
833 pgprot_t pgprot, bool write)
Matthew Wilcox5cad4652015-09-08 14:58:54 -0700834{
Dan Williamsfce86ff2019-05-13 17:15:33 -0700835 unsigned long addr = vmf->address & PMD_MASK;
836 struct vm_area_struct *vma = vmf->vma;
Oliver O'Halloran3b6521f2017-05-08 15:59:43 -0700837 pgtable_t pgtable = NULL;
Dan Williamsfce86ff2019-05-13 17:15:33 -0700838
Matthew Wilcox5cad4652015-09-08 14:58:54 -0700839 /*
840 * If we had pmd_special, we could avoid all these restrictions,
841 * but we need to be consistent with PTEs and architectures that
842 * can't support a 'special' bit.
843 */
Dave Jiange1fb4a02018-08-17 15:43:40 -0700844 BUG_ON(!(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) &&
845 !pfn_t_devmap(pfn));
Matthew Wilcox5cad4652015-09-08 14:58:54 -0700846 BUG_ON((vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) ==
847 (VM_PFNMAP|VM_MIXEDMAP));
848 BUG_ON((vma->vm_flags & VM_PFNMAP) && is_cow_mapping(vma->vm_flags));
Matthew Wilcox5cad4652015-09-08 14:58:54 -0700849
850 if (addr < vma->vm_start || addr >= vma->vm_end)
851 return VM_FAULT_SIGBUS;
Borislav Petkov308a0472016-10-26 19:43:43 +0200852
Oliver O'Halloran3b6521f2017-05-08 15:59:43 -0700853 if (arch_needs_pgtable_deposit()) {
Joel Fernandes (Google)4cf58922019-01-03 15:28:34 -0800854 pgtable = pte_alloc_one(vma->vm_mm);
Oliver O'Halloran3b6521f2017-05-08 15:59:43 -0700855 if (!pgtable)
856 return VM_FAULT_OOM;
857 }
858
Borislav Petkov308a0472016-10-26 19:43:43 +0200859 track_pfn_insert(vma, &pgprot, pfn);
860
Dan Williamsfce86ff2019-05-13 17:15:33 -0700861 insert_pfn_pmd(vma, addr, vmf->pmd, pfn, pgprot, write, pgtable);
Matthew Wilcoxae18d6d2015-09-08 14:59:14 -0700862 return VM_FAULT_NOPAGE;
Matthew Wilcox5cad4652015-09-08 14:58:54 -0700863}
Thomas Hellstrom (VMware)9a9731b2020-03-24 18:48:09 +0100864EXPORT_SYMBOL_GPL(vmf_insert_pfn_pmd_prot);
Matthew Wilcox5cad4652015-09-08 14:58:54 -0700865
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800866#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
Linus Torvaldsf55e1012017-11-29 09:01:01 -0800867static pud_t maybe_pud_mkwrite(pud_t pud, struct vm_area_struct *vma)
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800868{
Linus Torvaldsf55e1012017-11-29 09:01:01 -0800869 if (likely(vma->vm_flags & VM_WRITE))
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800870 pud = pud_mkwrite(pud);
871 return pud;
872}
873
874static void insert_pfn_pud(struct vm_area_struct *vma, unsigned long addr,
875 pud_t *pud, pfn_t pfn, pgprot_t prot, bool write)
876{
877 struct mm_struct *mm = vma->vm_mm;
878 pud_t entry;
879 spinlock_t *ptl;
880
881 ptl = pud_lock(mm, pud);
Aneesh Kumar K.Vc6f3c5e2019-04-05 18:39:10 -0700882 if (!pud_none(*pud)) {
883 if (write) {
884 if (pud_pfn(*pud) != pfn_t_to_pfn(pfn)) {
885 WARN_ON_ONCE(!is_huge_zero_pud(*pud));
886 goto out_unlock;
887 }
888 entry = pud_mkyoung(*pud);
889 entry = maybe_pud_mkwrite(pud_mkdirty(entry), vma);
890 if (pudp_set_access_flags(vma, addr, pud, entry, 1))
891 update_mmu_cache_pud(vma, addr, pud);
892 }
893 goto out_unlock;
894 }
895
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800896 entry = pud_mkhuge(pfn_t_pud(pfn, prot));
897 if (pfn_t_devmap(pfn))
898 entry = pud_mkdevmap(entry);
899 if (write) {
Linus Torvaldsf55e1012017-11-29 09:01:01 -0800900 entry = pud_mkyoung(pud_mkdirty(entry));
901 entry = maybe_pud_mkwrite(entry, vma);
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800902 }
903 set_pud_at(mm, addr, pud, entry);
904 update_mmu_cache_pud(vma, addr, pud);
Aneesh Kumar K.Vc6f3c5e2019-04-05 18:39:10 -0700905
906out_unlock:
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800907 spin_unlock(ptl);
908}
909
Thomas Hellstrom (VMware)9a9731b2020-03-24 18:48:09 +0100910/**
911 * vmf_insert_pfn_pud_prot - insert a pud size pfn
912 * @vmf: Structure describing the fault
913 * @pfn: pfn to insert
914 * @pgprot: page protection to use
915 * @write: whether it's a write fault
916 *
917 * Insert a pud size pfn. See vmf_insert_pfn() for additional info and
918 * also consult the vmf_insert_mixed_prot() documentation when
919 * @pgprot != @vmf->vma->vm_page_prot.
920 *
921 * Return: vm_fault_t value.
922 */
923vm_fault_t vmf_insert_pfn_pud_prot(struct vm_fault *vmf, pfn_t pfn,
924 pgprot_t pgprot, bool write)
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800925{
Dan Williamsfce86ff2019-05-13 17:15:33 -0700926 unsigned long addr = vmf->address & PUD_MASK;
927 struct vm_area_struct *vma = vmf->vma;
Dan Williamsfce86ff2019-05-13 17:15:33 -0700928
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800929 /*
930 * If we had pud_special, we could avoid all these restrictions,
931 * but we need to be consistent with PTEs and architectures that
932 * can't support a 'special' bit.
933 */
Dave Jiang62ec0d82018-09-04 15:46:16 -0700934 BUG_ON(!(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) &&
935 !pfn_t_devmap(pfn));
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800936 BUG_ON((vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) ==
937 (VM_PFNMAP|VM_MIXEDMAP));
938 BUG_ON((vma->vm_flags & VM_PFNMAP) && is_cow_mapping(vma->vm_flags));
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800939
940 if (addr < vma->vm_start || addr >= vma->vm_end)
941 return VM_FAULT_SIGBUS;
942
943 track_pfn_insert(vma, &pgprot, pfn);
944
Dan Williamsfce86ff2019-05-13 17:15:33 -0700945 insert_pfn_pud(vma, addr, vmf->pud, pfn, pgprot, write);
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800946 return VM_FAULT_NOPAGE;
947}
Thomas Hellstrom (VMware)9a9731b2020-03-24 18:48:09 +0100948EXPORT_SYMBOL_GPL(vmf_insert_pfn_pud_prot);
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800949#endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
950
Dan Williams3565fce2016-01-15 16:56:55 -0800951static void touch_pmd(struct vm_area_struct *vma, unsigned long addr,
Kirill A. Shutemova8f97362017-11-27 06:21:25 +0300952 pmd_t *pmd, int flags)
Dan Williams3565fce2016-01-15 16:56:55 -0800953{
954 pmd_t _pmd;
955
Kirill A. Shutemova8f97362017-11-27 06:21:25 +0300956 _pmd = pmd_mkyoung(*pmd);
957 if (flags & FOLL_WRITE)
958 _pmd = pmd_mkdirty(_pmd);
Dan Williams3565fce2016-01-15 16:56:55 -0800959 if (pmdp_set_access_flags(vma, addr & HPAGE_PMD_MASK,
Kirill A. Shutemova8f97362017-11-27 06:21:25 +0300960 pmd, _pmd, flags & FOLL_WRITE))
Dan Williams3565fce2016-01-15 16:56:55 -0800961 update_mmu_cache_pmd(vma, addr, pmd);
962}
963
964struct page *follow_devmap_pmd(struct vm_area_struct *vma, unsigned long addr,
Keith Buschdf06b372018-10-26 15:10:28 -0700965 pmd_t *pmd, int flags, struct dev_pagemap **pgmap)
Dan Williams3565fce2016-01-15 16:56:55 -0800966{
967 unsigned long pfn = pmd_pfn(*pmd);
968 struct mm_struct *mm = vma->vm_mm;
Dan Williams3565fce2016-01-15 16:56:55 -0800969 struct page *page;
970
971 assert_spin_locked(pmd_lockptr(mm, pmd));
972
Keno Fischer8310d482017-01-24 15:17:48 -0800973 /*
974 * When we COW a devmap PMD entry, we split it into PTEs, so we should
975 * not be in this function with `flags & FOLL_COW` set.
976 */
977 WARN_ONCE(flags & FOLL_COW, "mm: In follow_devmap_pmd with FOLL_COW set");
978
John Hubbard3faa52c2020-04-01 21:05:29 -0700979 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
980 if (WARN_ON_ONCE((flags & (FOLL_PIN | FOLL_GET)) ==
981 (FOLL_PIN | FOLL_GET)))
982 return NULL;
983
Linus Torvaldsf6f37322017-12-15 18:53:22 -0800984 if (flags & FOLL_WRITE && !pmd_write(*pmd))
Dan Williams3565fce2016-01-15 16:56:55 -0800985 return NULL;
986
987 if (pmd_present(*pmd) && pmd_devmap(*pmd))
988 /* pass */;
989 else
990 return NULL;
991
992 if (flags & FOLL_TOUCH)
Kirill A. Shutemova8f97362017-11-27 06:21:25 +0300993 touch_pmd(vma, addr, pmd, flags);
Dan Williams3565fce2016-01-15 16:56:55 -0800994
995 /*
996 * device mapped pages can only be returned if the
997 * caller will manage the page reference count.
998 */
John Hubbard3faa52c2020-04-01 21:05:29 -0700999 if (!(flags & (FOLL_GET | FOLL_PIN)))
Dan Williams3565fce2016-01-15 16:56:55 -08001000 return ERR_PTR(-EEXIST);
1001
1002 pfn += (addr & ~PMD_MASK) >> PAGE_SHIFT;
Keith Buschdf06b372018-10-26 15:10:28 -07001003 *pgmap = get_dev_pagemap(pfn, *pgmap);
1004 if (!*pgmap)
Dan Williams3565fce2016-01-15 16:56:55 -08001005 return ERR_PTR(-EFAULT);
1006 page = pfn_to_page(pfn);
John Hubbard3faa52c2020-04-01 21:05:29 -07001007 if (!try_grab_page(page, flags))
1008 page = ERR_PTR(-ENOMEM);
Dan Williams3565fce2016-01-15 16:56:55 -08001009
1010 return page;
1011}
1012
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001013int copy_huge_pmd(struct mm_struct *dst_mm, struct mm_struct *src_mm,
1014 pmd_t *dst_pmd, pmd_t *src_pmd, unsigned long addr,
Peter Xu9e1cf2d2021-06-30 18:49:02 -07001015 struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001016{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001017 spinlock_t *dst_ptl, *src_ptl;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001018 struct page *src_page;
1019 pmd_t pmd;
Matthew Wilcox12c9d702016-02-02 16:57:57 -08001020 pgtable_t pgtable = NULL;
Kirill A. Shutemov628d47c2016-07-26 15:25:42 -07001021 int ret = -ENOMEM;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001022
Kirill A. Shutemov628d47c2016-07-26 15:25:42 -07001023 /* Skip if can be re-fill on fault */
Peter Xu9e1cf2d2021-06-30 18:49:02 -07001024 if (!vma_is_anonymous(dst_vma))
Kirill A. Shutemov628d47c2016-07-26 15:25:42 -07001025 return 0;
1026
Joel Fernandes (Google)4cf58922019-01-03 15:28:34 -08001027 pgtable = pte_alloc_one(dst_mm);
Kirill A. Shutemov628d47c2016-07-26 15:25:42 -07001028 if (unlikely(!pgtable))
1029 goto out;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001030
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001031 dst_ptl = pmd_lock(dst_mm, dst_pmd);
1032 src_ptl = pmd_lockptr(src_mm, src_pmd);
1033 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001034
1035 ret = -EAGAIN;
1036 pmd = *src_pmd;
Zi Yan84c3fc42017-09-08 16:11:01 -07001037
1038#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
1039 if (unlikely(is_swap_pmd(pmd))) {
1040 swp_entry_t entry = pmd_to_swp_entry(pmd);
1041
1042 VM_BUG_ON(!is_pmd_migration_entry(pmd));
1043 if (is_write_migration_entry(entry)) {
1044 make_migration_entry_read(&entry);
1045 pmd = swp_entry_to_pmd(entry);
Naoya Horiguchiab6e3d02017-09-08 16:11:04 -07001046 if (pmd_swp_soft_dirty(*src_pmd))
1047 pmd = pmd_swp_mksoft_dirty(pmd);
Peter Xu9e1cf2d2021-06-30 18:49:02 -07001048 if (pmd_swp_uffd_wp(*src_pmd))
1049 pmd = pmd_swp_mkuffd_wp(pmd);
Zi Yan84c3fc42017-09-08 16:11:01 -07001050 set_pmd_at(src_mm, addr, src_pmd, pmd);
1051 }
Zi Yandd8a67f2017-11-02 15:59:47 -07001052 add_mm_counter(dst_mm, MM_ANONPAGES, HPAGE_PMD_NR);
Kirill A. Shutemovaf5b0f62017-11-15 17:35:40 -08001053 mm_inc_nr_ptes(dst_mm);
Zi Yandd8a67f2017-11-02 15:59:47 -07001054 pgtable_trans_huge_deposit(dst_mm, dst_pmd, pgtable);
Peter Xu9e1cf2d2021-06-30 18:49:02 -07001055 if (!userfaultfd_wp(dst_vma))
1056 pmd = pmd_swp_clear_uffd_wp(pmd);
Zi Yan84c3fc42017-09-08 16:11:01 -07001057 set_pmd_at(dst_mm, addr, dst_pmd, pmd);
1058 ret = 0;
1059 goto out_unlock;
1060 }
1061#endif
1062
Kirill A. Shutemov628d47c2016-07-26 15:25:42 -07001063 if (unlikely(!pmd_trans_huge(pmd))) {
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001064 pte_free(dst_mm, pgtable);
1065 goto out_unlock;
1066 }
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -08001067 /*
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001068 * When page table lock is held, the huge zero pmd should not be
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -08001069 * under splitting since we don't split the page itself, only pmd to
1070 * a page table.
1071 */
1072 if (is_huge_zero_pmd(pmd)) {
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -08001073 /*
1074 * get_huge_zero_page() will never allocate a new page here,
1075 * since we already have a zero page to copy. It just takes a
1076 * reference.
1077 */
Peter Xu84ff5f62021-06-30 18:48:59 -07001078 mm_get_huge_zero_page(dst_mm);
1079 goto out_zero_page;
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -08001080 }
Mel Gormande466bd2013-12-18 17:08:42 -08001081
Kirill A. Shutemov628d47c2016-07-26 15:25:42 -07001082 src_page = pmd_page(pmd);
1083 VM_BUG_ON_PAGE(!PageHead(src_page), src_page);
Peter Xud0420352020-09-25 18:26:00 -04001084
1085 /*
1086 * If this page is a potentially pinned page, split and retry the fault
1087 * with smaller page size. Normally this should not happen because the
1088 * userspace should use MADV_DONTFORK upon pinned regions. This is a
1089 * best effort that the pinned pages won't be replaced by another
1090 * random page during the coming copy-on-write.
1091 */
Peter Xu9e1cf2d2021-06-30 18:49:02 -07001092 if (unlikely(is_cow_mapping(src_vma->vm_flags) &&
Peter Xud0420352020-09-25 18:26:00 -04001093 atomic_read(&src_mm->has_pinned) &&
1094 page_maybe_dma_pinned(src_page))) {
1095 pte_free(dst_mm, pgtable);
1096 spin_unlock(src_ptl);
1097 spin_unlock(dst_ptl);
Peter Xu9e1cf2d2021-06-30 18:49:02 -07001098 __split_huge_pmd(src_vma, src_pmd, addr, false, NULL);
Peter Xud0420352020-09-25 18:26:00 -04001099 return -EAGAIN;
1100 }
1101
Kirill A. Shutemov628d47c2016-07-26 15:25:42 -07001102 get_page(src_page);
1103 page_dup_rmap(src_page, true);
1104 add_mm_counter(dst_mm, MM_ANONPAGES, HPAGE_PMD_NR);
Peter Xu84ff5f62021-06-30 18:48:59 -07001105out_zero_page:
Kirill A. Shutemovc4812902017-11-15 17:35:37 -08001106 mm_inc_nr_ptes(dst_mm);
Kirill A. Shutemov628d47c2016-07-26 15:25:42 -07001107 pgtable_trans_huge_deposit(dst_mm, dst_pmd, pgtable);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001108 pmdp_set_wrprotect(src_mm, addr, src_pmd);
Peter Xu9e1cf2d2021-06-30 18:49:02 -07001109 if (!userfaultfd_wp(dst_vma))
1110 pmd = pmd_clear_uffd_wp(pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001111 pmd = pmd_mkold(pmd_wrprotect(pmd));
1112 set_pmd_at(dst_mm, addr, dst_pmd, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001113
1114 ret = 0;
1115out_unlock:
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001116 spin_unlock(src_ptl);
1117 spin_unlock(dst_ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001118out:
1119 return ret;
1120}
1121
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001122#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
1123static void touch_pud(struct vm_area_struct *vma, unsigned long addr,
Kirill A. Shutemova8f97362017-11-27 06:21:25 +03001124 pud_t *pud, int flags)
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001125{
1126 pud_t _pud;
1127
Kirill A. Shutemova8f97362017-11-27 06:21:25 +03001128 _pud = pud_mkyoung(*pud);
1129 if (flags & FOLL_WRITE)
1130 _pud = pud_mkdirty(_pud);
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001131 if (pudp_set_access_flags(vma, addr & HPAGE_PUD_MASK,
Kirill A. Shutemova8f97362017-11-27 06:21:25 +03001132 pud, _pud, flags & FOLL_WRITE))
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001133 update_mmu_cache_pud(vma, addr, pud);
1134}
1135
1136struct page *follow_devmap_pud(struct vm_area_struct *vma, unsigned long addr,
Keith Buschdf06b372018-10-26 15:10:28 -07001137 pud_t *pud, int flags, struct dev_pagemap **pgmap)
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001138{
1139 unsigned long pfn = pud_pfn(*pud);
1140 struct mm_struct *mm = vma->vm_mm;
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001141 struct page *page;
1142
1143 assert_spin_locked(pud_lockptr(mm, pud));
1144
Linus Torvaldsf6f37322017-12-15 18:53:22 -08001145 if (flags & FOLL_WRITE && !pud_write(*pud))
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001146 return NULL;
1147
John Hubbard3faa52c2020-04-01 21:05:29 -07001148 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
1149 if (WARN_ON_ONCE((flags & (FOLL_PIN | FOLL_GET)) ==
1150 (FOLL_PIN | FOLL_GET)))
1151 return NULL;
1152
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001153 if (pud_present(*pud) && pud_devmap(*pud))
1154 /* pass */;
1155 else
1156 return NULL;
1157
1158 if (flags & FOLL_TOUCH)
Kirill A. Shutemova8f97362017-11-27 06:21:25 +03001159 touch_pud(vma, addr, pud, flags);
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001160
1161 /*
1162 * device mapped pages can only be returned if the
1163 * caller will manage the page reference count.
John Hubbard3faa52c2020-04-01 21:05:29 -07001164 *
1165 * At least one of FOLL_GET | FOLL_PIN must be set, so assert that here:
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001166 */
John Hubbard3faa52c2020-04-01 21:05:29 -07001167 if (!(flags & (FOLL_GET | FOLL_PIN)))
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001168 return ERR_PTR(-EEXIST);
1169
1170 pfn += (addr & ~PUD_MASK) >> PAGE_SHIFT;
Keith Buschdf06b372018-10-26 15:10:28 -07001171 *pgmap = get_dev_pagemap(pfn, *pgmap);
1172 if (!*pgmap)
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001173 return ERR_PTR(-EFAULT);
1174 page = pfn_to_page(pfn);
John Hubbard3faa52c2020-04-01 21:05:29 -07001175 if (!try_grab_page(page, flags))
1176 page = ERR_PTR(-ENOMEM);
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001177
1178 return page;
1179}
1180
1181int copy_huge_pud(struct mm_struct *dst_mm, struct mm_struct *src_mm,
1182 pud_t *dst_pud, pud_t *src_pud, unsigned long addr,
1183 struct vm_area_struct *vma)
1184{
1185 spinlock_t *dst_ptl, *src_ptl;
1186 pud_t pud;
1187 int ret;
1188
1189 dst_ptl = pud_lock(dst_mm, dst_pud);
1190 src_ptl = pud_lockptr(src_mm, src_pud);
1191 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
1192
1193 ret = -EAGAIN;
1194 pud = *src_pud;
1195 if (unlikely(!pud_trans_huge(pud) && !pud_devmap(pud)))
1196 goto out_unlock;
1197
1198 /*
1199 * When page table lock is held, the huge zero pud should not be
1200 * under splitting since we don't split the page itself, only pud to
1201 * a page table.
1202 */
1203 if (is_huge_zero_pud(pud)) {
1204 /* No huge zero pud yet */
1205 }
1206
Peter Xud0420352020-09-25 18:26:00 -04001207 /* Please refer to comments in copy_huge_pmd() */
1208 if (unlikely(is_cow_mapping(vma->vm_flags) &&
1209 atomic_read(&src_mm->has_pinned) &&
1210 page_maybe_dma_pinned(pud_page(pud)))) {
1211 spin_unlock(src_ptl);
1212 spin_unlock(dst_ptl);
1213 __split_huge_pud(vma, src_pud, addr);
1214 return -EAGAIN;
1215 }
1216
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001217 pudp_set_wrprotect(src_mm, addr, src_pud);
1218 pud = pud_mkold(pud_wrprotect(pud));
1219 set_pud_at(dst_mm, addr, dst_pud, pud);
1220
1221 ret = 0;
1222out_unlock:
1223 spin_unlock(src_ptl);
1224 spin_unlock(dst_ptl);
1225 return ret;
1226}
1227
1228void huge_pud_set_accessed(struct vm_fault *vmf, pud_t orig_pud)
1229{
1230 pud_t entry;
1231 unsigned long haddr;
1232 bool write = vmf->flags & FAULT_FLAG_WRITE;
1233
1234 vmf->ptl = pud_lock(vmf->vma->vm_mm, vmf->pud);
1235 if (unlikely(!pud_same(*vmf->pud, orig_pud)))
1236 goto unlock;
1237
1238 entry = pud_mkyoung(orig_pud);
1239 if (write)
1240 entry = pud_mkdirty(entry);
1241 haddr = vmf->address & HPAGE_PUD_MASK;
1242 if (pudp_set_access_flags(vmf->vma, haddr, vmf->pud, entry, write))
1243 update_mmu_cache_pud(vmf->vma, vmf->address, vmf->pud);
1244
1245unlock:
1246 spin_unlock(vmf->ptl);
1247}
1248#endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
1249
Jan Kara82b0f8c2016-12-14 15:06:58 -08001250void huge_pmd_set_accessed(struct vm_fault *vmf, pmd_t orig_pmd)
Will Deacona1dd4502012-12-11 16:01:27 -08001251{
1252 pmd_t entry;
1253 unsigned long haddr;
Minchan Kim20f664a2017-01-10 16:57:51 -08001254 bool write = vmf->flags & FAULT_FLAG_WRITE;
Will Deacona1dd4502012-12-11 16:01:27 -08001255
Jan Kara82b0f8c2016-12-14 15:06:58 -08001256 vmf->ptl = pmd_lock(vmf->vma->vm_mm, vmf->pmd);
1257 if (unlikely(!pmd_same(*vmf->pmd, orig_pmd)))
Will Deacona1dd4502012-12-11 16:01:27 -08001258 goto unlock;
1259
1260 entry = pmd_mkyoung(orig_pmd);
Minchan Kim20f664a2017-01-10 16:57:51 -08001261 if (write)
1262 entry = pmd_mkdirty(entry);
Jan Kara82b0f8c2016-12-14 15:06:58 -08001263 haddr = vmf->address & HPAGE_PMD_MASK;
Minchan Kim20f664a2017-01-10 16:57:51 -08001264 if (pmdp_set_access_flags(vmf->vma, haddr, vmf->pmd, entry, write))
Jan Kara82b0f8c2016-12-14 15:06:58 -08001265 update_mmu_cache_pmd(vmf->vma, vmf->address, vmf->pmd);
Will Deacona1dd4502012-12-11 16:01:27 -08001266
1267unlock:
Jan Kara82b0f8c2016-12-14 15:06:58 -08001268 spin_unlock(vmf->ptl);
Will Deacona1dd4502012-12-11 16:01:27 -08001269}
1270
Souptick Joarder2b740302018-08-23 17:01:36 -07001271vm_fault_t do_huge_pmd_wp_page(struct vm_fault *vmf, pmd_t orig_pmd)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001272{
Jan Kara82b0f8c2016-12-14 15:06:58 -08001273 struct vm_area_struct *vma = vmf->vma;
Kirill A. Shutemov3917c802020-06-03 16:00:27 -07001274 struct page *page;
Jan Kara82b0f8c2016-12-14 15:06:58 -08001275 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001276
Jan Kara82b0f8c2016-12-14 15:06:58 -08001277 vmf->ptl = pmd_lockptr(vma->vm_mm, vmf->pmd);
Sasha Levin81d1b092014-10-09 15:28:10 -07001278 VM_BUG_ON_VMA(!vma->anon_vma, vma);
Kirill A. Shutemov3917c802020-06-03 16:00:27 -07001279
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001280 if (is_huge_zero_pmd(orig_pmd))
Kirill A. Shutemov3917c802020-06-03 16:00:27 -07001281 goto fallback;
1282
Jan Kara82b0f8c2016-12-14 15:06:58 -08001283 spin_lock(vmf->ptl);
Kirill A. Shutemov3917c802020-06-03 16:00:27 -07001284
1285 if (unlikely(!pmd_same(*vmf->pmd, orig_pmd))) {
1286 spin_unlock(vmf->ptl);
1287 return 0;
1288 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001289
1290 page = pmd_page(orig_pmd);
Sasha Levin309381fea2014-01-23 15:52:54 -08001291 VM_BUG_ON_PAGE(!PageCompound(page) || !PageHead(page), page);
Kirill A. Shutemov3917c802020-06-03 16:00:27 -07001292
1293 /* Lock page for reuse_swap_page() */
Huang Yingba3c4ce2017-09-06 16:22:19 -07001294 if (!trylock_page(page)) {
1295 get_page(page);
1296 spin_unlock(vmf->ptl);
1297 lock_page(page);
1298 spin_lock(vmf->ptl);
1299 if (unlikely(!pmd_same(*vmf->pmd, orig_pmd))) {
Kirill A. Shutemov3917c802020-06-03 16:00:27 -07001300 spin_unlock(vmf->ptl);
Huang Yingba3c4ce2017-09-06 16:22:19 -07001301 unlock_page(page);
1302 put_page(page);
Kirill A. Shutemov3917c802020-06-03 16:00:27 -07001303 return 0;
Huang Yingba3c4ce2017-09-06 16:22:19 -07001304 }
1305 put_page(page);
1306 }
Kirill A. Shutemov3917c802020-06-03 16:00:27 -07001307
1308 /*
1309 * We can only reuse the page if nobody else maps the huge page or it's
1310 * part.
1311 */
Huang Yingba3c4ce2017-09-06 16:22:19 -07001312 if (reuse_swap_page(page, NULL)) {
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001313 pmd_t entry;
1314 entry = pmd_mkyoung(orig_pmd);
Linus Torvaldsf55e1012017-11-29 09:01:01 -08001315 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
Kirill A. Shutemov3917c802020-06-03 16:00:27 -07001316 if (pmdp_set_access_flags(vma, haddr, vmf->pmd, entry, 1))
Jan Kara82b0f8c2016-12-14 15:06:58 -08001317 update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
Huang Yingba3c4ce2017-09-06 16:22:19 -07001318 unlock_page(page);
Jan Kara82b0f8c2016-12-14 15:06:58 -08001319 spin_unlock(vmf->ptl);
Kirill A. Shutemov3917c802020-06-03 16:00:27 -07001320 return VM_FAULT_WRITE;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001321 }
Kirill A. Shutemov3917c802020-06-03 16:00:27 -07001322
1323 unlock_page(page);
Jan Kara82b0f8c2016-12-14 15:06:58 -08001324 spin_unlock(vmf->ptl);
Kirill A. Shutemov3917c802020-06-03 16:00:27 -07001325fallback:
1326 __split_huge_pmd(vma, vmf->pmd, vmf->address, false, NULL);
1327 return VM_FAULT_FALLBACK;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001328}
1329
Keno Fischer8310d482017-01-24 15:17:48 -08001330/*
Peter Xua308c712020-08-21 19:49:57 -04001331 * FOLL_FORCE can write to even unwritable pmd's, but only
1332 * after we've gone through a COW cycle and they are dirty.
Keno Fischer8310d482017-01-24 15:17:48 -08001333 */
1334static inline bool can_follow_write_pmd(pmd_t pmd, unsigned int flags)
1335{
Peter Xua308c712020-08-21 19:49:57 -04001336 return pmd_write(pmd) ||
1337 ((flags & FOLL_FORCE) && (flags & FOLL_COW) && pmd_dirty(pmd));
Keno Fischer8310d482017-01-24 15:17:48 -08001338}
1339
David Rientjesb676b292012-10-08 16:34:03 -07001340struct page *follow_trans_huge_pmd(struct vm_area_struct *vma,
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001341 unsigned long addr,
1342 pmd_t *pmd,
1343 unsigned int flags)
1344{
David Rientjesb676b292012-10-08 16:34:03 -07001345 struct mm_struct *mm = vma->vm_mm;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001346 struct page *page = NULL;
1347
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001348 assert_spin_locked(pmd_lockptr(mm, pmd));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001349
Keno Fischer8310d482017-01-24 15:17:48 -08001350 if (flags & FOLL_WRITE && !can_follow_write_pmd(*pmd, flags))
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001351 goto out;
1352
Kirill A. Shutemov85facf22013-02-04 14:28:42 -08001353 /* Avoid dumping huge zero page */
1354 if ((flags & FOLL_DUMP) && is_huge_zero_pmd(*pmd))
1355 return ERR_PTR(-EFAULT);
1356
Mel Gorman2b4847e2013-12-18 17:08:32 -08001357 /* Full NUMA hinting faults to serialise migration in fault paths */
Mel Gorman8a0516e2015-02-12 14:58:22 -08001358 if ((flags & FOLL_NUMA) && pmd_protnone(*pmd))
Mel Gorman2b4847e2013-12-18 17:08:32 -08001359 goto out;
1360
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001361 page = pmd_page(*pmd);
Dan Williamsca120cf2016-09-03 10:38:03 -07001362 VM_BUG_ON_PAGE(!PageHead(page) && !is_zone_device_page(page), page);
John Hubbard3faa52c2020-04-01 21:05:29 -07001363
1364 if (!try_grab_page(page, flags))
1365 return ERR_PTR(-ENOMEM);
1366
Dan Williams3565fce2016-01-15 16:56:55 -08001367 if (flags & FOLL_TOUCH)
Kirill A. Shutemova8f97362017-11-27 06:21:25 +03001368 touch_pmd(vma, addr, pmd, flags);
John Hubbard3faa52c2020-04-01 21:05:29 -07001369
Eric B Munsonde60f5f2015-11-05 18:51:36 -08001370 if ((flags & FOLL_MLOCK) && (vma->vm_flags & VM_LOCKED)) {
Kirill A. Shutemove90309c2016-01-15 16:54:33 -08001371 /*
1372 * We don't mlock() pte-mapped THPs. This way we can avoid
1373 * leaking mlocked pages into non-VM_LOCKED VMAs.
1374 *
Kirill A. Shutemov9a73f612016-07-26 15:25:53 -07001375 * For anon THP:
1376 *
Kirill A. Shutemove90309c2016-01-15 16:54:33 -08001377 * In most cases the pmd is the only mapping of the page as we
1378 * break COW for the mlock() -- see gup_flags |= FOLL_WRITE for
1379 * writable private mappings in populate_vma_page_range().
1380 *
1381 * The only scenario when we have the page shared here is if we
1382 * mlocking read-only mapping shared over fork(). We skip
1383 * mlocking such pages.
Kirill A. Shutemov9a73f612016-07-26 15:25:53 -07001384 *
1385 * For file THP:
1386 *
1387 * We can expect PageDoubleMap() to be stable under page lock:
1388 * for file pages we set it in page_add_file_rmap(), which
1389 * requires page to be locked.
Kirill A. Shutemove90309c2016-01-15 16:54:33 -08001390 */
Kirill A. Shutemov9a73f612016-07-26 15:25:53 -07001391
1392 if (PageAnon(page) && compound_mapcount(page) != 1)
1393 goto skip_mlock;
1394 if (PageDoubleMap(page) || !page->mapping)
1395 goto skip_mlock;
1396 if (!trylock_page(page))
1397 goto skip_mlock;
Kirill A. Shutemov9a73f612016-07-26 15:25:53 -07001398 if (page->mapping && !PageDoubleMap(page))
1399 mlock_vma_page(page);
1400 unlock_page(page);
David Rientjesb676b292012-10-08 16:34:03 -07001401 }
Kirill A. Shutemov9a73f612016-07-26 15:25:53 -07001402skip_mlock:
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001403 page += (addr & ~HPAGE_PMD_MASK) >> PAGE_SHIFT;
Dan Williamsca120cf2016-09-03 10:38:03 -07001404 VM_BUG_ON_PAGE(!PageCompound(page) && !is_zone_device_page(page), page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001405
1406out:
1407 return page;
1408}
1409
Mel Gormand10e63f2012-10-25 14:16:31 +02001410/* NUMA hinting page fault entry point for trans huge pmds */
Souptick Joarder2b740302018-08-23 17:01:36 -07001411vm_fault_t do_huge_pmd_numa_page(struct vm_fault *vmf, pmd_t pmd)
Mel Gormand10e63f2012-10-25 14:16:31 +02001412{
Jan Kara82b0f8c2016-12-14 15:06:58 -08001413 struct vm_area_struct *vma = vmf->vma;
Mel Gormanb8916632013-10-07 11:28:44 +01001414 struct anon_vma *anon_vma = NULL;
Mel Gormanb32967f2012-11-19 12:35:47 +00001415 struct page *page;
Jan Kara82b0f8c2016-12-14 15:06:58 -08001416 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08001417 int page_nid = NUMA_NO_NODE, this_nid = numa_node_id();
Peter Zijlstra90572892013-10-07 11:29:20 +01001418 int target_nid, last_cpupid = -1;
Mel Gorman8191acb2013-10-07 11:28:45 +01001419 bool page_locked;
1420 bool migrated = false;
Mel Gormanb191f9b2015-03-25 15:55:40 -07001421 bool was_writable;
Peter Zijlstra6688cc02013-10-07 11:29:24 +01001422 int flags = 0;
Mel Gormand10e63f2012-10-25 14:16:31 +02001423
Jan Kara82b0f8c2016-12-14 15:06:58 -08001424 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
1425 if (unlikely(!pmd_same(pmd, *vmf->pmd)))
Mel Gormand10e63f2012-10-25 14:16:31 +02001426 goto out_unlock;
1427
Mel Gormande466bd2013-12-18 17:08:42 -08001428 /*
1429 * If there are potential migrations, wait for completion and retry
1430 * without disrupting NUMA hinting information. Do not relock and
1431 * check_same as the page may no longer be mapped.
1432 */
Jan Kara82b0f8c2016-12-14 15:06:58 -08001433 if (unlikely(pmd_trans_migrating(*vmf->pmd))) {
1434 page = pmd_page(*vmf->pmd);
Mark Rutland3c226c62017-06-16 14:02:34 -07001435 if (!get_page_unless_zero(page))
1436 goto out_unlock;
Jan Kara82b0f8c2016-12-14 15:06:58 -08001437 spin_unlock(vmf->ptl);
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001438 put_and_wait_on_page_locked(page);
Mel Gormande466bd2013-12-18 17:08:42 -08001439 goto out;
1440 }
1441
Mel Gormand10e63f2012-10-25 14:16:31 +02001442 page = pmd_page(pmd);
Mel Gormana1a46182013-10-07 11:28:50 +01001443 BUG_ON(is_huge_zero_page(page));
Mel Gorman8191acb2013-10-07 11:28:45 +01001444 page_nid = page_to_nid(page);
Peter Zijlstra90572892013-10-07 11:29:20 +01001445 last_cpupid = page_cpupid_last(page);
Mel Gorman03c5a6e2012-11-02 14:52:48 +00001446 count_vm_numa_event(NUMA_HINT_FAULTS);
Rik van Riel04bb2f92013-10-07 11:29:36 +01001447 if (page_nid == this_nid) {
Mel Gorman03c5a6e2012-11-02 14:52:48 +00001448 count_vm_numa_event(NUMA_HINT_FAULTS_LOCAL);
Rik van Riel04bb2f92013-10-07 11:29:36 +01001449 flags |= TNF_FAULT_LOCAL;
1450 }
Mel Gorman4daae3b2012-11-02 11:33:45 +00001451
Mel Gormanbea66fb2015-03-25 15:55:37 -07001452 /* See similar comment in do_numa_page for explanation */
Aneesh Kumar K.V288bc542017-02-24 14:59:16 -08001453 if (!pmd_savedwrite(pmd))
Peter Zijlstra6688cc02013-10-07 11:29:24 +01001454 flags |= TNF_NO_GROUP;
1455
1456 /*
Mel Gormanff9042b2013-10-07 11:28:43 +01001457 * Acquire the page lock to serialise THP migrations but avoid dropping
1458 * page_table_lock if at all possible
1459 */
Mel Gormanb8916632013-10-07 11:28:44 +01001460 page_locked = trylock_page(page);
1461 target_nid = mpol_misplaced(page, vma, haddr);
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08001462 if (target_nid == NUMA_NO_NODE) {
Mel Gormanb8916632013-10-07 11:28:44 +01001463 /* If the page was locked, there are no parallel migrations */
Mel Gormana54a4072013-10-07 11:28:46 +01001464 if (page_locked)
Mel Gormanb8916632013-10-07 11:28:44 +01001465 goto clear_pmdnuma;
Mel Gorman2b4847e2013-12-18 17:08:32 -08001466 }
Mel Gorman4daae3b2012-11-02 11:33:45 +00001467
Mel Gormande466bd2013-12-18 17:08:42 -08001468 /* Migration could have started since the pmd_trans_migrating check */
Mel Gorman2b4847e2013-12-18 17:08:32 -08001469 if (!page_locked) {
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08001470 page_nid = NUMA_NO_NODE;
Mark Rutland3c226c62017-06-16 14:02:34 -07001471 if (!get_page_unless_zero(page))
1472 goto out_unlock;
Jan Kara82b0f8c2016-12-14 15:06:58 -08001473 spin_unlock(vmf->ptl);
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001474 put_and_wait_on_page_locked(page);
Mel Gormanb8916632013-10-07 11:28:44 +01001475 goto out;
1476 }
1477
Mel Gorman2b4847e2013-12-18 17:08:32 -08001478 /*
1479 * Page is misplaced. Page lock serialises migrations. Acquire anon_vma
1480 * to serialises splits
1481 */
Mel Gormanb8916632013-10-07 11:28:44 +01001482 get_page(page);
Jan Kara82b0f8c2016-12-14 15:06:58 -08001483 spin_unlock(vmf->ptl);
Mel Gormanb8916632013-10-07 11:28:44 +01001484 anon_vma = page_lock_anon_vma_read(page);
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001485
Peter Zijlstrac69307d2013-10-07 11:28:41 +01001486 /* Confirm the PMD did not change while page_table_lock was released */
Jan Kara82b0f8c2016-12-14 15:06:58 -08001487 spin_lock(vmf->ptl);
1488 if (unlikely(!pmd_same(pmd, *vmf->pmd))) {
Mel Gormanb32967f2012-11-19 12:35:47 +00001489 unlock_page(page);
1490 put_page(page);
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08001491 page_nid = NUMA_NO_NODE;
Mel Gormanb32967f2012-11-19 12:35:47 +00001492 goto out_unlock;
1493 }
Mel Gormanff9042b2013-10-07 11:28:43 +01001494
Mel Gormanc3a489c2013-12-18 17:08:38 -08001495 /* Bail if we fail to protect against THP splits for any reason */
1496 if (unlikely(!anon_vma)) {
1497 put_page(page);
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08001498 page_nid = NUMA_NO_NODE;
Mel Gormanc3a489c2013-12-18 17:08:38 -08001499 goto clear_pmdnuma;
1500 }
1501
Mel Gormana54a4072013-10-07 11:28:46 +01001502 /*
Peter Zijlstra8b1b4362017-06-07 18:05:07 +02001503 * Since we took the NUMA fault, we must have observed the !accessible
1504 * bit. Make sure all other CPUs agree with that, to avoid them
1505 * modifying the page we're about to migrate.
1506 *
1507 * Must be done under PTL such that we'll observe the relevant
Peter Zijlstraccde85b2017-08-11 14:29:01 +02001508 * inc_tlb_flush_pending().
1509 *
1510 * We are not sure a pending tlb flush here is for a huge page
1511 * mapping or not. Hence use the tlb range variant
Peter Zijlstra8b1b4362017-06-07 18:05:07 +02001512 */
Andrea Arcangeli7066f0f2018-10-26 15:10:40 -07001513 if (mm_tlb_flush_pending(vma->vm_mm)) {
Peter Zijlstraccde85b2017-08-11 14:29:01 +02001514 flush_tlb_range(vma, haddr, haddr + HPAGE_PMD_SIZE);
Andrea Arcangeli7066f0f2018-10-26 15:10:40 -07001515 /*
1516 * change_huge_pmd() released the pmd lock before
1517 * invalidating the secondary MMUs sharing the primary
1518 * MMU pagetables (with ->invalidate_range()). The
1519 * mmu_notifier_invalidate_range_end() (which
1520 * internally calls ->invalidate_range()) in
1521 * change_pmd_range() will run after us, so we can't
1522 * rely on it here and we need an explicit invalidate.
1523 */
1524 mmu_notifier_invalidate_range(vma->vm_mm, haddr,
1525 haddr + HPAGE_PMD_SIZE);
1526 }
Peter Zijlstra8b1b4362017-06-07 18:05:07 +02001527
1528 /*
Mel Gormana54a4072013-10-07 11:28:46 +01001529 * Migrate the THP to the requested node, returns with page unlocked
Mel Gorman8a0516e2015-02-12 14:58:22 -08001530 * and access rights restored.
Mel Gormana54a4072013-10-07 11:28:46 +01001531 */
Jan Kara82b0f8c2016-12-14 15:06:58 -08001532 spin_unlock(vmf->ptl);
Peter Zijlstra8b1b4362017-06-07 18:05:07 +02001533
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -07001534 migrated = migrate_misplaced_transhuge_page(vma->vm_mm, vma,
Jan Kara82b0f8c2016-12-14 15:06:58 -08001535 vmf->pmd, pmd, vmf->address, page, target_nid);
Peter Zijlstra6688cc02013-10-07 11:29:24 +01001536 if (migrated) {
1537 flags |= TNF_MIGRATED;
Mel Gorman8191acb2013-10-07 11:28:45 +01001538 page_nid = target_nid;
Mel Gorman074c2382015-03-25 15:55:42 -07001539 } else
1540 flags |= TNF_MIGRATE_FAIL;
Mel Gormanb32967f2012-11-19 12:35:47 +00001541
Mel Gorman8191acb2013-10-07 11:28:45 +01001542 goto out;
Mel Gorman4daae3b2012-11-02 11:33:45 +00001543clear_pmdnuma:
Mel Gormana54a4072013-10-07 11:28:46 +01001544 BUG_ON(!PageLocked(page));
Aneesh Kumar K.V288bc542017-02-24 14:59:16 -08001545 was_writable = pmd_savedwrite(pmd);
Mel Gorman4d942462015-02-12 14:58:28 -08001546 pmd = pmd_modify(pmd, vma->vm_page_prot);
Mel Gormanb7b04002015-03-25 15:55:45 -07001547 pmd = pmd_mkyoung(pmd);
Mel Gormanb191f9b2015-03-25 15:55:40 -07001548 if (was_writable)
1549 pmd = pmd_mkwrite(pmd);
Jan Kara82b0f8c2016-12-14 15:06:58 -08001550 set_pmd_at(vma->vm_mm, haddr, vmf->pmd, pmd);
1551 update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
Mel Gormana54a4072013-10-07 11:28:46 +01001552 unlock_page(page);
Mel Gormand10e63f2012-10-25 14:16:31 +02001553out_unlock:
Jan Kara82b0f8c2016-12-14 15:06:58 -08001554 spin_unlock(vmf->ptl);
Mel Gormanb8916632013-10-07 11:28:44 +01001555
1556out:
1557 if (anon_vma)
1558 page_unlock_anon_vma_read(anon_vma);
1559
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08001560 if (page_nid != NUMA_NO_NODE)
Jan Kara82b0f8c2016-12-14 15:06:58 -08001561 task_numa_fault(last_cpupid, page_nid, HPAGE_PMD_NR,
Aneesh Kumar K.V9a8b3002017-02-24 14:59:56 -08001562 flags);
Mel Gorman8191acb2013-10-07 11:28:45 +01001563
Mel Gormand10e63f2012-10-25 14:16:31 +02001564 return 0;
1565}
1566
Huang Ying319904a2016-07-28 15:48:03 -07001567/*
1568 * Return true if we do MADV_FREE successfully on entire pmd page.
1569 * Otherwise, return false.
1570 */
1571bool madvise_free_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
Minchan Kimb8d3c4c2016-01-15 16:55:42 -08001572 pmd_t *pmd, unsigned long addr, unsigned long next)
Minchan Kimb8d3c4c2016-01-15 16:55:42 -08001573{
1574 spinlock_t *ptl;
1575 pmd_t orig_pmd;
1576 struct page *page;
1577 struct mm_struct *mm = tlb->mm;
Huang Ying319904a2016-07-28 15:48:03 -07001578 bool ret = false;
Minchan Kimb8d3c4c2016-01-15 16:55:42 -08001579
Peter Zijlstraed6a7932018-08-31 14:46:08 +02001580 tlb_change_page_size(tlb, HPAGE_PMD_SIZE);
Aneesh Kumar K.V07e32662016-12-12 16:42:40 -08001581
Kirill A. Shutemovb6ec57f2016-01-21 16:40:25 -08001582 ptl = pmd_trans_huge_lock(pmd, vma);
1583 if (!ptl)
Linus Torvalds25eedab2016-01-17 18:33:15 -08001584 goto out_unlocked;
Minchan Kimb8d3c4c2016-01-15 16:55:42 -08001585
1586 orig_pmd = *pmd;
Huang Ying319904a2016-07-28 15:48:03 -07001587 if (is_huge_zero_pmd(orig_pmd))
Minchan Kimb8d3c4c2016-01-15 16:55:42 -08001588 goto out;
Minchan Kimb8d3c4c2016-01-15 16:55:42 -08001589
Zi Yan84c3fc42017-09-08 16:11:01 -07001590 if (unlikely(!pmd_present(orig_pmd))) {
1591 VM_BUG_ON(thp_migration_supported() &&
1592 !is_pmd_migration_entry(orig_pmd));
1593 goto out;
1594 }
1595
Minchan Kimb8d3c4c2016-01-15 16:55:42 -08001596 page = pmd_page(orig_pmd);
1597 /*
1598 * If other processes are mapping this page, we couldn't discard
1599 * the page unless they all do MADV_FREE so let's skip the page.
1600 */
Miaohe Lin31be4ea2021-06-30 18:47:57 -07001601 if (total_mapcount(page) != 1)
Minchan Kimb8d3c4c2016-01-15 16:55:42 -08001602 goto out;
1603
1604 if (!trylock_page(page))
1605 goto out;
1606
1607 /*
1608 * If user want to discard part-pages of THP, split it so MADV_FREE
1609 * will deactivate only them.
1610 */
1611 if (next - addr != HPAGE_PMD_SIZE) {
1612 get_page(page);
1613 spin_unlock(ptl);
Huang Ying9818b8c2016-07-14 12:07:12 -07001614 split_huge_page(page);
Minchan Kimb8d3c4c2016-01-15 16:55:42 -08001615 unlock_page(page);
Kirill A. Shutemovbbf29ff2017-07-06 15:35:28 -07001616 put_page(page);
Minchan Kimb8d3c4c2016-01-15 16:55:42 -08001617 goto out_unlocked;
1618 }
1619
1620 if (PageDirty(page))
1621 ClearPageDirty(page);
1622 unlock_page(page);
1623
Minchan Kimb8d3c4c2016-01-15 16:55:42 -08001624 if (pmd_young(orig_pmd) || pmd_dirty(orig_pmd)) {
Kirill A. Shutemov58ceeb62017-04-13 14:56:26 -07001625 pmdp_invalidate(vma, addr, pmd);
Minchan Kimb8d3c4c2016-01-15 16:55:42 -08001626 orig_pmd = pmd_mkold(orig_pmd);
1627 orig_pmd = pmd_mkclean(orig_pmd);
1628
1629 set_pmd_at(mm, addr, pmd, orig_pmd);
1630 tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
1631 }
Shaohua Li802a3a92017-05-03 14:52:32 -07001632
1633 mark_page_lazyfree(page);
Huang Ying319904a2016-07-28 15:48:03 -07001634 ret = true;
Minchan Kimb8d3c4c2016-01-15 16:55:42 -08001635out:
1636 spin_unlock(ptl);
1637out_unlocked:
1638 return ret;
1639}
1640
Aneesh Kumar K.V953c66c2016-12-12 16:44:32 -08001641static inline void zap_deposited_table(struct mm_struct *mm, pmd_t *pmd)
1642{
1643 pgtable_t pgtable;
1644
1645 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
1646 pte_free(mm, pgtable);
Kirill A. Shutemovc4812902017-11-15 17:35:37 -08001647 mm_dec_nr_ptes(mm);
Aneesh Kumar K.V953c66c2016-12-12 16:44:32 -08001648}
1649
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001650int zap_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
Shaohua Lif21760b2012-01-12 17:19:16 -08001651 pmd_t *pmd, unsigned long addr)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001652{
Kirill A. Shutemovda146762015-09-08 14:59:31 -07001653 pmd_t orig_pmd;
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001654 spinlock_t *ptl;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001655
Peter Zijlstraed6a7932018-08-31 14:46:08 +02001656 tlb_change_page_size(tlb, HPAGE_PMD_SIZE);
Aneesh Kumar K.V07e32662016-12-12 16:42:40 -08001657
Kirill A. Shutemovb6ec57f2016-01-21 16:40:25 -08001658 ptl = __pmd_trans_huge_lock(pmd, vma);
1659 if (!ptl)
Kirill A. Shutemovda146762015-09-08 14:59:31 -07001660 return 0;
1661 /*
1662 * For architectures like ppc64 we look at deposited pgtable
1663 * when calling pmdp_huge_get_and_clear. So do the
1664 * pgtable_trans_huge_withdraw after finishing pmdp related
1665 * operations.
1666 */
Aneesh Kumar K.V93a98692020-05-05 12:47:28 +05301667 orig_pmd = pmdp_huge_get_and_clear_full(vma, addr, pmd,
1668 tlb->fullmm);
Kirill A. Shutemovda146762015-09-08 14:59:31 -07001669 tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
Thomas Hellstrom (VMware)2484ca92020-03-24 18:47:17 +01001670 if (vma_is_special_huge(vma)) {
Oliver O'Halloran3b6521f2017-05-08 15:59:43 -07001671 if (arch_needs_pgtable_deposit())
1672 zap_deposited_table(tlb->mm, pmd);
Kirill A. Shutemovda146762015-09-08 14:59:31 -07001673 spin_unlock(ptl);
1674 if (is_huge_zero_pmd(orig_pmd))
Aneesh Kumar K.Vc0f2e172016-12-12 16:42:31 -08001675 tlb_remove_page_size(tlb, pmd_page(orig_pmd), HPAGE_PMD_SIZE);
Kirill A. Shutemovda146762015-09-08 14:59:31 -07001676 } else if (is_huge_zero_pmd(orig_pmd)) {
Oliver O'Halloranc14a6eb2017-05-08 15:59:40 -07001677 zap_deposited_table(tlb->mm, pmd);
Kirill A. Shutemovda146762015-09-08 14:59:31 -07001678 spin_unlock(ptl);
Aneesh Kumar K.Vc0f2e172016-12-12 16:42:31 -08001679 tlb_remove_page_size(tlb, pmd_page(orig_pmd), HPAGE_PMD_SIZE);
Kirill A. Shutemovda146762015-09-08 14:59:31 -07001680 } else {
Zi Yan616b8372017-09-08 16:10:57 -07001681 struct page *page = NULL;
1682 int flush_needed = 1;
1683
1684 if (pmd_present(orig_pmd)) {
1685 page = pmd_page(orig_pmd);
1686 page_remove_rmap(page, true);
1687 VM_BUG_ON_PAGE(page_mapcount(page) < 0, page);
1688 VM_BUG_ON_PAGE(!PageHead(page), page);
1689 } else if (thp_migration_supported()) {
1690 swp_entry_t entry;
1691
1692 VM_BUG_ON(!is_pmd_migration_entry(orig_pmd));
1693 entry = pmd_to_swp_entry(orig_pmd);
1694 page = pfn_to_page(swp_offset(entry));
1695 flush_needed = 0;
1696 } else
1697 WARN_ONCE(1, "Non present huge pmd without pmd migration enabled!");
1698
Kirill A. Shutemovb5072382016-07-26 15:25:34 -07001699 if (PageAnon(page)) {
Oliver O'Halloranc14a6eb2017-05-08 15:59:40 -07001700 zap_deposited_table(tlb->mm, pmd);
Kirill A. Shutemovb5072382016-07-26 15:25:34 -07001701 add_mm_counter(tlb->mm, MM_ANONPAGES, -HPAGE_PMD_NR);
1702 } else {
Aneesh Kumar K.V953c66c2016-12-12 16:44:32 -08001703 if (arch_needs_pgtable_deposit())
1704 zap_deposited_table(tlb->mm, pmd);
Yang Shifadae292018-08-17 15:44:55 -07001705 add_mm_counter(tlb->mm, mm_counter_file(page), -HPAGE_PMD_NR);
Kirill A. Shutemovb5072382016-07-26 15:25:34 -07001706 }
Zi Yan616b8372017-09-08 16:10:57 -07001707
Kirill A. Shutemovda146762015-09-08 14:59:31 -07001708 spin_unlock(ptl);
Zi Yan616b8372017-09-08 16:10:57 -07001709 if (flush_needed)
1710 tlb_remove_page_size(tlb, page, HPAGE_PMD_SIZE);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001711 }
Kirill A. Shutemovda146762015-09-08 14:59:31 -07001712 return 1;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001713}
1714
Aneesh Kumar K.V1dd38b62016-12-12 16:44:29 -08001715#ifndef pmd_move_must_withdraw
1716static inline int pmd_move_must_withdraw(spinlock_t *new_pmd_ptl,
1717 spinlock_t *old_pmd_ptl,
1718 struct vm_area_struct *vma)
1719{
1720 /*
1721 * With split pmd lock we also need to move preallocated
1722 * PTE page table if new_pmd is on different PMD page table.
1723 *
1724 * We also don't deposit and withdraw tables for file pages.
1725 */
1726 return (new_pmd_ptl != old_pmd_ptl) && vma_is_anonymous(vma);
1727}
1728#endif
1729
Naoya Horiguchiab6e3d02017-09-08 16:11:04 -07001730static pmd_t move_soft_dirty_pmd(pmd_t pmd)
1731{
1732#ifdef CONFIG_MEM_SOFT_DIRTY
1733 if (unlikely(is_pmd_migration_entry(pmd)))
1734 pmd = pmd_swp_mksoft_dirty(pmd);
1735 else if (pmd_present(pmd))
1736 pmd = pmd_mksoft_dirty(pmd);
1737#endif
1738 return pmd;
1739}
1740
Hugh Dickinsbf8616d2016-05-19 17:12:54 -07001741bool move_huge_pmd(struct vm_area_struct *vma, unsigned long old_addr,
Wei Yangb8aa9d92020-08-06 23:23:40 -07001742 unsigned long new_addr, pmd_t *old_pmd, pmd_t *new_pmd)
Andrea Arcangeli37a1c492011-10-31 17:08:30 -07001743{
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001744 spinlock_t *old_ptl, *new_ptl;
Andrea Arcangeli37a1c492011-10-31 17:08:30 -07001745 pmd_t pmd;
Andrea Arcangeli37a1c492011-10-31 17:08:30 -07001746 struct mm_struct *mm = vma->vm_mm;
Aaron Lu5d190422016-11-10 17:16:33 +08001747 bool force_flush = false;
Andrea Arcangeli37a1c492011-10-31 17:08:30 -07001748
Andrea Arcangeli37a1c492011-10-31 17:08:30 -07001749 /*
1750 * The destination pmd shouldn't be established, free_pgtables()
1751 * should have release it.
1752 */
1753 if (WARN_ON(!pmd_none(*new_pmd))) {
1754 VM_BUG_ON(pmd_trans_huge(*new_pmd));
Kirill A. Shutemov4b471e82016-01-15 16:53:39 -08001755 return false;
Andrea Arcangeli37a1c492011-10-31 17:08:30 -07001756 }
1757
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001758 /*
1759 * We don't have to worry about the ordering of src and dst
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001760 * ptlocks because exclusive mmap_lock prevents deadlock.
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001761 */
Kirill A. Shutemovb6ec57f2016-01-21 16:40:25 -08001762 old_ptl = __pmd_trans_huge_lock(old_pmd, vma);
1763 if (old_ptl) {
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001764 new_ptl = pmd_lockptr(mm, new_pmd);
1765 if (new_ptl != old_ptl)
1766 spin_lock_nested(new_ptl, SINGLE_DEPTH_NESTING);
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -07001767 pmd = pmdp_huge_get_and_clear(mm, old_addr, old_pmd);
Linus Torvaldseb66ae02018-10-12 15:22:59 -07001768 if (pmd_present(pmd))
Aaron Lua2ce2662016-11-29 13:27:31 +08001769 force_flush = true;
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001770 VM_BUG_ON(!pmd_none(*new_pmd));
Kirill A. Shutemov35928062013-12-12 17:12:33 -08001771
Aneesh Kumar K.V1dd38b62016-12-12 16:44:29 -08001772 if (pmd_move_must_withdraw(new_ptl, old_ptl, vma)) {
Aneesh Kumar K.Vb3084f42014-01-13 11:34:24 +05301773 pgtable_t pgtable;
Kirill A. Shutemov35928062013-12-12 17:12:33 -08001774 pgtable = pgtable_trans_huge_withdraw(mm, old_pmd);
1775 pgtable_trans_huge_deposit(mm, new_pmd, pgtable);
Kirill A. Shutemov35928062013-12-12 17:12:33 -08001776 }
Naoya Horiguchiab6e3d02017-09-08 16:11:04 -07001777 pmd = move_soft_dirty_pmd(pmd);
1778 set_pmd_at(mm, new_addr, new_pmd, pmd);
Aaron Lu5d190422016-11-10 17:16:33 +08001779 if (force_flush)
1780 flush_tlb_range(vma, old_addr, old_addr + PMD_SIZE);
Linus Torvaldseb66ae02018-10-12 15:22:59 -07001781 if (new_ptl != old_ptl)
1782 spin_unlock(new_ptl);
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001783 spin_unlock(old_ptl);
Kirill A. Shutemov4b471e82016-01-15 16:53:39 -08001784 return true;
Andrea Arcangeli37a1c492011-10-31 17:08:30 -07001785 }
Kirill A. Shutemov4b471e82016-01-15 16:53:39 -08001786 return false;
Andrea Arcangeli37a1c492011-10-31 17:08:30 -07001787}
1788
Mel Gormanf123d742013-10-07 11:28:49 +01001789/*
1790 * Returns
1791 * - 0 if PMD could not be locked
1792 * - 1 if PMD was locked but protections unchange and TLB flush unnecessary
1793 * - HPAGE_PMD_NR is protections changed and TLB flush necessary
1794 */
Johannes Weinercd7548a2011-01-13 15:47:04 -08001795int change_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
Peter Xu58705442020-04-06 20:05:45 -07001796 unsigned long addr, pgprot_t newprot, unsigned long cp_flags)
Johannes Weinercd7548a2011-01-13 15:47:04 -08001797{
1798 struct mm_struct *mm = vma->vm_mm;
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001799 spinlock_t *ptl;
Kirill A. Shutemov0a85e51d2017-04-13 14:56:17 -07001800 pmd_t entry;
1801 bool preserve_write;
1802 int ret;
Peter Xu58705442020-04-06 20:05:45 -07001803 bool prot_numa = cp_flags & MM_CP_PROT_NUMA;
Peter Xu292924b2020-04-06 20:05:49 -07001804 bool uffd_wp = cp_flags & MM_CP_UFFD_WP;
1805 bool uffd_wp_resolve = cp_flags & MM_CP_UFFD_WP_RESOLVE;
Johannes Weinercd7548a2011-01-13 15:47:04 -08001806
Kirill A. Shutemovb6ec57f2016-01-21 16:40:25 -08001807 ptl = __pmd_trans_huge_lock(pmd, vma);
Kirill A. Shutemov0a85e51d2017-04-13 14:56:17 -07001808 if (!ptl)
1809 return 0;
Mel Gormane944fd62015-02-12 14:58:35 -08001810
Kirill A. Shutemov0a85e51d2017-04-13 14:56:17 -07001811 preserve_write = prot_numa && pmd_write(*pmd);
1812 ret = 1;
Mel Gormane944fd62015-02-12 14:58:35 -08001813
Zi Yan84c3fc42017-09-08 16:11:01 -07001814#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
1815 if (is_swap_pmd(*pmd)) {
1816 swp_entry_t entry = pmd_to_swp_entry(*pmd);
1817
1818 VM_BUG_ON(!is_pmd_migration_entry(*pmd));
1819 if (is_write_migration_entry(entry)) {
1820 pmd_t newpmd;
1821 /*
1822 * A protection check is difficult so
1823 * just be safe and disable write
1824 */
1825 make_migration_entry_read(&entry);
1826 newpmd = swp_entry_to_pmd(entry);
Naoya Horiguchiab6e3d02017-09-08 16:11:04 -07001827 if (pmd_swp_soft_dirty(*pmd))
1828 newpmd = pmd_swp_mksoft_dirty(newpmd);
Peter Xu9e1cf2d2021-06-30 18:49:02 -07001829 if (pmd_swp_uffd_wp(*pmd))
1830 newpmd = pmd_swp_mkuffd_wp(newpmd);
Zi Yan84c3fc42017-09-08 16:11:01 -07001831 set_pmd_at(mm, addr, pmd, newpmd);
1832 }
1833 goto unlock;
1834 }
1835#endif
1836
Kirill A. Shutemov0a85e51d2017-04-13 14:56:17 -07001837 /*
1838 * Avoid trapping faults against the zero page. The read-only
1839 * data is likely to be read-cached on the local CPU and
1840 * local/remote hits to the zero page are not interesting.
1841 */
1842 if (prot_numa && is_huge_zero_pmd(*pmd))
1843 goto unlock;
Johannes Weinercd7548a2011-01-13 15:47:04 -08001844
Kirill A. Shutemov0a85e51d2017-04-13 14:56:17 -07001845 if (prot_numa && pmd_protnone(*pmd))
1846 goto unlock;
1847
Kirill A. Shutemovced10802017-04-13 14:56:20 -07001848 /*
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07001849 * In case prot_numa, we are under mmap_read_lock(mm). It's critical
Kirill A. Shutemovced10802017-04-13 14:56:20 -07001850 * to not clear pmd intermittently to avoid race with MADV_DONTNEED
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07001851 * which is also under mmap_read_lock(mm):
Kirill A. Shutemovced10802017-04-13 14:56:20 -07001852 *
1853 * CPU0: CPU1:
1854 * change_huge_pmd(prot_numa=1)
1855 * pmdp_huge_get_and_clear_notify()
1856 * madvise_dontneed()
1857 * zap_pmd_range()
1858 * pmd_trans_huge(*pmd) == 0 (without ptl)
1859 * // skip the pmd
1860 * set_pmd_at();
1861 * // pmd is re-established
1862 *
1863 * The race makes MADV_DONTNEED miss the huge pmd and don't clear it
1864 * which may break userspace.
1865 *
1866 * pmdp_invalidate() is required to make sure we don't miss
1867 * dirty/young flags set by hardware.
1868 */
Kirill A. Shutemova3cf9882018-01-31 16:18:20 -08001869 entry = pmdp_invalidate(vma, addr, pmd);
Kirill A. Shutemovced10802017-04-13 14:56:20 -07001870
Kirill A. Shutemov0a85e51d2017-04-13 14:56:17 -07001871 entry = pmd_modify(entry, newprot);
1872 if (preserve_write)
1873 entry = pmd_mk_savedwrite(entry);
Peter Xu292924b2020-04-06 20:05:49 -07001874 if (uffd_wp) {
1875 entry = pmd_wrprotect(entry);
1876 entry = pmd_mkuffd_wp(entry);
1877 } else if (uffd_wp_resolve) {
1878 /*
1879 * Leave the write bit to be handled by PF interrupt
1880 * handler, then things like COW could be properly
1881 * handled.
1882 */
1883 entry = pmd_clear_uffd_wp(entry);
1884 }
Kirill A. Shutemov0a85e51d2017-04-13 14:56:17 -07001885 ret = HPAGE_PMD_NR;
1886 set_pmd_at(mm, addr, pmd, entry);
1887 BUG_ON(vma_is_anonymous(vma) && !preserve_write && pmd_write(entry));
1888unlock:
1889 spin_unlock(ptl);
Johannes Weinercd7548a2011-01-13 15:47:04 -08001890 return ret;
1891}
1892
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001893/*
Huang Ying8f19b0c2016-07-26 15:27:04 -07001894 * Returns page table lock pointer if a given pmd maps a thp, NULL otherwise.
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001895 *
Huang Ying8f19b0c2016-07-26 15:27:04 -07001896 * Note that if it returns page table lock pointer, this routine returns without
1897 * unlocking page table lock. So callers must unlock it.
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001898 */
Kirill A. Shutemovb6ec57f2016-01-21 16:40:25 -08001899spinlock_t *__pmd_trans_huge_lock(pmd_t *pmd, struct vm_area_struct *vma)
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001900{
Kirill A. Shutemovb6ec57f2016-01-21 16:40:25 -08001901 spinlock_t *ptl;
1902 ptl = pmd_lock(vma->vm_mm, pmd);
Zi Yan84c3fc42017-09-08 16:11:01 -07001903 if (likely(is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) ||
1904 pmd_devmap(*pmd)))
Kirill A. Shutemovb6ec57f2016-01-21 16:40:25 -08001905 return ptl;
1906 spin_unlock(ptl);
1907 return NULL;
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001908}
1909
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001910/*
1911 * Returns true if a given pud maps a thp, false otherwise.
1912 *
1913 * Note that if it returns true, this routine returns without unlocking page
1914 * table lock. So callers must unlock it.
1915 */
1916spinlock_t *__pud_trans_huge_lock(pud_t *pud, struct vm_area_struct *vma)
1917{
1918 spinlock_t *ptl;
1919
1920 ptl = pud_lock(vma->vm_mm, pud);
1921 if (likely(pud_trans_huge(*pud) || pud_devmap(*pud)))
1922 return ptl;
1923 spin_unlock(ptl);
1924 return NULL;
1925}
1926
1927#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
1928int zap_huge_pud(struct mmu_gather *tlb, struct vm_area_struct *vma,
1929 pud_t *pud, unsigned long addr)
1930{
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001931 spinlock_t *ptl;
1932
1933 ptl = __pud_trans_huge_lock(pud, vma);
1934 if (!ptl)
1935 return 0;
1936 /*
1937 * For architectures like ppc64 we look at deposited pgtable
1938 * when calling pudp_huge_get_and_clear. So do the
1939 * pgtable_trans_huge_withdraw after finishing pudp related
1940 * operations.
1941 */
Qian Cai70516b92019-03-05 15:50:00 -08001942 pudp_huge_get_and_clear_full(tlb->mm, addr, pud, tlb->fullmm);
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001943 tlb_remove_pud_tlb_entry(tlb, pud, addr);
Thomas Hellstrom (VMware)2484ca92020-03-24 18:47:17 +01001944 if (vma_is_special_huge(vma)) {
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001945 spin_unlock(ptl);
1946 /* No zero page support yet */
1947 } else {
1948 /* No support for anonymous PUD pages yet */
1949 BUG();
1950 }
1951 return 1;
1952}
1953
1954static void __split_huge_pud_locked(struct vm_area_struct *vma, pud_t *pud,
1955 unsigned long haddr)
1956{
1957 VM_BUG_ON(haddr & ~HPAGE_PUD_MASK);
1958 VM_BUG_ON_VMA(vma->vm_start > haddr, vma);
1959 VM_BUG_ON_VMA(vma->vm_end < haddr + HPAGE_PUD_SIZE, vma);
1960 VM_BUG_ON(!pud_trans_huge(*pud) && !pud_devmap(*pud));
1961
Yisheng Xiece9311c2017-03-09 16:17:00 -08001962 count_vm_event(THP_SPLIT_PUD);
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001963
1964 pudp_huge_clear_flush_notify(vma, haddr, pud);
1965}
1966
1967void __split_huge_pud(struct vm_area_struct *vma, pud_t *pud,
1968 unsigned long address)
1969{
1970 spinlock_t *ptl;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001971 struct mmu_notifier_range range;
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001972
Jérôme Glisse7269f992019-05-13 17:20:53 -07001973 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, vma->vm_mm,
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07001974 address & HPAGE_PUD_MASK,
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001975 (address & HPAGE_PUD_MASK) + HPAGE_PUD_SIZE);
1976 mmu_notifier_invalidate_range_start(&range);
1977 ptl = pud_lock(vma->vm_mm, pud);
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001978 if (unlikely(!pud_trans_huge(*pud) && !pud_devmap(*pud)))
1979 goto out;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001980 __split_huge_pud_locked(vma, pud, range.start);
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001981
1982out:
1983 spin_unlock(ptl);
Jérôme Glisse4645b9f2017-11-15 17:34:11 -08001984 /*
1985 * No need to double call mmu_notifier->invalidate_range() callback as
1986 * the above pudp_huge_clear_flush_notify() did already call it.
1987 */
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001988 mmu_notifier_invalidate_range_only_end(&range);
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -08001989}
1990#endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
1991
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08001992static void __split_huge_zero_page_pmd(struct vm_area_struct *vma,
1993 unsigned long haddr, pmd_t *pmd)
1994{
1995 struct mm_struct *mm = vma->vm_mm;
1996 pgtable_t pgtable;
1997 pmd_t _pmd;
1998 int i;
1999
Jérôme Glisse0f108512017-11-15 17:34:07 -08002000 /*
2001 * Leave pmd empty until pte is filled note that it is fine to delay
2002 * notification until mmu_notifier_invalidate_range_end() as we are
2003 * replacing a zero pmd write protected page with a zero pte write
2004 * protected page.
2005 *
Mike Rapoportad56b732018-03-21 21:22:47 +02002006 * See Documentation/vm/mmu_notifier.rst
Jérôme Glisse0f108512017-11-15 17:34:07 -08002007 */
2008 pmdp_huge_clear_flush(vma, haddr, pmd);
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002009
2010 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
2011 pmd_populate(mm, &_pmd, pgtable);
2012
2013 for (i = 0; i < HPAGE_PMD_NR; i++, haddr += PAGE_SIZE) {
2014 pte_t *pte, entry;
2015 entry = pfn_pte(my_zero_pfn(haddr), vma->vm_page_prot);
2016 entry = pte_mkspecial(entry);
2017 pte = pte_offset_map(&_pmd, haddr);
2018 VM_BUG_ON(!pte_none(*pte));
2019 set_pte_at(mm, haddr, pte, entry);
2020 pte_unmap(pte);
2021 }
2022 smp_wmb(); /* make pte visible before pmd */
2023 pmd_populate(mm, pmd, pgtable);
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002024}
2025
2026static void __split_huge_pmd_locked(struct vm_area_struct *vma, pmd_t *pmd,
Kirill A. Shutemovba988282016-01-15 16:53:56 -08002027 unsigned long haddr, bool freeze)
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002028{
2029 struct mm_struct *mm = vma->vm_mm;
2030 struct page *page;
2031 pgtable_t pgtable;
Aneesh Kumar K.V423ac9a2018-01-31 16:18:24 -08002032 pmd_t old_pmd, _pmd;
Peter Xu292924b2020-04-06 20:05:49 -07002033 bool young, write, soft_dirty, pmd_migration = false, uffd_wp = false;
Kirill A. Shutemov2ac015e2016-02-24 18:58:03 +03002034 unsigned long addr;
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002035 int i;
2036
2037 VM_BUG_ON(haddr & ~HPAGE_PMD_MASK);
2038 VM_BUG_ON_VMA(vma->vm_start > haddr, vma);
2039 VM_BUG_ON_VMA(vma->vm_end < haddr + HPAGE_PMD_SIZE, vma);
Zi Yan84c3fc42017-09-08 16:11:01 -07002040 VM_BUG_ON(!is_pmd_migration_entry(*pmd) && !pmd_trans_huge(*pmd)
2041 && !pmd_devmap(*pmd));
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002042
2043 count_vm_event(THP_SPLIT_PMD);
2044
Kirill A. Shutemovd21b9e52016-07-26 15:25:37 -07002045 if (!vma_is_anonymous(vma)) {
Hugh Dickinsa8f4ea12021-06-15 18:23:45 -07002046 old_pmd = pmdp_huge_clear_flush_notify(vma, haddr, pmd);
Aneesh Kumar K.V953c66c2016-12-12 16:44:32 -08002047 /*
2048 * We are going to unmap this huge page. So
2049 * just go ahead and zap it
2050 */
2051 if (arch_needs_pgtable_deposit())
2052 zap_deposited_table(mm, pmd);
Thomas Hellstrom (VMware)2484ca92020-03-24 18:47:17 +01002053 if (vma_is_special_huge(vma))
Kirill A. Shutemovd21b9e52016-07-26 15:25:37 -07002054 return;
Hugh Dickinsa8f4ea12021-06-15 18:23:45 -07002055 if (unlikely(is_pmd_migration_entry(old_pmd))) {
2056 swp_entry_t entry;
2057
2058 entry = pmd_to_swp_entry(old_pmd);
2059 page = migration_entry_to_page(entry);
2060 } else {
2061 page = pmd_page(old_pmd);
2062 if (!PageDirty(page) && pmd_dirty(old_pmd))
2063 set_page_dirty(page);
2064 if (!PageReferenced(page) && pmd_young(old_pmd))
2065 SetPageReferenced(page);
2066 page_remove_rmap(page, true);
2067 put_page(page);
2068 }
Yang Shifadae292018-08-17 15:44:55 -07002069 add_mm_counter(mm, mm_counter_file(page), -HPAGE_PMD_NR);
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002070 return;
Hugh Dickinsa8f4ea12021-06-15 18:23:45 -07002071 }
2072
Hugh Dickins6527d8e2021-06-15 18:23:49 -07002073 if (is_huge_zero_pmd(*pmd)) {
Jérôme Glisse4645b9f2017-11-15 17:34:11 -08002074 /*
2075 * FIXME: Do we want to invalidate secondary mmu by calling
2076 * mmu_notifier_invalidate_range() see comments below inside
2077 * __split_huge_pmd() ?
2078 *
2079 * We are going from a zero huge page write protected to zero
2080 * small page also write protected so it does not seems useful
2081 * to invalidate secondary mmu at this time.
2082 */
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002083 return __split_huge_zero_page_pmd(vma, haddr, pmd);
2084 }
2085
Aneesh Kumar K.V423ac9a2018-01-31 16:18:24 -08002086 /*
2087 * Up to this point the pmd is present and huge and userland has the
2088 * whole access to the hugepage during the split (which happens in
2089 * place). If we overwrite the pmd with the not-huge version pointing
2090 * to the pte here (which of course we could if all CPUs were bug
2091 * free), userland could trigger a small page size TLB miss on the
2092 * small sized TLB while the hugepage TLB entry is still established in
2093 * the huge TLB. Some CPU doesn't like that.
Alexander A. Klimov42742d92020-08-06 23:26:08 -07002094 * See http://support.amd.com/TechDocs/41322_10h_Rev_Gd.pdf, Erratum
2095 * 383 on page 105. Intel should be safe but is also warns that it's
Aneesh Kumar K.V423ac9a2018-01-31 16:18:24 -08002096 * only safe if the permission and cache attributes of the two entries
2097 * loaded in the two TLB is identical (which should be the case here).
2098 * But it is generally safer to never allow small and huge TLB entries
2099 * for the same virtual address to be loaded simultaneously. So instead
2100 * of doing "pmd_populate(); flush_pmd_tlb_range();" we first mark the
2101 * current pmd notpresent (atomically because here the pmd_trans_huge
2102 * must remain set at all times on the pmd until the split is complete
2103 * for this pmd), then we flush the SMP TLB and finally we write the
2104 * non-huge version of the pmd entry with pmd_populate.
2105 */
2106 old_pmd = pmdp_invalidate(vma, haddr, pmd);
2107
Aneesh Kumar K.V423ac9a2018-01-31 16:18:24 -08002108 pmd_migration = is_pmd_migration_entry(old_pmd);
Peter Xu2e83ee12018-12-21 14:30:50 -08002109 if (unlikely(pmd_migration)) {
Zi Yan84c3fc42017-09-08 16:11:01 -07002110 swp_entry_t entry;
2111
Aneesh Kumar K.V423ac9a2018-01-31 16:18:24 -08002112 entry = pmd_to_swp_entry(old_pmd);
Zi Yan84c3fc42017-09-08 16:11:01 -07002113 page = pfn_to_page(swp_offset(entry));
Peter Xu2e83ee12018-12-21 14:30:50 -08002114 write = is_write_migration_entry(entry);
2115 young = false;
2116 soft_dirty = pmd_swp_soft_dirty(old_pmd);
Peter Xuf45ec5f2020-04-06 20:06:01 -07002117 uffd_wp = pmd_swp_uffd_wp(old_pmd);
Peter Xu2e83ee12018-12-21 14:30:50 -08002118 } else {
Aneesh Kumar K.V423ac9a2018-01-31 16:18:24 -08002119 page = pmd_page(old_pmd);
Peter Xu2e83ee12018-12-21 14:30:50 -08002120 if (pmd_dirty(old_pmd))
2121 SetPageDirty(page);
2122 write = pmd_write(old_pmd);
2123 young = pmd_young(old_pmd);
2124 soft_dirty = pmd_soft_dirty(old_pmd);
Peter Xu292924b2020-04-06 20:05:49 -07002125 uffd_wp = pmd_uffd_wp(old_pmd);
Peter Xu2e83ee12018-12-21 14:30:50 -08002126 }
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002127 VM_BUG_ON_PAGE(!page_count(page), page);
Joonsoo Kimfe896d12016-03-17 14:19:26 -07002128 page_ref_add(page, HPAGE_PMD_NR - 1);
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002129
Aneesh Kumar K.V423ac9a2018-01-31 16:18:24 -08002130 /*
2131 * Withdraw the table only after we mark the pmd entry invalid.
2132 * This's critical for some architectures (Power).
2133 */
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002134 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
2135 pmd_populate(mm, &_pmd, pgtable);
2136
Kirill A. Shutemov2ac015e2016-02-24 18:58:03 +03002137 for (i = 0, addr = haddr; i < HPAGE_PMD_NR; i++, addr += PAGE_SIZE) {
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002138 pte_t entry, *pte;
2139 /*
2140 * Note that NUMA hinting access restrictions are not
2141 * transferred to avoid any possibility of altering
2142 * permissions across VMAs.
2143 */
Zi Yan84c3fc42017-09-08 16:11:01 -07002144 if (freeze || pmd_migration) {
Kirill A. Shutemovba988282016-01-15 16:53:56 -08002145 swp_entry_t swp_entry;
2146 swp_entry = make_migration_entry(page + i, write);
2147 entry = swp_entry_to_pte(swp_entry);
Andrea Arcangeli804dd152016-08-25 15:16:57 -07002148 if (soft_dirty)
2149 entry = pte_swp_mksoft_dirty(entry);
Peter Xuf45ec5f2020-04-06 20:06:01 -07002150 if (uffd_wp)
2151 entry = pte_swp_mkuffd_wp(entry);
Kirill A. Shutemovba988282016-01-15 16:53:56 -08002152 } else {
Andrea Arcangeli6d2329f2016-10-07 17:01:22 -07002153 entry = mk_pte(page + i, READ_ONCE(vma->vm_page_prot));
Minchan Kimb8d3c4c2016-01-15 16:55:42 -08002154 entry = maybe_mkwrite(entry, vma);
Kirill A. Shutemovba988282016-01-15 16:53:56 -08002155 if (!write)
2156 entry = pte_wrprotect(entry);
2157 if (!young)
2158 entry = pte_mkold(entry);
Andrea Arcangeli804dd152016-08-25 15:16:57 -07002159 if (soft_dirty)
2160 entry = pte_mksoft_dirty(entry);
Peter Xu292924b2020-04-06 20:05:49 -07002161 if (uffd_wp)
2162 entry = pte_mkuffd_wp(entry);
Kirill A. Shutemovba988282016-01-15 16:53:56 -08002163 }
Kirill A. Shutemov2ac015e2016-02-24 18:58:03 +03002164 pte = pte_offset_map(&_pmd, addr);
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002165 BUG_ON(!pte_none(*pte));
Kirill A. Shutemov2ac015e2016-02-24 18:58:03 +03002166 set_pte_at(mm, addr, pte, entry);
Ralph Campbellec0abae2020-09-18 21:20:24 -07002167 if (!pmd_migration)
2168 atomic_inc(&page[i]._mapcount);
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002169 pte_unmap(pte);
2170 }
2171
Ralph Campbellec0abae2020-09-18 21:20:24 -07002172 if (!pmd_migration) {
2173 /*
2174 * Set PG_double_map before dropping compound_mapcount to avoid
2175 * false-negative page_mapped().
2176 */
2177 if (compound_mapcount(page) > 1 &&
2178 !TestSetPageDoubleMap(page)) {
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002179 for (i = 0; i < HPAGE_PMD_NR; i++)
Ralph Campbellec0abae2020-09-18 21:20:24 -07002180 atomic_inc(&page[i]._mapcount);
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002181 }
Ralph Campbellec0abae2020-09-18 21:20:24 -07002182
2183 lock_page_memcg(page);
2184 if (atomic_add_negative(-1, compound_mapcount_ptr(page))) {
2185 /* Last compound_mapcount is gone. */
2186 __dec_lruvec_page_state(page, NR_ANON_THPS);
2187 if (TestClearPageDoubleMap(page)) {
2188 /* No need in mapcount reference anymore */
2189 for (i = 0; i < HPAGE_PMD_NR; i++)
2190 atomic_dec(&page[i]._mapcount);
2191 }
2192 }
2193 unlock_page_memcg(page);
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002194 }
2195
2196 smp_wmb(); /* make pte visible before pmd */
2197 pmd_populate(mm, pmd, pgtable);
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002198
2199 if (freeze) {
Kirill A. Shutemov2ac015e2016-02-24 18:58:03 +03002200 for (i = 0; i < HPAGE_PMD_NR; i++) {
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002201 page_remove_rmap(page + i, false);
2202 put_page(page + i);
2203 }
2204 }
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002205}
2206
2207void __split_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
Naoya Horiguchi33f47512016-07-14 12:07:32 -07002208 unsigned long address, bool freeze, struct page *page)
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002209{
2210 spinlock_t *ptl;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08002211 struct mmu_notifier_range range;
Hugh Dickins0a249ac2021-02-04 18:32:31 -08002212 bool do_unlock_page = false;
Andrea Arcangelic444eb52020-05-27 19:06:24 -04002213 pmd_t _pmd;
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002214
Jérôme Glisse7269f992019-05-13 17:20:53 -07002215 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, vma->vm_mm,
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07002216 address & HPAGE_PMD_MASK,
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08002217 (address & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE);
2218 mmu_notifier_invalidate_range_start(&range);
2219 ptl = pmd_lock(vma->vm_mm, pmd);
Naoya Horiguchi33f47512016-07-14 12:07:32 -07002220
2221 /*
2222 * If caller asks to setup a migration entries, we need a page to check
2223 * pmd against. Otherwise we can end up replacing wrong page.
2224 */
2225 VM_BUG_ON(freeze && !page);
Andrea Arcangelic444eb52020-05-27 19:06:24 -04002226 if (page) {
2227 VM_WARN_ON_ONCE(!PageLocked(page));
Andrea Arcangelic444eb52020-05-27 19:06:24 -04002228 if (page != pmd_page(*pmd))
2229 goto out;
2230 }
Naoya Horiguchi33f47512016-07-14 12:07:32 -07002231
Andrea Arcangelic444eb52020-05-27 19:06:24 -04002232repeat:
Dan Williams5c7fb562016-01-15 16:56:52 -08002233 if (pmd_trans_huge(*pmd)) {
Andrea Arcangelic444eb52020-05-27 19:06:24 -04002234 if (!page) {
2235 page = pmd_page(*pmd);
Hugh Dickins0a249ac2021-02-04 18:32:31 -08002236 /*
2237 * An anonymous page must be locked, to ensure that a
2238 * concurrent reuse_swap_page() sees stable mapcount;
2239 * but reuse_swap_page() is not used on shmem or file,
2240 * and page lock must not be taken when zap_pmd_range()
2241 * calls __split_huge_pmd() while i_mmap_lock is held.
2242 */
2243 if (PageAnon(page)) {
2244 if (unlikely(!trylock_page(page))) {
2245 get_page(page);
2246 _pmd = *pmd;
2247 spin_unlock(ptl);
2248 lock_page(page);
2249 spin_lock(ptl);
2250 if (unlikely(!pmd_same(*pmd, _pmd))) {
2251 unlock_page(page);
2252 put_page(page);
2253 page = NULL;
2254 goto repeat;
2255 }
Andrea Arcangelic444eb52020-05-27 19:06:24 -04002256 put_page(page);
Andrea Arcangelic444eb52020-05-27 19:06:24 -04002257 }
Hugh Dickins0a249ac2021-02-04 18:32:31 -08002258 do_unlock_page = true;
Andrea Arcangelic444eb52020-05-27 19:06:24 -04002259 }
2260 }
Dan Williams5c7fb562016-01-15 16:56:52 -08002261 if (PageMlocked(page))
Kirill A. Shutemov5f737712016-03-17 14:20:13 -07002262 clear_page_mlock(page);
Zi Yan84c3fc42017-09-08 16:11:01 -07002263 } else if (!(pmd_devmap(*pmd) || is_pmd_migration_entry(*pmd)))
Kirill A. Shutemove90309c2016-01-15 16:54:33 -08002264 goto out;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08002265 __split_huge_pmd_locked(vma, pmd, range.start, freeze);
Kirill A. Shutemove90309c2016-01-15 16:54:33 -08002266out:
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002267 spin_unlock(ptl);
Hugh Dickins0a249ac2021-02-04 18:32:31 -08002268 if (do_unlock_page)
Andrea Arcangelic444eb52020-05-27 19:06:24 -04002269 unlock_page(page);
Jérôme Glisse4645b9f2017-11-15 17:34:11 -08002270 /*
2271 * No need to double call mmu_notifier->invalidate_range() callback.
2272 * They are 3 cases to consider inside __split_huge_pmd_locked():
2273 * 1) pmdp_huge_clear_flush_notify() call invalidate_range() obvious
2274 * 2) __split_huge_zero_page_pmd() read only zero page and any write
2275 * fault will trigger a flush_notify before pointing to a new page
2276 * (it is fine if the secondary mmu keeps pointing to the old zero
2277 * page in the meantime)
2278 * 3) Split a huge pmd into pte pointing to the same page. No need
2279 * to invalidate secondary tlb entry they are all still valid.
2280 * any further changes to individual pte will notify. So no need
2281 * to call mmu_notifier->invalidate_range()
2282 */
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08002283 mmu_notifier_invalidate_range_only_end(&range);
Kirill A. Shutemoveef1b3b2016-01-15 16:53:53 -08002284}
2285
Kirill A. Shutemovfec89c12016-03-17 14:20:10 -07002286void split_huge_pmd_address(struct vm_area_struct *vma, unsigned long address,
2287 bool freeze, struct page *page)
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002288{
Hugh Dickinsf72e7dc2014-06-23 13:22:05 -07002289 pgd_t *pgd;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03002290 p4d_t *p4d;
Hugh Dickinsf72e7dc2014-06-23 13:22:05 -07002291 pud_t *pud;
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002292 pmd_t *pmd;
2293
Kirill A. Shutemov78ddc532016-01-15 16:52:42 -08002294 pgd = pgd_offset(vma->vm_mm, address);
Hugh Dickinsf72e7dc2014-06-23 13:22:05 -07002295 if (!pgd_present(*pgd))
2296 return;
2297
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03002298 p4d = p4d_offset(pgd, address);
2299 if (!p4d_present(*p4d))
2300 return;
2301
2302 pud = pud_offset(p4d, address);
Hugh Dickinsf72e7dc2014-06-23 13:22:05 -07002303 if (!pud_present(*pud))
2304 return;
2305
2306 pmd = pmd_offset(pud, address);
Kirill A. Shutemovfec89c12016-03-17 14:20:10 -07002307
Naoya Horiguchi33f47512016-07-14 12:07:32 -07002308 __split_huge_pmd(vma, pmd, address, freeze, page);
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002309}
2310
Kirill A. Shutemove1b99962015-09-08 14:58:37 -07002311void vma_adjust_trans_huge(struct vm_area_struct *vma,
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002312 unsigned long start,
2313 unsigned long end,
2314 long adjust_next)
2315{
2316 /*
2317 * If the new start address isn't hpage aligned and it could
2318 * previously contain an hugepage: check if we need to split
2319 * an huge pmd.
2320 */
2321 if (start & ~HPAGE_PMD_MASK &&
2322 (start & HPAGE_PMD_MASK) >= vma->vm_start &&
2323 (start & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE <= vma->vm_end)
Kirill A. Shutemovfec89c12016-03-17 14:20:10 -07002324 split_huge_pmd_address(vma, start, false, NULL);
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002325
2326 /*
2327 * If the new end address isn't hpage aligned and it could
2328 * previously contain an hugepage: check if we need to split
2329 * an huge pmd.
2330 */
2331 if (end & ~HPAGE_PMD_MASK &&
2332 (end & HPAGE_PMD_MASK) >= vma->vm_start &&
2333 (end & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE <= vma->vm_end)
Kirill A. Shutemovfec89c12016-03-17 14:20:10 -07002334 split_huge_pmd_address(vma, end, false, NULL);
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002335
2336 /*
2337 * If we're also updating the vma->vm_next->vm_start, if the new
Wei Yangf9d86a62020-10-13 16:53:57 -07002338 * vm_next->vm_start isn't hpage aligned and it could previously
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002339 * contain an hugepage: check if we need to split an huge pmd.
2340 */
2341 if (adjust_next > 0) {
2342 struct vm_area_struct *next = vma->vm_next;
2343 unsigned long nstart = next->vm_start;
Wei Yangf9d86a62020-10-13 16:53:57 -07002344 nstart += adjust_next;
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002345 if (nstart & ~HPAGE_PMD_MASK &&
2346 (nstart & HPAGE_PMD_MASK) >= next->vm_start &&
2347 (nstart & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE <= next->vm_end)
Kirill A. Shutemovfec89c12016-03-17 14:20:10 -07002348 split_huge_pmd_address(next, nstart, false, NULL);
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002349 }
2350}
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002351
Hugh Dickins906f9cd2018-11-30 14:10:13 -08002352static void unmap_page(struct page *page)
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002353{
Hugh Dickins66be14a2021-06-15 18:23:53 -07002354 enum ttu_flags ttu_flags = TTU_IGNORE_MLOCK | TTU_SYNC |
Kirill A. Shutemovc7ab0d22017-02-24 14:58:01 -08002355 TTU_RMAP_LOCKED | TTU_SPLIT_HUGE_PMD;
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002356
2357 VM_BUG_ON_PAGE(!PageHead(page), page);
2358
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002359 if (PageAnon(page))
Naoya Horiguchib5ff8162017-09-08 16:10:49 -07002360 ttu_flags |= TTU_SPLIT_FREEZE;
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002361
Yang Shi825c2802021-06-15 18:24:07 -07002362 try_to_unmap(page, ttu_flags);
2363
2364 VM_WARN_ON_ONCE_PAGE(page_mapped(page), page);
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002365}
2366
Kirill A. Shutemov8cce5472020-10-15 20:05:36 -07002367static void remap_page(struct page *page, unsigned int nr)
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002368{
Kirill A. Shutemovfec89c12016-03-17 14:20:10 -07002369 int i;
Kirill A. Shutemovace71a12017-02-24 14:57:45 -08002370 if (PageTransHuge(page)) {
2371 remove_migration_ptes(page, page, true);
2372 } else {
Kirill A. Shutemov8cce5472020-10-15 20:05:36 -07002373 for (i = 0; i < nr; i++)
Kirill A. Shutemovace71a12017-02-24 14:57:45 -08002374 remove_migration_ptes(page + i, page + i, true);
2375 }
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002376}
2377
Kirill A. Shutemov8df651c2016-03-15 14:57:30 -07002378static void __split_huge_page_tail(struct page *head, int tail,
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002379 struct lruvec *lruvec, struct list_head *list)
2380{
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002381 struct page *page_tail = head + tail;
2382
Kirill A. Shutemov8df651c2016-03-15 14:57:30 -07002383 VM_BUG_ON_PAGE(atomic_read(&page_tail->_mapcount) != -1, page_tail);
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002384
2385 /*
Konstantin Khlebnikov605ca5e2018-04-05 16:23:28 -07002386 * Clone page flags before unfreezing refcount.
2387 *
2388 * After successful get_page_unless_zero() might follow flags change,
2389 * for exmaple lock_page() which set PG_waiters.
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002390 */
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002391 page_tail->flags &= ~PAGE_FLAGS_CHECK_AT_PREP;
2392 page_tail->flags |= (head->flags &
2393 ((1L << PG_referenced) |
2394 (1L << PG_swapbacked) |
Huang Ying38d8b4e2017-07-06 15:37:18 -07002395 (1L << PG_swapcache) |
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002396 (1L << PG_mlocked) |
2397 (1L << PG_uptodate) |
2398 (1L << PG_active) |
Johannes Weiner1899ad12018-10-26 15:06:04 -07002399 (1L << PG_workingset) |
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002400 (1L << PG_locked) |
Minchan Kimb8d3c4c2016-01-15 16:55:42 -08002401 (1L << PG_unevictable) |
Catalin Marinas72e6afa2020-07-02 10:19:30 +01002402#ifdef CONFIG_64BIT
2403 (1L << PG_arch_2) |
2404#endif
Minchan Kimb8d3c4c2016-01-15 16:55:42 -08002405 (1L << PG_dirty)));
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002406
Hugh Dickins173d9d92018-11-30 14:10:16 -08002407 /* ->mapping in first tail page is compound_mapcount */
2408 VM_BUG_ON_PAGE(tail > 2 && page_tail->mapping != TAIL_MAPPING,
2409 page_tail);
2410 page_tail->mapping = head->mapping;
2411 page_tail->index = head->index + tail;
2412
Konstantin Khlebnikov605ca5e2018-04-05 16:23:28 -07002413 /* Page flags must be visible before we make the page non-compound. */
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002414 smp_wmb();
2415
Konstantin Khlebnikov605ca5e2018-04-05 16:23:28 -07002416 /*
2417 * Clear PageTail before unfreezing page refcount.
2418 *
2419 * After successful get_page_unless_zero() might follow put_page()
2420 * which needs correct compound_head().
2421 */
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002422 clear_compound_head(page_tail);
2423
Konstantin Khlebnikov605ca5e2018-04-05 16:23:28 -07002424 /* Finally unfreeze refcount. Additional reference from page cache. */
2425 page_ref_unfreeze(page_tail, 1 + (!PageAnon(head) ||
2426 PageSwapCache(head)));
2427
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002428 if (page_is_young(head))
2429 set_page_young(page_tail);
2430 if (page_is_idle(head))
2431 set_page_idle(page_tail);
2432
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002433 page_cpupid_xchg_last(page_tail, page_cpupid_last(head));
Michal Hocko94723aa2018-04-10 16:30:07 -07002434
2435 /*
2436 * always add to the tail because some iterators expect new
2437 * pages to show after the currently processed elements - e.g.
2438 * migrate_pages
2439 */
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002440 lru_add_page_tail(head, page_tail, lruvec, list);
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002441}
2442
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002443static void __split_huge_page(struct page *page, struct list_head *list,
Hugh Dickins006d3ff2018-11-30 14:10:21 -08002444 pgoff_t end, unsigned long flags)
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002445{
2446 struct page *head = compound_head(page);
Andrey Ryabininf4b7e272019-03-05 15:49:39 -08002447 pg_data_t *pgdat = page_pgdat(head);
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002448 struct lruvec *lruvec;
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -07002449 struct address_space *swap_cache = NULL;
2450 unsigned long offset = 0;
Kirill A. Shutemov8cce5472020-10-15 20:05:36 -07002451 unsigned int nr = thp_nr_pages(head);
Kirill A. Shutemov8df651c2016-03-15 14:57:30 -07002452 int i;
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002453
Andrey Ryabininf4b7e272019-03-05 15:49:39 -08002454 lruvec = mem_cgroup_page_lruvec(head, pgdat);
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002455
2456 /* complete memcg works before add pages to LRU */
Zhou Guanghui6143a1d2021-03-12 21:08:30 -08002457 split_page_memcg(head, nr);
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002458
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -07002459 if (PageAnon(head) && PageSwapCache(head)) {
2460 swp_entry_t entry = { .val = page_private(head) };
2461
2462 offset = swp_offset(entry);
2463 swap_cache = swap_address_space(entry);
2464 xa_lock(&swap_cache->i_pages);
2465 }
2466
Kirill A. Shutemov8cce5472020-10-15 20:05:36 -07002467 for (i = nr - 1; i >= 1; i--) {
Kirill A. Shutemov8df651c2016-03-15 14:57:30 -07002468 __split_huge_page_tail(head, i, lruvec, list);
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002469 /* Some pages can be beyond i_size: drop them from page cache */
2470 if (head[i].index >= end) {
Hugh Dickins2d077d42018-06-01 16:50:45 -07002471 ClearPageDirty(head + i);
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002472 __delete_from_page_cache(head + i, NULL);
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07002473 if (IS_ENABLED(CONFIG_SHMEM) && PageSwapBacked(head))
2474 shmem_uncharge(head->mapping->host, 1);
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002475 put_page(head + i);
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -07002476 } else if (!PageAnon(page)) {
2477 __xa_store(&head->mapping->i_pages, head[i].index,
2478 head + i, 0);
2479 } else if (swap_cache) {
2480 __xa_store(&swap_cache->i_pages, offset + i,
2481 head + i, 0);
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002482 }
2483 }
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002484
2485 ClearPageCompound(head);
Vlastimil Babkaf7da6772019-08-24 17:54:59 -07002486
Kirill A. Shutemov8cce5472020-10-15 20:05:36 -07002487 split_page_owner(head, nr);
Vlastimil Babkaf7da6772019-08-24 17:54:59 -07002488
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002489 /* See comment in __split_huge_page_tail() */
2490 if (PageAnon(head)) {
Matthew Wilcoxaa5dc072017-12-04 10:16:10 -05002491 /* Additional pin to swap cache */
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -07002492 if (PageSwapCache(head)) {
Huang Ying38d8b4e2017-07-06 15:37:18 -07002493 page_ref_add(head, 2);
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -07002494 xa_unlock(&swap_cache->i_pages);
2495 } else {
Huang Ying38d8b4e2017-07-06 15:37:18 -07002496 page_ref_inc(head);
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -07002497 }
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002498 } else {
Matthew Wilcoxaa5dc072017-12-04 10:16:10 -05002499 /* Additional pin to page cache */
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002500 page_ref_add(head, 2);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07002501 xa_unlock(&head->mapping->i_pages);
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002502 }
2503
Andrey Ryabininf4b7e272019-03-05 15:49:39 -08002504 spin_unlock_irqrestore(&pgdat->lru_lock, flags);
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002505
Kirill A. Shutemov8cce5472020-10-15 20:05:36 -07002506 remap_page(head, nr);
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002507
Huang Yingc4f9c702020-10-15 20:06:07 -07002508 if (PageSwapCache(head)) {
2509 swp_entry_t entry = { .val = page_private(head) };
2510
2511 split_swap_cluster(entry);
2512 }
2513
Kirill A. Shutemov8cce5472020-10-15 20:05:36 -07002514 for (i = 0; i < nr; i++) {
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002515 struct page *subpage = head + i;
2516 if (subpage == page)
2517 continue;
2518 unlock_page(subpage);
2519
2520 /*
2521 * Subpages may be freed if there wasn't any mapping
2522 * like if add_to_swap() is running on a lru page that
2523 * had its mapping zapped. And freeing these pages
2524 * requires taking the lru_lock so we do the put_page
2525 * of the tail pages after the split is complete.
2526 */
2527 put_page(subpage);
2528 }
2529}
2530
Kirill A. Shutemovb20ce5e2016-01-15 16:54:37 -08002531int total_mapcount(struct page *page)
2532{
Kirill A. Shutemov86b562b2020-10-15 20:05:33 -07002533 int i, compound, nr, ret;
Kirill A. Shutemovb20ce5e2016-01-15 16:54:37 -08002534
2535 VM_BUG_ON_PAGE(PageTail(page), page);
2536
2537 if (likely(!PageCompound(page)))
2538 return atomic_read(&page->_mapcount) + 1;
2539
Kirill A. Shutemovdd78fed2016-07-26 15:25:26 -07002540 compound = compound_mapcount(page);
Kirill A. Shutemov86b562b2020-10-15 20:05:33 -07002541 nr = compound_nr(page);
Kirill A. Shutemovb20ce5e2016-01-15 16:54:37 -08002542 if (PageHuge(page))
Kirill A. Shutemovdd78fed2016-07-26 15:25:26 -07002543 return compound;
2544 ret = compound;
Kirill A. Shutemov86b562b2020-10-15 20:05:33 -07002545 for (i = 0; i < nr; i++)
Kirill A. Shutemovb20ce5e2016-01-15 16:54:37 -08002546 ret += atomic_read(&page[i]._mapcount) + 1;
Kirill A. Shutemovdd78fed2016-07-26 15:25:26 -07002547 /* File pages has compound_mapcount included in _mapcount */
2548 if (!PageAnon(page))
Kirill A. Shutemov86b562b2020-10-15 20:05:33 -07002549 return ret - compound * nr;
Kirill A. Shutemovb20ce5e2016-01-15 16:54:37 -08002550 if (PageDoubleMap(page))
Kirill A. Shutemov86b562b2020-10-15 20:05:33 -07002551 ret -= nr;
Kirill A. Shutemovb20ce5e2016-01-15 16:54:37 -08002552 return ret;
2553}
2554
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002555/*
Andrea Arcangeli6d0a07e2016-05-12 15:42:25 -07002556 * This calculates accurately how many mappings a transparent hugepage
2557 * has (unlike page_mapcount() which isn't fully accurate). This full
2558 * accuracy is primarily needed to know if copy-on-write faults can
2559 * reuse the page and change the mapping to read-write instead of
2560 * copying them. At the same time this returns the total_mapcount too.
2561 *
2562 * The function returns the highest mapcount any one of the subpages
2563 * has. If the return value is one, even if different processes are
2564 * mapping different subpages of the transparent hugepage, they can
2565 * all reuse it, because each process is reusing a different subpage.
2566 *
2567 * The total_mapcount is instead counting all virtual mappings of the
2568 * subpages. If the total_mapcount is equal to "one", it tells the
2569 * caller all mappings belong to the same "mm" and in turn the
2570 * anon_vma of the transparent hugepage can become the vma->anon_vma
2571 * local one as no other process may be mapping any of the subpages.
2572 *
2573 * It would be more accurate to replace page_mapcount() with
2574 * page_trans_huge_mapcount(), however we only use
2575 * page_trans_huge_mapcount() in the copy-on-write faults where we
2576 * need full accuracy to avoid breaking page pinning, because
2577 * page_trans_huge_mapcount() is slower than page_mapcount().
2578 */
2579int page_trans_huge_mapcount(struct page *page, int *total_mapcount)
2580{
2581 int i, ret, _total_mapcount, mapcount;
2582
2583 /* hugetlbfs shouldn't call it */
2584 VM_BUG_ON_PAGE(PageHuge(page), page);
2585
2586 if (likely(!PageTransCompound(page))) {
2587 mapcount = atomic_read(&page->_mapcount) + 1;
2588 if (total_mapcount)
2589 *total_mapcount = mapcount;
2590 return mapcount;
2591 }
2592
2593 page = compound_head(page);
2594
2595 _total_mapcount = ret = 0;
Matthew Wilcox (Oracle)65dfe3c2020-10-15 20:05:39 -07002596 for (i = 0; i < thp_nr_pages(page); i++) {
Andrea Arcangeli6d0a07e2016-05-12 15:42:25 -07002597 mapcount = atomic_read(&page[i]._mapcount) + 1;
2598 ret = max(ret, mapcount);
2599 _total_mapcount += mapcount;
2600 }
2601 if (PageDoubleMap(page)) {
2602 ret -= 1;
Matthew Wilcox (Oracle)65dfe3c2020-10-15 20:05:39 -07002603 _total_mapcount -= thp_nr_pages(page);
Andrea Arcangeli6d0a07e2016-05-12 15:42:25 -07002604 }
2605 mapcount = compound_mapcount(page);
2606 ret += mapcount;
2607 _total_mapcount += mapcount;
2608 if (total_mapcount)
2609 *total_mapcount = _total_mapcount;
2610 return ret;
2611}
2612
Huang Yingb8f593c2017-07-06 15:37:28 -07002613/* Racy check whether the huge page can be split */
2614bool can_split_huge_page(struct page *page, int *pextra_pins)
2615{
2616 int extra_pins;
2617
Matthew Wilcoxaa5dc072017-12-04 10:16:10 -05002618 /* Additional pins from page cache */
Huang Yingb8f593c2017-07-06 15:37:28 -07002619 if (PageAnon(page))
Matthew Wilcox (Oracle)e2333da2020-10-15 20:05:43 -07002620 extra_pins = PageSwapCache(page) ? thp_nr_pages(page) : 0;
Huang Yingb8f593c2017-07-06 15:37:28 -07002621 else
Matthew Wilcox (Oracle)e2333da2020-10-15 20:05:43 -07002622 extra_pins = thp_nr_pages(page);
Huang Yingb8f593c2017-07-06 15:37:28 -07002623 if (pextra_pins)
2624 *pextra_pins = extra_pins;
2625 return total_mapcount(page) == page_count(page) - extra_pins - 1;
2626}
2627
Andrea Arcangeli6d0a07e2016-05-12 15:42:25 -07002628/*
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002629 * This function splits huge page into normal pages. @page can point to any
2630 * subpage of huge page to split. Split doesn't change the position of @page.
2631 *
2632 * Only caller must hold pin on the @page, otherwise split fails with -EBUSY.
2633 * The huge page must be locked.
2634 *
2635 * If @list is null, tail pages will be added to LRU list, otherwise, to @list.
2636 *
2637 * Both head page and tail pages will inherit mapping, flags, and so on from
2638 * the hugepage.
2639 *
2640 * GUP pin and PG_locked transferred to @page. Rest subpages can be freed if
2641 * they are not mapped.
2642 *
2643 * Returns 0 if the hugepage is split successfully.
2644 * Returns -EBUSY if the page is pinned or if anon_vma disappeared from under
2645 * us.
2646 */
2647int split_huge_page_to_list(struct page *page, struct list_head *list)
2648{
2649 struct page *head = compound_head(page);
Kirill A. Shutemova3d0a9182016-02-02 16:57:08 -08002650 struct pglist_data *pgdata = NODE_DATA(page_to_nid(head));
Wei Yanga8803e62020-01-30 22:14:32 -08002651 struct deferred_split *ds_queue = get_deferred_split_queue(head);
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002652 struct anon_vma *anon_vma = NULL;
2653 struct address_space *mapping = NULL;
Yang Shi825c2802021-06-15 18:24:07 -07002654 int extra_pins, ret;
Kirill A. Shutemov0b9b6ff2016-01-20 14:58:09 -08002655 unsigned long flags;
Hugh Dickins006d3ff2018-11-30 14:10:21 -08002656 pgoff_t end;
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002657
Wei Yangcb829622020-01-30 22:14:29 -08002658 VM_BUG_ON_PAGE(is_huge_zero_page(head), head);
Wei Yanga8803e62020-01-30 22:14:32 -08002659 VM_BUG_ON_PAGE(!PageLocked(head), head);
2660 VM_BUG_ON_PAGE(!PageCompound(head), head);
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002661
Wei Yanga8803e62020-01-30 22:14:32 -08002662 if (PageWriteback(head))
Huang Ying59807682017-09-06 16:22:34 -07002663 return -EBUSY;
2664
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002665 if (PageAnon(head)) {
2666 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002667 * The caller does not necessarily hold an mmap_lock that would
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002668 * prevent the anon_vma disappearing so we first we take a
2669 * reference to it and then lock the anon_vma for write. This
2670 * is similar to page_lock_anon_vma_read except the write lock
2671 * is taken to serialise against parallel split or collapse
2672 * operations.
2673 */
2674 anon_vma = page_get_anon_vma(head);
2675 if (!anon_vma) {
2676 ret = -EBUSY;
2677 goto out;
2678 }
Hugh Dickins006d3ff2018-11-30 14:10:21 -08002679 end = -1;
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002680 mapping = NULL;
2681 anon_vma_lock_write(anon_vma);
2682 } else {
2683 mapping = head->mapping;
2684
2685 /* Truncated ? */
2686 if (!mapping) {
2687 ret = -EBUSY;
2688 goto out;
2689 }
2690
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002691 anon_vma = NULL;
2692 i_mmap_lock_read(mapping);
Hugh Dickins006d3ff2018-11-30 14:10:21 -08002693
2694 /*
2695 *__split_huge_page() may need to trim off pages beyond EOF:
2696 * but on 32-bit, i_size_read() takes an irq-unsafe seqlock,
2697 * which cannot be nested inside the page tree lock. So note
2698 * end now: i_size itself may be changed at any moment, but
2699 * head page lock is good enough to serialize the trimming.
2700 */
2701 end = DIV_ROUND_UP(i_size_read(mapping->host), PAGE_SIZE);
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002702 }
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002703
2704 /*
Hugh Dickins906f9cd2018-11-30 14:10:13 -08002705 * Racy check if we can split the page, before unmap_page() will
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002706 * split PMDs
2707 */
Huang Yingb8f593c2017-07-06 15:37:28 -07002708 if (!can_split_huge_page(head, &extra_pins)) {
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002709 ret = -EBUSY;
2710 goto out_unlock;
2711 }
2712
Hugh Dickins906f9cd2018-11-30 14:10:13 -08002713 unmap_page(head);
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002714
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002715 /* prevent PageLRU to go away from under us, and freeze lru stats */
Andrey Ryabininf4b7e272019-03-05 15:49:39 -08002716 spin_lock_irqsave(&pgdata->lru_lock, flags);
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002717
2718 if (mapping) {
Matthew Wilcoxaa5dc072017-12-04 10:16:10 -05002719 XA_STATE(xas, &mapping->i_pages, page_index(head));
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002720
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002721 /*
Matthew Wilcoxaa5dc072017-12-04 10:16:10 -05002722 * Check if the head page is present in page cache.
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002723 * We assume all tail are present too, if head is there.
2724 */
Matthew Wilcoxaa5dc072017-12-04 10:16:10 -05002725 xa_lock(&mapping->i_pages);
2726 if (xas_load(&xas) != head)
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002727 goto fail;
2728 }
2729
Joonsoo Kim0139aa72016-05-19 17:10:49 -07002730 /* Prevent deferred_split_scan() touching ->_refcount */
Yang Shi364c1ee2019-09-23 15:38:06 -07002731 spin_lock(&ds_queue->split_queue_lock);
Yang Shi825c2802021-06-15 18:24:07 -07002732 if (page_ref_freeze(head, 1 + extra_pins)) {
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002733 if (!list_empty(page_deferred_list(head))) {
Yang Shi364c1ee2019-09-23 15:38:06 -07002734 ds_queue->split_queue_len--;
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002735 list_del(page_deferred_list(head));
2736 }
Wei Yangafb97172020-01-30 22:14:35 -08002737 spin_unlock(&ds_queue->split_queue_lock);
Kirill A. Shutemov06d3eff2019-10-18 20:20:30 -07002738 if (mapping) {
Wei Yanga8803e62020-01-30 22:14:32 -08002739 if (PageSwapBacked(head))
2740 __dec_node_page_state(head, NR_SHMEM_THPS);
Kirill A. Shutemov06d3eff2019-10-18 20:20:30 -07002741 else
Wei Yanga8803e62020-01-30 22:14:32 -08002742 __dec_node_page_state(head, NR_FILE_THPS);
Kirill A. Shutemov06d3eff2019-10-18 20:20:30 -07002743 }
2744
Hugh Dickins006d3ff2018-11-30 14:10:21 -08002745 __split_huge_page(page, list, end, flags);
Huang Yingc4f9c702020-10-15 20:06:07 -07002746 ret = 0;
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002747 } else {
Yang Shi364c1ee2019-09-23 15:38:06 -07002748 spin_unlock(&ds_queue->split_queue_lock);
Yang Shi825c2802021-06-15 18:24:07 -07002749fail:
2750 if (mapping)
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07002751 xa_unlock(&mapping->i_pages);
Andrey Ryabininf4b7e272019-03-05 15:49:39 -08002752 spin_unlock_irqrestore(&pgdata->lru_lock, flags);
Kirill A. Shutemov8cce5472020-10-15 20:05:36 -07002753 remap_page(head, thp_nr_pages(head));
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002754 ret = -EBUSY;
2755 }
2756
2757out_unlock:
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002758 if (anon_vma) {
2759 anon_vma_unlock_write(anon_vma);
2760 put_anon_vma(anon_vma);
2761 }
2762 if (mapping)
2763 i_mmap_unlock_read(mapping);
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08002764out:
2765 count_vm_event(!ret ? THP_SPLIT_PAGE : THP_SPLIT_PAGE_FAILED);
2766 return ret;
2767}
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002768
2769void free_transhuge_page(struct page *page)
2770{
Yang Shi87eaceb2019-09-23 15:38:15 -07002771 struct deferred_split *ds_queue = get_deferred_split_queue(page);
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002772 unsigned long flags;
2773
Yang Shi364c1ee2019-09-23 15:38:06 -07002774 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002775 if (!list_empty(page_deferred_list(page))) {
Yang Shi364c1ee2019-09-23 15:38:06 -07002776 ds_queue->split_queue_len--;
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002777 list_del(page_deferred_list(page));
2778 }
Yang Shi364c1ee2019-09-23 15:38:06 -07002779 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002780 free_compound_page(page);
2781}
2782
2783void deferred_split_huge_page(struct page *page)
2784{
Yang Shi87eaceb2019-09-23 15:38:15 -07002785 struct deferred_split *ds_queue = get_deferred_split_queue(page);
2786#ifdef CONFIG_MEMCG
2787 struct mem_cgroup *memcg = compound_head(page)->mem_cgroup;
2788#endif
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002789 unsigned long flags;
2790
2791 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
2792
Yang Shi87eaceb2019-09-23 15:38:15 -07002793 /*
2794 * The try_to_unmap() in page reclaim path might reach here too,
2795 * this may cause a race condition to corrupt deferred split queue.
2796 * And, if page reclaim is already handling the same page, it is
2797 * unnecessary to handle it again in shrinker.
2798 *
2799 * Check PageSwapCache to determine if the page is being
2800 * handled by page reclaim since THP swap would add the page into
2801 * swap cache before calling try_to_unmap().
2802 */
2803 if (PageSwapCache(page))
2804 return;
2805
Yang Shi364c1ee2019-09-23 15:38:06 -07002806 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002807 if (list_empty(page_deferred_list(page))) {
Kirill A. Shutemovf9719a02016-03-17 14:18:45 -07002808 count_vm_event(THP_DEFERRED_SPLIT_PAGE);
Yang Shi364c1ee2019-09-23 15:38:06 -07002809 list_add_tail(page_deferred_list(page), &ds_queue->split_queue);
2810 ds_queue->split_queue_len++;
Yang Shi87eaceb2019-09-23 15:38:15 -07002811#ifdef CONFIG_MEMCG
2812 if (memcg)
2813 memcg_set_shrinker_bit(memcg, page_to_nid(page),
2814 deferred_split_shrinker.id);
2815#endif
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002816 }
Yang Shi364c1ee2019-09-23 15:38:06 -07002817 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002818}
2819
2820static unsigned long deferred_split_count(struct shrinker *shrink,
2821 struct shrink_control *sc)
2822{
Kirill A. Shutemova3d0a9182016-02-02 16:57:08 -08002823 struct pglist_data *pgdata = NODE_DATA(sc->nid);
Yang Shi364c1ee2019-09-23 15:38:06 -07002824 struct deferred_split *ds_queue = &pgdata->deferred_split_queue;
Yang Shi87eaceb2019-09-23 15:38:15 -07002825
2826#ifdef CONFIG_MEMCG
2827 if (sc->memcg)
2828 ds_queue = &sc->memcg->deferred_split_queue;
2829#endif
Yang Shi364c1ee2019-09-23 15:38:06 -07002830 return READ_ONCE(ds_queue->split_queue_len);
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002831}
2832
2833static unsigned long deferred_split_scan(struct shrinker *shrink,
2834 struct shrink_control *sc)
2835{
Kirill A. Shutemova3d0a9182016-02-02 16:57:08 -08002836 struct pglist_data *pgdata = NODE_DATA(sc->nid);
Yang Shi364c1ee2019-09-23 15:38:06 -07002837 struct deferred_split *ds_queue = &pgdata->deferred_split_queue;
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002838 unsigned long flags;
2839 LIST_HEAD(list), *pos, *next;
2840 struct page *page;
2841 int split = 0;
2842
Yang Shi87eaceb2019-09-23 15:38:15 -07002843#ifdef CONFIG_MEMCG
2844 if (sc->memcg)
2845 ds_queue = &sc->memcg->deferred_split_queue;
2846#endif
2847
Yang Shi364c1ee2019-09-23 15:38:06 -07002848 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002849 /* Take pin on all head pages to avoid freeing them under us */
Yang Shi364c1ee2019-09-23 15:38:06 -07002850 list_for_each_safe(pos, next, &ds_queue->split_queue) {
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002851 page = list_entry((void *)pos, struct page, mapping);
2852 page = compound_head(page);
Kirill A. Shutemove3ae1952016-02-02 16:57:15 -08002853 if (get_page_unless_zero(page)) {
2854 list_move(page_deferred_list(page), &list);
2855 } else {
2856 /* We lost race with put_compound_page() */
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002857 list_del_init(page_deferred_list(page));
Yang Shi364c1ee2019-09-23 15:38:06 -07002858 ds_queue->split_queue_len--;
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002859 }
Kirill A. Shutemove3ae1952016-02-02 16:57:15 -08002860 if (!--sc->nr_to_scan)
2861 break;
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002862 }
Yang Shi364c1ee2019-09-23 15:38:06 -07002863 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002864
2865 list_for_each_safe(pos, next, &list) {
2866 page = list_entry((void *)pos, struct page, mapping);
Kirill A. Shutemovfa41b902018-03-22 16:17:31 -07002867 if (!trylock_page(page))
2868 goto next;
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002869 /* split_huge_page() removes page from list on success */
2870 if (!split_huge_page(page))
2871 split++;
2872 unlock_page(page);
Kirill A. Shutemovfa41b902018-03-22 16:17:31 -07002873next:
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002874 put_page(page);
2875 }
2876
Yang Shi364c1ee2019-09-23 15:38:06 -07002877 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
2878 list_splice_tail(&list, &ds_queue->split_queue);
2879 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002880
Kirill A. Shutemovcb8d68e2016-02-02 16:57:12 -08002881 /*
2882 * Stop shrinker if we didn't split any page, but the queue is empty.
2883 * This can happen if pages were freed under us.
2884 */
Yang Shi364c1ee2019-09-23 15:38:06 -07002885 if (!split && list_empty(&ds_queue->split_queue))
Kirill A. Shutemovcb8d68e2016-02-02 16:57:12 -08002886 return SHRINK_STOP;
2887 return split;
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002888}
2889
2890static struct shrinker deferred_split_shrinker = {
2891 .count_objects = deferred_split_count,
2892 .scan_objects = deferred_split_scan,
2893 .seeks = DEFAULT_SEEKS,
Yang Shi87eaceb2019-09-23 15:38:15 -07002894 .flags = SHRINKER_NUMA_AWARE | SHRINKER_MEMCG_AWARE |
2895 SHRINKER_NONSLAB,
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002896};
Kirill A. Shutemov49071d42016-01-15 16:54:40 -08002897
2898#ifdef CONFIG_DEBUG_FS
2899static int split_huge_pages_set(void *data, u64 val)
2900{
2901 struct zone *zone;
2902 struct page *page;
2903 unsigned long pfn, max_zone_pfn;
2904 unsigned long total = 0, split = 0;
2905
2906 if (val != 1)
2907 return -EINVAL;
2908
2909 for_each_populated_zone(zone) {
2910 max_zone_pfn = zone_end_pfn(zone);
2911 for (pfn = zone->zone_start_pfn; pfn < max_zone_pfn; pfn++) {
2912 if (!pfn_valid(pfn))
2913 continue;
2914
2915 page = pfn_to_page(pfn);
2916 if (!get_page_unless_zero(page))
2917 continue;
2918
2919 if (zone != page_zone(page))
2920 goto next;
2921
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -07002922 if (!PageHead(page) || PageHuge(page) || !PageLRU(page))
Kirill A. Shutemov49071d42016-01-15 16:54:40 -08002923 goto next;
2924
2925 total++;
2926 lock_page(page);
2927 if (!split_huge_page(page))
2928 split++;
2929 unlock_page(page);
2930next:
2931 put_page(page);
2932 }
2933 }
2934
Yang Shi145bdaa2016-05-05 16:22:00 -07002935 pr_info("%lu of %lu THP split\n", split, total);
Kirill A. Shutemov49071d42016-01-15 16:54:40 -08002936
2937 return 0;
2938}
zhong jiangf1287862019-11-30 17:57:09 -08002939DEFINE_DEBUGFS_ATTRIBUTE(split_huge_pages_fops, NULL, split_huge_pages_set,
Kirill A. Shutemov49071d42016-01-15 16:54:40 -08002940 "%llu\n");
2941
2942static int __init split_huge_pages_debugfs(void)
2943{
Greg Kroah-Hartmand9f79792019-03-05 15:46:09 -08002944 debugfs_create_file("split_huge_pages", 0200, NULL, NULL,
2945 &split_huge_pages_fops);
Kirill A. Shutemov49071d42016-01-15 16:54:40 -08002946 return 0;
2947}
2948late_initcall(split_huge_pages_debugfs);
2949#endif
Zi Yan616b8372017-09-08 16:10:57 -07002950
2951#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
2952void set_pmd_migration_entry(struct page_vma_mapped_walk *pvmw,
2953 struct page *page)
2954{
2955 struct vm_area_struct *vma = pvmw->vma;
2956 struct mm_struct *mm = vma->vm_mm;
2957 unsigned long address = pvmw->address;
2958 pmd_t pmdval;
2959 swp_entry_t entry;
Naoya Horiguchiab6e3d02017-09-08 16:11:04 -07002960 pmd_t pmdswp;
Zi Yan616b8372017-09-08 16:10:57 -07002961
2962 if (!(pvmw->pmd && !pvmw->pte))
2963 return;
2964
Zi Yan616b8372017-09-08 16:10:57 -07002965 flush_cache_range(vma, address, address + HPAGE_PMD_SIZE);
Huang Ying8a8683a2020-03-05 22:28:29 -08002966 pmdval = pmdp_invalidate(vma, address, pvmw->pmd);
Zi Yan616b8372017-09-08 16:10:57 -07002967 if (pmd_dirty(pmdval))
2968 set_page_dirty(page);
2969 entry = make_migration_entry(page, pmd_write(pmdval));
Naoya Horiguchiab6e3d02017-09-08 16:11:04 -07002970 pmdswp = swp_entry_to_pmd(entry);
2971 if (pmd_soft_dirty(pmdval))
2972 pmdswp = pmd_swp_mksoft_dirty(pmdswp);
2973 set_pmd_at(mm, address, pvmw->pmd, pmdswp);
Zi Yan616b8372017-09-08 16:10:57 -07002974 page_remove_rmap(page, true);
2975 put_page(page);
Zi Yan616b8372017-09-08 16:10:57 -07002976}
2977
2978void remove_migration_pmd(struct page_vma_mapped_walk *pvmw, struct page *new)
2979{
2980 struct vm_area_struct *vma = pvmw->vma;
2981 struct mm_struct *mm = vma->vm_mm;
2982 unsigned long address = pvmw->address;
2983 unsigned long mmun_start = address & HPAGE_PMD_MASK;
2984 pmd_t pmde;
2985 swp_entry_t entry;
2986
2987 if (!(pvmw->pmd && !pvmw->pte))
2988 return;
2989
2990 entry = pmd_to_swp_entry(*pvmw->pmd);
2991 get_page(new);
2992 pmde = pmd_mkold(mk_huge_pmd(new, vma->vm_page_prot));
Naoya Horiguchiab6e3d02017-09-08 16:11:04 -07002993 if (pmd_swp_soft_dirty(*pvmw->pmd))
2994 pmde = pmd_mksoft_dirty(pmde);
Zi Yan616b8372017-09-08 16:10:57 -07002995 if (is_write_migration_entry(entry))
Linus Torvaldsf55e1012017-11-29 09:01:01 -08002996 pmde = maybe_pmd_mkwrite(pmde, vma);
Peter Xu9e1cf2d2021-06-30 18:49:02 -07002997 if (pmd_swp_uffd_wp(*pvmw->pmd))
2998 pmde = pmd_wrprotect(pmd_mkuffd_wp(pmde));
Zi Yan616b8372017-09-08 16:10:57 -07002999
3000 flush_cache_range(vma, mmun_start, mmun_start + HPAGE_PMD_SIZE);
Naoya Horiguchie71769a2018-04-20 14:55:45 -07003001 if (PageAnon(new))
3002 page_add_anon_rmap(new, vma, mmun_start, true);
3003 else
3004 page_add_file_rmap(new, true);
Zi Yan616b8372017-09-08 16:10:57 -07003005 set_pmd_at(mm, mmun_start, pvmw->pmd, pmde);
Kirill A. Shutemove125fe42018-10-05 15:51:41 -07003006 if ((vma->vm_flags & VM_LOCKED) && !PageDoubleMap(new))
Zi Yan616b8372017-09-08 16:10:57 -07003007 mlock_vma_page(new);
3008 update_mmu_cache_pmd(vma, address, pvmw->pmd);
3009}
3010#endif