blob: 9057241d572245b8da15ce2684a5cb8494bb8225 [file] [log] [blame]
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001/*
2 * Copyright (C) 2009 Red Hat, Inc.
3 *
4 * This work is licensed under the terms of the GNU GPL, version 2. See
5 * the COPYING file in the top-level directory.
6 */
7
Andrew Mortonae3a8c12014-06-04 16:06:58 -07008#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -080010#include <linux/mm.h>
11#include <linux/sched.h>
12#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>
Matthew Wilcox4897c762015-09-08 14:58:45 -070019#include <linux/dax.h>
Andrea Arcangeliba761492011-01-13 15:46:58 -080020#include <linux/kthread.h>
21#include <linux/khugepaged.h>
Andrea Arcangeli878aee72011-01-13 15:47:10 -080022#include <linux/freezer.h>
Andrea Arcangelia664b2d2011-01-13 15:47:17 -080023#include <linux/mman.h>
Ralf Baechle325adeb2012-10-15 13:44:56 +020024#include <linux/pagemap.h>
Mel Gorman4daae3b2012-11-02 11:33:45 +000025#include <linux/migrate.h>
Sasha Levin43b5fbb2013-02-22 16:32:27 -080026#include <linux/hashtable.h>
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -070027#include <linux/userfaultfd_k.h>
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -080028
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -080029#include <asm/tlb.h>
30#include <asm/pgalloc.h>
31#include "internal.h"
32
Andrea Arcangeliba761492011-01-13 15:46:58 -080033/*
Jianguo Wu8bfa3f92013-11-12 15:07:16 -080034 * By default transparent hugepage support is disabled in order that avoid
35 * to risk increase the memory footprint of applications without a guaranteed
36 * benefit. When transparent hugepage support is enabled, is for all mappings,
37 * and khugepaged scans all mappings.
38 * Defrag is invoked by khugepaged hugepage allocations and by page faults
39 * for all hugepage allocations.
Andrea Arcangeliba761492011-01-13 15:46:58 -080040 */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -080041unsigned long transparent_hugepage_flags __read_mostly =
Andrea Arcangeli13ece882011-01-13 15:47:07 -080042#ifdef CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS
Andrea Arcangeliba761492011-01-13 15:46:58 -080043 (1<<TRANSPARENT_HUGEPAGE_FLAG)|
Andrea Arcangeli13ece882011-01-13 15:47:07 -080044#endif
45#ifdef CONFIG_TRANSPARENT_HUGEPAGE_MADVISE
46 (1<<TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG)|
47#endif
Andrea Arcangelid39d33c2011-01-13 15:47:05 -080048 (1<<TRANSPARENT_HUGEPAGE_DEFRAG_FLAG)|
Kirill A. Shutemov79da5402012-12-12 13:51:12 -080049 (1<<TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG)|
50 (1<<TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
Andrea Arcangeliba761492011-01-13 15:46:58 -080051
52/* default scan 8*512 pte (or vmas) every 30 second */
53static unsigned int khugepaged_pages_to_scan __read_mostly = HPAGE_PMD_NR*8;
54static unsigned int khugepaged_pages_collapsed;
55static unsigned int khugepaged_full_scans;
56static unsigned int khugepaged_scan_sleep_millisecs __read_mostly = 10000;
57/* during fragmentation poll the hugepage allocator once every minute */
58static unsigned int khugepaged_alloc_sleep_millisecs __read_mostly = 60000;
59static struct task_struct *khugepaged_thread __read_mostly;
60static DEFINE_MUTEX(khugepaged_mutex);
61static DEFINE_SPINLOCK(khugepaged_mm_lock);
62static DECLARE_WAIT_QUEUE_HEAD(khugepaged_wait);
63/*
64 * default collapse hugepages if there is at least one pte mapped like
65 * it would have happened if the vma was large enough during page
66 * fault.
67 */
68static unsigned int khugepaged_max_ptes_none __read_mostly = HPAGE_PMD_NR-1;
69
70static int khugepaged(void *none);
Andrea Arcangeliba761492011-01-13 15:46:58 -080071static int khugepaged_slab_init(void);
Kirill A. Shutemov65ebb642015-04-15 16:14:20 -070072static void khugepaged_slab_exit(void);
Andrea Arcangeliba761492011-01-13 15:46:58 -080073
Sasha Levin43b5fbb2013-02-22 16:32:27 -080074#define MM_SLOTS_HASH_BITS 10
75static __read_mostly DEFINE_HASHTABLE(mm_slots_hash, MM_SLOTS_HASH_BITS);
76
Andrea Arcangeliba761492011-01-13 15:46:58 -080077static struct kmem_cache *mm_slot_cache __read_mostly;
78
79/**
80 * struct mm_slot - hash lookup from mm to mm_slot
81 * @hash: hash collision list
82 * @mm_node: khugepaged scan list headed in khugepaged_scan.mm_head
83 * @mm: the mm that this information is valid for
84 */
85struct mm_slot {
86 struct hlist_node hash;
87 struct list_head mm_node;
88 struct mm_struct *mm;
89};
90
91/**
92 * struct khugepaged_scan - cursor for scanning
93 * @mm_head: the head of the mm list to scan
94 * @mm_slot: the current mm_slot we are scanning
95 * @address: the next address inside that to be scanned
96 *
97 * There is only the one khugepaged_scan instance of this cursor structure.
98 */
99struct khugepaged_scan {
100 struct list_head mm_head;
101 struct mm_slot *mm_slot;
102 unsigned long address;
H Hartley Sweeten2f1da642011-10-31 17:09:25 -0700103};
104static struct khugepaged_scan khugepaged_scan = {
Andrea Arcangeliba761492011-01-13 15:46:58 -0800105 .mm_head = LIST_HEAD_INIT(khugepaged_scan.mm_head),
106};
107
Andrea Arcangelif0005652011-01-13 15:47:04 -0800108
109static int set_recommended_min_free_kbytes(void)
110{
111 struct zone *zone;
112 int nr_zones = 0;
113 unsigned long recommended_min;
Andrea Arcangelif0005652011-01-13 15:47:04 -0800114
Andrea Arcangelif0005652011-01-13 15:47:04 -0800115 for_each_populated_zone(zone)
116 nr_zones++;
117
118 /* Make sure at least 2 hugepages are free for MIGRATE_RESERVE */
119 recommended_min = pageblock_nr_pages * nr_zones * 2;
120
121 /*
122 * Make sure that on average at least two pageblocks are almost free
123 * of another type, one for a migratetype to fall back to and a
124 * second to avoid subsequent fallbacks of other types There are 3
125 * MIGRATE_TYPES we care about.
126 */
127 recommended_min += pageblock_nr_pages * nr_zones *
128 MIGRATE_PCPTYPES * MIGRATE_PCPTYPES;
129
130 /* don't ever allow to reserve more than 5% of the lowmem */
131 recommended_min = min(recommended_min,
132 (unsigned long) nr_free_buffer_pages() / 20);
133 recommended_min <<= (PAGE_SHIFT-10);
134
Han Pingtian42aa83c2014-01-23 15:53:28 -0800135 if (recommended_min > min_free_kbytes) {
136 if (user_min_free_kbytes >= 0)
137 pr_info("raising min_free_kbytes from %d to %lu "
138 "to help transparent hugepage allocations\n",
139 min_free_kbytes, recommended_min);
140
Andrea Arcangelif0005652011-01-13 15:47:04 -0800141 min_free_kbytes = recommended_min;
Han Pingtian42aa83c2014-01-23 15:53:28 -0800142 }
Andrea Arcangelif0005652011-01-13 15:47:04 -0800143 setup_per_zone_wmarks();
144 return 0;
145}
Andrea Arcangelif0005652011-01-13 15:47:04 -0800146
Kirill A. Shutemov79553da2015-04-15 16:14:56 -0700147static int start_stop_khugepaged(void)
Andrea Arcangeliba761492011-01-13 15:46:58 -0800148{
149 int err = 0;
150 if (khugepaged_enabled()) {
Andrea Arcangeliba761492011-01-13 15:46:58 -0800151 if (!khugepaged_thread)
152 khugepaged_thread = kthread_run(khugepaged, NULL,
153 "khugepaged");
154 if (unlikely(IS_ERR(khugepaged_thread))) {
Andrew Mortonae3a8c12014-06-04 16:06:58 -0700155 pr_err("khugepaged: kthread_run(khugepaged) failed\n");
Andrea Arcangeliba761492011-01-13 15:46:58 -0800156 err = PTR_ERR(khugepaged_thread);
157 khugepaged_thread = NULL;
Kirill A. Shutemov79553da2015-04-15 16:14:56 -0700158 goto fail;
Andrea Arcangeliba761492011-01-13 15:46:58 -0800159 }
Xiao Guangrong911891a2012-10-08 16:29:41 -0700160
161 if (!list_empty(&khugepaged_scan.mm_head))
Andrea Arcangeliba761492011-01-13 15:46:58 -0800162 wake_up_interruptible(&khugepaged_wait);
Andrea Arcangelif0005652011-01-13 15:47:04 -0800163
164 set_recommended_min_free_kbytes();
Xiao Guangrong911891a2012-10-08 16:29:41 -0700165 } else if (khugepaged_thread) {
Xiao Guangrong911891a2012-10-08 16:29:41 -0700166 kthread_stop(khugepaged_thread);
167 khugepaged_thread = NULL;
168 }
Kirill A. Shutemov79553da2015-04-15 16:14:56 -0700169fail:
Andrea Arcangeliba761492011-01-13 15:46:58 -0800170 return err;
171}
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800172
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800173static atomic_t huge_zero_refcount;
Wang, Yalin56873f42015-02-11 15:24:51 -0800174struct page *huge_zero_page __read_mostly;
Kirill A. Shutemov4a6c1292012-12-12 13:50:47 -0800175
176static inline bool is_huge_zero_pmd(pmd_t pmd)
177{
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700178 return is_huge_zero_page(pmd_page(pmd));
Kirill A. Shutemov4a6c1292012-12-12 13:50:47 -0800179}
180
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700181static struct page *get_huge_zero_page(void)
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800182{
183 struct page *zero_page;
184retry:
185 if (likely(atomic_inc_not_zero(&huge_zero_refcount)))
Jason Low4db0c3c2015-04-15 16:14:08 -0700186 return READ_ONCE(huge_zero_page);
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800187
188 zero_page = alloc_pages((GFP_TRANSHUGE | __GFP_ZERO) & ~__GFP_MOVABLE,
189 HPAGE_PMD_ORDER);
Kirill A. Shutemovd8a8e1f2012-12-12 13:51:09 -0800190 if (!zero_page) {
191 count_vm_event(THP_ZERO_PAGE_ALLOC_FAILED);
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700192 return NULL;
Kirill A. Shutemovd8a8e1f2012-12-12 13:51:09 -0800193 }
194 count_vm_event(THP_ZERO_PAGE_ALLOC);
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800195 preempt_disable();
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700196 if (cmpxchg(&huge_zero_page, NULL, zero_page)) {
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800197 preempt_enable();
Yu Zhao5ddacbe2014-10-29 14:50:26 -0700198 __free_pages(zero_page, compound_order(zero_page));
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800199 goto retry;
200 }
201
202 /* We take additional reference here. It will be put back by shrinker */
203 atomic_set(&huge_zero_refcount, 2);
204 preempt_enable();
Jason Low4db0c3c2015-04-15 16:14:08 -0700205 return READ_ONCE(huge_zero_page);
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800206}
207
208static void put_huge_zero_page(void)
209{
210 /*
211 * Counter should never go to zero here. Only shrinker can put
212 * last reference.
213 */
214 BUG_ON(atomic_dec_and_test(&huge_zero_refcount));
215}
216
Glauber Costa48896462013-08-28 10:18:15 +1000217static unsigned long shrink_huge_zero_page_count(struct shrinker *shrink,
218 struct shrink_control *sc)
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800219{
Glauber Costa48896462013-08-28 10:18:15 +1000220 /* we can free zero page only if last reference remains */
221 return atomic_read(&huge_zero_refcount) == 1 ? HPAGE_PMD_NR : 0;
222}
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800223
Glauber Costa48896462013-08-28 10:18:15 +1000224static unsigned long shrink_huge_zero_page_scan(struct shrinker *shrink,
225 struct shrink_control *sc)
226{
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800227 if (atomic_cmpxchg(&huge_zero_refcount, 1, 0) == 1) {
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700228 struct page *zero_page = xchg(&huge_zero_page, NULL);
229 BUG_ON(zero_page == NULL);
Yu Zhao5ddacbe2014-10-29 14:50:26 -0700230 __free_pages(zero_page, compound_order(zero_page));
Glauber Costa48896462013-08-28 10:18:15 +1000231 return HPAGE_PMD_NR;
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800232 }
233
234 return 0;
235}
236
237static struct shrinker huge_zero_page_shrinker = {
Glauber Costa48896462013-08-28 10:18:15 +1000238 .count_objects = shrink_huge_zero_page_count,
239 .scan_objects = shrink_huge_zero_page_scan,
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800240 .seeks = DEFAULT_SEEKS,
241};
242
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800243#ifdef CONFIG_SYSFS
Andrea Arcangeliba761492011-01-13 15:46:58 -0800244
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800245static ssize_t double_flag_show(struct kobject *kobj,
246 struct kobj_attribute *attr, char *buf,
247 enum transparent_hugepage_flag enabled,
248 enum transparent_hugepage_flag req_madv)
249{
250 if (test_bit(enabled, &transparent_hugepage_flags)) {
251 VM_BUG_ON(test_bit(req_madv, &transparent_hugepage_flags));
252 return sprintf(buf, "[always] madvise never\n");
253 } else if (test_bit(req_madv, &transparent_hugepage_flags))
254 return sprintf(buf, "always [madvise] never\n");
255 else
256 return sprintf(buf, "always madvise [never]\n");
257}
258static ssize_t double_flag_store(struct kobject *kobj,
259 struct kobj_attribute *attr,
260 const char *buf, size_t count,
261 enum transparent_hugepage_flag enabled,
262 enum transparent_hugepage_flag req_madv)
263{
264 if (!memcmp("always", buf,
265 min(sizeof("always")-1, count))) {
266 set_bit(enabled, &transparent_hugepage_flags);
267 clear_bit(req_madv, &transparent_hugepage_flags);
268 } else if (!memcmp("madvise", buf,
269 min(sizeof("madvise")-1, count))) {
270 clear_bit(enabled, &transparent_hugepage_flags);
271 set_bit(req_madv, &transparent_hugepage_flags);
272 } else if (!memcmp("never", buf,
273 min(sizeof("never")-1, count))) {
274 clear_bit(enabled, &transparent_hugepage_flags);
275 clear_bit(req_madv, &transparent_hugepage_flags);
276 } else
277 return -EINVAL;
278
279 return count;
280}
281
282static ssize_t enabled_show(struct kobject *kobj,
283 struct kobj_attribute *attr, char *buf)
284{
285 return double_flag_show(kobj, attr, buf,
286 TRANSPARENT_HUGEPAGE_FLAG,
287 TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG);
288}
289static ssize_t enabled_store(struct kobject *kobj,
290 struct kobj_attribute *attr,
291 const char *buf, size_t count)
292{
Andrea Arcangeliba761492011-01-13 15:46:58 -0800293 ssize_t ret;
294
295 ret = double_flag_store(kobj, attr, buf, count,
296 TRANSPARENT_HUGEPAGE_FLAG,
297 TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG);
298
299 if (ret > 0) {
Xiao Guangrong911891a2012-10-08 16:29:41 -0700300 int err;
301
302 mutex_lock(&khugepaged_mutex);
Kirill A. Shutemov79553da2015-04-15 16:14:56 -0700303 err = start_stop_khugepaged();
Xiao Guangrong911891a2012-10-08 16:29:41 -0700304 mutex_unlock(&khugepaged_mutex);
305
Andrea Arcangeliba761492011-01-13 15:46:58 -0800306 if (err)
307 ret = err;
308 }
309
310 return ret;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800311}
312static struct kobj_attribute enabled_attr =
313 __ATTR(enabled, 0644, enabled_show, enabled_store);
314
315static ssize_t single_flag_show(struct kobject *kobj,
316 struct kobj_attribute *attr, char *buf,
317 enum transparent_hugepage_flag flag)
318{
Ben Hutchingse27e6152011-04-14 15:22:21 -0700319 return sprintf(buf, "%d\n",
320 !!test_bit(flag, &transparent_hugepage_flags));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800321}
Ben Hutchingse27e6152011-04-14 15:22:21 -0700322
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800323static ssize_t single_flag_store(struct kobject *kobj,
324 struct kobj_attribute *attr,
325 const char *buf, size_t count,
326 enum transparent_hugepage_flag flag)
327{
Ben Hutchingse27e6152011-04-14 15:22:21 -0700328 unsigned long value;
329 int ret;
330
331 ret = kstrtoul(buf, 10, &value);
332 if (ret < 0)
333 return ret;
334 if (value > 1)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800335 return -EINVAL;
336
Ben Hutchingse27e6152011-04-14 15:22:21 -0700337 if (value)
338 set_bit(flag, &transparent_hugepage_flags);
339 else
340 clear_bit(flag, &transparent_hugepage_flags);
341
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800342 return count;
343}
344
345/*
346 * Currently defrag only disables __GFP_NOWAIT for allocation. A blind
347 * __GFP_REPEAT is too aggressive, it's never worth swapping tons of
348 * memory just to allocate one more hugepage.
349 */
350static ssize_t defrag_show(struct kobject *kobj,
351 struct kobj_attribute *attr, char *buf)
352{
353 return double_flag_show(kobj, attr, buf,
354 TRANSPARENT_HUGEPAGE_DEFRAG_FLAG,
355 TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG);
356}
357static ssize_t defrag_store(struct kobject *kobj,
358 struct kobj_attribute *attr,
359 const char *buf, size_t count)
360{
361 return double_flag_store(kobj, attr, buf, count,
362 TRANSPARENT_HUGEPAGE_DEFRAG_FLAG,
363 TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG);
364}
365static struct kobj_attribute defrag_attr =
366 __ATTR(defrag, 0644, defrag_show, defrag_store);
367
Kirill A. Shutemov79da5402012-12-12 13:51:12 -0800368static ssize_t use_zero_page_show(struct kobject *kobj,
369 struct kobj_attribute *attr, char *buf)
370{
371 return single_flag_show(kobj, attr, buf,
372 TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
373}
374static ssize_t use_zero_page_store(struct kobject *kobj,
375 struct kobj_attribute *attr, const char *buf, size_t count)
376{
377 return single_flag_store(kobj, attr, buf, count,
378 TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
379}
380static struct kobj_attribute use_zero_page_attr =
381 __ATTR(use_zero_page, 0644, use_zero_page_show, use_zero_page_store);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800382#ifdef CONFIG_DEBUG_VM
383static ssize_t debug_cow_show(struct kobject *kobj,
384 struct kobj_attribute *attr, char *buf)
385{
386 return single_flag_show(kobj, attr, buf,
387 TRANSPARENT_HUGEPAGE_DEBUG_COW_FLAG);
388}
389static ssize_t debug_cow_store(struct kobject *kobj,
390 struct kobj_attribute *attr,
391 const char *buf, size_t count)
392{
393 return single_flag_store(kobj, attr, buf, count,
394 TRANSPARENT_HUGEPAGE_DEBUG_COW_FLAG);
395}
396static struct kobj_attribute debug_cow_attr =
397 __ATTR(debug_cow, 0644, debug_cow_show, debug_cow_store);
398#endif /* CONFIG_DEBUG_VM */
399
400static struct attribute *hugepage_attr[] = {
401 &enabled_attr.attr,
402 &defrag_attr.attr,
Kirill A. Shutemov79da5402012-12-12 13:51:12 -0800403 &use_zero_page_attr.attr,
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800404#ifdef CONFIG_DEBUG_VM
405 &debug_cow_attr.attr,
406#endif
407 NULL,
408};
409
410static struct attribute_group hugepage_attr_group = {
411 .attrs = hugepage_attr,
Andrea Arcangeliba761492011-01-13 15:46:58 -0800412};
413
414static ssize_t scan_sleep_millisecs_show(struct kobject *kobj,
415 struct kobj_attribute *attr,
416 char *buf)
417{
418 return sprintf(buf, "%u\n", khugepaged_scan_sleep_millisecs);
419}
420
421static ssize_t scan_sleep_millisecs_store(struct kobject *kobj,
422 struct kobj_attribute *attr,
423 const char *buf, size_t count)
424{
425 unsigned long msecs;
426 int err;
427
Jingoo Han3dbb95f2013-09-11 14:20:25 -0700428 err = kstrtoul(buf, 10, &msecs);
Andrea Arcangeliba761492011-01-13 15:46:58 -0800429 if (err || msecs > UINT_MAX)
430 return -EINVAL;
431
432 khugepaged_scan_sleep_millisecs = msecs;
433 wake_up_interruptible(&khugepaged_wait);
434
435 return count;
436}
437static struct kobj_attribute scan_sleep_millisecs_attr =
438 __ATTR(scan_sleep_millisecs, 0644, scan_sleep_millisecs_show,
439 scan_sleep_millisecs_store);
440
441static ssize_t alloc_sleep_millisecs_show(struct kobject *kobj,
442 struct kobj_attribute *attr,
443 char *buf)
444{
445 return sprintf(buf, "%u\n", khugepaged_alloc_sleep_millisecs);
446}
447
448static ssize_t alloc_sleep_millisecs_store(struct kobject *kobj,
449 struct kobj_attribute *attr,
450 const char *buf, size_t count)
451{
452 unsigned long msecs;
453 int err;
454
Jingoo Han3dbb95f2013-09-11 14:20:25 -0700455 err = kstrtoul(buf, 10, &msecs);
Andrea Arcangeliba761492011-01-13 15:46:58 -0800456 if (err || msecs > UINT_MAX)
457 return -EINVAL;
458
459 khugepaged_alloc_sleep_millisecs = msecs;
460 wake_up_interruptible(&khugepaged_wait);
461
462 return count;
463}
464static struct kobj_attribute alloc_sleep_millisecs_attr =
465 __ATTR(alloc_sleep_millisecs, 0644, alloc_sleep_millisecs_show,
466 alloc_sleep_millisecs_store);
467
468static ssize_t pages_to_scan_show(struct kobject *kobj,
469 struct kobj_attribute *attr,
470 char *buf)
471{
472 return sprintf(buf, "%u\n", khugepaged_pages_to_scan);
473}
474static ssize_t pages_to_scan_store(struct kobject *kobj,
475 struct kobj_attribute *attr,
476 const char *buf, size_t count)
477{
478 int err;
479 unsigned long pages;
480
Jingoo Han3dbb95f2013-09-11 14:20:25 -0700481 err = kstrtoul(buf, 10, &pages);
Andrea Arcangeliba761492011-01-13 15:46:58 -0800482 if (err || !pages || pages > UINT_MAX)
483 return -EINVAL;
484
485 khugepaged_pages_to_scan = pages;
486
487 return count;
488}
489static struct kobj_attribute pages_to_scan_attr =
490 __ATTR(pages_to_scan, 0644, pages_to_scan_show,
491 pages_to_scan_store);
492
493static ssize_t pages_collapsed_show(struct kobject *kobj,
494 struct kobj_attribute *attr,
495 char *buf)
496{
497 return sprintf(buf, "%u\n", khugepaged_pages_collapsed);
498}
499static struct kobj_attribute pages_collapsed_attr =
500 __ATTR_RO(pages_collapsed);
501
502static ssize_t full_scans_show(struct kobject *kobj,
503 struct kobj_attribute *attr,
504 char *buf)
505{
506 return sprintf(buf, "%u\n", khugepaged_full_scans);
507}
508static struct kobj_attribute full_scans_attr =
509 __ATTR_RO(full_scans);
510
511static ssize_t khugepaged_defrag_show(struct kobject *kobj,
512 struct kobj_attribute *attr, char *buf)
513{
514 return single_flag_show(kobj, attr, buf,
515 TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG);
516}
517static ssize_t khugepaged_defrag_store(struct kobject *kobj,
518 struct kobj_attribute *attr,
519 const char *buf, size_t count)
520{
521 return single_flag_store(kobj, attr, buf, count,
522 TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG);
523}
524static struct kobj_attribute khugepaged_defrag_attr =
525 __ATTR(defrag, 0644, khugepaged_defrag_show,
526 khugepaged_defrag_store);
527
528/*
529 * max_ptes_none controls if khugepaged should collapse hugepages over
530 * any unmapped ptes in turn potentially increasing the memory
531 * footprint of the vmas. When max_ptes_none is 0 khugepaged will not
532 * reduce the available free memory in the system as it
533 * runs. Increasing max_ptes_none will instead potentially reduce the
534 * free memory in the system during the khugepaged scan.
535 */
536static ssize_t khugepaged_max_ptes_none_show(struct kobject *kobj,
537 struct kobj_attribute *attr,
538 char *buf)
539{
540 return sprintf(buf, "%u\n", khugepaged_max_ptes_none);
541}
542static ssize_t khugepaged_max_ptes_none_store(struct kobject *kobj,
543 struct kobj_attribute *attr,
544 const char *buf, size_t count)
545{
546 int err;
547 unsigned long max_ptes_none;
548
Jingoo Han3dbb95f2013-09-11 14:20:25 -0700549 err = kstrtoul(buf, 10, &max_ptes_none);
Andrea Arcangeliba761492011-01-13 15:46:58 -0800550 if (err || max_ptes_none > HPAGE_PMD_NR-1)
551 return -EINVAL;
552
553 khugepaged_max_ptes_none = max_ptes_none;
554
555 return count;
556}
557static struct kobj_attribute khugepaged_max_ptes_none_attr =
558 __ATTR(max_ptes_none, 0644, khugepaged_max_ptes_none_show,
559 khugepaged_max_ptes_none_store);
560
561static struct attribute *khugepaged_attr[] = {
562 &khugepaged_defrag_attr.attr,
563 &khugepaged_max_ptes_none_attr.attr,
564 &pages_to_scan_attr.attr,
565 &pages_collapsed_attr.attr,
566 &full_scans_attr.attr,
567 &scan_sleep_millisecs_attr.attr,
568 &alloc_sleep_millisecs_attr.attr,
569 NULL,
570};
571
572static struct attribute_group khugepaged_attr_group = {
573 .attrs = khugepaged_attr,
574 .name = "khugepaged",
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800575};
Shaohua Li569e5592012-01-12 17:19:11 -0800576
577static int __init hugepage_init_sysfs(struct kobject **hugepage_kobj)
578{
579 int err;
580
581 *hugepage_kobj = kobject_create_and_add("transparent_hugepage", mm_kobj);
582 if (unlikely(!*hugepage_kobj)) {
Andrew Mortonae3a8c12014-06-04 16:06:58 -0700583 pr_err("failed to create transparent hugepage kobject\n");
Shaohua Li569e5592012-01-12 17:19:11 -0800584 return -ENOMEM;
585 }
586
587 err = sysfs_create_group(*hugepage_kobj, &hugepage_attr_group);
588 if (err) {
Andrew Mortonae3a8c12014-06-04 16:06:58 -0700589 pr_err("failed to register transparent hugepage group\n");
Shaohua Li569e5592012-01-12 17:19:11 -0800590 goto delete_obj;
591 }
592
593 err = sysfs_create_group(*hugepage_kobj, &khugepaged_attr_group);
594 if (err) {
Andrew Mortonae3a8c12014-06-04 16:06:58 -0700595 pr_err("failed to register transparent hugepage group\n");
Shaohua Li569e5592012-01-12 17:19:11 -0800596 goto remove_hp_group;
597 }
598
599 return 0;
600
601remove_hp_group:
602 sysfs_remove_group(*hugepage_kobj, &hugepage_attr_group);
603delete_obj:
604 kobject_put(*hugepage_kobj);
605 return err;
606}
607
608static void __init hugepage_exit_sysfs(struct kobject *hugepage_kobj)
609{
610 sysfs_remove_group(hugepage_kobj, &khugepaged_attr_group);
611 sysfs_remove_group(hugepage_kobj, &hugepage_attr_group);
612 kobject_put(hugepage_kobj);
613}
614#else
615static inline int hugepage_init_sysfs(struct kobject **hugepage_kobj)
616{
617 return 0;
618}
619
620static inline void hugepage_exit_sysfs(struct kobject *hugepage_kobj)
621{
622}
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800623#endif /* CONFIG_SYSFS */
624
625static int __init hugepage_init(void)
626{
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800627 int err;
Shaohua Li569e5592012-01-12 17:19:11 -0800628 struct kobject *hugepage_kobj;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800629
Andrea Arcangeli4b7167b2011-01-13 15:47:09 -0800630 if (!has_transparent_hugepage()) {
631 transparent_hugepage_flags = 0;
Shaohua Li569e5592012-01-12 17:19:11 -0800632 return -EINVAL;
Andrea Arcangeli4b7167b2011-01-13 15:47:09 -0800633 }
634
Shaohua Li569e5592012-01-12 17:19:11 -0800635 err = hugepage_init_sysfs(&hugepage_kobj);
636 if (err)
Kirill A. Shutemov65ebb642015-04-15 16:14:20 -0700637 goto err_sysfs;
Andrea Arcangeliba761492011-01-13 15:46:58 -0800638
639 err = khugepaged_slab_init();
640 if (err)
Kirill A. Shutemov65ebb642015-04-15 16:14:20 -0700641 goto err_slab;
Andrea Arcangeliba761492011-01-13 15:46:58 -0800642
Kirill A. Shutemov65ebb642015-04-15 16:14:20 -0700643 err = register_shrinker(&huge_zero_page_shrinker);
644 if (err)
645 goto err_hzp_shrinker;
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800646
Rik van Riel97562cd2011-01-13 15:47:12 -0800647 /*
648 * By default disable transparent hugepages on smaller systems,
649 * where the extra memory used could hurt more than TLB overhead
650 * is likely to save. The admin can still enable it through /sys.
651 */
Kirill A. Shutemov79553da2015-04-15 16:14:56 -0700652 if (totalram_pages < (512 << (20 - PAGE_SHIFT))) {
Rik van Riel97562cd2011-01-13 15:47:12 -0800653 transparent_hugepage_flags = 0;
Kirill A. Shutemov79553da2015-04-15 16:14:56 -0700654 return 0;
655 }
Rik van Riel97562cd2011-01-13 15:47:12 -0800656
Kirill A. Shutemov79553da2015-04-15 16:14:56 -0700657 err = start_stop_khugepaged();
Kirill A. Shutemov65ebb642015-04-15 16:14:20 -0700658 if (err)
659 goto err_khugepaged;
Andrea Arcangeliba761492011-01-13 15:46:58 -0800660
Shaohua Li569e5592012-01-12 17:19:11 -0800661 return 0;
Kirill A. Shutemov65ebb642015-04-15 16:14:20 -0700662err_khugepaged:
663 unregister_shrinker(&huge_zero_page_shrinker);
664err_hzp_shrinker:
665 khugepaged_slab_exit();
666err_slab:
Shaohua Li569e5592012-01-12 17:19:11 -0800667 hugepage_exit_sysfs(hugepage_kobj);
Kirill A. Shutemov65ebb642015-04-15 16:14:20 -0700668err_sysfs:
Andrea Arcangeliba761492011-01-13 15:46:58 -0800669 return err;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800670}
Paul Gortmakera64fb3c2014-01-23 15:53:30 -0800671subsys_initcall(hugepage_init);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800672
673static int __init setup_transparent_hugepage(char *str)
674{
675 int ret = 0;
676 if (!str)
677 goto out;
678 if (!strcmp(str, "always")) {
679 set_bit(TRANSPARENT_HUGEPAGE_FLAG,
680 &transparent_hugepage_flags);
681 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
682 &transparent_hugepage_flags);
683 ret = 1;
684 } else if (!strcmp(str, "madvise")) {
685 clear_bit(TRANSPARENT_HUGEPAGE_FLAG,
686 &transparent_hugepage_flags);
687 set_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
688 &transparent_hugepage_flags);
689 ret = 1;
690 } else if (!strcmp(str, "never")) {
691 clear_bit(TRANSPARENT_HUGEPAGE_FLAG,
692 &transparent_hugepage_flags);
693 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
694 &transparent_hugepage_flags);
695 ret = 1;
696 }
697out:
698 if (!ret)
Andrew Mortonae3a8c12014-06-04 16:06:58 -0700699 pr_warn("transparent_hugepage= cannot parse, ignored\n");
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800700 return ret;
701}
702__setup("transparent_hugepage=", setup_transparent_hugepage);
703
Mel Gormanb32967f2012-11-19 12:35:47 +0000704pmd_t maybe_pmd_mkwrite(pmd_t pmd, struct vm_area_struct *vma)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800705{
706 if (likely(vma->vm_flags & VM_WRITE))
707 pmd = pmd_mkwrite(pmd);
708 return pmd;
709}
710
Kirill A. Shutemov31223592013-09-12 15:14:01 -0700711static inline pmd_t mk_huge_pmd(struct page *page, pgprot_t prot)
Bob Liub3092b32012-12-11 16:00:41 -0800712{
713 pmd_t entry;
Kirill A. Shutemov31223592013-09-12 15:14:01 -0700714 entry = mk_pmd(page, prot);
Bob Liub3092b32012-12-11 16:00:41 -0800715 entry = pmd_mkhuge(entry);
716 return entry;
717}
718
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800719static int __do_huge_pmd_anonymous_page(struct mm_struct *mm,
720 struct vm_area_struct *vma,
Andrea Arcangeli230c92a2015-09-04 15:47:20 -0700721 unsigned long address, pmd_t *pmd,
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700722 struct page *page, gfp_t gfp,
723 unsigned int flags)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800724{
Johannes Weiner00501b52014-08-08 14:19:20 -0700725 struct mem_cgroup *memcg;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800726 pgtable_t pgtable;
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800727 spinlock_t *ptl;
Andrea Arcangeli230c92a2015-09-04 15:47:20 -0700728 unsigned long haddr = address & HPAGE_PMD_MASK;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800729
Sasha Levin309381fea2014-01-23 15:52:54 -0800730 VM_BUG_ON_PAGE(!PageCompound(page), page);
Johannes Weiner00501b52014-08-08 14:19:20 -0700731
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700732 if (mem_cgroup_try_charge(page, mm, gfp, &memcg)) {
733 put_page(page);
734 count_vm_event(THP_FAULT_FALLBACK);
735 return VM_FAULT_FALLBACK;
736 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800737
Johannes Weiner00501b52014-08-08 14:19:20 -0700738 pgtable = pte_alloc_one(mm, haddr);
739 if (unlikely(!pgtable)) {
740 mem_cgroup_cancel_charge(page, memcg);
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700741 put_page(page);
Johannes Weiner00501b52014-08-08 14:19:20 -0700742 return VM_FAULT_OOM;
743 }
744
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800745 clear_huge_page(page, haddr, HPAGE_PMD_NR);
Minchan Kim52f37622013-04-29 15:08:15 -0700746 /*
747 * The memory barrier inside __SetPageUptodate makes sure that
748 * clear_huge_page writes become visible before the set_pmd_at()
749 * write.
750 */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800751 __SetPageUptodate(page);
752
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800753 ptl = pmd_lock(mm, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800754 if (unlikely(!pmd_none(*pmd))) {
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800755 spin_unlock(ptl);
Johannes Weiner00501b52014-08-08 14:19:20 -0700756 mem_cgroup_cancel_charge(page, memcg);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800757 put_page(page);
758 pte_free(mm, pgtable);
759 } else {
760 pmd_t entry;
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700761
762 /* Deliver the page fault to userland */
763 if (userfaultfd_missing(vma)) {
764 int ret;
765
766 spin_unlock(ptl);
767 mem_cgroup_cancel_charge(page, memcg);
768 put_page(page);
769 pte_free(mm, pgtable);
Andrea Arcangeli230c92a2015-09-04 15:47:20 -0700770 ret = handle_userfault(vma, address, flags,
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700771 VM_UFFD_MISSING);
772 VM_BUG_ON(ret & VM_FAULT_FALLBACK);
773 return ret;
774 }
775
Kirill A. Shutemov31223592013-09-12 15:14:01 -0700776 entry = mk_huge_pmd(page, vma->vm_page_prot);
777 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800778 page_add_new_anon_rmap(page, vma, haddr);
Johannes Weiner00501b52014-08-08 14:19:20 -0700779 mem_cgroup_commit_charge(page, memcg, false);
780 lru_cache_add_active_or_unevictable(page, vma);
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -0700781 pgtable_trans_huge_deposit(mm, pmd, pgtable);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800782 set_pmd_at(mm, haddr, pmd, entry);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800783 add_mm_counter(mm, MM_ANONPAGES, HPAGE_PMD_NR);
Kirill A. Shutemove1f56c82013-11-14 14:30:48 -0800784 atomic_long_inc(&mm->nr_ptes);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800785 spin_unlock(ptl);
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700786 count_vm_event(THP_FAULT_ALLOC);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800787 }
788
David Rientjesaa2e8782012-05-29 15:06:17 -0700789 return 0;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800790}
791
Andi Kleencc5d4622011-03-22 16:33:13 -0700792static inline gfp_t alloc_hugepage_gfpmask(int defrag, gfp_t extra_gfp)
Andrea Arcangeli0bbbc0b2011-01-13 15:47:05 -0800793{
Andi Kleencc5d4622011-03-22 16:33:13 -0700794 return (GFP_TRANSHUGE & ~(defrag ? 0 : __GFP_WAIT)) | extra_gfp;
Andrea Arcangeli0bbbc0b2011-01-13 15:47:05 -0800795}
796
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800797/* Caller must hold page table lock. */
Matthew Wilcox4897c762015-09-08 14:58:45 -0700798bool set_huge_zero_page(pgtable_t pgtable, struct mm_struct *mm,
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800799 struct vm_area_struct *vma, unsigned long haddr, pmd_t *pmd,
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700800 struct page *zero_page)
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800801{
802 pmd_t entry;
Andrew Morton7c414162015-09-08 14:58:43 -0700803 if (!pmd_none(*pmd))
804 return false;
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700805 entry = mk_pmd(zero_page, vma->vm_page_prot);
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800806 entry = pmd_mkhuge(entry);
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -0700807 pgtable_trans_huge_deposit(mm, pmd, pgtable);
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800808 set_pmd_at(mm, haddr, pmd, entry);
Kirill A. Shutemove1f56c82013-11-14 14:30:48 -0800809 atomic_long_inc(&mm->nr_ptes);
Andrew Morton7c414162015-09-08 14:58:43 -0700810 return true;
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800811}
812
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800813int do_huge_pmd_anonymous_page(struct mm_struct *mm, struct vm_area_struct *vma,
814 unsigned long address, pmd_t *pmd,
815 unsigned int flags)
816{
Aneesh Kumar K.V077fcf12015-02-11 15:27:12 -0800817 gfp_t gfp;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800818 struct page *page;
819 unsigned long haddr = address & HPAGE_PMD_MASK;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800820
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700821 if (haddr < vma->vm_start || haddr + HPAGE_PMD_SIZE > vma->vm_end)
Kirill A. Shutemovc0292552013-09-12 15:14:05 -0700822 return VM_FAULT_FALLBACK;
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700823 if (unlikely(anon_vma_prepare(vma)))
824 return VM_FAULT_OOM;
David Rientjes6d50e602014-10-29 14:50:31 -0700825 if (unlikely(khugepaged_enter(vma, vma->vm_flags)))
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700826 return VM_FAULT_OOM;
Dominik Dingel593befa2014-10-23 12:07:44 +0200827 if (!(flags & FAULT_FLAG_WRITE) && !mm_forbids_zeropage(mm) &&
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700828 transparent_hugepage_use_zero_page()) {
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800829 spinlock_t *ptl;
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700830 pgtable_t pgtable;
831 struct page *zero_page;
832 bool set;
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700833 int ret;
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700834 pgtable = pte_alloc_one(mm, haddr);
835 if (unlikely(!pgtable))
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800836 return VM_FAULT_OOM;
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700837 zero_page = get_huge_zero_page();
838 if (unlikely(!zero_page)) {
839 pte_free(mm, pgtable);
Andi Kleen81ab4202011-04-14 15:22:06 -0700840 count_vm_event(THP_FAULT_FALLBACK);
Kirill A. Shutemovc0292552013-09-12 15:14:05 -0700841 return VM_FAULT_FALLBACK;
Andi Kleen81ab4202011-04-14 15:22:06 -0700842 }
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800843 ptl = pmd_lock(mm, pmd);
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700844 ret = 0;
845 set = false;
846 if (pmd_none(*pmd)) {
847 if (userfaultfd_missing(vma)) {
848 spin_unlock(ptl);
Andrea Arcangeli230c92a2015-09-04 15:47:20 -0700849 ret = handle_userfault(vma, address, flags,
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700850 VM_UFFD_MISSING);
851 VM_BUG_ON(ret & VM_FAULT_FALLBACK);
852 } else {
853 set_huge_zero_page(pgtable, mm, vma,
854 haddr, pmd,
855 zero_page);
856 spin_unlock(ptl);
857 set = true;
858 }
859 } else
860 spin_unlock(ptl);
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700861 if (!set) {
862 pte_free(mm, pgtable);
863 put_huge_zero_page();
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -0800864 }
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700865 return ret;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800866 }
Aneesh Kumar K.V077fcf12015-02-11 15:27:12 -0800867 gfp = alloc_hugepage_gfpmask(transparent_hugepage_defrag(vma), 0);
868 page = alloc_hugepage_vma(gfp, vma, haddr, HPAGE_PMD_ORDER);
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700869 if (unlikely(!page)) {
870 count_vm_event(THP_FAULT_FALLBACK);
Kirill A. Shutemovc0292552013-09-12 15:14:05 -0700871 return VM_FAULT_FALLBACK;
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700872 }
Andrea Arcangeli230c92a2015-09-04 15:47:20 -0700873 return __do_huge_pmd_anonymous_page(mm, vma, address, pmd, page, gfp,
874 flags);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800875}
876
877int copy_huge_pmd(struct mm_struct *dst_mm, struct mm_struct *src_mm,
878 pmd_t *dst_pmd, pmd_t *src_pmd, unsigned long addr,
879 struct vm_area_struct *vma)
880{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800881 spinlock_t *dst_ptl, *src_ptl;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800882 struct page *src_page;
883 pmd_t pmd;
884 pgtable_t pgtable;
885 int ret;
886
887 ret = -ENOMEM;
888 pgtable = pte_alloc_one(dst_mm, addr);
889 if (unlikely(!pgtable))
890 goto out;
891
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800892 dst_ptl = pmd_lock(dst_mm, dst_pmd);
893 src_ptl = pmd_lockptr(src_mm, src_pmd);
894 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800895
896 ret = -EAGAIN;
897 pmd = *src_pmd;
898 if (unlikely(!pmd_trans_huge(pmd))) {
899 pte_free(dst_mm, pgtable);
900 goto out_unlock;
901 }
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800902 /*
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800903 * When page table lock is held, the huge zero pmd should not be
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800904 * under splitting since we don't split the page itself, only pmd to
905 * a page table.
906 */
907 if (is_huge_zero_pmd(pmd)) {
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700908 struct page *zero_page;
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800909 /*
910 * get_huge_zero_page() will never allocate a new page here,
911 * since we already have a zero page to copy. It just takes a
912 * reference.
913 */
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700914 zero_page = get_huge_zero_page();
Andrea Arcangeli6b251fc2015-09-04 15:46:20 -0700915 set_huge_zero_page(pgtable, dst_mm, vma, addr, dst_pmd,
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700916 zero_page);
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800917 ret = 0;
918 goto out_unlock;
919 }
Mel Gormande466bd2013-12-18 17:08:42 -0800920
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800921 if (unlikely(pmd_trans_splitting(pmd))) {
922 /* split huge page running from under us */
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800923 spin_unlock(src_ptl);
924 spin_unlock(dst_ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800925 pte_free(dst_mm, pgtable);
926
927 wait_split_huge_page(vma->anon_vma, src_pmd); /* src_vma */
928 goto out;
929 }
930 src_page = pmd_page(pmd);
Sasha Levin309381fea2014-01-23 15:52:54 -0800931 VM_BUG_ON_PAGE(!PageHead(src_page), src_page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800932 get_page(src_page);
933 page_dup_rmap(src_page);
934 add_mm_counter(dst_mm, MM_ANONPAGES, HPAGE_PMD_NR);
935
936 pmdp_set_wrprotect(src_mm, addr, src_pmd);
937 pmd = pmd_mkold(pmd_wrprotect(pmd));
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -0700938 pgtable_trans_huge_deposit(dst_mm, dst_pmd, pgtable);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800939 set_pmd_at(dst_mm, addr, dst_pmd, pmd);
Kirill A. Shutemove1f56c82013-11-14 14:30:48 -0800940 atomic_long_inc(&dst_mm->nr_ptes);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800941
942 ret = 0;
943out_unlock:
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800944 spin_unlock(src_ptl);
945 spin_unlock(dst_ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800946out:
947 return ret;
948}
949
Will Deacona1dd4502012-12-11 16:01:27 -0800950void huge_pmd_set_accessed(struct mm_struct *mm,
951 struct vm_area_struct *vma,
952 unsigned long address,
953 pmd_t *pmd, pmd_t orig_pmd,
954 int dirty)
955{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800956 spinlock_t *ptl;
Will Deacona1dd4502012-12-11 16:01:27 -0800957 pmd_t entry;
958 unsigned long haddr;
959
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800960 ptl = pmd_lock(mm, pmd);
Will Deacona1dd4502012-12-11 16:01:27 -0800961 if (unlikely(!pmd_same(*pmd, orig_pmd)))
962 goto unlock;
963
964 entry = pmd_mkyoung(orig_pmd);
965 haddr = address & HPAGE_PMD_MASK;
966 if (pmdp_set_access_flags(vma, haddr, pmd, entry, dirty))
967 update_mmu_cache_pmd(vma, address, pmd);
968
969unlock:
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800970 spin_unlock(ptl);
Will Deacona1dd4502012-12-11 16:01:27 -0800971}
972
Hugh Dickins5338a932014-06-23 13:22:05 -0700973/*
974 * Save CONFIG_DEBUG_PAGEALLOC from faulting falsely on tail pages
975 * during copy_user_huge_page()'s copy_page_rep(): in the case when
976 * the source page gets split and a tail freed before copy completes.
977 * Called under pmd_lock of checked pmd, so safe from splitting itself.
978 */
979static void get_user_huge_page(struct page *page)
980{
981 if (IS_ENABLED(CONFIG_DEBUG_PAGEALLOC)) {
982 struct page *endpage = page + HPAGE_PMD_NR;
983
984 atomic_add(HPAGE_PMD_NR, &page->_count);
985 while (++page < endpage)
986 get_huge_page_tail(page);
987 } else {
988 get_page(page);
989 }
990}
991
992static void put_user_huge_page(struct page *page)
993{
994 if (IS_ENABLED(CONFIG_DEBUG_PAGEALLOC)) {
995 struct page *endpage = page + HPAGE_PMD_NR;
996
997 while (page < endpage)
998 put_page(page++);
999 } else {
1000 put_page(page);
1001 }
1002}
1003
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001004static int do_huge_pmd_wp_page_fallback(struct mm_struct *mm,
1005 struct vm_area_struct *vma,
1006 unsigned long address,
1007 pmd_t *pmd, pmd_t orig_pmd,
1008 struct page *page,
1009 unsigned long haddr)
1010{
Johannes Weiner00501b52014-08-08 14:19:20 -07001011 struct mem_cgroup *memcg;
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001012 spinlock_t *ptl;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001013 pgtable_t pgtable;
1014 pmd_t _pmd;
1015 int ret = 0, i;
1016 struct page **pages;
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001017 unsigned long mmun_start; /* For mmu_notifiers */
1018 unsigned long mmun_end; /* For mmu_notifiers */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001019
1020 pages = kmalloc(sizeof(struct page *) * HPAGE_PMD_NR,
1021 GFP_KERNEL);
1022 if (unlikely(!pages)) {
1023 ret |= VM_FAULT_OOM;
1024 goto out;
1025 }
1026
1027 for (i = 0; i < HPAGE_PMD_NR; i++) {
Andi Kleencc5d4622011-03-22 16:33:13 -07001028 pages[i] = alloc_page_vma_node(GFP_HIGHUSER_MOVABLE |
1029 __GFP_OTHER_NODE,
Andi Kleen19ee1512011-03-04 17:36:31 -08001030 vma, address, page_to_nid(page));
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001031 if (unlikely(!pages[i] ||
Johannes Weiner00501b52014-08-08 14:19:20 -07001032 mem_cgroup_try_charge(pages[i], mm, GFP_KERNEL,
1033 &memcg))) {
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001034 if (pages[i])
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001035 put_page(pages[i]);
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001036 while (--i >= 0) {
Johannes Weiner00501b52014-08-08 14:19:20 -07001037 memcg = (void *)page_private(pages[i]);
1038 set_page_private(pages[i], 0);
1039 mem_cgroup_cancel_charge(pages[i], memcg);
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001040 put_page(pages[i]);
1041 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001042 kfree(pages);
1043 ret |= VM_FAULT_OOM;
1044 goto out;
1045 }
Johannes Weiner00501b52014-08-08 14:19:20 -07001046 set_page_private(pages[i], (unsigned long)memcg);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001047 }
1048
1049 for (i = 0; i < HPAGE_PMD_NR; i++) {
1050 copy_user_highpage(pages[i], page + i,
Hillf Danton0089e482011-10-31 17:09:38 -07001051 haddr + PAGE_SIZE * i, vma);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001052 __SetPageUptodate(pages[i]);
1053 cond_resched();
1054 }
1055
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001056 mmun_start = haddr;
1057 mmun_end = haddr + HPAGE_PMD_SIZE;
1058 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
1059
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001060 ptl = pmd_lock(mm, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001061 if (unlikely(!pmd_same(*pmd, orig_pmd)))
1062 goto out_free_pages;
Sasha Levin309381fea2014-01-23 15:52:54 -08001063 VM_BUG_ON_PAGE(!PageHead(page), page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001064
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -07001065 pmdp_huge_clear_flush_notify(vma, haddr, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001066 /* leave pmd empty until pte is filled */
1067
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -07001068 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001069 pmd_populate(mm, &_pmd, pgtable);
1070
1071 for (i = 0; i < HPAGE_PMD_NR; i++, haddr += PAGE_SIZE) {
1072 pte_t *pte, entry;
1073 entry = mk_pte(pages[i], vma->vm_page_prot);
1074 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
Johannes Weiner00501b52014-08-08 14:19:20 -07001075 memcg = (void *)page_private(pages[i]);
1076 set_page_private(pages[i], 0);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001077 page_add_new_anon_rmap(pages[i], vma, haddr);
Johannes Weiner00501b52014-08-08 14:19:20 -07001078 mem_cgroup_commit_charge(pages[i], memcg, false);
1079 lru_cache_add_active_or_unevictable(pages[i], vma);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001080 pte = pte_offset_map(&_pmd, haddr);
1081 VM_BUG_ON(!pte_none(*pte));
1082 set_pte_at(mm, haddr, pte, entry);
1083 pte_unmap(pte);
1084 }
1085 kfree(pages);
1086
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001087 smp_wmb(); /* make pte visible before pmd */
1088 pmd_populate(mm, pmd, pgtable);
1089 page_remove_rmap(page);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001090 spin_unlock(ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001091
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001092 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
1093
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001094 ret |= VM_FAULT_WRITE;
1095 put_page(page);
1096
1097out:
1098 return ret;
1099
1100out_free_pages:
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001101 spin_unlock(ptl);
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001102 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001103 for (i = 0; i < HPAGE_PMD_NR; i++) {
Johannes Weiner00501b52014-08-08 14:19:20 -07001104 memcg = (void *)page_private(pages[i]);
1105 set_page_private(pages[i], 0);
1106 mem_cgroup_cancel_charge(pages[i], memcg);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001107 put_page(pages[i]);
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001108 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001109 kfree(pages);
1110 goto out;
1111}
1112
1113int do_huge_pmd_wp_page(struct mm_struct *mm, struct vm_area_struct *vma,
1114 unsigned long address, pmd_t *pmd, pmd_t orig_pmd)
1115{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001116 spinlock_t *ptl;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001117 int ret = 0;
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001118 struct page *page = NULL, *new_page;
Johannes Weiner00501b52014-08-08 14:19:20 -07001119 struct mem_cgroup *memcg;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001120 unsigned long haddr;
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001121 unsigned long mmun_start; /* For mmu_notifiers */
1122 unsigned long mmun_end; /* For mmu_notifiers */
Michal Hocko3b363692015-04-15 16:13:29 -07001123 gfp_t huge_gfp; /* for allocation and charge */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001124
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001125 ptl = pmd_lockptr(mm, pmd);
Sasha Levin81d1b092014-10-09 15:28:10 -07001126 VM_BUG_ON_VMA(!vma->anon_vma, vma);
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001127 haddr = address & HPAGE_PMD_MASK;
1128 if (is_huge_zero_pmd(orig_pmd))
1129 goto alloc;
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001130 spin_lock(ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001131 if (unlikely(!pmd_same(*pmd, orig_pmd)))
1132 goto out_unlock;
1133
1134 page = pmd_page(orig_pmd);
Sasha Levin309381fea2014-01-23 15:52:54 -08001135 VM_BUG_ON_PAGE(!PageCompound(page) || !PageHead(page), page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001136 if (page_mapcount(page) == 1) {
1137 pmd_t entry;
1138 entry = pmd_mkyoung(orig_pmd);
1139 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
1140 if (pmdp_set_access_flags(vma, haddr, pmd, entry, 1))
David Millerb113da62012-10-08 16:34:25 -07001141 update_mmu_cache_pmd(vma, address, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001142 ret |= VM_FAULT_WRITE;
1143 goto out_unlock;
1144 }
Hugh Dickins5338a932014-06-23 13:22:05 -07001145 get_user_huge_page(page);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001146 spin_unlock(ptl);
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001147alloc:
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001148 if (transparent_hugepage_enabled(vma) &&
Aneesh Kumar K.V077fcf12015-02-11 15:27:12 -08001149 !transparent_hugepage_debug_cow()) {
Michal Hocko3b363692015-04-15 16:13:29 -07001150 huge_gfp = alloc_hugepage_gfpmask(transparent_hugepage_defrag(vma), 0);
1151 new_page = alloc_hugepage_vma(huge_gfp, vma, haddr, HPAGE_PMD_ORDER);
Aneesh Kumar K.V077fcf12015-02-11 15:27:12 -08001152 } else
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001153 new_page = NULL;
1154
1155 if (unlikely(!new_page)) {
Hugh Dickinseecc1e42014-01-12 01:25:21 -08001156 if (!page) {
Kirill A. Shutemove9b71ca2014-04-03 14:48:17 -07001157 split_huge_page_pmd(vma, address, pmd);
1158 ret |= VM_FAULT_FALLBACK;
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001159 } else {
1160 ret = do_huge_pmd_wp_page_fallback(mm, vma, address,
1161 pmd, orig_pmd, page, haddr);
Kirill A. Shutemov9845cbb2014-02-25 15:01:42 -08001162 if (ret & VM_FAULT_OOM) {
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001163 split_huge_page(page);
Kirill A. Shutemov9845cbb2014-02-25 15:01:42 -08001164 ret |= VM_FAULT_FALLBACK;
1165 }
Hugh Dickins5338a932014-06-23 13:22:05 -07001166 put_user_huge_page(page);
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001167 }
David Rientjes17766dd2013-09-12 15:14:06 -07001168 count_vm_event(THP_FAULT_FALLBACK);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001169 goto out;
1170 }
1171
Michal Hocko3b363692015-04-15 16:13:29 -07001172 if (unlikely(mem_cgroup_try_charge(new_page, mm, huge_gfp, &memcg))) {
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001173 put_page(new_page);
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001174 if (page) {
1175 split_huge_page(page);
Hugh Dickins5338a932014-06-23 13:22:05 -07001176 put_user_huge_page(page);
Kirill A. Shutemov9845cbb2014-02-25 15:01:42 -08001177 } else
1178 split_huge_page_pmd(vma, address, pmd);
1179 ret |= VM_FAULT_FALLBACK;
David Rientjes17766dd2013-09-12 15:14:06 -07001180 count_vm_event(THP_FAULT_FALLBACK);
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001181 goto out;
1182 }
1183
David Rientjes17766dd2013-09-12 15:14:06 -07001184 count_vm_event(THP_FAULT_ALLOC);
1185
Hugh Dickinseecc1e42014-01-12 01:25:21 -08001186 if (!page)
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001187 clear_huge_page(new_page, haddr, HPAGE_PMD_NR);
1188 else
1189 copy_user_huge_page(new_page, page, haddr, vma, HPAGE_PMD_NR);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001190 __SetPageUptodate(new_page);
1191
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001192 mmun_start = haddr;
1193 mmun_end = haddr + HPAGE_PMD_SIZE;
1194 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
1195
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001196 spin_lock(ptl);
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001197 if (page)
Hugh Dickins5338a932014-06-23 13:22:05 -07001198 put_user_huge_page(page);
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001199 if (unlikely(!pmd_same(*pmd, orig_pmd))) {
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001200 spin_unlock(ptl);
Johannes Weiner00501b52014-08-08 14:19:20 -07001201 mem_cgroup_cancel_charge(new_page, memcg);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001202 put_page(new_page);
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001203 goto out_mn;
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001204 } else {
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001205 pmd_t entry;
Kirill A. Shutemov31223592013-09-12 15:14:01 -07001206 entry = mk_huge_pmd(new_page, vma->vm_page_prot);
1207 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -07001208 pmdp_huge_clear_flush_notify(vma, haddr, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001209 page_add_new_anon_rmap(new_page, vma, haddr);
Johannes Weiner00501b52014-08-08 14:19:20 -07001210 mem_cgroup_commit_charge(new_page, memcg, false);
1211 lru_cache_add_active_or_unevictable(new_page, vma);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001212 set_pmd_at(mm, haddr, pmd, entry);
David Millerb113da62012-10-08 16:34:25 -07001213 update_mmu_cache_pmd(vma, address, pmd);
Hugh Dickinseecc1e42014-01-12 01:25:21 -08001214 if (!page) {
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001215 add_mm_counter(mm, MM_ANONPAGES, HPAGE_PMD_NR);
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -08001216 put_huge_zero_page();
1217 } else {
Sasha Levin309381fea2014-01-23 15:52:54 -08001218 VM_BUG_ON_PAGE(!PageHead(page), page);
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001219 page_remove_rmap(page);
1220 put_page(page);
1221 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001222 ret |= VM_FAULT_WRITE;
1223 }
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001224 spin_unlock(ptl);
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001225out_mn:
1226 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
1227out:
1228 return ret;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001229out_unlock:
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001230 spin_unlock(ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001231 return ret;
1232}
1233
David Rientjesb676b292012-10-08 16:34:03 -07001234struct page *follow_trans_huge_pmd(struct vm_area_struct *vma,
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001235 unsigned long addr,
1236 pmd_t *pmd,
1237 unsigned int flags)
1238{
David Rientjesb676b292012-10-08 16:34:03 -07001239 struct mm_struct *mm = vma->vm_mm;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001240 struct page *page = NULL;
1241
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001242 assert_spin_locked(pmd_lockptr(mm, pmd));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001243
1244 if (flags & FOLL_WRITE && !pmd_write(*pmd))
1245 goto out;
1246
Kirill A. Shutemov85facf22013-02-04 14:28:42 -08001247 /* Avoid dumping huge zero page */
1248 if ((flags & FOLL_DUMP) && is_huge_zero_pmd(*pmd))
1249 return ERR_PTR(-EFAULT);
1250
Mel Gorman2b4847e2013-12-18 17:08:32 -08001251 /* Full NUMA hinting faults to serialise migration in fault paths */
Mel Gorman8a0516e2015-02-12 14:58:22 -08001252 if ((flags & FOLL_NUMA) && pmd_protnone(*pmd))
Mel Gorman2b4847e2013-12-18 17:08:32 -08001253 goto out;
1254
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001255 page = pmd_page(*pmd);
Sasha Levin309381fea2014-01-23 15:52:54 -08001256 VM_BUG_ON_PAGE(!PageHead(page), page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001257 if (flags & FOLL_TOUCH) {
1258 pmd_t _pmd;
1259 /*
1260 * We should set the dirty bit only for FOLL_WRITE but
1261 * for now the dirty bit in the pmd is meaningless.
1262 * And if the dirty bit will become meaningful and
1263 * we'll only set it with FOLL_WRITE, an atomic
1264 * set_bit will be required on the pmd to set the
1265 * young bit, instead of the current set_pmd_at.
1266 */
1267 _pmd = pmd_mkyoung(pmd_mkdirty(*pmd));
Aneesh Kumar K.V8663890a2013-06-06 00:20:34 -07001268 if (pmdp_set_access_flags(vma, addr & HPAGE_PMD_MASK,
1269 pmd, _pmd, 1))
1270 update_mmu_cache_pmd(vma, addr, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001271 }
Kirill A. Shutemov84d33df2015-04-14 15:44:37 -07001272 if ((flags & FOLL_POPULATE) && (vma->vm_flags & VM_LOCKED)) {
David Rientjesb676b292012-10-08 16:34:03 -07001273 if (page->mapping && trylock_page(page)) {
1274 lru_add_drain();
1275 if (page->mapping)
1276 mlock_vma_page(page);
1277 unlock_page(page);
1278 }
1279 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001280 page += (addr & ~HPAGE_PMD_MASK) >> PAGE_SHIFT;
Sasha Levin309381fea2014-01-23 15:52:54 -08001281 VM_BUG_ON_PAGE(!PageCompound(page), page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001282 if (flags & FOLL_GET)
Andrea Arcangeli70b50f92011-11-02 13:36:59 -07001283 get_page_foll(page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001284
1285out:
1286 return page;
1287}
1288
Mel Gormand10e63f2012-10-25 14:16:31 +02001289/* NUMA hinting page fault entry point for trans huge pmds */
Mel Gorman4daae3b2012-11-02 11:33:45 +00001290int do_huge_pmd_numa_page(struct mm_struct *mm, struct vm_area_struct *vma,
1291 unsigned long addr, pmd_t pmd, pmd_t *pmdp)
Mel Gormand10e63f2012-10-25 14:16:31 +02001292{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001293 spinlock_t *ptl;
Mel Gormanb8916632013-10-07 11:28:44 +01001294 struct anon_vma *anon_vma = NULL;
Mel Gormanb32967f2012-11-19 12:35:47 +00001295 struct page *page;
Mel Gormand10e63f2012-10-25 14:16:31 +02001296 unsigned long haddr = addr & HPAGE_PMD_MASK;
Mel Gorman8191acb2013-10-07 11:28:45 +01001297 int page_nid = -1, this_nid = numa_node_id();
Peter Zijlstra90572892013-10-07 11:29:20 +01001298 int target_nid, last_cpupid = -1;
Mel Gorman8191acb2013-10-07 11:28:45 +01001299 bool page_locked;
1300 bool migrated = false;
Mel Gormanb191f9b2015-03-25 15:55:40 -07001301 bool was_writable;
Peter Zijlstra6688cc02013-10-07 11:29:24 +01001302 int flags = 0;
Mel Gormand10e63f2012-10-25 14:16:31 +02001303
Mel Gormanc0e7cad2015-02-12 14:58:41 -08001304 /* A PROT_NONE fault should not end up here */
1305 BUG_ON(!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE)));
1306
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001307 ptl = pmd_lock(mm, pmdp);
Mel Gormand10e63f2012-10-25 14:16:31 +02001308 if (unlikely(!pmd_same(pmd, *pmdp)))
1309 goto out_unlock;
1310
Mel Gormande466bd2013-12-18 17:08:42 -08001311 /*
1312 * If there are potential migrations, wait for completion and retry
1313 * without disrupting NUMA hinting information. Do not relock and
1314 * check_same as the page may no longer be mapped.
1315 */
1316 if (unlikely(pmd_trans_migrating(*pmdp))) {
Mel Gorman5d833062015-02-12 14:58:16 -08001317 page = pmd_page(*pmdp);
Mel Gormande466bd2013-12-18 17:08:42 -08001318 spin_unlock(ptl);
Mel Gorman5d833062015-02-12 14:58:16 -08001319 wait_on_page_locked(page);
Mel Gormande466bd2013-12-18 17:08:42 -08001320 goto out;
1321 }
1322
Mel Gormand10e63f2012-10-25 14:16:31 +02001323 page = pmd_page(pmd);
Mel Gormana1a46182013-10-07 11:28:50 +01001324 BUG_ON(is_huge_zero_page(page));
Mel Gorman8191acb2013-10-07 11:28:45 +01001325 page_nid = page_to_nid(page);
Peter Zijlstra90572892013-10-07 11:29:20 +01001326 last_cpupid = page_cpupid_last(page);
Mel Gorman03c5a6e2012-11-02 14:52:48 +00001327 count_vm_numa_event(NUMA_HINT_FAULTS);
Rik van Riel04bb2f92013-10-07 11:29:36 +01001328 if (page_nid == this_nid) {
Mel Gorman03c5a6e2012-11-02 14:52:48 +00001329 count_vm_numa_event(NUMA_HINT_FAULTS_LOCAL);
Rik van Riel04bb2f92013-10-07 11:29:36 +01001330 flags |= TNF_FAULT_LOCAL;
1331 }
Mel Gorman4daae3b2012-11-02 11:33:45 +00001332
Mel Gormanbea66fb2015-03-25 15:55:37 -07001333 /* See similar comment in do_numa_page for explanation */
1334 if (!(vma->vm_flags & VM_WRITE))
Peter Zijlstra6688cc02013-10-07 11:29:24 +01001335 flags |= TNF_NO_GROUP;
1336
1337 /*
Mel Gormanff9042b2013-10-07 11:28:43 +01001338 * Acquire the page lock to serialise THP migrations but avoid dropping
1339 * page_table_lock if at all possible
1340 */
Mel Gormanb8916632013-10-07 11:28:44 +01001341 page_locked = trylock_page(page);
1342 target_nid = mpol_misplaced(page, vma, haddr);
1343 if (target_nid == -1) {
1344 /* If the page was locked, there are no parallel migrations */
Mel Gormana54a4072013-10-07 11:28:46 +01001345 if (page_locked)
Mel Gormanb8916632013-10-07 11:28:44 +01001346 goto clear_pmdnuma;
Mel Gorman2b4847e2013-12-18 17:08:32 -08001347 }
Mel Gorman4daae3b2012-11-02 11:33:45 +00001348
Mel Gormande466bd2013-12-18 17:08:42 -08001349 /* Migration could have started since the pmd_trans_migrating check */
Mel Gorman2b4847e2013-12-18 17:08:32 -08001350 if (!page_locked) {
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001351 spin_unlock(ptl);
Mel Gormanb8916632013-10-07 11:28:44 +01001352 wait_on_page_locked(page);
Mel Gormana54a4072013-10-07 11:28:46 +01001353 page_nid = -1;
Mel Gormanb8916632013-10-07 11:28:44 +01001354 goto out;
1355 }
1356
Mel Gorman2b4847e2013-12-18 17:08:32 -08001357 /*
1358 * Page is misplaced. Page lock serialises migrations. Acquire anon_vma
1359 * to serialises splits
1360 */
Mel Gormanb8916632013-10-07 11:28:44 +01001361 get_page(page);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001362 spin_unlock(ptl);
Mel Gormanb8916632013-10-07 11:28:44 +01001363 anon_vma = page_lock_anon_vma_read(page);
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001364
Peter Zijlstrac69307d2013-10-07 11:28:41 +01001365 /* Confirm the PMD did not change while page_table_lock was released */
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001366 spin_lock(ptl);
Mel Gormanb32967f2012-11-19 12:35:47 +00001367 if (unlikely(!pmd_same(pmd, *pmdp))) {
1368 unlock_page(page);
1369 put_page(page);
Mel Gormana54a4072013-10-07 11:28:46 +01001370 page_nid = -1;
Mel Gormanb32967f2012-11-19 12:35:47 +00001371 goto out_unlock;
1372 }
Mel Gormanff9042b2013-10-07 11:28:43 +01001373
Mel Gormanc3a489c2013-12-18 17:08:38 -08001374 /* Bail if we fail to protect against THP splits for any reason */
1375 if (unlikely(!anon_vma)) {
1376 put_page(page);
1377 page_nid = -1;
1378 goto clear_pmdnuma;
1379 }
1380
Mel Gormana54a4072013-10-07 11:28:46 +01001381 /*
1382 * Migrate the THP to the requested node, returns with page unlocked
Mel Gorman8a0516e2015-02-12 14:58:22 -08001383 * and access rights restored.
Mel Gormana54a4072013-10-07 11:28:46 +01001384 */
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001385 spin_unlock(ptl);
Mel Gormanb32967f2012-11-19 12:35:47 +00001386 migrated = migrate_misplaced_transhuge_page(mm, vma,
Hugh Dickins340ef392013-02-22 16:34:33 -08001387 pmdp, pmd, addr, page, target_nid);
Peter Zijlstra6688cc02013-10-07 11:29:24 +01001388 if (migrated) {
1389 flags |= TNF_MIGRATED;
Mel Gorman8191acb2013-10-07 11:28:45 +01001390 page_nid = target_nid;
Mel Gorman074c2382015-03-25 15:55:42 -07001391 } else
1392 flags |= TNF_MIGRATE_FAIL;
Mel Gormanb32967f2012-11-19 12:35:47 +00001393
Mel Gorman8191acb2013-10-07 11:28:45 +01001394 goto out;
Mel Gorman4daae3b2012-11-02 11:33:45 +00001395clear_pmdnuma:
Mel Gormana54a4072013-10-07 11:28:46 +01001396 BUG_ON(!PageLocked(page));
Mel Gormanb191f9b2015-03-25 15:55:40 -07001397 was_writable = pmd_write(pmd);
Mel Gorman4d942462015-02-12 14:58:28 -08001398 pmd = pmd_modify(pmd, vma->vm_page_prot);
Mel Gormanb7b04002015-03-25 15:55:45 -07001399 pmd = pmd_mkyoung(pmd);
Mel Gormanb191f9b2015-03-25 15:55:40 -07001400 if (was_writable)
1401 pmd = pmd_mkwrite(pmd);
Mel Gormand10e63f2012-10-25 14:16:31 +02001402 set_pmd_at(mm, haddr, pmdp, pmd);
Mel Gormand10e63f2012-10-25 14:16:31 +02001403 update_mmu_cache_pmd(vma, addr, pmdp);
Mel Gormana54a4072013-10-07 11:28:46 +01001404 unlock_page(page);
Mel Gormand10e63f2012-10-25 14:16:31 +02001405out_unlock:
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001406 spin_unlock(ptl);
Mel Gormanb8916632013-10-07 11:28:44 +01001407
1408out:
1409 if (anon_vma)
1410 page_unlock_anon_vma_read(anon_vma);
1411
Mel Gorman8191acb2013-10-07 11:28:45 +01001412 if (page_nid != -1)
Peter Zijlstra6688cc02013-10-07 11:29:24 +01001413 task_numa_fault(last_cpupid, page_nid, HPAGE_PMD_NR, flags);
Mel Gorman8191acb2013-10-07 11:28:45 +01001414
Mel Gormand10e63f2012-10-25 14:16:31 +02001415 return 0;
1416}
1417
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001418int zap_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
Shaohua Lif21760b2012-01-12 17:19:16 -08001419 pmd_t *pmd, unsigned long addr)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001420{
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001421 spinlock_t *ptl;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001422 int ret = 0;
1423
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001424 if (__pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001425 pgtable_t pgtable;
David Millerf5c8ad42012-10-08 16:34:26 -07001426 pmd_t orig_pmd;
Aneesh Kumar K.Va6bf2bb2013-06-05 17:14:04 -07001427 /*
1428 * For architectures like ppc64 we look at deposited pgtable
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -07001429 * when calling pmdp_huge_get_and_clear. So do the
Aneesh Kumar K.Va6bf2bb2013-06-05 17:14:04 -07001430 * pgtable_trans_huge_withdraw after finishing pmdp related
1431 * operations.
1432 */
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -07001433 orig_pmd = pmdp_huge_get_and_clear_full(tlb->mm, addr, pmd,
1434 tlb->fullmm);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001435 tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
Matthew Wilcox4897c762015-09-08 14:58:45 -07001436 if (vma_is_dax(vma)) {
1437 if (is_huge_zero_pmd(orig_pmd)) {
1438 pgtable = NULL;
1439 } else {
1440 spin_unlock(ptl);
1441 return 1;
1442 }
1443 } else {
1444 pgtable = pgtable_trans_huge_withdraw(tlb->mm, pmd);
1445 }
Kirill A. Shutemov479f0ab2012-12-12 13:50:50 -08001446 if (is_huge_zero_pmd(orig_pmd)) {
Kirill A. Shutemove1f56c82013-11-14 14:30:48 -08001447 atomic_long_dec(&tlb->mm->nr_ptes);
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001448 spin_unlock(ptl);
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -08001449 put_huge_zero_page();
Kirill A. Shutemov479f0ab2012-12-12 13:50:50 -08001450 } else {
Matthew Wilcox4897c762015-09-08 14:58:45 -07001451 struct page *page = pmd_page(orig_pmd);
Kirill A. Shutemov479f0ab2012-12-12 13:50:50 -08001452 page_remove_rmap(page);
Sasha Levin309381fea2014-01-23 15:52:54 -08001453 VM_BUG_ON_PAGE(page_mapcount(page) < 0, page);
Kirill A. Shutemov479f0ab2012-12-12 13:50:50 -08001454 add_mm_counter(tlb->mm, MM_ANONPAGES, -HPAGE_PMD_NR);
Sasha Levin309381fea2014-01-23 15:52:54 -08001455 VM_BUG_ON_PAGE(!PageHead(page), page);
Kirill A. Shutemove1f56c82013-11-14 14:30:48 -08001456 atomic_long_dec(&tlb->mm->nr_ptes);
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001457 spin_unlock(ptl);
Kirill A. Shutemov479f0ab2012-12-12 13:50:50 -08001458 tlb_remove_page(tlb, page);
1459 }
Matthew Wilcox4897c762015-09-08 14:58:45 -07001460 if (pgtable)
1461 pte_free(tlb->mm, pgtable);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001462 ret = 1;
1463 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001464 return ret;
1465}
1466
Andrea Arcangeli37a1c492011-10-31 17:08:30 -07001467int move_huge_pmd(struct vm_area_struct *vma, struct vm_area_struct *new_vma,
1468 unsigned long old_addr,
1469 unsigned long new_addr, unsigned long old_end,
1470 pmd_t *old_pmd, pmd_t *new_pmd)
1471{
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001472 spinlock_t *old_ptl, *new_ptl;
Andrea Arcangeli37a1c492011-10-31 17:08:30 -07001473 int ret = 0;
1474 pmd_t pmd;
1475
1476 struct mm_struct *mm = vma->vm_mm;
1477
1478 if ((old_addr & ~HPAGE_PMD_MASK) ||
1479 (new_addr & ~HPAGE_PMD_MASK) ||
1480 old_end - old_addr < HPAGE_PMD_SIZE ||
1481 (new_vma->vm_flags & VM_NOHUGEPAGE))
1482 goto out;
1483
1484 /*
1485 * The destination pmd shouldn't be established, free_pgtables()
1486 * should have release it.
1487 */
1488 if (WARN_ON(!pmd_none(*new_pmd))) {
1489 VM_BUG_ON(pmd_trans_huge(*new_pmd));
1490 goto out;
1491 }
1492
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001493 /*
1494 * We don't have to worry about the ordering of src and dst
1495 * ptlocks because exclusive mmap_sem prevents deadlock.
1496 */
1497 ret = __pmd_trans_huge_lock(old_pmd, vma, &old_ptl);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001498 if (ret == 1) {
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001499 new_ptl = pmd_lockptr(mm, new_pmd);
1500 if (new_ptl != old_ptl)
1501 spin_lock_nested(new_ptl, SINGLE_DEPTH_NESTING);
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -07001502 pmd = pmdp_huge_get_and_clear(mm, old_addr, old_pmd);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001503 VM_BUG_ON(!pmd_none(*new_pmd));
Kirill A. Shutemov35928062013-12-12 17:12:33 -08001504
Aneesh Kumar K.Vb3084f42014-01-13 11:34:24 +05301505 if (pmd_move_must_withdraw(new_ptl, old_ptl)) {
1506 pgtable_t pgtable;
Kirill A. Shutemov35928062013-12-12 17:12:33 -08001507 pgtable = pgtable_trans_huge_withdraw(mm, old_pmd);
1508 pgtable_trans_huge_deposit(mm, new_pmd, pgtable);
Kirill A. Shutemov35928062013-12-12 17:12:33 -08001509 }
Aneesh Kumar K.Vb3084f42014-01-13 11:34:24 +05301510 set_pmd_at(mm, new_addr, new_pmd, pmd_mksoft_dirty(pmd));
1511 if (new_ptl != old_ptl)
1512 spin_unlock(new_ptl);
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001513 spin_unlock(old_ptl);
Andrea Arcangeli37a1c492011-10-31 17:08:30 -07001514 }
1515out:
1516 return ret;
1517}
1518
Mel Gormanf123d742013-10-07 11:28:49 +01001519/*
1520 * Returns
1521 * - 0 if PMD could not be locked
1522 * - 1 if PMD was locked but protections unchange and TLB flush unnecessary
1523 * - HPAGE_PMD_NR is protections changed and TLB flush necessary
1524 */
Johannes Weinercd7548a2011-01-13 15:47:04 -08001525int change_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
Mel Gormane944fd62015-02-12 14:58:35 -08001526 unsigned long addr, pgprot_t newprot, int prot_numa)
Johannes Weinercd7548a2011-01-13 15:47:04 -08001527{
1528 struct mm_struct *mm = vma->vm_mm;
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001529 spinlock_t *ptl;
Johannes Weinercd7548a2011-01-13 15:47:04 -08001530 int ret = 0;
1531
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001532 if (__pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001533 pmd_t entry;
Mel Gormanb191f9b2015-03-25 15:55:40 -07001534 bool preserve_write = prot_numa && pmd_write(*pmd);
Mel Gormanba68bc02015-03-07 15:20:48 +00001535 ret = 1;
Mel Gormane944fd62015-02-12 14:58:35 -08001536
1537 /*
1538 * Avoid trapping faults against the zero page. The read-only
1539 * data is likely to be read-cached on the local CPU and
1540 * local/remote hits to the zero page are not interesting.
1541 */
1542 if (prot_numa && is_huge_zero_pmd(*pmd)) {
1543 spin_unlock(ptl);
Mel Gormanba68bc02015-03-07 15:20:48 +00001544 return ret;
Mel Gormane944fd62015-02-12 14:58:35 -08001545 }
1546
Mel Gorman10c10452015-02-12 14:58:44 -08001547 if (!prot_numa || !pmd_protnone(*pmd)) {
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -07001548 entry = pmdp_huge_get_and_clear_notify(mm, addr, pmd);
Mel Gorman10c10452015-02-12 14:58:44 -08001549 entry = pmd_modify(entry, newprot);
Mel Gormanb191f9b2015-03-25 15:55:40 -07001550 if (preserve_write)
1551 entry = pmd_mkwrite(entry);
Mel Gorman10c10452015-02-12 14:58:44 -08001552 ret = HPAGE_PMD_NR;
1553 set_pmd_at(mm, addr, pmd, entry);
Mel Gormanb191f9b2015-03-25 15:55:40 -07001554 BUG_ON(!preserve_write && pmd_write(entry));
Mel Gorman10c10452015-02-12 14:58:44 -08001555 }
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001556 spin_unlock(ptl);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001557 }
Johannes Weinercd7548a2011-01-13 15:47:04 -08001558
1559 return ret;
1560}
1561
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001562/*
1563 * Returns 1 if a given pmd maps a stable (not under splitting) thp.
1564 * Returns -1 if it maps a thp under splitting. Returns 0 otherwise.
1565 *
1566 * Note that if it returns 1, this routine returns without unlocking page
1567 * table locks. So callers must unlock them.
1568 */
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001569int __pmd_trans_huge_lock(pmd_t *pmd, struct vm_area_struct *vma,
1570 spinlock_t **ptl)
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001571{
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001572 *ptl = pmd_lock(vma->vm_mm, pmd);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001573 if (likely(pmd_trans_huge(*pmd))) {
1574 if (unlikely(pmd_trans_splitting(*pmd))) {
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001575 spin_unlock(*ptl);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001576 wait_split_huge_page(vma->anon_vma, pmd);
1577 return -1;
1578 } else {
1579 /* Thp mapped by 'pmd' is stable, so we can
1580 * handle it as it is. */
1581 return 1;
1582 }
1583 }
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001584 spin_unlock(*ptl);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001585 return 0;
1586}
1587
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001588/*
1589 * This function returns whether a given @page is mapped onto the @address
1590 * in the virtual space of @mm.
1591 *
1592 * When it's true, this function returns *pmd with holding the page table lock
1593 * and passing it back to the caller via @ptl.
1594 * If it's false, returns NULL without holding the page table lock.
1595 */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001596pmd_t *page_check_address_pmd(struct page *page,
1597 struct mm_struct *mm,
1598 unsigned long address,
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001599 enum page_check_address_pmd_flag flag,
1600 spinlock_t **ptl)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001601{
Kirill A. Shutemovb5a8cad2014-04-18 15:07:25 -07001602 pgd_t *pgd;
1603 pud_t *pud;
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001604 pmd_t *pmd;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001605
1606 if (address & ~HPAGE_PMD_MASK)
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001607 return NULL;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001608
Kirill A. Shutemovb5a8cad2014-04-18 15:07:25 -07001609 pgd = pgd_offset(mm, address);
1610 if (!pgd_present(*pgd))
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001611 return NULL;
Kirill A. Shutemovb5a8cad2014-04-18 15:07:25 -07001612 pud = pud_offset(pgd, address);
1613 if (!pud_present(*pud))
1614 return NULL;
1615 pmd = pmd_offset(pud, address);
1616
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001617 *ptl = pmd_lock(mm, pmd);
Kirill A. Shutemovb5a8cad2014-04-18 15:07:25 -07001618 if (!pmd_present(*pmd))
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001619 goto unlock;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001620 if (pmd_page(*pmd) != page)
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001621 goto unlock;
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08001622 /*
1623 * split_vma() may create temporary aliased mappings. There is
1624 * no risk as long as all huge pmd are found and have their
1625 * splitting bit set before __split_huge_page_refcount
1626 * runs. Finding the same huge pmd more than once during the
1627 * same rmap walk is not a problem.
1628 */
1629 if (flag == PAGE_CHECK_ADDRESS_PMD_NOTSPLITTING_FLAG &&
1630 pmd_trans_splitting(*pmd))
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001631 goto unlock;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001632 if (pmd_trans_huge(*pmd)) {
1633 VM_BUG_ON(flag == PAGE_CHECK_ADDRESS_PMD_SPLITTING_FLAG &&
1634 !pmd_trans_splitting(*pmd));
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001635 return pmd;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001636 }
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001637unlock:
1638 spin_unlock(*ptl);
1639 return NULL;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001640}
1641
1642static int __split_huge_page_splitting(struct page *page,
1643 struct vm_area_struct *vma,
1644 unsigned long address)
1645{
1646 struct mm_struct *mm = vma->vm_mm;
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001647 spinlock_t *ptl;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001648 pmd_t *pmd;
1649 int ret = 0;
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001650 /* For mmu_notifiers */
1651 const unsigned long mmun_start = address;
1652 const unsigned long mmun_end = address + HPAGE_PMD_SIZE;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001653
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001654 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001655 pmd = page_check_address_pmd(page, mm, address,
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001656 PAGE_CHECK_ADDRESS_PMD_NOTSPLITTING_FLAG, &ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001657 if (pmd) {
1658 /*
1659 * We can't temporarily set the pmd to null in order
1660 * to split it, the pmd must remain marked huge at all
1661 * times or the VM won't take the pmd_trans_huge paths
Ingo Molnar5a505082012-12-02 19:56:46 +00001662 * and it won't wait on the anon_vma->root->rwsem to
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001663 * serialize against split_huge_page*.
1664 */
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001665 pmdp_splitting_flush(vma, address, pmd);
Joerg Roedel34ee6452014-11-13 13:46:09 +11001666
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001667 ret = 1;
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001668 spin_unlock(ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001669 }
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001670 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001671
1672 return ret;
1673}
1674
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001675static void __split_huge_page_refcount(struct page *page,
1676 struct list_head *list)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001677{
1678 int i;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001679 struct zone *zone = page_zone(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001680 struct lruvec *lruvec;
Andrea Arcangeli70b50f92011-11-02 13:36:59 -07001681 int tail_count = 0;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001682
1683 /* prevent PageLRU to go away from under us, and freeze lru stats */
1684 spin_lock_irq(&zone->lru_lock);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001685 lruvec = mem_cgroup_page_lruvec(page, zone);
1686
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001687 compound_lock(page);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08001688 /* complete memcg works before add pages to LRU */
1689 mem_cgroup_split_huge_fixup(page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001690
Shaohua Li45676882012-01-12 17:19:18 -08001691 for (i = HPAGE_PMD_NR - 1; i >= 1; i--) {
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001692 struct page *page_tail = page + i;
1693
Andrea Arcangeli70b50f92011-11-02 13:36:59 -07001694 /* tail_page->_mapcount cannot change */
1695 BUG_ON(page_mapcount(page_tail) < 0);
1696 tail_count += page_mapcount(page_tail);
1697 /* check for overflow */
1698 BUG_ON(tail_count < 0);
1699 BUG_ON(atomic_read(&page_tail->_count) != 0);
1700 /*
1701 * tail_page->_count is zero and not changing from
1702 * under us. But get_page_unless_zero() may be running
1703 * from under us on the tail_page. If we used
1704 * atomic_set() below instead of atomic_add(), we
1705 * would then run atomic_set() concurrently with
1706 * get_page_unless_zero(), and atomic_set() is
1707 * implemented in C not using locked ops. spin_unlock
1708 * on x86 sometime uses locked ops because of PPro
1709 * errata 66, 92, so unless somebody can guarantee
1710 * atomic_set() here would be safe on all archs (and
1711 * not only on x86), it's safer to use atomic_add().
1712 */
1713 atomic_add(page_mapcount(page) + page_mapcount(page_tail) + 1,
1714 &page_tail->_count);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001715
1716 /* after clearing PageTail the gup refcount can be released */
Waiman Long3a79d522014-08-06 16:05:38 -07001717 smp_mb__after_atomic();
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001718
Naoya Horiguchif4c18e62015-08-06 15:47:08 -07001719 page_tail->flags &= ~PAGE_FLAGS_CHECK_AT_PREP;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001720 page_tail->flags |= (page->flags &
1721 ((1L << PG_referenced) |
1722 (1L << PG_swapbacked) |
1723 (1L << PG_mlocked) |
Kirill A. Shutemove180cf82013-07-31 13:53:39 -07001724 (1L << PG_uptodate) |
1725 (1L << PG_active) |
1726 (1L << PG_unevictable)));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001727 page_tail->flags |= (1L << PG_dirty);
1728
Andrea Arcangeli70b50f92011-11-02 13:36:59 -07001729 /* clear PageTail before overwriting first_page */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001730 smp_wmb();
1731
1732 /*
1733 * __split_huge_page_splitting() already set the
1734 * splitting bit in all pmd that could map this
1735 * hugepage, that will ensure no CPU can alter the
1736 * mapcount on the head page. The mapcount is only
1737 * accounted in the head page and it has to be
1738 * transferred to all tail pages in the below code. So
1739 * for this code to be safe, the split the mapcount
1740 * can't change. But that doesn't mean userland can't
1741 * keep changing and reading the page contents while
1742 * we transfer the mapcount, so the pmd splitting
1743 * status is achieved setting a reserved bit in the
1744 * pmd, not by clearing the present bit.
1745 */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001746 page_tail->_mapcount = page->_mapcount;
1747
1748 BUG_ON(page_tail->mapping);
1749 page_tail->mapping = page->mapping;
1750
Shaohua Li45676882012-01-12 17:19:18 -08001751 page_tail->index = page->index + i;
Peter Zijlstra90572892013-10-07 11:29:20 +01001752 page_cpupid_xchg_last(page_tail, page_cpupid_last(page));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001753
1754 BUG_ON(!PageAnon(page_tail));
1755 BUG_ON(!PageUptodate(page_tail));
1756 BUG_ON(!PageDirty(page_tail));
1757 BUG_ON(!PageSwapBacked(page_tail));
1758
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001759 lru_add_page_tail(page, page_tail, lruvec, list);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001760 }
Andrea Arcangeli70b50f92011-11-02 13:36:59 -07001761 atomic_sub(tail_count, &page->_count);
1762 BUG_ON(atomic_read(&page->_count) <= 0);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001763
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001764 __mod_zone_page_state(zone, NR_ANON_TRANSPARENT_HUGEPAGES, -1);
Andrea Arcangeli79134172011-01-13 15:46:58 -08001765
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001766 ClearPageCompound(page);
1767 compound_unlock(page);
1768 spin_unlock_irq(&zone->lru_lock);
1769
1770 for (i = 1; i < HPAGE_PMD_NR; i++) {
1771 struct page *page_tail = page + i;
1772 BUG_ON(page_count(page_tail) <= 0);
1773 /*
1774 * Tail pages may be freed if there wasn't any mapping
1775 * like if add_to_swap() is running on a lru page that
1776 * had its mapping zapped. And freeing these pages
1777 * requires taking the lru_lock so we do the put_page
1778 * of the tail pages after the split is complete.
1779 */
1780 put_page(page_tail);
1781 }
1782
1783 /*
1784 * Only the head page (now become a regular page) is required
1785 * to be pinned by the caller.
1786 */
1787 BUG_ON(page_count(page) <= 0);
1788}
1789
1790static int __split_huge_page_map(struct page *page,
1791 struct vm_area_struct *vma,
1792 unsigned long address)
1793{
1794 struct mm_struct *mm = vma->vm_mm;
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001795 spinlock_t *ptl;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001796 pmd_t *pmd, _pmd;
1797 int ret = 0, i;
1798 pgtable_t pgtable;
1799 unsigned long haddr;
1800
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001801 pmd = page_check_address_pmd(page, mm, address,
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001802 PAGE_CHECK_ADDRESS_PMD_SPLITTING_FLAG, &ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001803 if (pmd) {
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -07001804 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001805 pmd_populate(mm, &_pmd, pgtable);
Waiman Longf8303c22014-08-06 16:05:36 -07001806 if (pmd_write(*pmd))
1807 BUG_ON(page_mapcount(page) != 1);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001808
Gerald Schaefere3ebcf62012-10-08 16:30:07 -07001809 haddr = address;
1810 for (i = 0; i < HPAGE_PMD_NR; i++, haddr += PAGE_SIZE) {
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001811 pte_t *pte, entry;
1812 BUG_ON(PageCompound(page+i));
Mel Gormanabc40bd2014-10-02 19:47:42 +01001813 /*
Mel Gorman8a0516e2015-02-12 14:58:22 -08001814 * Note that NUMA hinting access restrictions are not
1815 * transferred to avoid any possibility of altering
1816 * permissions across VMAs.
Mel Gormanabc40bd2014-10-02 19:47:42 +01001817 */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001818 entry = mk_pte(page + i, vma->vm_page_prot);
1819 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
1820 if (!pmd_write(*pmd))
1821 entry = pte_wrprotect(entry);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001822 if (!pmd_young(*pmd))
1823 entry = pte_mkold(entry);
1824 pte = pte_offset_map(&_pmd, haddr);
1825 BUG_ON(!pte_none(*pte));
1826 set_pte_at(mm, haddr, pte, entry);
1827 pte_unmap(pte);
1828 }
1829
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001830 smp_wmb(); /* make pte visible before pmd */
1831 /*
1832 * Up to this point the pmd is present and huge and
1833 * userland has the whole access to the hugepage
1834 * during the split (which happens in place). If we
1835 * overwrite the pmd with the not-huge version
1836 * pointing to the pte here (which of course we could
1837 * if all CPUs were bug free), userland could trigger
1838 * a small page size TLB miss on the small sized TLB
1839 * while the hugepage TLB entry is still established
1840 * in the huge TLB. Some CPU doesn't like that. See
1841 * http://support.amd.com/us/Processor_TechDocs/41322.pdf,
1842 * Erratum 383 on page 93. Intel should be safe but is
1843 * also warns that it's only safe if the permission
1844 * and cache attributes of the two entries loaded in
1845 * the two TLB is identical (which should be the case
1846 * here). But it is generally safer to never allow
1847 * small and huge TLB entries for the same virtual
1848 * address to be loaded simultaneously. So instead of
1849 * doing "pmd_populate(); flush_tlb_range();" we first
1850 * mark the current pmd notpresent (atomically because
1851 * here the pmd_trans_huge and pmd_trans_splitting
1852 * must remain set at all times on the pmd until the
1853 * split is complete for this pmd), then we flush the
1854 * SMP TLB and finally we write the non-huge version
1855 * of the pmd entry with pmd_populate.
1856 */
Gerald Schaefer46dcde72012-10-08 16:30:09 -07001857 pmdp_invalidate(vma, address, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001858 pmd_populate(mm, pmd, pgtable);
1859 ret = 1;
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001860 spin_unlock(ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001861 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001862
1863 return ret;
1864}
1865
Ingo Molnar5a505082012-12-02 19:56:46 +00001866/* must be called with anon_vma->root->rwsem held */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001867static void __split_huge_page(struct page *page,
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001868 struct anon_vma *anon_vma,
1869 struct list_head *list)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001870{
1871 int mapcount, mapcount2;
Michel Lespinassebf181b92012-10-08 16:31:39 -07001872 pgoff_t pgoff = page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001873 struct anon_vma_chain *avc;
1874
1875 BUG_ON(!PageHead(page));
1876 BUG_ON(PageTail(page));
1877
1878 mapcount = 0;
Michel Lespinassebf181b92012-10-08 16:31:39 -07001879 anon_vma_interval_tree_foreach(avc, &anon_vma->rb_root, pgoff, pgoff) {
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001880 struct vm_area_struct *vma = avc->vma;
1881 unsigned long addr = vma_address(page, vma);
1882 BUG_ON(is_vma_temporary_stack(vma));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001883 mapcount += __split_huge_page_splitting(page, vma, addr);
1884 }
Andrea Arcangeli05759d32011-01-13 15:46:53 -08001885 /*
1886 * It is critical that new vmas are added to the tail of the
1887 * anon_vma list. This guarantes that if copy_huge_pmd() runs
1888 * and establishes a child pmd before
1889 * __split_huge_page_splitting() freezes the parent pmd (so if
1890 * we fail to prevent copy_huge_pmd() from running until the
1891 * whole __split_huge_page() is complete), we will still see
1892 * the newly established pmd of the child later during the
1893 * walk, to be able to set it as pmd_trans_splitting too.
1894 */
Kirill A. Shutemovff9e43e2014-06-04 16:06:57 -07001895 if (mapcount != page_mapcount(page)) {
Andrew Mortonae3a8c12014-06-04 16:06:58 -07001896 pr_err("mapcount %d page_mapcount %d\n",
1897 mapcount, page_mapcount(page));
Kirill A. Shutemovff9e43e2014-06-04 16:06:57 -07001898 BUG();
1899 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001900
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001901 __split_huge_page_refcount(page, list);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001902
1903 mapcount2 = 0;
Michel Lespinassebf181b92012-10-08 16:31:39 -07001904 anon_vma_interval_tree_foreach(avc, &anon_vma->rb_root, pgoff, pgoff) {
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001905 struct vm_area_struct *vma = avc->vma;
1906 unsigned long addr = vma_address(page, vma);
1907 BUG_ON(is_vma_temporary_stack(vma));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001908 mapcount2 += __split_huge_page_map(page, vma, addr);
1909 }
Kirill A. Shutemovff9e43e2014-06-04 16:06:57 -07001910 if (mapcount != mapcount2) {
Andrew Mortonae3a8c12014-06-04 16:06:58 -07001911 pr_err("mapcount %d mapcount2 %d page_mapcount %d\n",
1912 mapcount, mapcount2, page_mapcount(page));
Kirill A. Shutemovff9e43e2014-06-04 16:06:57 -07001913 BUG();
1914 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001915}
1916
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001917/*
1918 * Split a hugepage into normal pages. This doesn't change the position of head
1919 * page. If @list is null, tail pages will be added to LRU list, otherwise, to
1920 * @list. Both head page and tail pages will inherit mapping, flags, and so on
1921 * from the hugepage.
1922 * Return 0 if the hugepage is split successfully otherwise return 1.
1923 */
1924int split_huge_page_to_list(struct page *page, struct list_head *list)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001925{
1926 struct anon_vma *anon_vma;
1927 int ret = 1;
1928
Kirill A. Shutemov5918d102013-04-29 15:08:44 -07001929 BUG_ON(is_huge_zero_page(page));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001930 BUG_ON(!PageAnon(page));
Mel Gorman062f1af2013-01-11 14:32:02 -08001931
1932 /*
1933 * The caller does not necessarily hold an mmap_sem that would prevent
1934 * the anon_vma disappearing so we first we take a reference to it
1935 * and then lock the anon_vma for write. This is similar to
1936 * page_lock_anon_vma_read except the write lock is taken to serialise
1937 * against parallel split or collapse operations.
1938 */
1939 anon_vma = page_get_anon_vma(page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001940 if (!anon_vma)
1941 goto out;
Mel Gorman062f1af2013-01-11 14:32:02 -08001942 anon_vma_lock_write(anon_vma);
1943
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001944 ret = 0;
1945 if (!PageCompound(page))
1946 goto out_unlock;
1947
1948 BUG_ON(!PageSwapBacked(page));
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001949 __split_huge_page(page, anon_vma, list);
Andi Kleen81ab4202011-04-14 15:22:06 -07001950 count_vm_event(THP_SPLIT);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001951
1952 BUG_ON(PageCompound(page));
1953out_unlock:
Konstantin Khlebnikov08b52702013-02-22 16:34:40 -08001954 anon_vma_unlock_write(anon_vma);
Mel Gorman062f1af2013-01-11 14:32:02 -08001955 put_anon_vma(anon_vma);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001956out:
1957 return ret;
1958}
1959
Vlastimil Babka9050d7e2014-03-03 15:38:27 -08001960#define VM_NO_THP (VM_SPECIAL | VM_HUGETLB | VM_SHARED | VM_MAYSHARE)
Andrea Arcangeli78f11a22011-04-27 15:26:45 -07001961
Andrea Arcangeli60ab3242011-01-13 15:47:18 -08001962int hugepage_madvise(struct vm_area_struct *vma,
1963 unsigned long *vm_flags, int advice)
Andrea Arcangeli0af4e982011-01-13 15:46:55 -08001964{
Andrea Arcangelia664b2d2011-01-13 15:47:17 -08001965 switch (advice) {
1966 case MADV_HUGEPAGE:
Alex Thorlton1e1836e2014-04-07 15:37:09 -07001967#ifdef CONFIG_S390
1968 /*
1969 * qemu blindly sets MADV_HUGEPAGE on all allocations, but s390
1970 * can't handle this properly after s390_enable_sie, so we simply
1971 * ignore the madvise to prevent qemu from causing a SIGSEGV.
1972 */
1973 if (mm_has_pgste(vma->vm_mm))
1974 return 0;
1975#endif
Andrea Arcangelia664b2d2011-01-13 15:47:17 -08001976 /*
1977 * Be somewhat over-protective like KSM for now!
1978 */
Andrea Arcangeli78f11a22011-04-27 15:26:45 -07001979 if (*vm_flags & (VM_HUGEPAGE | VM_NO_THP))
Andrea Arcangelia664b2d2011-01-13 15:47:17 -08001980 return -EINVAL;
1981 *vm_flags &= ~VM_NOHUGEPAGE;
1982 *vm_flags |= VM_HUGEPAGE;
Andrea Arcangeli60ab3242011-01-13 15:47:18 -08001983 /*
1984 * If the vma become good for khugepaged to scan,
1985 * register it here without waiting a page fault that
1986 * may not happen any time soon.
1987 */
David Rientjes6d50e602014-10-29 14:50:31 -07001988 if (unlikely(khugepaged_enter_vma_merge(vma, *vm_flags)))
Andrea Arcangeli60ab3242011-01-13 15:47:18 -08001989 return -ENOMEM;
Andrea Arcangelia664b2d2011-01-13 15:47:17 -08001990 break;
1991 case MADV_NOHUGEPAGE:
1992 /*
1993 * Be somewhat over-protective like KSM for now!
1994 */
Andrea Arcangeli78f11a22011-04-27 15:26:45 -07001995 if (*vm_flags & (VM_NOHUGEPAGE | VM_NO_THP))
Andrea Arcangelia664b2d2011-01-13 15:47:17 -08001996 return -EINVAL;
1997 *vm_flags &= ~VM_HUGEPAGE;
1998 *vm_flags |= VM_NOHUGEPAGE;
Andrea Arcangeli60ab3242011-01-13 15:47:18 -08001999 /*
2000 * Setting VM_NOHUGEPAGE will prevent khugepaged from scanning
2001 * this vma even if we leave the mm registered in khugepaged if
2002 * it got registered before VM_NOHUGEPAGE was set.
2003 */
Andrea Arcangelia664b2d2011-01-13 15:47:17 -08002004 break;
2005 }
Andrea Arcangeli0af4e982011-01-13 15:46:55 -08002006
2007 return 0;
2008}
2009
Andrea Arcangeliba761492011-01-13 15:46:58 -08002010static int __init khugepaged_slab_init(void)
2011{
2012 mm_slot_cache = kmem_cache_create("khugepaged_mm_slot",
2013 sizeof(struct mm_slot),
2014 __alignof__(struct mm_slot), 0, NULL);
2015 if (!mm_slot_cache)
2016 return -ENOMEM;
2017
2018 return 0;
2019}
2020
Kirill A. Shutemov65ebb642015-04-15 16:14:20 -07002021static void __init khugepaged_slab_exit(void)
2022{
2023 kmem_cache_destroy(mm_slot_cache);
2024}
2025
Andrea Arcangeliba761492011-01-13 15:46:58 -08002026static inline struct mm_slot *alloc_mm_slot(void)
2027{
2028 if (!mm_slot_cache) /* initialization failed */
2029 return NULL;
2030 return kmem_cache_zalloc(mm_slot_cache, GFP_KERNEL);
2031}
2032
2033static inline void free_mm_slot(struct mm_slot *mm_slot)
2034{
2035 kmem_cache_free(mm_slot_cache, mm_slot);
2036}
2037
Andrea Arcangeliba761492011-01-13 15:46:58 -08002038static struct mm_slot *get_mm_slot(struct mm_struct *mm)
2039{
2040 struct mm_slot *mm_slot;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002041
Sasha Levinb67bfe02013-02-27 17:06:00 -08002042 hash_for_each_possible(mm_slots_hash, mm_slot, hash, (unsigned long)mm)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002043 if (mm == mm_slot->mm)
2044 return mm_slot;
Sasha Levin43b5fbb2013-02-22 16:32:27 -08002045
Andrea Arcangeliba761492011-01-13 15:46:58 -08002046 return NULL;
2047}
2048
2049static void insert_to_mm_slots_hash(struct mm_struct *mm,
2050 struct mm_slot *mm_slot)
2051{
Andrea Arcangeliba761492011-01-13 15:46:58 -08002052 mm_slot->mm = mm;
Sasha Levin43b5fbb2013-02-22 16:32:27 -08002053 hash_add(mm_slots_hash, &mm_slot->hash, (long)mm);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002054}
2055
2056static inline int khugepaged_test_exit(struct mm_struct *mm)
2057{
2058 return atomic_read(&mm->mm_users) == 0;
2059}
2060
2061int __khugepaged_enter(struct mm_struct *mm)
2062{
2063 struct mm_slot *mm_slot;
2064 int wakeup;
2065
2066 mm_slot = alloc_mm_slot();
2067 if (!mm_slot)
2068 return -ENOMEM;
2069
2070 /* __khugepaged_exit() must not run from under us */
Sasha Levin96dad672014-10-09 15:28:39 -07002071 VM_BUG_ON_MM(khugepaged_test_exit(mm), mm);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002072 if (unlikely(test_and_set_bit(MMF_VM_HUGEPAGE, &mm->flags))) {
2073 free_mm_slot(mm_slot);
2074 return 0;
2075 }
2076
2077 spin_lock(&khugepaged_mm_lock);
2078 insert_to_mm_slots_hash(mm, mm_slot);
2079 /*
2080 * Insert just behind the scanning cursor, to let the area settle
2081 * down a little.
2082 */
2083 wakeup = list_empty(&khugepaged_scan.mm_head);
2084 list_add_tail(&mm_slot->mm_node, &khugepaged_scan.mm_head);
2085 spin_unlock(&khugepaged_mm_lock);
2086
2087 atomic_inc(&mm->mm_count);
2088 if (wakeup)
2089 wake_up_interruptible(&khugepaged_wait);
2090
2091 return 0;
2092}
2093
David Rientjes6d50e602014-10-29 14:50:31 -07002094int khugepaged_enter_vma_merge(struct vm_area_struct *vma,
2095 unsigned long vm_flags)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002096{
2097 unsigned long hstart, hend;
2098 if (!vma->anon_vma)
2099 /*
2100 * Not yet faulted in so we will register later in the
2101 * page fault if needed.
2102 */
2103 return 0;
Andrea Arcangeli78f11a22011-04-27 15:26:45 -07002104 if (vma->vm_ops)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002105 /* khugepaged not yet working on file or special mappings */
2106 return 0;
David Rientjes6d50e602014-10-29 14:50:31 -07002107 VM_BUG_ON_VMA(vm_flags & VM_NO_THP, vma);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002108 hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
2109 hend = vma->vm_end & HPAGE_PMD_MASK;
2110 if (hstart < hend)
David Rientjes6d50e602014-10-29 14:50:31 -07002111 return khugepaged_enter(vma, vm_flags);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002112 return 0;
2113}
2114
2115void __khugepaged_exit(struct mm_struct *mm)
2116{
2117 struct mm_slot *mm_slot;
2118 int free = 0;
2119
2120 spin_lock(&khugepaged_mm_lock);
2121 mm_slot = get_mm_slot(mm);
2122 if (mm_slot && khugepaged_scan.mm_slot != mm_slot) {
Sasha Levin43b5fbb2013-02-22 16:32:27 -08002123 hash_del(&mm_slot->hash);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002124 list_del(&mm_slot->mm_node);
2125 free = 1;
2126 }
Chris Wrightd788e802011-07-25 17:12:14 -07002127 spin_unlock(&khugepaged_mm_lock);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002128
2129 if (free) {
Andrea Arcangeliba761492011-01-13 15:46:58 -08002130 clear_bit(MMF_VM_HUGEPAGE, &mm->flags);
2131 free_mm_slot(mm_slot);
2132 mmdrop(mm);
2133 } else if (mm_slot) {
Andrea Arcangeliba761492011-01-13 15:46:58 -08002134 /*
2135 * This is required to serialize against
2136 * khugepaged_test_exit() (which is guaranteed to run
2137 * under mmap sem read mode). Stop here (after we
2138 * return all pagetables will be destroyed) until
2139 * khugepaged has finished working on the pagetables
2140 * under the mmap_sem.
2141 */
2142 down_write(&mm->mmap_sem);
2143 up_write(&mm->mmap_sem);
Chris Wrightd788e802011-07-25 17:12:14 -07002144 }
Andrea Arcangeliba761492011-01-13 15:46:58 -08002145}
2146
2147static void release_pte_page(struct page *page)
2148{
2149 /* 0 stands for page_is_file_cache(page) == false */
2150 dec_zone_page_state(page, NR_ISOLATED_ANON + 0);
2151 unlock_page(page);
2152 putback_lru_page(page);
2153}
2154
2155static void release_pte_pages(pte_t *pte, pte_t *_pte)
2156{
2157 while (--_pte >= pte) {
2158 pte_t pteval = *_pte;
Ebru Akagunduzca0984c2015-04-14 15:45:24 -07002159 if (!pte_none(pteval) && !is_zero_pfn(pte_pfn(pteval)))
Andrea Arcangeliba761492011-01-13 15:46:58 -08002160 release_pte_page(pte_page(pteval));
2161 }
2162}
2163
Andrea Arcangeliba761492011-01-13 15:46:58 -08002164static int __collapse_huge_page_isolate(struct vm_area_struct *vma,
2165 unsigned long address,
2166 pte_t *pte)
2167{
2168 struct page *page;
2169 pte_t *_pte;
Ebru Akagunduzca0984c2015-04-14 15:45:24 -07002170 int none_or_zero = 0;
Ebru Akagunduz10359212015-02-11 15:28:28 -08002171 bool referenced = false, writable = false;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002172 for (_pte = pte; _pte < pte+HPAGE_PMD_NR;
2173 _pte++, address += PAGE_SIZE) {
2174 pte_t pteval = *_pte;
Ebru Akagunduzca0984c2015-04-14 15:45:24 -07002175 if (pte_none(pteval) || is_zero_pfn(pte_pfn(pteval))) {
Andrea Arcangelic1294d02015-09-04 15:46:27 -07002176 if (!userfaultfd_armed(vma) &&
2177 ++none_or_zero <= khugepaged_max_ptes_none)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002178 continue;
Bob Liu344aa352012-12-11 16:00:34 -08002179 else
Andrea Arcangeliba761492011-01-13 15:46:58 -08002180 goto out;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002181 }
Ebru Akagunduz10359212015-02-11 15:28:28 -08002182 if (!pte_present(pteval))
Andrea Arcangeliba761492011-01-13 15:46:58 -08002183 goto out;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002184 page = vm_normal_page(vma, address, pteval);
Bob Liu344aa352012-12-11 16:00:34 -08002185 if (unlikely(!page))
Andrea Arcangeliba761492011-01-13 15:46:58 -08002186 goto out;
Bob Liu344aa352012-12-11 16:00:34 -08002187
Sasha Levin309381fea2014-01-23 15:52:54 -08002188 VM_BUG_ON_PAGE(PageCompound(page), page);
2189 VM_BUG_ON_PAGE(!PageAnon(page), page);
2190 VM_BUG_ON_PAGE(!PageSwapBacked(page), page);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002191
Andrea Arcangeliba761492011-01-13 15:46:58 -08002192 /*
2193 * We can do it before isolate_lru_page because the
2194 * page can't be freed from under us. NOTE: PG_lock
2195 * is needed to serialize against split_huge_page
2196 * when invoked from the VM.
2197 */
Bob Liu344aa352012-12-11 16:00:34 -08002198 if (!trylock_page(page))
Andrea Arcangeliba761492011-01-13 15:46:58 -08002199 goto out;
Ebru Akagunduz10359212015-02-11 15:28:28 -08002200
2201 /*
2202 * cannot use mapcount: can't collapse if there's a gup pin.
2203 * The page must only be referenced by the scanned process
2204 * and page swap cache.
2205 */
2206 if (page_count(page) != 1 + !!PageSwapCache(page)) {
2207 unlock_page(page);
2208 goto out;
2209 }
2210 if (pte_write(pteval)) {
2211 writable = true;
2212 } else {
2213 if (PageSwapCache(page) && !reuse_swap_page(page)) {
2214 unlock_page(page);
2215 goto out;
2216 }
2217 /*
2218 * Page is not in the swap cache. It can be collapsed
2219 * into a THP.
2220 */
2221 }
2222
Andrea Arcangeliba761492011-01-13 15:46:58 -08002223 /*
2224 * Isolate the page to avoid collapsing an hugepage
2225 * currently in use by the VM.
2226 */
2227 if (isolate_lru_page(page)) {
2228 unlock_page(page);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002229 goto out;
2230 }
2231 /* 0 stands for page_is_file_cache(page) == false */
2232 inc_zone_page_state(page, NR_ISOLATED_ANON + 0);
Sasha Levin309381fea2014-01-23 15:52:54 -08002233 VM_BUG_ON_PAGE(!PageLocked(page), page);
2234 VM_BUG_ON_PAGE(PageLRU(page), page);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002235
2236 /* If there is no mapped pte young don't collapse the page */
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08002237 if (pte_young(pteval) || PageReferenced(page) ||
2238 mmu_notifier_test_young(vma->vm_mm, address))
Ebru Akagunduz10359212015-02-11 15:28:28 -08002239 referenced = true;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002240 }
Ebru Akagunduz10359212015-02-11 15:28:28 -08002241 if (likely(referenced && writable))
Bob Liu344aa352012-12-11 16:00:34 -08002242 return 1;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002243out:
Bob Liu344aa352012-12-11 16:00:34 -08002244 release_pte_pages(pte, _pte);
2245 return 0;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002246}
2247
2248static void __collapse_huge_page_copy(pte_t *pte, struct page *page,
2249 struct vm_area_struct *vma,
2250 unsigned long address,
2251 spinlock_t *ptl)
2252{
2253 pte_t *_pte;
2254 for (_pte = pte; _pte < pte+HPAGE_PMD_NR; _pte++) {
2255 pte_t pteval = *_pte;
2256 struct page *src_page;
2257
Ebru Akagunduzca0984c2015-04-14 15:45:24 -07002258 if (pte_none(pteval) || is_zero_pfn(pte_pfn(pteval))) {
Andrea Arcangeliba761492011-01-13 15:46:58 -08002259 clear_user_highpage(page, address);
2260 add_mm_counter(vma->vm_mm, MM_ANONPAGES, 1);
Ebru Akagunduzca0984c2015-04-14 15:45:24 -07002261 if (is_zero_pfn(pte_pfn(pteval))) {
2262 /*
2263 * ptl mostly unnecessary.
2264 */
2265 spin_lock(ptl);
2266 /*
2267 * paravirt calls inside pte_clear here are
2268 * superfluous.
2269 */
2270 pte_clear(vma->vm_mm, address, _pte);
2271 spin_unlock(ptl);
2272 }
Andrea Arcangeliba761492011-01-13 15:46:58 -08002273 } else {
2274 src_page = pte_page(pteval);
2275 copy_user_highpage(page, src_page, address, vma);
Sasha Levin309381fea2014-01-23 15:52:54 -08002276 VM_BUG_ON_PAGE(page_mapcount(src_page) != 1, src_page);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002277 release_pte_page(src_page);
2278 /*
2279 * ptl mostly unnecessary, but preempt has to
2280 * be disabled to update the per-cpu stats
2281 * inside page_remove_rmap().
2282 */
2283 spin_lock(ptl);
2284 /*
2285 * paravirt calls inside pte_clear here are
2286 * superfluous.
2287 */
2288 pte_clear(vma->vm_mm, address, _pte);
2289 page_remove_rmap(src_page);
2290 spin_unlock(ptl);
2291 free_page_and_swap_cache(src_page);
2292 }
2293
2294 address += PAGE_SIZE;
2295 page++;
2296 }
2297}
2298
Xiao Guangrong26234f32012-10-08 16:29:51 -07002299static void khugepaged_alloc_sleep(void)
2300{
2301 wait_event_freezable_timeout(khugepaged_wait, false,
2302 msecs_to_jiffies(khugepaged_alloc_sleep_millisecs));
2303}
2304
Bob Liu9f1b8682013-11-12 15:07:37 -08002305static int khugepaged_node_load[MAX_NUMNODES];
2306
David Rientjes14a4e212014-08-06 16:07:29 -07002307static bool khugepaged_scan_abort(int nid)
2308{
2309 int i;
2310
2311 /*
2312 * If zone_reclaim_mode is disabled, then no extra effort is made to
2313 * allocate memory locally.
2314 */
2315 if (!zone_reclaim_mode)
2316 return false;
2317
2318 /* If there is a count for this node already, it must be acceptable */
2319 if (khugepaged_node_load[nid])
2320 return false;
2321
2322 for (i = 0; i < MAX_NUMNODES; i++) {
2323 if (!khugepaged_node_load[i])
2324 continue;
2325 if (node_distance(nid, i) > RECLAIM_DISTANCE)
2326 return true;
2327 }
2328 return false;
2329}
2330
Xiao Guangrong26234f32012-10-08 16:29:51 -07002331#ifdef CONFIG_NUMA
Bob Liu9f1b8682013-11-12 15:07:37 -08002332static int khugepaged_find_target_node(void)
2333{
2334 static int last_khugepaged_target_node = NUMA_NO_NODE;
2335 int nid, target_node = 0, max_value = 0;
2336
2337 /* find first node with max normal pages hit */
2338 for (nid = 0; nid < MAX_NUMNODES; nid++)
2339 if (khugepaged_node_load[nid] > max_value) {
2340 max_value = khugepaged_node_load[nid];
2341 target_node = nid;
2342 }
2343
2344 /* do some balance if several nodes have the same hit record */
2345 if (target_node <= last_khugepaged_target_node)
2346 for (nid = last_khugepaged_target_node + 1; nid < MAX_NUMNODES;
2347 nid++)
2348 if (max_value == khugepaged_node_load[nid]) {
2349 target_node = nid;
2350 break;
2351 }
2352
2353 last_khugepaged_target_node = target_node;
2354 return target_node;
2355}
2356
Xiao Guangrong26234f32012-10-08 16:29:51 -07002357static bool khugepaged_prealloc_page(struct page **hpage, bool *wait)
2358{
2359 if (IS_ERR(*hpage)) {
2360 if (!*wait)
2361 return false;
2362
2363 *wait = false;
Xiao Guangronge3b41262012-10-08 16:32:57 -07002364 *hpage = NULL;
Xiao Guangrong26234f32012-10-08 16:29:51 -07002365 khugepaged_alloc_sleep();
2366 } else if (*hpage) {
2367 put_page(*hpage);
2368 *hpage = NULL;
2369 }
2370
2371 return true;
2372}
2373
Michal Hocko3b363692015-04-15 16:13:29 -07002374static struct page *
2375khugepaged_alloc_page(struct page **hpage, gfp_t gfp, struct mm_struct *mm,
Xiao Guangrong26234f32012-10-08 16:29:51 -07002376 struct vm_area_struct *vma, unsigned long address,
2377 int node)
2378{
Sasha Levin309381fea2014-01-23 15:52:54 -08002379 VM_BUG_ON_PAGE(*hpage, *hpage);
Vlastimil Babka8b164562014-10-09 15:27:00 -07002380
Xiao Guangrong26234f32012-10-08 16:29:51 -07002381 /*
Vlastimil Babka8b164562014-10-09 15:27:00 -07002382 * Before allocating the hugepage, release the mmap_sem read lock.
2383 * The allocation can take potentially a long time if it involves
2384 * sync compaction, and we do not need to hold the mmap_sem during
2385 * that. We will recheck the vma after taking it again in write mode.
Xiao Guangrong26234f32012-10-08 16:29:51 -07002386 */
2387 up_read(&mm->mmap_sem);
Vlastimil Babka8b164562014-10-09 15:27:00 -07002388
Michal Hocko3b363692015-04-15 16:13:29 -07002389 *hpage = alloc_pages_exact_node(node, gfp, HPAGE_PMD_ORDER);
Xiao Guangrong26234f32012-10-08 16:29:51 -07002390 if (unlikely(!*hpage)) {
2391 count_vm_event(THP_COLLAPSE_ALLOC_FAILED);
2392 *hpage = ERR_PTR(-ENOMEM);
2393 return NULL;
2394 }
2395
2396 count_vm_event(THP_COLLAPSE_ALLOC);
2397 return *hpage;
2398}
2399#else
Bob Liu9f1b8682013-11-12 15:07:37 -08002400static int khugepaged_find_target_node(void)
2401{
2402 return 0;
2403}
2404
Bob Liu10dc4152013-11-12 15:07:35 -08002405static inline struct page *alloc_hugepage(int defrag)
2406{
2407 return alloc_pages(alloc_hugepage_gfpmask(defrag, 0),
2408 HPAGE_PMD_ORDER);
2409}
2410
Xiao Guangrong26234f32012-10-08 16:29:51 -07002411static struct page *khugepaged_alloc_hugepage(bool *wait)
2412{
2413 struct page *hpage;
2414
2415 do {
2416 hpage = alloc_hugepage(khugepaged_defrag());
2417 if (!hpage) {
2418 count_vm_event(THP_COLLAPSE_ALLOC_FAILED);
2419 if (!*wait)
2420 return NULL;
2421
2422 *wait = false;
2423 khugepaged_alloc_sleep();
2424 } else
2425 count_vm_event(THP_COLLAPSE_ALLOC);
2426 } while (unlikely(!hpage) && likely(khugepaged_enabled()));
2427
2428 return hpage;
2429}
2430
2431static bool khugepaged_prealloc_page(struct page **hpage, bool *wait)
2432{
2433 if (!*hpage)
2434 *hpage = khugepaged_alloc_hugepage(wait);
2435
2436 if (unlikely(!*hpage))
2437 return false;
2438
2439 return true;
2440}
2441
Michal Hocko3b363692015-04-15 16:13:29 -07002442static struct page *
2443khugepaged_alloc_page(struct page **hpage, gfp_t gfp, struct mm_struct *mm,
Xiao Guangrong26234f32012-10-08 16:29:51 -07002444 struct vm_area_struct *vma, unsigned long address,
2445 int node)
2446{
2447 up_read(&mm->mmap_sem);
2448 VM_BUG_ON(!*hpage);
Michal Hocko3b363692015-04-15 16:13:29 -07002449
Xiao Guangrong26234f32012-10-08 16:29:51 -07002450 return *hpage;
2451}
2452#endif
2453
Bob Liufa475e52012-12-11 16:00:39 -08002454static bool hugepage_vma_check(struct vm_area_struct *vma)
2455{
2456 if ((!(vma->vm_flags & VM_HUGEPAGE) && !khugepaged_always()) ||
2457 (vma->vm_flags & VM_NOHUGEPAGE))
2458 return false;
2459
2460 if (!vma->anon_vma || vma->vm_ops)
2461 return false;
2462 if (is_vma_temporary_stack(vma))
2463 return false;
Sasha Levin81d1b092014-10-09 15:28:10 -07002464 VM_BUG_ON_VMA(vma->vm_flags & VM_NO_THP, vma);
Bob Liufa475e52012-12-11 16:00:39 -08002465 return true;
2466}
2467
Andrea Arcangeliba761492011-01-13 15:46:58 -08002468static void collapse_huge_page(struct mm_struct *mm,
Xiao Guangrong26234f32012-10-08 16:29:51 -07002469 unsigned long address,
2470 struct page **hpage,
2471 struct vm_area_struct *vma,
2472 int node)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002473{
Andrea Arcangeliba761492011-01-13 15:46:58 -08002474 pmd_t *pmd, _pmd;
2475 pte_t *pte;
2476 pgtable_t pgtable;
2477 struct page *new_page;
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002478 spinlock_t *pmd_ptl, *pte_ptl;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002479 int isolated;
2480 unsigned long hstart, hend;
Johannes Weiner00501b52014-08-08 14:19:20 -07002481 struct mem_cgroup *memcg;
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07002482 unsigned long mmun_start; /* For mmu_notifiers */
2483 unsigned long mmun_end; /* For mmu_notifiers */
Michal Hocko3b363692015-04-15 16:13:29 -07002484 gfp_t gfp;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002485
2486 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
Andrea Arcangeli692e0b32011-05-24 17:12:14 -07002487
Michal Hocko3b363692015-04-15 16:13:29 -07002488 /* Only allocate from the target node */
2489 gfp = alloc_hugepage_gfpmask(khugepaged_defrag(), __GFP_OTHER_NODE) |
2490 __GFP_THISNODE;
2491
Xiao Guangrong26234f32012-10-08 16:29:51 -07002492 /* release the mmap_sem read lock. */
Michal Hocko3b363692015-04-15 16:13:29 -07002493 new_page = khugepaged_alloc_page(hpage, gfp, mm, vma, address, node);
Xiao Guangrong26234f32012-10-08 16:29:51 -07002494 if (!new_page)
Andrea Arcangelice83d212011-01-13 15:47:06 -08002495 return;
Andrea Arcangelice83d212011-01-13 15:47:06 -08002496
Johannes Weiner00501b52014-08-08 14:19:20 -07002497 if (unlikely(mem_cgroup_try_charge(new_page, mm,
Michal Hocko3b363692015-04-15 16:13:29 -07002498 gfp, &memcg)))
Andrea Arcangeli692e0b32011-05-24 17:12:14 -07002499 return;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002500
2501 /*
2502 * Prevent all access to pagetables with the exception of
2503 * gup_fast later hanlded by the ptep_clear_flush and the VM
2504 * handled by the anon_vma lock + PG_lock.
2505 */
2506 down_write(&mm->mmap_sem);
2507 if (unlikely(khugepaged_test_exit(mm)))
2508 goto out;
2509
2510 vma = find_vma(mm, address);
Libina8f531eb2013-09-11 14:20:38 -07002511 if (!vma)
2512 goto out;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002513 hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
2514 hend = vma->vm_end & HPAGE_PMD_MASK;
2515 if (address < hstart || address + HPAGE_PMD_SIZE > hend)
2516 goto out;
Bob Liufa475e52012-12-11 16:00:39 -08002517 if (!hugepage_vma_check(vma))
Andrea Arcangeliba761492011-01-13 15:46:58 -08002518 goto out;
Bob Liu62190492012-12-11 16:00:37 -08002519 pmd = mm_find_pmd(mm, address);
2520 if (!pmd)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002521 goto out;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002522
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +00002523 anon_vma_lock_write(vma->anon_vma);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002524
2525 pte = pte_offset_map(pmd, address);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002526 pte_ptl = pte_lockptr(mm, pmd);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002527
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07002528 mmun_start = address;
2529 mmun_end = address + HPAGE_PMD_SIZE;
2530 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002531 pmd_ptl = pmd_lock(mm, pmd); /* probably unnecessary */
Andrea Arcangeliba761492011-01-13 15:46:58 -08002532 /*
2533 * After this gup_fast can't run anymore. This also removes
2534 * any huge TLB entry from the CPU so we won't allow
2535 * huge and small TLB entries for the same virtual address
2536 * to avoid the risk of CPU bugs in that area.
2537 */
Aneesh Kumar K.V15a25b22015-06-24 16:57:39 -07002538 _pmd = pmdp_collapse_flush(vma, address, pmd);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002539 spin_unlock(pmd_ptl);
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07002540 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002541
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002542 spin_lock(pte_ptl);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002543 isolated = __collapse_huge_page_isolate(vma, address, pte);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002544 spin_unlock(pte_ptl);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002545
2546 if (unlikely(!isolated)) {
Johannes Weiner453c7192011-01-20 14:44:18 -08002547 pte_unmap(pte);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002548 spin_lock(pmd_ptl);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002549 BUG_ON(!pmd_none(*pmd));
Aneesh Kumar K.V7c342512013-05-24 15:55:21 -07002550 /*
2551 * We can only use set_pmd_at when establishing
2552 * hugepmds and never for establishing regular pmds that
2553 * points to regular pagetables. Use pmd_populate for that
2554 */
2555 pmd_populate(mm, pmd, pmd_pgtable(_pmd));
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002556 spin_unlock(pmd_ptl);
Konstantin Khlebnikov08b52702013-02-22 16:34:40 -08002557 anon_vma_unlock_write(vma->anon_vma);
Andrea Arcangelice83d212011-01-13 15:47:06 -08002558 goto out;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002559 }
2560
2561 /*
2562 * All pages are isolated and locked so anon_vma rmap
2563 * can't run anymore.
2564 */
Konstantin Khlebnikov08b52702013-02-22 16:34:40 -08002565 anon_vma_unlock_write(vma->anon_vma);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002566
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002567 __collapse_huge_page_copy(pte, new_page, vma, address, pte_ptl);
Johannes Weiner453c7192011-01-20 14:44:18 -08002568 pte_unmap(pte);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002569 __SetPageUptodate(new_page);
2570 pgtable = pmd_pgtable(_pmd);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002571
Kirill A. Shutemov31223592013-09-12 15:14:01 -07002572 _pmd = mk_huge_pmd(new_page, vma->vm_page_prot);
2573 _pmd = maybe_pmd_mkwrite(pmd_mkdirty(_pmd), vma);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002574
2575 /*
2576 * spin_lock() below is not the equivalent of smp_wmb(), so
2577 * this is needed to avoid the copy_huge_page writes to become
2578 * visible after the set_pmd_at() write.
2579 */
2580 smp_wmb();
2581
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002582 spin_lock(pmd_ptl);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002583 BUG_ON(!pmd_none(*pmd));
2584 page_add_new_anon_rmap(new_page, vma, address);
Johannes Weiner00501b52014-08-08 14:19:20 -07002585 mem_cgroup_commit_charge(new_page, memcg, false);
2586 lru_cache_add_active_or_unevictable(new_page, vma);
Aneesh Kumar K.Vfce144b2013-06-05 17:14:06 -07002587 pgtable_trans_huge_deposit(mm, pmd, pgtable);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002588 set_pmd_at(mm, address, pmd, _pmd);
David Millerb113da62012-10-08 16:34:25 -07002589 update_mmu_cache_pmd(vma, address, pmd);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002590 spin_unlock(pmd_ptl);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002591
2592 *hpage = NULL;
Xiao Guangrong420256ef2012-10-08 16:29:49 -07002593
Andrea Arcangeliba761492011-01-13 15:46:58 -08002594 khugepaged_pages_collapsed++;
Andrea Arcangelice83d212011-01-13 15:47:06 -08002595out_up_write:
Andrea Arcangeliba761492011-01-13 15:46:58 -08002596 up_write(&mm->mmap_sem);
Andrea Arcangeli0bbbc0b2011-01-13 15:47:05 -08002597 return;
2598
Andrea Arcangelice83d212011-01-13 15:47:06 -08002599out:
Johannes Weiner00501b52014-08-08 14:19:20 -07002600 mem_cgroup_cancel_charge(new_page, memcg);
Andrea Arcangelice83d212011-01-13 15:47:06 -08002601 goto out_up_write;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002602}
2603
2604static int khugepaged_scan_pmd(struct mm_struct *mm,
2605 struct vm_area_struct *vma,
2606 unsigned long address,
2607 struct page **hpage)
2608{
Andrea Arcangeliba761492011-01-13 15:46:58 -08002609 pmd_t *pmd;
2610 pte_t *pte, *_pte;
Ebru Akagunduzca0984c2015-04-14 15:45:24 -07002611 int ret = 0, none_or_zero = 0;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002612 struct page *page;
2613 unsigned long _address;
2614 spinlock_t *ptl;
David Rientjes00ef2d22013-02-22 16:35:36 -08002615 int node = NUMA_NO_NODE;
Ebru Akagunduz10359212015-02-11 15:28:28 -08002616 bool writable = false, referenced = false;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002617
2618 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
2619
Bob Liu62190492012-12-11 16:00:37 -08002620 pmd = mm_find_pmd(mm, address);
2621 if (!pmd)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002622 goto out;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002623
Bob Liu9f1b8682013-11-12 15:07:37 -08002624 memset(khugepaged_node_load, 0, sizeof(khugepaged_node_load));
Andrea Arcangeliba761492011-01-13 15:46:58 -08002625 pte = pte_offset_map_lock(mm, pmd, address, &ptl);
2626 for (_address = address, _pte = pte; _pte < pte+HPAGE_PMD_NR;
2627 _pte++, _address += PAGE_SIZE) {
2628 pte_t pteval = *_pte;
Ebru Akagunduzca0984c2015-04-14 15:45:24 -07002629 if (pte_none(pteval) || is_zero_pfn(pte_pfn(pteval))) {
Andrea Arcangelic1294d02015-09-04 15:46:27 -07002630 if (!userfaultfd_armed(vma) &&
2631 ++none_or_zero <= khugepaged_max_ptes_none)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002632 continue;
2633 else
2634 goto out_unmap;
2635 }
Ebru Akagunduz10359212015-02-11 15:28:28 -08002636 if (!pte_present(pteval))
Andrea Arcangeliba761492011-01-13 15:46:58 -08002637 goto out_unmap;
Ebru Akagunduz10359212015-02-11 15:28:28 -08002638 if (pte_write(pteval))
2639 writable = true;
2640
Andrea Arcangeliba761492011-01-13 15:46:58 -08002641 page = vm_normal_page(vma, _address, pteval);
2642 if (unlikely(!page))
2643 goto out_unmap;
Andi Kleen5c4b4be2011-03-04 17:36:32 -08002644 /*
Bob Liu9f1b8682013-11-12 15:07:37 -08002645 * Record which node the original page is from and save this
2646 * information to khugepaged_node_load[].
2647 * Khupaged will allocate hugepage from the node has the max
2648 * hit record.
Andi Kleen5c4b4be2011-03-04 17:36:32 -08002649 */
Bob Liu9f1b8682013-11-12 15:07:37 -08002650 node = page_to_nid(page);
David Rientjes14a4e212014-08-06 16:07:29 -07002651 if (khugepaged_scan_abort(node))
2652 goto out_unmap;
Bob Liu9f1b8682013-11-12 15:07:37 -08002653 khugepaged_node_load[node]++;
Sasha Levin309381fea2014-01-23 15:52:54 -08002654 VM_BUG_ON_PAGE(PageCompound(page), page);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002655 if (!PageLRU(page) || PageLocked(page) || !PageAnon(page))
2656 goto out_unmap;
Ebru Akagunduz10359212015-02-11 15:28:28 -08002657 /*
2658 * cannot use mapcount: can't collapse if there's a gup pin.
2659 * The page must only be referenced by the scanned process
2660 * and page swap cache.
2661 */
2662 if (page_count(page) != 1 + !!PageSwapCache(page))
Andrea Arcangeliba761492011-01-13 15:46:58 -08002663 goto out_unmap;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08002664 if (pte_young(pteval) || PageReferenced(page) ||
2665 mmu_notifier_test_young(vma->vm_mm, address))
Ebru Akagunduz10359212015-02-11 15:28:28 -08002666 referenced = true;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002667 }
Ebru Akagunduz10359212015-02-11 15:28:28 -08002668 if (referenced && writable)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002669 ret = 1;
2670out_unmap:
2671 pte_unmap_unlock(pte, ptl);
Bob Liu9f1b8682013-11-12 15:07:37 -08002672 if (ret) {
2673 node = khugepaged_find_target_node();
Andrea Arcangelice83d212011-01-13 15:47:06 -08002674 /* collapse_huge_page will return with the mmap_sem released */
Andi Kleen5c4b4be2011-03-04 17:36:32 -08002675 collapse_huge_page(mm, address, hpage, vma, node);
Bob Liu9f1b8682013-11-12 15:07:37 -08002676 }
Andrea Arcangeliba761492011-01-13 15:46:58 -08002677out:
2678 return ret;
2679}
2680
2681static void collect_mm_slot(struct mm_slot *mm_slot)
2682{
2683 struct mm_struct *mm = mm_slot->mm;
2684
Hugh Dickinsb9980cd2012-02-08 17:13:40 -08002685 VM_BUG_ON(NR_CPUS != 1 && !spin_is_locked(&khugepaged_mm_lock));
Andrea Arcangeliba761492011-01-13 15:46:58 -08002686
2687 if (khugepaged_test_exit(mm)) {
2688 /* free mm_slot */
Sasha Levin43b5fbb2013-02-22 16:32:27 -08002689 hash_del(&mm_slot->hash);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002690 list_del(&mm_slot->mm_node);
2691
2692 /*
2693 * Not strictly needed because the mm exited already.
2694 *
2695 * clear_bit(MMF_VM_HUGEPAGE, &mm->flags);
2696 */
2697
2698 /* khugepaged_mm_lock actually not necessary for the below */
2699 free_mm_slot(mm_slot);
2700 mmdrop(mm);
2701 }
2702}
2703
2704static unsigned int khugepaged_scan_mm_slot(unsigned int pages,
2705 struct page **hpage)
H Hartley Sweeten2f1da642011-10-31 17:09:25 -07002706 __releases(&khugepaged_mm_lock)
2707 __acquires(&khugepaged_mm_lock)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002708{
2709 struct mm_slot *mm_slot;
2710 struct mm_struct *mm;
2711 struct vm_area_struct *vma;
2712 int progress = 0;
2713
2714 VM_BUG_ON(!pages);
Hugh Dickinsb9980cd2012-02-08 17:13:40 -08002715 VM_BUG_ON(NR_CPUS != 1 && !spin_is_locked(&khugepaged_mm_lock));
Andrea Arcangeliba761492011-01-13 15:46:58 -08002716
2717 if (khugepaged_scan.mm_slot)
2718 mm_slot = khugepaged_scan.mm_slot;
2719 else {
2720 mm_slot = list_entry(khugepaged_scan.mm_head.next,
2721 struct mm_slot, mm_node);
2722 khugepaged_scan.address = 0;
2723 khugepaged_scan.mm_slot = mm_slot;
2724 }
2725 spin_unlock(&khugepaged_mm_lock);
2726
2727 mm = mm_slot->mm;
2728 down_read(&mm->mmap_sem);
2729 if (unlikely(khugepaged_test_exit(mm)))
2730 vma = NULL;
2731 else
2732 vma = find_vma(mm, khugepaged_scan.address);
2733
2734 progress++;
2735 for (; vma; vma = vma->vm_next) {
2736 unsigned long hstart, hend;
2737
2738 cond_resched();
2739 if (unlikely(khugepaged_test_exit(mm))) {
2740 progress++;
2741 break;
2742 }
Bob Liufa475e52012-12-11 16:00:39 -08002743 if (!hugepage_vma_check(vma)) {
2744skip:
Andrea Arcangeliba761492011-01-13 15:46:58 -08002745 progress++;
2746 continue;
2747 }
Andrea Arcangeliba761492011-01-13 15:46:58 -08002748 hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
2749 hend = vma->vm_end & HPAGE_PMD_MASK;
Andrea Arcangelia7d6e4e2011-02-15 19:02:45 +01002750 if (hstart >= hend)
2751 goto skip;
2752 if (khugepaged_scan.address > hend)
2753 goto skip;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002754 if (khugepaged_scan.address < hstart)
2755 khugepaged_scan.address = hstart;
Andrea Arcangelia7d6e4e2011-02-15 19:02:45 +01002756 VM_BUG_ON(khugepaged_scan.address & ~HPAGE_PMD_MASK);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002757
2758 while (khugepaged_scan.address < hend) {
2759 int ret;
2760 cond_resched();
2761 if (unlikely(khugepaged_test_exit(mm)))
2762 goto breakouterloop;
2763
2764 VM_BUG_ON(khugepaged_scan.address < hstart ||
2765 khugepaged_scan.address + HPAGE_PMD_SIZE >
2766 hend);
2767 ret = khugepaged_scan_pmd(mm, vma,
2768 khugepaged_scan.address,
2769 hpage);
2770 /* move to next address */
2771 khugepaged_scan.address += HPAGE_PMD_SIZE;
2772 progress += HPAGE_PMD_NR;
2773 if (ret)
2774 /* we released mmap_sem so break loop */
2775 goto breakouterloop_mmap_sem;
2776 if (progress >= pages)
2777 goto breakouterloop;
2778 }
2779 }
2780breakouterloop:
2781 up_read(&mm->mmap_sem); /* exit_mmap will destroy ptes after this */
2782breakouterloop_mmap_sem:
2783
2784 spin_lock(&khugepaged_mm_lock);
Andrea Arcangelia7d6e4e2011-02-15 19:02:45 +01002785 VM_BUG_ON(khugepaged_scan.mm_slot != mm_slot);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002786 /*
2787 * Release the current mm_slot if this mm is about to die, or
2788 * if we scanned all vmas of this mm.
2789 */
2790 if (khugepaged_test_exit(mm) || !vma) {
2791 /*
2792 * Make sure that if mm_users is reaching zero while
2793 * khugepaged runs here, khugepaged_exit will find
2794 * mm_slot not pointing to the exiting mm.
2795 */
2796 if (mm_slot->mm_node.next != &khugepaged_scan.mm_head) {
2797 khugepaged_scan.mm_slot = list_entry(
2798 mm_slot->mm_node.next,
2799 struct mm_slot, mm_node);
2800 khugepaged_scan.address = 0;
2801 } else {
2802 khugepaged_scan.mm_slot = NULL;
2803 khugepaged_full_scans++;
2804 }
2805
2806 collect_mm_slot(mm_slot);
2807 }
2808
2809 return progress;
2810}
2811
2812static int khugepaged_has_work(void)
2813{
2814 return !list_empty(&khugepaged_scan.mm_head) &&
2815 khugepaged_enabled();
2816}
2817
2818static int khugepaged_wait_event(void)
2819{
2820 return !list_empty(&khugepaged_scan.mm_head) ||
Xiao Guangrong2017c0b2012-10-08 16:29:44 -07002821 kthread_should_stop();
Andrea Arcangeliba761492011-01-13 15:46:58 -08002822}
2823
Xiao Guangrongd5169042012-10-08 16:29:48 -07002824static void khugepaged_do_scan(void)
2825{
2826 struct page *hpage = NULL;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002827 unsigned int progress = 0, pass_through_head = 0;
2828 unsigned int pages = khugepaged_pages_to_scan;
Xiao Guangrongd5169042012-10-08 16:29:48 -07002829 bool wait = true;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002830
2831 barrier(); /* write khugepaged_pages_to_scan to local stack */
2832
2833 while (progress < pages) {
Xiao Guangrong26234f32012-10-08 16:29:51 -07002834 if (!khugepaged_prealloc_page(&hpage, &wait))
Andrea Arcangeli0bbbc0b2011-01-13 15:47:05 -08002835 break;
Xiao Guangrong26234f32012-10-08 16:29:51 -07002836
Xiao Guangrong420256ef2012-10-08 16:29:49 -07002837 cond_resched();
Andrea Arcangeliba761492011-01-13 15:46:58 -08002838
Jiri Kosinacd092412015-06-24 16:56:07 -07002839 if (unlikely(kthread_should_stop() || try_to_freeze()))
Andrea Arcangeli878aee72011-01-13 15:47:10 -08002840 break;
2841
Andrea Arcangeliba761492011-01-13 15:46:58 -08002842 spin_lock(&khugepaged_mm_lock);
2843 if (!khugepaged_scan.mm_slot)
2844 pass_through_head++;
2845 if (khugepaged_has_work() &&
2846 pass_through_head < 2)
2847 progress += khugepaged_scan_mm_slot(pages - progress,
Xiao Guangrongd5169042012-10-08 16:29:48 -07002848 &hpage);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002849 else
2850 progress = pages;
2851 spin_unlock(&khugepaged_mm_lock);
2852 }
Andrea Arcangeliba761492011-01-13 15:46:58 -08002853
Xiao Guangrongd5169042012-10-08 16:29:48 -07002854 if (!IS_ERR_OR_NULL(hpage))
2855 put_page(hpage);
Andrea Arcangeli0bbbc0b2011-01-13 15:47:05 -08002856}
2857
Xiao Guangrong2017c0b2012-10-08 16:29:44 -07002858static void khugepaged_wait_work(void)
2859{
Xiao Guangrong2017c0b2012-10-08 16:29:44 -07002860 if (khugepaged_has_work()) {
2861 if (!khugepaged_scan_sleep_millisecs)
2862 return;
2863
2864 wait_event_freezable_timeout(khugepaged_wait,
2865 kthread_should_stop(),
2866 msecs_to_jiffies(khugepaged_scan_sleep_millisecs));
2867 return;
2868 }
2869
2870 if (khugepaged_enabled())
2871 wait_event_freezable(khugepaged_wait, khugepaged_wait_event());
2872}
2873
Andrea Arcangeliba761492011-01-13 15:46:58 -08002874static int khugepaged(void *none)
2875{
2876 struct mm_slot *mm_slot;
2877
Andrea Arcangeli878aee72011-01-13 15:47:10 -08002878 set_freezable();
Dongsheng Yang8698a742014-03-11 18:09:12 +08002879 set_user_nice(current, MAX_NICE);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002880
Xiao Guangrongb7231782012-10-08 16:29:54 -07002881 while (!kthread_should_stop()) {
2882 khugepaged_do_scan();
2883 khugepaged_wait_work();
2884 }
Andrea Arcangeliba761492011-01-13 15:46:58 -08002885
2886 spin_lock(&khugepaged_mm_lock);
2887 mm_slot = khugepaged_scan.mm_slot;
2888 khugepaged_scan.mm_slot = NULL;
2889 if (mm_slot)
2890 collect_mm_slot(mm_slot);
2891 spin_unlock(&khugepaged_mm_lock);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002892 return 0;
2893}
2894
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002895static void __split_huge_zero_page_pmd(struct vm_area_struct *vma,
2896 unsigned long haddr, pmd_t *pmd)
2897{
2898 struct mm_struct *mm = vma->vm_mm;
2899 pgtable_t pgtable;
2900 pmd_t _pmd;
2901 int i;
2902
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -07002903 pmdp_huge_clear_flush_notify(vma, haddr, pmd);
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002904 /* leave pmd empty until pte is filled */
2905
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -07002906 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002907 pmd_populate(mm, &_pmd, pgtable);
2908
2909 for (i = 0; i < HPAGE_PMD_NR; i++, haddr += PAGE_SIZE) {
2910 pte_t *pte, entry;
2911 entry = pfn_pte(my_zero_pfn(haddr), vma->vm_page_prot);
2912 entry = pte_mkspecial(entry);
2913 pte = pte_offset_map(&_pmd, haddr);
2914 VM_BUG_ON(!pte_none(*pte));
2915 set_pte_at(mm, haddr, pte, entry);
2916 pte_unmap(pte);
2917 }
2918 smp_wmb(); /* make pte visible before pmd */
2919 pmd_populate(mm, pmd, pgtable);
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -08002920 put_huge_zero_page();
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002921}
2922
Kirill A. Shutemove1803772012-12-12 13:50:59 -08002923void __split_huge_page_pmd(struct vm_area_struct *vma, unsigned long address,
2924 pmd_t *pmd)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08002925{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002926 spinlock_t *ptl;
Matthew Wilcox4897c762015-09-08 14:58:45 -07002927 struct page *page = NULL;
Kirill A. Shutemove1803772012-12-12 13:50:59 -08002928 struct mm_struct *mm = vma->vm_mm;
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002929 unsigned long haddr = address & HPAGE_PMD_MASK;
2930 unsigned long mmun_start; /* For mmu_notifiers */
2931 unsigned long mmun_end; /* For mmu_notifiers */
Kirill A. Shutemove1803772012-12-12 13:50:59 -08002932
2933 BUG_ON(vma->vm_start > haddr || vma->vm_end < haddr + HPAGE_PMD_SIZE);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08002934
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002935 mmun_start = haddr;
2936 mmun_end = haddr + HPAGE_PMD_SIZE;
Hugh Dickins750e8162013-10-16 13:47:08 -07002937again:
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002938 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002939 ptl = pmd_lock(mm, pmd);
Matthew Wilcox4897c762015-09-08 14:58:45 -07002940 if (unlikely(!pmd_trans_huge(*pmd)))
2941 goto unlock;
2942 if (vma_is_dax(vma)) {
2943 pmdp_huge_clear_flush(vma, haddr, pmd);
2944 } else if (is_huge_zero_pmd(*pmd)) {
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002945 __split_huge_zero_page_pmd(vma, haddr, pmd);
Matthew Wilcox4897c762015-09-08 14:58:45 -07002946 } else {
2947 page = pmd_page(*pmd);
2948 VM_BUG_ON_PAGE(!page_count(page), page);
2949 get_page(page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08002950 }
Matthew Wilcox4897c762015-09-08 14:58:45 -07002951 unlock:
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002952 spin_unlock(ptl);
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002953 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08002954
Matthew Wilcox4897c762015-09-08 14:58:45 -07002955 if (!page)
2956 return;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08002957
Matthew Wilcox4897c762015-09-08 14:58:45 -07002958 split_huge_page(page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08002959 put_page(page);
Hugh Dickins750e8162013-10-16 13:47:08 -07002960
2961 /*
2962 * We don't always have down_write of mmap_sem here: a racing
2963 * do_huge_pmd_wp_page() might have copied-on-write to another
2964 * huge page before our split_huge_page() got the anon_vma lock.
2965 */
2966 if (unlikely(pmd_trans_huge(*pmd)))
2967 goto again;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08002968}
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002969
Kirill A. Shutemove1803772012-12-12 13:50:59 -08002970void split_huge_page_pmd_mm(struct mm_struct *mm, unsigned long address,
2971 pmd_t *pmd)
2972{
2973 struct vm_area_struct *vma;
2974
2975 vma = find_vma(mm, address);
2976 BUG_ON(vma == NULL);
2977 split_huge_page_pmd(vma, address, pmd);
2978}
2979
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002980static void split_huge_page_address(struct mm_struct *mm,
2981 unsigned long address)
2982{
Hugh Dickinsf72e7dc2014-06-23 13:22:05 -07002983 pgd_t *pgd;
2984 pud_t *pud;
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002985 pmd_t *pmd;
2986
2987 VM_BUG_ON(!(address & ~HPAGE_PMD_MASK));
2988
Hugh Dickinsf72e7dc2014-06-23 13:22:05 -07002989 pgd = pgd_offset(mm, address);
2990 if (!pgd_present(*pgd))
2991 return;
2992
2993 pud = pud_offset(pgd, address);
2994 if (!pud_present(*pud))
2995 return;
2996
2997 pmd = pmd_offset(pud, address);
2998 if (!pmd_present(*pmd))
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002999 return;
3000 /*
3001 * Caller holds the mmap_sem write mode, so a huge pmd cannot
3002 * materialize from under us.
3003 */
Kirill A. Shutemove1803772012-12-12 13:50:59 -08003004 split_huge_page_pmd_mm(mm, address, pmd);
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08003005}
3006
Kirill A. Shutemove1b99962015-09-08 14:58:37 -07003007void vma_adjust_trans_huge(struct vm_area_struct *vma,
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08003008 unsigned long start,
3009 unsigned long end,
3010 long adjust_next)
3011{
3012 /*
3013 * If the new start address isn't hpage aligned and it could
3014 * previously contain an hugepage: check if we need to split
3015 * an huge pmd.
3016 */
3017 if (start & ~HPAGE_PMD_MASK &&
3018 (start & HPAGE_PMD_MASK) >= vma->vm_start &&
3019 (start & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE <= vma->vm_end)
3020 split_huge_page_address(vma->vm_mm, start);
3021
3022 /*
3023 * If the new end address isn't hpage aligned and it could
3024 * previously contain an hugepage: check if we need to split
3025 * an huge pmd.
3026 */
3027 if (end & ~HPAGE_PMD_MASK &&
3028 (end & HPAGE_PMD_MASK) >= vma->vm_start &&
3029 (end & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE <= vma->vm_end)
3030 split_huge_page_address(vma->vm_mm, end);
3031
3032 /*
3033 * If we're also updating the vma->vm_next->vm_start, if the new
3034 * vm_next->vm_start isn't page aligned and it could previously
3035 * contain an hugepage: check if we need to split an huge pmd.
3036 */
3037 if (adjust_next > 0) {
3038 struct vm_area_struct *next = vma->vm_next;
3039 unsigned long nstart = next->vm_start;
3040 nstart += adjust_next << PAGE_SHIFT;
3041 if (nstart & ~HPAGE_PMD_MASK &&
3042 (nstart & HPAGE_PMD_MASK) >= next->vm_start &&
3043 (nstart & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE <= next->vm_end)
3044 split_huge_page_address(next->vm_mm, nstart);
3045 }
3046}