blob: 29bc6e471df467f3bdd22578209cf7f7c13b5c82 [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>
19#include <linux/kthread.h>
20#include <linux/khugepaged.h>
Andrea Arcangeli878aee72011-01-13 15:47:10 -080021#include <linux/freezer.h>
Andrea Arcangelia664b2d2011-01-13 15:47:17 -080022#include <linux/mman.h>
Ralf Baechle325adeb2012-10-15 13:44:56 +020023#include <linux/pagemap.h>
Mel Gorman4daae3b2012-11-02 11:33:45 +000024#include <linux/migrate.h>
Sasha Levin43b5fbb2013-02-22 16:32:27 -080025#include <linux/hashtable.h>
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -080026
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -080027#include <asm/tlb.h>
28#include <asm/pgalloc.h>
29#include "internal.h"
30
Andrea Arcangeliba761492011-01-13 15:46:58 -080031/*
Jianguo Wu8bfa3f92013-11-12 15:07:16 -080032 * By default transparent hugepage support is disabled in order that avoid
33 * to risk increase the memory footprint of applications without a guaranteed
34 * benefit. When transparent hugepage support is enabled, is for all mappings,
35 * and khugepaged scans all mappings.
36 * Defrag is invoked by khugepaged hugepage allocations and by page faults
37 * for all hugepage allocations.
Andrea Arcangeliba761492011-01-13 15:46:58 -080038 */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -080039unsigned long transparent_hugepage_flags __read_mostly =
Andrea Arcangeli13ece882011-01-13 15:47:07 -080040#ifdef CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS
Andrea Arcangeliba761492011-01-13 15:46:58 -080041 (1<<TRANSPARENT_HUGEPAGE_FLAG)|
Andrea Arcangeli13ece882011-01-13 15:47:07 -080042#endif
43#ifdef CONFIG_TRANSPARENT_HUGEPAGE_MADVISE
44 (1<<TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG)|
45#endif
Andrea Arcangelid39d33c2011-01-13 15:47:05 -080046 (1<<TRANSPARENT_HUGEPAGE_DEFRAG_FLAG)|
Kirill A. Shutemov79da5402012-12-12 13:51:12 -080047 (1<<TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG)|
48 (1<<TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
Andrea Arcangeliba761492011-01-13 15:46:58 -080049
50/* default scan 8*512 pte (or vmas) every 30 second */
51static unsigned int khugepaged_pages_to_scan __read_mostly = HPAGE_PMD_NR*8;
52static unsigned int khugepaged_pages_collapsed;
53static unsigned int khugepaged_full_scans;
54static unsigned int khugepaged_scan_sleep_millisecs __read_mostly = 10000;
55/* during fragmentation poll the hugepage allocator once every minute */
56static unsigned int khugepaged_alloc_sleep_millisecs __read_mostly = 60000;
57static struct task_struct *khugepaged_thread __read_mostly;
58static DEFINE_MUTEX(khugepaged_mutex);
59static DEFINE_SPINLOCK(khugepaged_mm_lock);
60static DECLARE_WAIT_QUEUE_HEAD(khugepaged_wait);
61/*
62 * default collapse hugepages if there is at least one pte mapped like
63 * it would have happened if the vma was large enough during page
64 * fault.
65 */
66static unsigned int khugepaged_max_ptes_none __read_mostly = HPAGE_PMD_NR-1;
67
68static int khugepaged(void *none);
Andrea Arcangeliba761492011-01-13 15:46:58 -080069static int khugepaged_slab_init(void);
Andrea Arcangeliba761492011-01-13 15:46:58 -080070
Sasha Levin43b5fbb2013-02-22 16:32:27 -080071#define MM_SLOTS_HASH_BITS 10
72static __read_mostly DEFINE_HASHTABLE(mm_slots_hash, MM_SLOTS_HASH_BITS);
73
Andrea Arcangeliba761492011-01-13 15:46:58 -080074static struct kmem_cache *mm_slot_cache __read_mostly;
75
76/**
77 * struct mm_slot - hash lookup from mm to mm_slot
78 * @hash: hash collision list
79 * @mm_node: khugepaged scan list headed in khugepaged_scan.mm_head
80 * @mm: the mm that this information is valid for
81 */
82struct mm_slot {
83 struct hlist_node hash;
84 struct list_head mm_node;
85 struct mm_struct *mm;
86};
87
88/**
89 * struct khugepaged_scan - cursor for scanning
90 * @mm_head: the head of the mm list to scan
91 * @mm_slot: the current mm_slot we are scanning
92 * @address: the next address inside that to be scanned
93 *
94 * There is only the one khugepaged_scan instance of this cursor structure.
95 */
96struct khugepaged_scan {
97 struct list_head mm_head;
98 struct mm_slot *mm_slot;
99 unsigned long address;
H Hartley Sweeten2f1da642011-10-31 17:09:25 -0700100};
101static struct khugepaged_scan khugepaged_scan = {
Andrea Arcangeliba761492011-01-13 15:46:58 -0800102 .mm_head = LIST_HEAD_INIT(khugepaged_scan.mm_head),
103};
104
Andrea Arcangelif0005652011-01-13 15:47:04 -0800105
106static int set_recommended_min_free_kbytes(void)
107{
108 struct zone *zone;
109 int nr_zones = 0;
110 unsigned long recommended_min;
Andrea Arcangelif0005652011-01-13 15:47:04 -0800111
Xiao Guangrong17c230a2012-10-08 16:29:56 -0700112 if (!khugepaged_enabled())
Andrea Arcangelif0005652011-01-13 15:47:04 -0800113 return 0;
114
115 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}
146late_initcall(set_recommended_min_free_kbytes);
147
Andrea Arcangeliba761492011-01-13 15:46:58 -0800148static int start_khugepaged(void)
149{
150 int err = 0;
151 if (khugepaged_enabled()) {
Andrea Arcangeliba761492011-01-13 15:46:58 -0800152 if (!khugepaged_thread)
153 khugepaged_thread = kthread_run(khugepaged, NULL,
154 "khugepaged");
155 if (unlikely(IS_ERR(khugepaged_thread))) {
Andrew Mortonae3a8c12014-06-04 16:06:58 -0700156 pr_err("khugepaged: kthread_run(khugepaged) failed\n");
Andrea Arcangeliba761492011-01-13 15:46:58 -0800157 err = PTR_ERR(khugepaged_thread);
158 khugepaged_thread = NULL;
159 }
Xiao Guangrong911891af2012-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 Guangrong911891af2012-10-08 16:29:41 -0700165 } else if (khugepaged_thread) {
Xiao Guangrong911891af2012-10-08 16:29:41 -0700166 kthread_stop(khugepaged_thread);
167 khugepaged_thread = NULL;
168 }
Xiao Guangrong637e3a22012-10-08 16:29:38 -0700169
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)))
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700186 return ACCESS_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();
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700205 return ACCESS_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 Guangrong911891af2012-10-08 16:29:41 -0700300 int err;
301
302 mutex_lock(&khugepaged_mutex);
303 err = start_khugepaged();
304 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)
637 return err;
Andrea Arcangeliba761492011-01-13 15:46:58 -0800638
639 err = khugepaged_slab_init();
640 if (err)
641 goto out;
642
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800643 register_shrinker(&huge_zero_page_shrinker);
644
Rik van Riel97562cd2011-01-13 15:47:12 -0800645 /*
646 * By default disable transparent hugepages on smaller systems,
647 * where the extra memory used could hurt more than TLB overhead
648 * is likely to save. The admin can still enable it through /sys.
649 */
650 if (totalram_pages < (512 << (20 - PAGE_SHIFT)))
651 transparent_hugepage_flags = 0;
652
Andrea Arcangeliba761492011-01-13 15:46:58 -0800653 start_khugepaged();
654
Shaohua Li569e5592012-01-12 17:19:11 -0800655 return 0;
Andrea Arcangeliba761492011-01-13 15:46:58 -0800656out:
Shaohua Li569e5592012-01-12 17:19:11 -0800657 hugepage_exit_sysfs(hugepage_kobj);
Andrea Arcangeliba761492011-01-13 15:46:58 -0800658 return err;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800659}
Paul Gortmakera64fb3c2014-01-23 15:53:30 -0800660subsys_initcall(hugepage_init);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800661
662static int __init setup_transparent_hugepage(char *str)
663{
664 int ret = 0;
665 if (!str)
666 goto out;
667 if (!strcmp(str, "always")) {
668 set_bit(TRANSPARENT_HUGEPAGE_FLAG,
669 &transparent_hugepage_flags);
670 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
671 &transparent_hugepage_flags);
672 ret = 1;
673 } else if (!strcmp(str, "madvise")) {
674 clear_bit(TRANSPARENT_HUGEPAGE_FLAG,
675 &transparent_hugepage_flags);
676 set_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
677 &transparent_hugepage_flags);
678 ret = 1;
679 } else if (!strcmp(str, "never")) {
680 clear_bit(TRANSPARENT_HUGEPAGE_FLAG,
681 &transparent_hugepage_flags);
682 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
683 &transparent_hugepage_flags);
684 ret = 1;
685 }
686out:
687 if (!ret)
Andrew Mortonae3a8c12014-06-04 16:06:58 -0700688 pr_warn("transparent_hugepage= cannot parse, ignored\n");
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800689 return ret;
690}
691__setup("transparent_hugepage=", setup_transparent_hugepage);
692
Mel Gormanb32967f2012-11-19 12:35:47 +0000693pmd_t maybe_pmd_mkwrite(pmd_t pmd, struct vm_area_struct *vma)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800694{
695 if (likely(vma->vm_flags & VM_WRITE))
696 pmd = pmd_mkwrite(pmd);
697 return pmd;
698}
699
Kirill A. Shutemov31223592013-09-12 15:14:01 -0700700static inline pmd_t mk_huge_pmd(struct page *page, pgprot_t prot)
Bob Liub3092b32012-12-11 16:00:41 -0800701{
702 pmd_t entry;
Kirill A. Shutemov31223592013-09-12 15:14:01 -0700703 entry = mk_pmd(page, prot);
Bob Liub3092b32012-12-11 16:00:41 -0800704 entry = pmd_mkhuge(entry);
705 return entry;
706}
707
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800708static int __do_huge_pmd_anonymous_page(struct mm_struct *mm,
709 struct vm_area_struct *vma,
710 unsigned long haddr, pmd_t *pmd,
711 struct page *page)
712{
Johannes Weiner00501b52014-08-08 14:19:20 -0700713 struct mem_cgroup *memcg;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800714 pgtable_t pgtable;
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800715 spinlock_t *ptl;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800716
Sasha Levin309381fea2014-01-23 15:52:54 -0800717 VM_BUG_ON_PAGE(!PageCompound(page), page);
Johannes Weiner00501b52014-08-08 14:19:20 -0700718
719 if (mem_cgroup_try_charge(page, mm, GFP_TRANSHUGE, &memcg))
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800720 return VM_FAULT_OOM;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800721
Johannes Weiner00501b52014-08-08 14:19:20 -0700722 pgtable = pte_alloc_one(mm, haddr);
723 if (unlikely(!pgtable)) {
724 mem_cgroup_cancel_charge(page, memcg);
725 return VM_FAULT_OOM;
726 }
727
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800728 clear_huge_page(page, haddr, HPAGE_PMD_NR);
Minchan Kim52f37622013-04-29 15:08:15 -0700729 /*
730 * The memory barrier inside __SetPageUptodate makes sure that
731 * clear_huge_page writes become visible before the set_pmd_at()
732 * write.
733 */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800734 __SetPageUptodate(page);
735
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800736 ptl = pmd_lock(mm, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800737 if (unlikely(!pmd_none(*pmd))) {
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800738 spin_unlock(ptl);
Johannes Weiner00501b52014-08-08 14:19:20 -0700739 mem_cgroup_cancel_charge(page, memcg);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800740 put_page(page);
741 pte_free(mm, pgtable);
742 } else {
743 pmd_t entry;
Kirill A. Shutemov31223592013-09-12 15:14:01 -0700744 entry = mk_huge_pmd(page, vma->vm_page_prot);
745 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800746 page_add_new_anon_rmap(page, vma, haddr);
Johannes Weiner00501b52014-08-08 14:19:20 -0700747 mem_cgroup_commit_charge(page, memcg, false);
748 lru_cache_add_active_or_unevictable(page, vma);
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -0700749 pgtable_trans_huge_deposit(mm, pmd, pgtable);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800750 set_pmd_at(mm, haddr, pmd, entry);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800751 add_mm_counter(mm, MM_ANONPAGES, HPAGE_PMD_NR);
Kirill A. Shutemove1f56c82013-11-14 14:30:48 -0800752 atomic_long_inc(&mm->nr_ptes);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800753 spin_unlock(ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800754 }
755
David Rientjesaa2e8782012-05-29 15:06:17 -0700756 return 0;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800757}
758
Andi Kleencc5d4622011-03-22 16:33:13 -0700759static inline gfp_t alloc_hugepage_gfpmask(int defrag, gfp_t extra_gfp)
Andrea Arcangeli0bbbc0b2011-01-13 15:47:05 -0800760{
Andi Kleencc5d4622011-03-22 16:33:13 -0700761 return (GFP_TRANSHUGE & ~(defrag ? 0 : __GFP_WAIT)) | extra_gfp;
Andrea Arcangeli0bbbc0b2011-01-13 15:47:05 -0800762}
763
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800764/* Caller must hold page table lock. */
Kirill A. Shutemov3ea41e62012-12-12 13:51:14 -0800765static bool set_huge_zero_page(pgtable_t pgtable, struct mm_struct *mm,
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800766 struct vm_area_struct *vma, unsigned long haddr, pmd_t *pmd,
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700767 struct page *zero_page)
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800768{
769 pmd_t entry;
Kirill A. Shutemov3ea41e62012-12-12 13:51:14 -0800770 if (!pmd_none(*pmd))
771 return false;
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700772 entry = mk_pmd(zero_page, vma->vm_page_prot);
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800773 entry = pmd_mkhuge(entry);
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -0700774 pgtable_trans_huge_deposit(mm, pmd, pgtable);
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800775 set_pmd_at(mm, haddr, pmd, entry);
Kirill A. Shutemove1f56c82013-11-14 14:30:48 -0800776 atomic_long_inc(&mm->nr_ptes);
Kirill A. Shutemov3ea41e62012-12-12 13:51:14 -0800777 return true;
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800778}
779
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800780int do_huge_pmd_anonymous_page(struct mm_struct *mm, struct vm_area_struct *vma,
781 unsigned long address, pmd_t *pmd,
782 unsigned int flags)
783{
Aneesh Kumar K.V077fcf12015-02-11 15:27:12 -0800784 gfp_t gfp;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800785 struct page *page;
786 unsigned long haddr = address & HPAGE_PMD_MASK;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800787
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700788 if (haddr < vma->vm_start || haddr + HPAGE_PMD_SIZE > vma->vm_end)
Kirill A. Shutemovc0292552013-09-12 15:14:05 -0700789 return VM_FAULT_FALLBACK;
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700790 if (unlikely(anon_vma_prepare(vma)))
791 return VM_FAULT_OOM;
David Rientjes6d50e602014-10-29 14:50:31 -0700792 if (unlikely(khugepaged_enter(vma, vma->vm_flags)))
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700793 return VM_FAULT_OOM;
Dominik Dingel593befa2014-10-23 12:07:44 +0200794 if (!(flags & FAULT_FLAG_WRITE) && !mm_forbids_zeropage(mm) &&
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700795 transparent_hugepage_use_zero_page()) {
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800796 spinlock_t *ptl;
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700797 pgtable_t pgtable;
798 struct page *zero_page;
799 bool set;
800 pgtable = pte_alloc_one(mm, haddr);
801 if (unlikely(!pgtable))
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800802 return VM_FAULT_OOM;
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700803 zero_page = get_huge_zero_page();
804 if (unlikely(!zero_page)) {
805 pte_free(mm, pgtable);
Andi Kleen81ab4202011-04-14 15:22:06 -0700806 count_vm_event(THP_FAULT_FALLBACK);
Kirill A. Shutemovc0292552013-09-12 15:14:05 -0700807 return VM_FAULT_FALLBACK;
Andi Kleen81ab4202011-04-14 15:22:06 -0700808 }
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800809 ptl = pmd_lock(mm, pmd);
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700810 set = set_huge_zero_page(pgtable, mm, vma, haddr, pmd,
811 zero_page);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800812 spin_unlock(ptl);
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700813 if (!set) {
814 pte_free(mm, pgtable);
815 put_huge_zero_page();
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -0800816 }
David Rientjesedad9d22012-05-29 15:06:17 -0700817 return 0;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800818 }
Aneesh Kumar K.V077fcf12015-02-11 15:27:12 -0800819 gfp = alloc_hugepage_gfpmask(transparent_hugepage_defrag(vma), 0);
820 page = alloc_hugepage_vma(gfp, vma, haddr, HPAGE_PMD_ORDER);
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700821 if (unlikely(!page)) {
822 count_vm_event(THP_FAULT_FALLBACK);
Kirill A. Shutemovc0292552013-09-12 15:14:05 -0700823 return VM_FAULT_FALLBACK;
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700824 }
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700825 if (unlikely(__do_huge_pmd_anonymous_page(mm, vma, haddr, pmd, page))) {
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700826 put_page(page);
David Rientjes17766dd2013-09-12 15:14:06 -0700827 count_vm_event(THP_FAULT_FALLBACK);
Kirill A. Shutemovc0292552013-09-12 15:14:05 -0700828 return VM_FAULT_FALLBACK;
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700829 }
830
David Rientjes17766dd2013-09-12 15:14:06 -0700831 count_vm_event(THP_FAULT_ALLOC);
Kirill A. Shutemov128ec032013-09-12 15:14:03 -0700832 return 0;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800833}
834
835int copy_huge_pmd(struct mm_struct *dst_mm, struct mm_struct *src_mm,
836 pmd_t *dst_pmd, pmd_t *src_pmd, unsigned long addr,
837 struct vm_area_struct *vma)
838{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800839 spinlock_t *dst_ptl, *src_ptl;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800840 struct page *src_page;
841 pmd_t pmd;
842 pgtable_t pgtable;
843 int ret;
844
845 ret = -ENOMEM;
846 pgtable = pte_alloc_one(dst_mm, addr);
847 if (unlikely(!pgtable))
848 goto out;
849
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800850 dst_ptl = pmd_lock(dst_mm, dst_pmd);
851 src_ptl = pmd_lockptr(src_mm, src_pmd);
852 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800853
854 ret = -EAGAIN;
855 pmd = *src_pmd;
856 if (unlikely(!pmd_trans_huge(pmd))) {
857 pte_free(dst_mm, pgtable);
858 goto out_unlock;
859 }
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800860 /*
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800861 * When page table lock is held, the huge zero pmd should not be
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800862 * under splitting since we don't split the page itself, only pmd to
863 * a page table.
864 */
865 if (is_huge_zero_pmd(pmd)) {
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700866 struct page *zero_page;
Kirill A. Shutemov3ea41e62012-12-12 13:51:14 -0800867 bool set;
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -0800868 /*
869 * get_huge_zero_page() will never allocate a new page here,
870 * since we already have a zero page to copy. It just takes a
871 * reference.
872 */
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700873 zero_page = get_huge_zero_page();
Kirill A. Shutemov3ea41e62012-12-12 13:51:14 -0800874 set = set_huge_zero_page(pgtable, dst_mm, vma, addr, dst_pmd,
Kirill A. Shutemov5918d102013-04-29 15:08:44 -0700875 zero_page);
Kirill A. Shutemov3ea41e62012-12-12 13:51:14 -0800876 BUG_ON(!set); /* unexpected !pmd_none(dst_pmd) */
Kirill A. Shutemovfc9fe822012-12-12 13:50:51 -0800877 ret = 0;
878 goto out_unlock;
879 }
Mel Gormande466bd2013-12-18 17:08:42 -0800880
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800881 if (unlikely(pmd_trans_splitting(pmd))) {
882 /* split huge page running from under us */
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800883 spin_unlock(src_ptl);
884 spin_unlock(dst_ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800885 pte_free(dst_mm, pgtable);
886
887 wait_split_huge_page(vma->anon_vma, src_pmd); /* src_vma */
888 goto out;
889 }
890 src_page = pmd_page(pmd);
Sasha Levin309381fea2014-01-23 15:52:54 -0800891 VM_BUG_ON_PAGE(!PageHead(src_page), src_page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800892 get_page(src_page);
893 page_dup_rmap(src_page);
894 add_mm_counter(dst_mm, MM_ANONPAGES, HPAGE_PMD_NR);
895
896 pmdp_set_wrprotect(src_mm, addr, src_pmd);
897 pmd = pmd_mkold(pmd_wrprotect(pmd));
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -0700898 pgtable_trans_huge_deposit(dst_mm, dst_pmd, pgtable);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800899 set_pmd_at(dst_mm, addr, dst_pmd, pmd);
Kirill A. Shutemove1f56c82013-11-14 14:30:48 -0800900 atomic_long_inc(&dst_mm->nr_ptes);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800901
902 ret = 0;
903out_unlock:
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800904 spin_unlock(src_ptl);
905 spin_unlock(dst_ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800906out:
907 return ret;
908}
909
Will Deacona1dd4502012-12-11 16:01:27 -0800910void huge_pmd_set_accessed(struct mm_struct *mm,
911 struct vm_area_struct *vma,
912 unsigned long address,
913 pmd_t *pmd, pmd_t orig_pmd,
914 int dirty)
915{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800916 spinlock_t *ptl;
Will Deacona1dd4502012-12-11 16:01:27 -0800917 pmd_t entry;
918 unsigned long haddr;
919
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800920 ptl = pmd_lock(mm, pmd);
Will Deacona1dd4502012-12-11 16:01:27 -0800921 if (unlikely(!pmd_same(*pmd, orig_pmd)))
922 goto unlock;
923
924 entry = pmd_mkyoung(orig_pmd);
925 haddr = address & HPAGE_PMD_MASK;
926 if (pmdp_set_access_flags(vma, haddr, pmd, entry, dirty))
927 update_mmu_cache_pmd(vma, address, pmd);
928
929unlock:
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800930 spin_unlock(ptl);
Will Deacona1dd4502012-12-11 16:01:27 -0800931}
932
Hugh Dickins5338a932014-06-23 13:22:05 -0700933/*
934 * Save CONFIG_DEBUG_PAGEALLOC from faulting falsely on tail pages
935 * during copy_user_huge_page()'s copy_page_rep(): in the case when
936 * the source page gets split and a tail freed before copy completes.
937 * Called under pmd_lock of checked pmd, so safe from splitting itself.
938 */
939static void get_user_huge_page(struct page *page)
940{
941 if (IS_ENABLED(CONFIG_DEBUG_PAGEALLOC)) {
942 struct page *endpage = page + HPAGE_PMD_NR;
943
944 atomic_add(HPAGE_PMD_NR, &page->_count);
945 while (++page < endpage)
946 get_huge_page_tail(page);
947 } else {
948 get_page(page);
949 }
950}
951
952static void put_user_huge_page(struct page *page)
953{
954 if (IS_ENABLED(CONFIG_DEBUG_PAGEALLOC)) {
955 struct page *endpage = page + HPAGE_PMD_NR;
956
957 while (page < endpage)
958 put_page(page++);
959 } else {
960 put_page(page);
961 }
962}
963
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800964static int do_huge_pmd_wp_page_fallback(struct mm_struct *mm,
965 struct vm_area_struct *vma,
966 unsigned long address,
967 pmd_t *pmd, pmd_t orig_pmd,
968 struct page *page,
969 unsigned long haddr)
970{
Johannes Weiner00501b52014-08-08 14:19:20 -0700971 struct mem_cgroup *memcg;
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -0800972 spinlock_t *ptl;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800973 pgtable_t pgtable;
974 pmd_t _pmd;
975 int ret = 0, i;
976 struct page **pages;
Sagi Grimberg2ec74c32012-10-08 16:33:33 -0700977 unsigned long mmun_start; /* For mmu_notifiers */
978 unsigned long mmun_end; /* For mmu_notifiers */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800979
980 pages = kmalloc(sizeof(struct page *) * HPAGE_PMD_NR,
981 GFP_KERNEL);
982 if (unlikely(!pages)) {
983 ret |= VM_FAULT_OOM;
984 goto out;
985 }
986
987 for (i = 0; i < HPAGE_PMD_NR; i++) {
Andi Kleencc5d4622011-03-22 16:33:13 -0700988 pages[i] = alloc_page_vma_node(GFP_HIGHUSER_MOVABLE |
989 __GFP_OTHER_NODE,
Andi Kleen19ee1512011-03-04 17:36:31 -0800990 vma, address, page_to_nid(page));
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -0800991 if (unlikely(!pages[i] ||
Johannes Weiner00501b52014-08-08 14:19:20 -0700992 mem_cgroup_try_charge(pages[i], mm, GFP_KERNEL,
993 &memcg))) {
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -0800994 if (pages[i])
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800995 put_page(pages[i]);
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -0800996 while (--i >= 0) {
Johannes Weiner00501b52014-08-08 14:19:20 -0700997 memcg = (void *)page_private(pages[i]);
998 set_page_private(pages[i], 0);
999 mem_cgroup_cancel_charge(pages[i], memcg);
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001000 put_page(pages[i]);
1001 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001002 kfree(pages);
1003 ret |= VM_FAULT_OOM;
1004 goto out;
1005 }
Johannes Weiner00501b52014-08-08 14:19:20 -07001006 set_page_private(pages[i], (unsigned long)memcg);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001007 }
1008
1009 for (i = 0; i < HPAGE_PMD_NR; i++) {
1010 copy_user_highpage(pages[i], page + i,
Hillf Danton0089e482011-10-31 17:09:38 -07001011 haddr + PAGE_SIZE * i, vma);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001012 __SetPageUptodate(pages[i]);
1013 cond_resched();
1014 }
1015
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001016 mmun_start = haddr;
1017 mmun_end = haddr + HPAGE_PMD_SIZE;
1018 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
1019
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001020 ptl = pmd_lock(mm, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001021 if (unlikely(!pmd_same(*pmd, orig_pmd)))
1022 goto out_free_pages;
Sasha Levin309381fea2014-01-23 15:52:54 -08001023 VM_BUG_ON_PAGE(!PageHead(page), page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001024
Joerg Roedel34ee6452014-11-13 13:46:09 +11001025 pmdp_clear_flush_notify(vma, haddr, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001026 /* leave pmd empty until pte is filled */
1027
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -07001028 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001029 pmd_populate(mm, &_pmd, pgtable);
1030
1031 for (i = 0; i < HPAGE_PMD_NR; i++, haddr += PAGE_SIZE) {
1032 pte_t *pte, entry;
1033 entry = mk_pte(pages[i], vma->vm_page_prot);
1034 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
Johannes Weiner00501b52014-08-08 14:19:20 -07001035 memcg = (void *)page_private(pages[i]);
1036 set_page_private(pages[i], 0);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001037 page_add_new_anon_rmap(pages[i], vma, haddr);
Johannes Weiner00501b52014-08-08 14:19:20 -07001038 mem_cgroup_commit_charge(pages[i], memcg, false);
1039 lru_cache_add_active_or_unevictable(pages[i], vma);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001040 pte = pte_offset_map(&_pmd, haddr);
1041 VM_BUG_ON(!pte_none(*pte));
1042 set_pte_at(mm, haddr, pte, entry);
1043 pte_unmap(pte);
1044 }
1045 kfree(pages);
1046
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001047 smp_wmb(); /* make pte visible before pmd */
1048 pmd_populate(mm, pmd, pgtable);
1049 page_remove_rmap(page);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001050 spin_unlock(ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001051
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001052 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
1053
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001054 ret |= VM_FAULT_WRITE;
1055 put_page(page);
1056
1057out:
1058 return ret;
1059
1060out_free_pages:
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001061 spin_unlock(ptl);
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001062 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001063 for (i = 0; i < HPAGE_PMD_NR; i++) {
Johannes Weiner00501b52014-08-08 14:19:20 -07001064 memcg = (void *)page_private(pages[i]);
1065 set_page_private(pages[i], 0);
1066 mem_cgroup_cancel_charge(pages[i], memcg);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001067 put_page(pages[i]);
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001068 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001069 kfree(pages);
1070 goto out;
1071}
1072
1073int do_huge_pmd_wp_page(struct mm_struct *mm, struct vm_area_struct *vma,
1074 unsigned long address, pmd_t *pmd, pmd_t orig_pmd)
1075{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001076 spinlock_t *ptl;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001077 int ret = 0;
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001078 struct page *page = NULL, *new_page;
Johannes Weiner00501b52014-08-08 14:19:20 -07001079 struct mem_cgroup *memcg;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001080 unsigned long haddr;
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001081 unsigned long mmun_start; /* For mmu_notifiers */
1082 unsigned long mmun_end; /* For mmu_notifiers */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001083
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001084 ptl = pmd_lockptr(mm, pmd);
Sasha Levin81d1b092014-10-09 15:28:10 -07001085 VM_BUG_ON_VMA(!vma->anon_vma, vma);
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001086 haddr = address & HPAGE_PMD_MASK;
1087 if (is_huge_zero_pmd(orig_pmd))
1088 goto alloc;
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001089 spin_lock(ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001090 if (unlikely(!pmd_same(*pmd, orig_pmd)))
1091 goto out_unlock;
1092
1093 page = pmd_page(orig_pmd);
Sasha Levin309381fea2014-01-23 15:52:54 -08001094 VM_BUG_ON_PAGE(!PageCompound(page) || !PageHead(page), page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001095 if (page_mapcount(page) == 1) {
1096 pmd_t entry;
1097 entry = pmd_mkyoung(orig_pmd);
1098 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
1099 if (pmdp_set_access_flags(vma, haddr, pmd, entry, 1))
David Millerb113da62012-10-08 16:34:25 -07001100 update_mmu_cache_pmd(vma, address, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001101 ret |= VM_FAULT_WRITE;
1102 goto out_unlock;
1103 }
Hugh Dickins5338a932014-06-23 13:22:05 -07001104 get_user_huge_page(page);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001105 spin_unlock(ptl);
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001106alloc:
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001107 if (transparent_hugepage_enabled(vma) &&
Aneesh Kumar K.V077fcf12015-02-11 15:27:12 -08001108 !transparent_hugepage_debug_cow()) {
1109 gfp_t gfp;
1110
1111 gfp = alloc_hugepage_gfpmask(transparent_hugepage_defrag(vma), 0);
1112 new_page = alloc_hugepage_vma(gfp, vma, haddr, HPAGE_PMD_ORDER);
1113 } else
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001114 new_page = NULL;
1115
1116 if (unlikely(!new_page)) {
Hugh Dickinseecc1e42014-01-12 01:25:21 -08001117 if (!page) {
Kirill A. Shutemove9b71ca2014-04-03 14:48:17 -07001118 split_huge_page_pmd(vma, address, pmd);
1119 ret |= VM_FAULT_FALLBACK;
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001120 } else {
1121 ret = do_huge_pmd_wp_page_fallback(mm, vma, address,
1122 pmd, orig_pmd, page, haddr);
Kirill A. Shutemov9845cbb2014-02-25 15:01:42 -08001123 if (ret & VM_FAULT_OOM) {
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001124 split_huge_page(page);
Kirill A. Shutemov9845cbb2014-02-25 15:01:42 -08001125 ret |= VM_FAULT_FALLBACK;
1126 }
Hugh Dickins5338a932014-06-23 13:22:05 -07001127 put_user_huge_page(page);
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001128 }
David Rientjes17766dd2013-09-12 15:14:06 -07001129 count_vm_event(THP_FAULT_FALLBACK);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001130 goto out;
1131 }
1132
Johannes Weiner00501b52014-08-08 14:19:20 -07001133 if (unlikely(mem_cgroup_try_charge(new_page, mm,
1134 GFP_TRANSHUGE, &memcg))) {
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001135 put_page(new_page);
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001136 if (page) {
1137 split_huge_page(page);
Hugh Dickins5338a932014-06-23 13:22:05 -07001138 put_user_huge_page(page);
Kirill A. Shutemov9845cbb2014-02-25 15:01:42 -08001139 } else
1140 split_huge_page_pmd(vma, address, pmd);
1141 ret |= VM_FAULT_FALLBACK;
David Rientjes17766dd2013-09-12 15:14:06 -07001142 count_vm_event(THP_FAULT_FALLBACK);
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001143 goto out;
1144 }
1145
David Rientjes17766dd2013-09-12 15:14:06 -07001146 count_vm_event(THP_FAULT_ALLOC);
1147
Hugh Dickinseecc1e42014-01-12 01:25:21 -08001148 if (!page)
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001149 clear_huge_page(new_page, haddr, HPAGE_PMD_NR);
1150 else
1151 copy_user_huge_page(new_page, page, haddr, vma, HPAGE_PMD_NR);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001152 __SetPageUptodate(new_page);
1153
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001154 mmun_start = haddr;
1155 mmun_end = haddr + HPAGE_PMD_SIZE;
1156 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
1157
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001158 spin_lock(ptl);
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001159 if (page)
Hugh Dickins5338a932014-06-23 13:22:05 -07001160 put_user_huge_page(page);
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001161 if (unlikely(!pmd_same(*pmd, orig_pmd))) {
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001162 spin_unlock(ptl);
Johannes Weiner00501b52014-08-08 14:19:20 -07001163 mem_cgroup_cancel_charge(new_page, memcg);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001164 put_page(new_page);
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001165 goto out_mn;
Andrea Arcangelib9bbfbe2011-01-13 15:46:57 -08001166 } else {
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001167 pmd_t entry;
Kirill A. Shutemov31223592013-09-12 15:14:01 -07001168 entry = mk_huge_pmd(new_page, vma->vm_page_prot);
1169 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
Joerg Roedel34ee6452014-11-13 13:46:09 +11001170 pmdp_clear_flush_notify(vma, haddr, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001171 page_add_new_anon_rmap(new_page, vma, haddr);
Johannes Weiner00501b52014-08-08 14:19:20 -07001172 mem_cgroup_commit_charge(new_page, memcg, false);
1173 lru_cache_add_active_or_unevictable(new_page, vma);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001174 set_pmd_at(mm, haddr, pmd, entry);
David Millerb113da62012-10-08 16:34:25 -07001175 update_mmu_cache_pmd(vma, address, pmd);
Hugh Dickinseecc1e42014-01-12 01:25:21 -08001176 if (!page) {
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001177 add_mm_counter(mm, MM_ANONPAGES, HPAGE_PMD_NR);
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -08001178 put_huge_zero_page();
1179 } else {
Sasha Levin309381fea2014-01-23 15:52:54 -08001180 VM_BUG_ON_PAGE(!PageHead(page), page);
Kirill A. Shutemov93b47962012-12-12 13:50:54 -08001181 page_remove_rmap(page);
1182 put_page(page);
1183 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001184 ret |= VM_FAULT_WRITE;
1185 }
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001186 spin_unlock(ptl);
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001187out_mn:
1188 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
1189out:
1190 return ret;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001191out_unlock:
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001192 spin_unlock(ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001193 return ret;
1194}
1195
David Rientjesb676b292012-10-08 16:34:03 -07001196struct page *follow_trans_huge_pmd(struct vm_area_struct *vma,
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001197 unsigned long addr,
1198 pmd_t *pmd,
1199 unsigned int flags)
1200{
David Rientjesb676b292012-10-08 16:34:03 -07001201 struct mm_struct *mm = vma->vm_mm;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001202 struct page *page = NULL;
1203
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001204 assert_spin_locked(pmd_lockptr(mm, pmd));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001205
1206 if (flags & FOLL_WRITE && !pmd_write(*pmd))
1207 goto out;
1208
Kirill A. Shutemov85facf22013-02-04 14:28:42 -08001209 /* Avoid dumping huge zero page */
1210 if ((flags & FOLL_DUMP) && is_huge_zero_pmd(*pmd))
1211 return ERR_PTR(-EFAULT);
1212
Mel Gorman2b4847e2013-12-18 17:08:32 -08001213 /* Full NUMA hinting faults to serialise migration in fault paths */
1214 if ((flags & FOLL_NUMA) && pmd_numa(*pmd))
1215 goto out;
1216
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001217 page = pmd_page(*pmd);
Sasha Levin309381fea2014-01-23 15:52:54 -08001218 VM_BUG_ON_PAGE(!PageHead(page), page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001219 if (flags & FOLL_TOUCH) {
1220 pmd_t _pmd;
1221 /*
1222 * We should set the dirty bit only for FOLL_WRITE but
1223 * for now the dirty bit in the pmd is meaningless.
1224 * And if the dirty bit will become meaningful and
1225 * we'll only set it with FOLL_WRITE, an atomic
1226 * set_bit will be required on the pmd to set the
1227 * young bit, instead of the current set_pmd_at.
1228 */
1229 _pmd = pmd_mkyoung(pmd_mkdirty(*pmd));
Aneesh Kumar K.V8663890a2013-06-06 00:20:34 -07001230 if (pmdp_set_access_flags(vma, addr & HPAGE_PMD_MASK,
1231 pmd, _pmd, 1))
1232 update_mmu_cache_pmd(vma, addr, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001233 }
David Rientjesb676b292012-10-08 16:34:03 -07001234 if ((flags & FOLL_MLOCK) && (vma->vm_flags & VM_LOCKED)) {
1235 if (page->mapping && trylock_page(page)) {
1236 lru_add_drain();
1237 if (page->mapping)
1238 mlock_vma_page(page);
1239 unlock_page(page);
1240 }
1241 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001242 page += (addr & ~HPAGE_PMD_MASK) >> PAGE_SHIFT;
Sasha Levin309381fea2014-01-23 15:52:54 -08001243 VM_BUG_ON_PAGE(!PageCompound(page), page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001244 if (flags & FOLL_GET)
Andrea Arcangeli70b50f92011-11-02 13:36:59 -07001245 get_page_foll(page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001246
1247out:
1248 return page;
1249}
1250
Mel Gormand10e63f2012-10-25 14:16:31 +02001251/* NUMA hinting page fault entry point for trans huge pmds */
Mel Gorman4daae3b2012-11-02 11:33:45 +00001252int do_huge_pmd_numa_page(struct mm_struct *mm, struct vm_area_struct *vma,
1253 unsigned long addr, pmd_t pmd, pmd_t *pmdp)
Mel Gormand10e63f2012-10-25 14:16:31 +02001254{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001255 spinlock_t *ptl;
Mel Gormanb8916632013-10-07 11:28:44 +01001256 struct anon_vma *anon_vma = NULL;
Mel Gormanb32967f2012-11-19 12:35:47 +00001257 struct page *page;
Mel Gormand10e63f2012-10-25 14:16:31 +02001258 unsigned long haddr = addr & HPAGE_PMD_MASK;
Mel Gorman8191acb2013-10-07 11:28:45 +01001259 int page_nid = -1, this_nid = numa_node_id();
Peter Zijlstra90572892013-10-07 11:29:20 +01001260 int target_nid, last_cpupid = -1;
Mel Gorman8191acb2013-10-07 11:28:45 +01001261 bool page_locked;
1262 bool migrated = false;
Peter Zijlstra6688cc02013-10-07 11:29:24 +01001263 int flags = 0;
Mel Gormand10e63f2012-10-25 14:16:31 +02001264
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001265 ptl = pmd_lock(mm, pmdp);
Mel Gormand10e63f2012-10-25 14:16:31 +02001266 if (unlikely(!pmd_same(pmd, *pmdp)))
1267 goto out_unlock;
1268
Mel Gormande466bd2013-12-18 17:08:42 -08001269 /*
1270 * If there are potential migrations, wait for completion and retry
1271 * without disrupting NUMA hinting information. Do not relock and
1272 * check_same as the page may no longer be mapped.
1273 */
1274 if (unlikely(pmd_trans_migrating(*pmdp))) {
1275 spin_unlock(ptl);
1276 wait_migrate_huge_page(vma->anon_vma, pmdp);
1277 goto out;
1278 }
1279
Mel Gormand10e63f2012-10-25 14:16:31 +02001280 page = pmd_page(pmd);
Mel Gormana1a46182013-10-07 11:28:50 +01001281 BUG_ON(is_huge_zero_page(page));
Mel Gorman8191acb2013-10-07 11:28:45 +01001282 page_nid = page_to_nid(page);
Peter Zijlstra90572892013-10-07 11:29:20 +01001283 last_cpupid = page_cpupid_last(page);
Mel Gorman03c5a6e2012-11-02 14:52:48 +00001284 count_vm_numa_event(NUMA_HINT_FAULTS);
Rik van Riel04bb2f92013-10-07 11:29:36 +01001285 if (page_nid == this_nid) {
Mel Gorman03c5a6e2012-11-02 14:52:48 +00001286 count_vm_numa_event(NUMA_HINT_FAULTS_LOCAL);
Rik van Riel04bb2f92013-10-07 11:29:36 +01001287 flags |= TNF_FAULT_LOCAL;
1288 }
Mel Gorman4daae3b2012-11-02 11:33:45 +00001289
Mel Gormanff9042b2013-10-07 11:28:43 +01001290 /*
Peter Zijlstra6688cc02013-10-07 11:29:24 +01001291 * Avoid grouping on DSO/COW pages in specific and RO pages
1292 * in general, RO pages shouldn't hurt as much anyway since
1293 * they can be in shared cache state.
1294 */
1295 if (!pmd_write(pmd))
1296 flags |= TNF_NO_GROUP;
1297
1298 /*
Mel Gormanff9042b2013-10-07 11:28:43 +01001299 * Acquire the page lock to serialise THP migrations but avoid dropping
1300 * page_table_lock if at all possible
1301 */
Mel Gormanb8916632013-10-07 11:28:44 +01001302 page_locked = trylock_page(page);
1303 target_nid = mpol_misplaced(page, vma, haddr);
1304 if (target_nid == -1) {
1305 /* If the page was locked, there are no parallel migrations */
Mel Gormana54a4072013-10-07 11:28:46 +01001306 if (page_locked)
Mel Gormanb8916632013-10-07 11:28:44 +01001307 goto clear_pmdnuma;
Mel Gorman2b4847e2013-12-18 17:08:32 -08001308 }
Mel Gorman4daae3b2012-11-02 11:33:45 +00001309
Mel Gormande466bd2013-12-18 17:08:42 -08001310 /* Migration could have started since the pmd_trans_migrating check */
Mel Gorman2b4847e2013-12-18 17:08:32 -08001311 if (!page_locked) {
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001312 spin_unlock(ptl);
Mel Gormanb8916632013-10-07 11:28:44 +01001313 wait_on_page_locked(page);
Mel Gormana54a4072013-10-07 11:28:46 +01001314 page_nid = -1;
Mel Gormanb8916632013-10-07 11:28:44 +01001315 goto out;
1316 }
1317
Mel Gorman2b4847e2013-12-18 17:08:32 -08001318 /*
1319 * Page is misplaced. Page lock serialises migrations. Acquire anon_vma
1320 * to serialises splits
1321 */
Mel Gormanb8916632013-10-07 11:28:44 +01001322 get_page(page);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001323 spin_unlock(ptl);
Mel Gormanb8916632013-10-07 11:28:44 +01001324 anon_vma = page_lock_anon_vma_read(page);
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001325
Peter Zijlstrac69307d2013-10-07 11:28:41 +01001326 /* Confirm the PMD did not change while page_table_lock was released */
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001327 spin_lock(ptl);
Mel Gormanb32967f2012-11-19 12:35:47 +00001328 if (unlikely(!pmd_same(pmd, *pmdp))) {
1329 unlock_page(page);
1330 put_page(page);
Mel Gormana54a4072013-10-07 11:28:46 +01001331 page_nid = -1;
Mel Gormanb32967f2012-11-19 12:35:47 +00001332 goto out_unlock;
1333 }
Mel Gormanff9042b2013-10-07 11:28:43 +01001334
Mel Gormanc3a489c2013-12-18 17:08:38 -08001335 /* Bail if we fail to protect against THP splits for any reason */
1336 if (unlikely(!anon_vma)) {
1337 put_page(page);
1338 page_nid = -1;
1339 goto clear_pmdnuma;
1340 }
1341
Mel Gormana54a4072013-10-07 11:28:46 +01001342 /*
1343 * Migrate the THP to the requested node, returns with page unlocked
1344 * and pmd_numa cleared.
1345 */
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001346 spin_unlock(ptl);
Mel Gormanb32967f2012-11-19 12:35:47 +00001347 migrated = migrate_misplaced_transhuge_page(mm, vma,
Hugh Dickins340ef392013-02-22 16:34:33 -08001348 pmdp, pmd, addr, page, target_nid);
Peter Zijlstra6688cc02013-10-07 11:29:24 +01001349 if (migrated) {
1350 flags |= TNF_MIGRATED;
Mel Gorman8191acb2013-10-07 11:28:45 +01001351 page_nid = target_nid;
Peter Zijlstra6688cc02013-10-07 11:29:24 +01001352 }
Mel Gormanb32967f2012-11-19 12:35:47 +00001353
Mel Gorman8191acb2013-10-07 11:28:45 +01001354 goto out;
Mel Gorman4daae3b2012-11-02 11:33:45 +00001355clear_pmdnuma:
Mel Gormana54a4072013-10-07 11:28:46 +01001356 BUG_ON(!PageLocked(page));
Mel Gormand10e63f2012-10-25 14:16:31 +02001357 pmd = pmd_mknonnuma(pmd);
1358 set_pmd_at(mm, haddr, pmdp, pmd);
1359 VM_BUG_ON(pmd_numa(*pmdp));
1360 update_mmu_cache_pmd(vma, addr, pmdp);
Mel Gormana54a4072013-10-07 11:28:46 +01001361 unlock_page(page);
Mel Gormand10e63f2012-10-25 14:16:31 +02001362out_unlock:
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001363 spin_unlock(ptl);
Mel Gormanb8916632013-10-07 11:28:44 +01001364
1365out:
1366 if (anon_vma)
1367 page_unlock_anon_vma_read(anon_vma);
1368
Mel Gorman8191acb2013-10-07 11:28:45 +01001369 if (page_nid != -1)
Peter Zijlstra6688cc02013-10-07 11:29:24 +01001370 task_numa_fault(last_cpupid, page_nid, HPAGE_PMD_NR, flags);
Mel Gorman8191acb2013-10-07 11:28:45 +01001371
Mel Gormand10e63f2012-10-25 14:16:31 +02001372 return 0;
1373}
1374
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001375int zap_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
Shaohua Lif21760b2012-01-12 17:19:16 -08001376 pmd_t *pmd, unsigned long addr)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001377{
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001378 spinlock_t *ptl;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001379 int ret = 0;
1380
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001381 if (__pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001382 struct page *page;
1383 pgtable_t pgtable;
David Millerf5c8ad42012-10-08 16:34:26 -07001384 pmd_t orig_pmd;
Aneesh Kumar K.Va6bf2bb2013-06-05 17:14:04 -07001385 /*
1386 * For architectures like ppc64 we look at deposited pgtable
1387 * when calling pmdp_get_and_clear. So do the
1388 * pgtable_trans_huge_withdraw after finishing pmdp related
1389 * operations.
1390 */
Martin Schwidefskyfcbe08d62014-10-24 10:52:29 +02001391 orig_pmd = pmdp_get_and_clear_full(tlb->mm, addr, pmd,
1392 tlb->fullmm);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001393 tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
Aneesh Kumar K.Va6bf2bb2013-06-05 17:14:04 -07001394 pgtable = pgtable_trans_huge_withdraw(tlb->mm, pmd);
Kirill A. Shutemov479f0ab2012-12-12 13:50:50 -08001395 if (is_huge_zero_pmd(orig_pmd)) {
Kirill A. Shutemove1f56c82013-11-14 14:30:48 -08001396 atomic_long_dec(&tlb->mm->nr_ptes);
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001397 spin_unlock(ptl);
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -08001398 put_huge_zero_page();
Kirill A. Shutemov479f0ab2012-12-12 13:50:50 -08001399 } else {
1400 page = pmd_page(orig_pmd);
1401 page_remove_rmap(page);
Sasha Levin309381fea2014-01-23 15:52:54 -08001402 VM_BUG_ON_PAGE(page_mapcount(page) < 0, page);
Kirill A. Shutemov479f0ab2012-12-12 13:50:50 -08001403 add_mm_counter(tlb->mm, MM_ANONPAGES, -HPAGE_PMD_NR);
Sasha Levin309381fea2014-01-23 15:52:54 -08001404 VM_BUG_ON_PAGE(!PageHead(page), page);
Kirill A. Shutemove1f56c82013-11-14 14:30:48 -08001405 atomic_long_dec(&tlb->mm->nr_ptes);
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001406 spin_unlock(ptl);
Kirill A. Shutemov479f0ab2012-12-12 13:50:50 -08001407 tlb_remove_page(tlb, page);
1408 }
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001409 pte_free(tlb->mm, pgtable);
1410 ret = 1;
1411 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001412 return ret;
1413}
1414
Andrea Arcangeli37a1c492011-10-31 17:08:30 -07001415int move_huge_pmd(struct vm_area_struct *vma, struct vm_area_struct *new_vma,
1416 unsigned long old_addr,
1417 unsigned long new_addr, unsigned long old_end,
1418 pmd_t *old_pmd, pmd_t *new_pmd)
1419{
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001420 spinlock_t *old_ptl, *new_ptl;
Andrea Arcangeli37a1c492011-10-31 17:08:30 -07001421 int ret = 0;
1422 pmd_t pmd;
1423
1424 struct mm_struct *mm = vma->vm_mm;
1425
1426 if ((old_addr & ~HPAGE_PMD_MASK) ||
1427 (new_addr & ~HPAGE_PMD_MASK) ||
1428 old_end - old_addr < HPAGE_PMD_SIZE ||
1429 (new_vma->vm_flags & VM_NOHUGEPAGE))
1430 goto out;
1431
1432 /*
1433 * The destination pmd shouldn't be established, free_pgtables()
1434 * should have release it.
1435 */
1436 if (WARN_ON(!pmd_none(*new_pmd))) {
1437 VM_BUG_ON(pmd_trans_huge(*new_pmd));
1438 goto out;
1439 }
1440
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001441 /*
1442 * We don't have to worry about the ordering of src and dst
1443 * ptlocks because exclusive mmap_sem prevents deadlock.
1444 */
1445 ret = __pmd_trans_huge_lock(old_pmd, vma, &old_ptl);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001446 if (ret == 1) {
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001447 new_ptl = pmd_lockptr(mm, new_pmd);
1448 if (new_ptl != old_ptl)
1449 spin_lock_nested(new_ptl, SINGLE_DEPTH_NESTING);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001450 pmd = pmdp_get_and_clear(mm, old_addr, old_pmd);
1451 VM_BUG_ON(!pmd_none(*new_pmd));
Kirill A. Shutemov35928062013-12-12 17:12:33 -08001452
Aneesh Kumar K.Vb3084f42014-01-13 11:34:24 +05301453 if (pmd_move_must_withdraw(new_ptl, old_ptl)) {
1454 pgtable_t pgtable;
Kirill A. Shutemov35928062013-12-12 17:12:33 -08001455 pgtable = pgtable_trans_huge_withdraw(mm, old_pmd);
1456 pgtable_trans_huge_deposit(mm, new_pmd, pgtable);
Kirill A. Shutemov35928062013-12-12 17:12:33 -08001457 }
Aneesh Kumar K.Vb3084f42014-01-13 11:34:24 +05301458 set_pmd_at(mm, new_addr, new_pmd, pmd_mksoft_dirty(pmd));
1459 if (new_ptl != old_ptl)
1460 spin_unlock(new_ptl);
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001461 spin_unlock(old_ptl);
Andrea Arcangeli37a1c492011-10-31 17:08:30 -07001462 }
1463out:
1464 return ret;
1465}
1466
Mel Gormanf123d742013-10-07 11:28:49 +01001467/*
1468 * Returns
1469 * - 0 if PMD could not be locked
1470 * - 1 if PMD was locked but protections unchange and TLB flush unnecessary
1471 * - HPAGE_PMD_NR is protections changed and TLB flush necessary
1472 */
Johannes Weinercd7548a2011-01-13 15:47:04 -08001473int change_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
Mel Gorman4b10e7d2012-10-25 14:16:32 +02001474 unsigned long addr, pgprot_t newprot, int prot_numa)
Johannes Weinercd7548a2011-01-13 15:47:04 -08001475{
1476 struct mm_struct *mm = vma->vm_mm;
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001477 spinlock_t *ptl;
Johannes Weinercd7548a2011-01-13 15:47:04 -08001478 int ret = 0;
1479
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001480 if (__pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001481 pmd_t entry;
Mel Gormanf123d742013-10-07 11:28:49 +01001482 ret = 1;
Hugh Dickinsa4f1de12012-12-16 18:56:58 -08001483 if (!prot_numa) {
Joerg Roedel34ee6452014-11-13 13:46:09 +11001484 entry = pmdp_get_and_clear_notify(mm, addr, pmd);
Mel Gorman16679182013-12-18 17:08:41 -08001485 if (pmd_numa(entry))
1486 entry = pmd_mknonnuma(entry);
Mel Gorman4b10e7d2012-10-25 14:16:32 +02001487 entry = pmd_modify(entry, newprot);
Mel Gormanf123d742013-10-07 11:28:49 +01001488 ret = HPAGE_PMD_NR;
Aneesh Kumar K.V56eecdb2014-02-12 09:13:38 +05301489 set_pmd_at(mm, addr, pmd, entry);
Hugh Dickinsa4f1de12012-12-16 18:56:58 -08001490 BUG_ON(pmd_write(entry));
1491 } else {
Mel Gorman4b10e7d2012-10-25 14:16:32 +02001492 struct page *page = pmd_page(*pmd);
1493
Mel Gormana1a46182013-10-07 11:28:50 +01001494 /*
Mel Gorman1bc115d2013-10-07 11:29:05 +01001495 * Do not trap faults against the zero page. The
1496 * read-only data is likely to be read-cached on the
1497 * local CPU cache and it is less useful to know about
1498 * local vs remote hits on the zero page.
Mel Gormana1a46182013-10-07 11:28:50 +01001499 */
Mel Gorman1bc115d2013-10-07 11:29:05 +01001500 if (!is_huge_zero_page(page) &&
Mel Gorman4b10e7d2012-10-25 14:16:32 +02001501 !pmd_numa(*pmd)) {
Aneesh Kumar K.V56eecdb2014-02-12 09:13:38 +05301502 pmdp_set_numa(mm, addr, pmd);
Mel Gormanf123d742013-10-07 11:28:49 +01001503 ret = HPAGE_PMD_NR;
Mel Gorman4b10e7d2012-10-25 14:16:32 +02001504 }
1505 }
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001506 spin_unlock(ptl);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001507 }
Johannes Weinercd7548a2011-01-13 15:47:04 -08001508
1509 return ret;
1510}
1511
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001512/*
1513 * Returns 1 if a given pmd maps a stable (not under splitting) thp.
1514 * Returns -1 if it maps a thp under splitting. Returns 0 otherwise.
1515 *
1516 * Note that if it returns 1, this routine returns without unlocking page
1517 * table locks. So callers must unlock them.
1518 */
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001519int __pmd_trans_huge_lock(pmd_t *pmd, struct vm_area_struct *vma,
1520 spinlock_t **ptl)
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001521{
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001522 *ptl = pmd_lock(vma->vm_mm, pmd);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001523 if (likely(pmd_trans_huge(*pmd))) {
1524 if (unlikely(pmd_trans_splitting(*pmd))) {
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001525 spin_unlock(*ptl);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001526 wait_split_huge_page(vma->anon_vma, pmd);
1527 return -1;
1528 } else {
1529 /* Thp mapped by 'pmd' is stable, so we can
1530 * handle it as it is. */
1531 return 1;
1532 }
1533 }
Kirill A. Shutemovbf929152013-11-14 14:30:54 -08001534 spin_unlock(*ptl);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -07001535 return 0;
1536}
1537
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001538/*
1539 * This function returns whether a given @page is mapped onto the @address
1540 * in the virtual space of @mm.
1541 *
1542 * When it's true, this function returns *pmd with holding the page table lock
1543 * and passing it back to the caller via @ptl.
1544 * If it's false, returns NULL without holding the page table lock.
1545 */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001546pmd_t *page_check_address_pmd(struct page *page,
1547 struct mm_struct *mm,
1548 unsigned long address,
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001549 enum page_check_address_pmd_flag flag,
1550 spinlock_t **ptl)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001551{
Kirill A. Shutemovb5a8cad2014-04-18 15:07:25 -07001552 pgd_t *pgd;
1553 pud_t *pud;
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001554 pmd_t *pmd;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001555
1556 if (address & ~HPAGE_PMD_MASK)
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001557 return NULL;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001558
Kirill A. Shutemovb5a8cad2014-04-18 15:07:25 -07001559 pgd = pgd_offset(mm, address);
1560 if (!pgd_present(*pgd))
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001561 return NULL;
Kirill A. Shutemovb5a8cad2014-04-18 15:07:25 -07001562 pud = pud_offset(pgd, address);
1563 if (!pud_present(*pud))
1564 return NULL;
1565 pmd = pmd_offset(pud, address);
1566
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001567 *ptl = pmd_lock(mm, pmd);
Kirill A. Shutemovb5a8cad2014-04-18 15:07:25 -07001568 if (!pmd_present(*pmd))
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001569 goto unlock;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001570 if (pmd_page(*pmd) != page)
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001571 goto unlock;
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08001572 /*
1573 * split_vma() may create temporary aliased mappings. There is
1574 * no risk as long as all huge pmd are found and have their
1575 * splitting bit set before __split_huge_page_refcount
1576 * runs. Finding the same huge pmd more than once during the
1577 * same rmap walk is not a problem.
1578 */
1579 if (flag == PAGE_CHECK_ADDRESS_PMD_NOTSPLITTING_FLAG &&
1580 pmd_trans_splitting(*pmd))
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001581 goto unlock;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001582 if (pmd_trans_huge(*pmd)) {
1583 VM_BUG_ON(flag == PAGE_CHECK_ADDRESS_PMD_SPLITTING_FLAG &&
1584 !pmd_trans_splitting(*pmd));
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001585 return pmd;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001586 }
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001587unlock:
1588 spin_unlock(*ptl);
1589 return NULL;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001590}
1591
1592static int __split_huge_page_splitting(struct page *page,
1593 struct vm_area_struct *vma,
1594 unsigned long address)
1595{
1596 struct mm_struct *mm = vma->vm_mm;
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001597 spinlock_t *ptl;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001598 pmd_t *pmd;
1599 int ret = 0;
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001600 /* For mmu_notifiers */
1601 const unsigned long mmun_start = address;
1602 const unsigned long mmun_end = address + HPAGE_PMD_SIZE;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001603
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001604 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001605 pmd = page_check_address_pmd(page, mm, address,
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001606 PAGE_CHECK_ADDRESS_PMD_NOTSPLITTING_FLAG, &ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001607 if (pmd) {
1608 /*
1609 * We can't temporarily set the pmd to null in order
1610 * to split it, the pmd must remain marked huge at all
1611 * times or the VM won't take the pmd_trans_huge paths
Ingo Molnar5a505082012-12-02 19:56:46 +00001612 * and it won't wait on the anon_vma->root->rwsem to
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001613 * serialize against split_huge_page*.
1614 */
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001615 pmdp_splitting_flush(vma, address, pmd);
Joerg Roedel34ee6452014-11-13 13:46:09 +11001616
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001617 ret = 1;
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001618 spin_unlock(ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001619 }
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001620 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001621
1622 return ret;
1623}
1624
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001625static void __split_huge_page_refcount(struct page *page,
1626 struct list_head *list)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001627{
1628 int i;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001629 struct zone *zone = page_zone(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001630 struct lruvec *lruvec;
Andrea Arcangeli70b50f92011-11-02 13:36:59 -07001631 int tail_count = 0;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001632
1633 /* prevent PageLRU to go away from under us, and freeze lru stats */
1634 spin_lock_irq(&zone->lru_lock);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001635 lruvec = mem_cgroup_page_lruvec(page, zone);
1636
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001637 compound_lock(page);
KAMEZAWA Hiroyukie94c8a92012-01-12 17:18:20 -08001638 /* complete memcg works before add pages to LRU */
1639 mem_cgroup_split_huge_fixup(page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001640
Shaohua Li45676882012-01-12 17:19:18 -08001641 for (i = HPAGE_PMD_NR - 1; i >= 1; i--) {
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001642 struct page *page_tail = page + i;
1643
Andrea Arcangeli70b50f92011-11-02 13:36:59 -07001644 /* tail_page->_mapcount cannot change */
1645 BUG_ON(page_mapcount(page_tail) < 0);
1646 tail_count += page_mapcount(page_tail);
1647 /* check for overflow */
1648 BUG_ON(tail_count < 0);
1649 BUG_ON(atomic_read(&page_tail->_count) != 0);
1650 /*
1651 * tail_page->_count is zero and not changing from
1652 * under us. But get_page_unless_zero() may be running
1653 * from under us on the tail_page. If we used
1654 * atomic_set() below instead of atomic_add(), we
1655 * would then run atomic_set() concurrently with
1656 * get_page_unless_zero(), and atomic_set() is
1657 * implemented in C not using locked ops. spin_unlock
1658 * on x86 sometime uses locked ops because of PPro
1659 * errata 66, 92, so unless somebody can guarantee
1660 * atomic_set() here would be safe on all archs (and
1661 * not only on x86), it's safer to use atomic_add().
1662 */
1663 atomic_add(page_mapcount(page) + page_mapcount(page_tail) + 1,
1664 &page_tail->_count);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001665
1666 /* after clearing PageTail the gup refcount can be released */
Waiman Long3a79d522014-08-06 16:05:38 -07001667 smp_mb__after_atomic();
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001668
Jin Dongminga6d30dd2011-02-01 15:52:40 -08001669 /*
1670 * retain hwpoison flag of the poisoned tail page:
1671 * fix for the unsuitable process killed on Guest Machine(KVM)
1672 * by the memory-failure.
1673 */
1674 page_tail->flags &= ~PAGE_FLAGS_CHECK_AT_PREP | __PG_HWPOISON;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001675 page_tail->flags |= (page->flags &
1676 ((1L << PG_referenced) |
1677 (1L << PG_swapbacked) |
1678 (1L << PG_mlocked) |
Kirill A. Shutemove180cf82013-07-31 13:53:39 -07001679 (1L << PG_uptodate) |
1680 (1L << PG_active) |
1681 (1L << PG_unevictable)));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001682 page_tail->flags |= (1L << PG_dirty);
1683
Andrea Arcangeli70b50f92011-11-02 13:36:59 -07001684 /* clear PageTail before overwriting first_page */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001685 smp_wmb();
1686
1687 /*
1688 * __split_huge_page_splitting() already set the
1689 * splitting bit in all pmd that could map this
1690 * hugepage, that will ensure no CPU can alter the
1691 * mapcount on the head page. The mapcount is only
1692 * accounted in the head page and it has to be
1693 * transferred to all tail pages in the below code. So
1694 * for this code to be safe, the split the mapcount
1695 * can't change. But that doesn't mean userland can't
1696 * keep changing and reading the page contents while
1697 * we transfer the mapcount, so the pmd splitting
1698 * status is achieved setting a reserved bit in the
1699 * pmd, not by clearing the present bit.
1700 */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001701 page_tail->_mapcount = page->_mapcount;
1702
1703 BUG_ON(page_tail->mapping);
1704 page_tail->mapping = page->mapping;
1705
Shaohua Li45676882012-01-12 17:19:18 -08001706 page_tail->index = page->index + i;
Peter Zijlstra90572892013-10-07 11:29:20 +01001707 page_cpupid_xchg_last(page_tail, page_cpupid_last(page));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001708
1709 BUG_ON(!PageAnon(page_tail));
1710 BUG_ON(!PageUptodate(page_tail));
1711 BUG_ON(!PageDirty(page_tail));
1712 BUG_ON(!PageSwapBacked(page_tail));
1713
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001714 lru_add_page_tail(page, page_tail, lruvec, list);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001715 }
Andrea Arcangeli70b50f92011-11-02 13:36:59 -07001716 atomic_sub(tail_count, &page->_count);
1717 BUG_ON(atomic_read(&page->_count) <= 0);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001718
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001719 __mod_zone_page_state(zone, NR_ANON_TRANSPARENT_HUGEPAGES, -1);
Andrea Arcangeli79134172011-01-13 15:46:58 -08001720
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001721 ClearPageCompound(page);
1722 compound_unlock(page);
1723 spin_unlock_irq(&zone->lru_lock);
1724
1725 for (i = 1; i < HPAGE_PMD_NR; i++) {
1726 struct page *page_tail = page + i;
1727 BUG_ON(page_count(page_tail) <= 0);
1728 /*
1729 * Tail pages may be freed if there wasn't any mapping
1730 * like if add_to_swap() is running on a lru page that
1731 * had its mapping zapped. And freeing these pages
1732 * requires taking the lru_lock so we do the put_page
1733 * of the tail pages after the split is complete.
1734 */
1735 put_page(page_tail);
1736 }
1737
1738 /*
1739 * Only the head page (now become a regular page) is required
1740 * to be pinned by the caller.
1741 */
1742 BUG_ON(page_count(page) <= 0);
1743}
1744
1745static int __split_huge_page_map(struct page *page,
1746 struct vm_area_struct *vma,
1747 unsigned long address)
1748{
1749 struct mm_struct *mm = vma->vm_mm;
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001750 spinlock_t *ptl;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001751 pmd_t *pmd, _pmd;
1752 int ret = 0, i;
1753 pgtable_t pgtable;
1754 unsigned long haddr;
1755
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001756 pmd = page_check_address_pmd(page, mm, address,
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001757 PAGE_CHECK_ADDRESS_PMD_SPLITTING_FLAG, &ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001758 if (pmd) {
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -07001759 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001760 pmd_populate(mm, &_pmd, pgtable);
Waiman Longf8303c22014-08-06 16:05:36 -07001761 if (pmd_write(*pmd))
1762 BUG_ON(page_mapcount(page) != 1);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001763
Gerald Schaefere3ebcf642012-10-08 16:30:07 -07001764 haddr = address;
1765 for (i = 0; i < HPAGE_PMD_NR; i++, haddr += PAGE_SIZE) {
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001766 pte_t *pte, entry;
1767 BUG_ON(PageCompound(page+i));
Mel Gormanabc40bd2014-10-02 19:47:42 +01001768 /*
1769 * Note that pmd_numa is not transferred deliberately
1770 * to avoid any possibility that pte_numa leaks to
1771 * a PROT_NONE VMA by accident.
1772 */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001773 entry = mk_pte(page + i, vma->vm_page_prot);
1774 entry = maybe_mkwrite(pte_mkdirty(entry), vma);
1775 if (!pmd_write(*pmd))
1776 entry = pte_wrprotect(entry);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001777 if (!pmd_young(*pmd))
1778 entry = pte_mkold(entry);
1779 pte = pte_offset_map(&_pmd, haddr);
1780 BUG_ON(!pte_none(*pte));
1781 set_pte_at(mm, haddr, pte, entry);
1782 pte_unmap(pte);
1783 }
1784
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001785 smp_wmb(); /* make pte visible before pmd */
1786 /*
1787 * Up to this point the pmd is present and huge and
1788 * userland has the whole access to the hugepage
1789 * during the split (which happens in place). If we
1790 * overwrite the pmd with the not-huge version
1791 * pointing to the pte here (which of course we could
1792 * if all CPUs were bug free), userland could trigger
1793 * a small page size TLB miss on the small sized TLB
1794 * while the hugepage TLB entry is still established
1795 * in the huge TLB. Some CPU doesn't like that. See
1796 * http://support.amd.com/us/Processor_TechDocs/41322.pdf,
1797 * Erratum 383 on page 93. Intel should be safe but is
1798 * also warns that it's only safe if the permission
1799 * and cache attributes of the two entries loaded in
1800 * the two TLB is identical (which should be the case
1801 * here). But it is generally safer to never allow
1802 * small and huge TLB entries for the same virtual
1803 * address to be loaded simultaneously. So instead of
1804 * doing "pmd_populate(); flush_tlb_range();" we first
1805 * mark the current pmd notpresent (atomically because
1806 * here the pmd_trans_huge and pmd_trans_splitting
1807 * must remain set at all times on the pmd until the
1808 * split is complete for this pmd), then we flush the
1809 * SMP TLB and finally we write the non-huge version
1810 * of the pmd entry with pmd_populate.
1811 */
Gerald Schaefer46dcde72012-10-08 16:30:09 -07001812 pmdp_invalidate(vma, address, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001813 pmd_populate(mm, pmd, pgtable);
1814 ret = 1;
Kirill A. Shutemov117b0792013-11-14 14:30:56 -08001815 spin_unlock(ptl);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001816 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001817
1818 return ret;
1819}
1820
Ingo Molnar5a505082012-12-02 19:56:46 +00001821/* must be called with anon_vma->root->rwsem held */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001822static void __split_huge_page(struct page *page,
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001823 struct anon_vma *anon_vma,
1824 struct list_head *list)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001825{
1826 int mapcount, mapcount2;
Michel Lespinassebf181b92012-10-08 16:31:39 -07001827 pgoff_t pgoff = page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001828 struct anon_vma_chain *avc;
1829
1830 BUG_ON(!PageHead(page));
1831 BUG_ON(PageTail(page));
1832
1833 mapcount = 0;
Michel Lespinassebf181b92012-10-08 16:31:39 -07001834 anon_vma_interval_tree_foreach(avc, &anon_vma->rb_root, pgoff, pgoff) {
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001835 struct vm_area_struct *vma = avc->vma;
1836 unsigned long addr = vma_address(page, vma);
1837 BUG_ON(is_vma_temporary_stack(vma));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001838 mapcount += __split_huge_page_splitting(page, vma, addr);
1839 }
Andrea Arcangeli05759d32011-01-13 15:46:53 -08001840 /*
1841 * It is critical that new vmas are added to the tail of the
1842 * anon_vma list. This guarantes that if copy_huge_pmd() runs
1843 * and establishes a child pmd before
1844 * __split_huge_page_splitting() freezes the parent pmd (so if
1845 * we fail to prevent copy_huge_pmd() from running until the
1846 * whole __split_huge_page() is complete), we will still see
1847 * the newly established pmd of the child later during the
1848 * walk, to be able to set it as pmd_trans_splitting too.
1849 */
Kirill A. Shutemovff9e43e2014-06-04 16:06:57 -07001850 if (mapcount != page_mapcount(page)) {
Andrew Mortonae3a8c12014-06-04 16:06:58 -07001851 pr_err("mapcount %d page_mapcount %d\n",
1852 mapcount, page_mapcount(page));
Kirill A. Shutemovff9e43e2014-06-04 16:06:57 -07001853 BUG();
1854 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001855
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001856 __split_huge_page_refcount(page, list);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001857
1858 mapcount2 = 0;
Michel Lespinassebf181b92012-10-08 16:31:39 -07001859 anon_vma_interval_tree_foreach(avc, &anon_vma->rb_root, pgoff, pgoff) {
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001860 struct vm_area_struct *vma = avc->vma;
1861 unsigned long addr = vma_address(page, vma);
1862 BUG_ON(is_vma_temporary_stack(vma));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001863 mapcount2 += __split_huge_page_map(page, vma, addr);
1864 }
Kirill A. Shutemovff9e43e2014-06-04 16:06:57 -07001865 if (mapcount != mapcount2) {
Andrew Mortonae3a8c12014-06-04 16:06:58 -07001866 pr_err("mapcount %d mapcount2 %d page_mapcount %d\n",
1867 mapcount, mapcount2, page_mapcount(page));
Kirill A. Shutemovff9e43e2014-06-04 16:06:57 -07001868 BUG();
1869 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001870}
1871
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001872/*
1873 * Split a hugepage into normal pages. This doesn't change the position of head
1874 * page. If @list is null, tail pages will be added to LRU list, otherwise, to
1875 * @list. Both head page and tail pages will inherit mapping, flags, and so on
1876 * from the hugepage.
1877 * Return 0 if the hugepage is split successfully otherwise return 1.
1878 */
1879int split_huge_page_to_list(struct page *page, struct list_head *list)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001880{
1881 struct anon_vma *anon_vma;
1882 int ret = 1;
1883
Kirill A. Shutemov5918d102013-04-29 15:08:44 -07001884 BUG_ON(is_huge_zero_page(page));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001885 BUG_ON(!PageAnon(page));
Mel Gorman062f1af2013-01-11 14:32:02 -08001886
1887 /*
1888 * The caller does not necessarily hold an mmap_sem that would prevent
1889 * the anon_vma disappearing so we first we take a reference to it
1890 * and then lock the anon_vma for write. This is similar to
1891 * page_lock_anon_vma_read except the write lock is taken to serialise
1892 * against parallel split or collapse operations.
1893 */
1894 anon_vma = page_get_anon_vma(page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001895 if (!anon_vma)
1896 goto out;
Mel Gorman062f1af2013-01-11 14:32:02 -08001897 anon_vma_lock_write(anon_vma);
1898
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001899 ret = 0;
1900 if (!PageCompound(page))
1901 goto out_unlock;
1902
1903 BUG_ON(!PageSwapBacked(page));
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001904 __split_huge_page(page, anon_vma, list);
Andi Kleen81ab4202011-04-14 15:22:06 -07001905 count_vm_event(THP_SPLIT);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001906
1907 BUG_ON(PageCompound(page));
1908out_unlock:
Konstantin Khlebnikov08b52702013-02-22 16:34:40 -08001909 anon_vma_unlock_write(anon_vma);
Mel Gorman062f1af2013-01-11 14:32:02 -08001910 put_anon_vma(anon_vma);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001911out:
1912 return ret;
1913}
1914
Vlastimil Babka9050d7e2014-03-03 15:38:27 -08001915#define VM_NO_THP (VM_SPECIAL | VM_HUGETLB | VM_SHARED | VM_MAYSHARE)
Andrea Arcangeli78f11a22011-04-27 15:26:45 -07001916
Andrea Arcangeli60ab3242011-01-13 15:47:18 -08001917int hugepage_madvise(struct vm_area_struct *vma,
1918 unsigned long *vm_flags, int advice)
Andrea Arcangeli0af4e982011-01-13 15:46:55 -08001919{
Andrea Arcangelia664b2d2011-01-13 15:47:17 -08001920 switch (advice) {
1921 case MADV_HUGEPAGE:
Alex Thorlton1e1836e2014-04-07 15:37:09 -07001922#ifdef CONFIG_S390
1923 /*
1924 * qemu blindly sets MADV_HUGEPAGE on all allocations, but s390
1925 * can't handle this properly after s390_enable_sie, so we simply
1926 * ignore the madvise to prevent qemu from causing a SIGSEGV.
1927 */
1928 if (mm_has_pgste(vma->vm_mm))
1929 return 0;
1930#endif
Andrea Arcangelia664b2d2011-01-13 15:47:17 -08001931 /*
1932 * Be somewhat over-protective like KSM for now!
1933 */
Andrea Arcangeli78f11a22011-04-27 15:26:45 -07001934 if (*vm_flags & (VM_HUGEPAGE | VM_NO_THP))
Andrea Arcangelia664b2d2011-01-13 15:47:17 -08001935 return -EINVAL;
1936 *vm_flags &= ~VM_NOHUGEPAGE;
1937 *vm_flags |= VM_HUGEPAGE;
Andrea Arcangeli60ab3242011-01-13 15:47:18 -08001938 /*
1939 * If the vma become good for khugepaged to scan,
1940 * register it here without waiting a page fault that
1941 * may not happen any time soon.
1942 */
David Rientjes6d50e602014-10-29 14:50:31 -07001943 if (unlikely(khugepaged_enter_vma_merge(vma, *vm_flags)))
Andrea Arcangeli60ab3242011-01-13 15:47:18 -08001944 return -ENOMEM;
Andrea Arcangelia664b2d2011-01-13 15:47:17 -08001945 break;
1946 case MADV_NOHUGEPAGE:
1947 /*
1948 * Be somewhat over-protective like KSM for now!
1949 */
Andrea Arcangeli78f11a22011-04-27 15:26:45 -07001950 if (*vm_flags & (VM_NOHUGEPAGE | VM_NO_THP))
Andrea Arcangelia664b2d2011-01-13 15:47:17 -08001951 return -EINVAL;
1952 *vm_flags &= ~VM_HUGEPAGE;
1953 *vm_flags |= VM_NOHUGEPAGE;
Andrea Arcangeli60ab3242011-01-13 15:47:18 -08001954 /*
1955 * Setting VM_NOHUGEPAGE will prevent khugepaged from scanning
1956 * this vma even if we leave the mm registered in khugepaged if
1957 * it got registered before VM_NOHUGEPAGE was set.
1958 */
Andrea Arcangelia664b2d2011-01-13 15:47:17 -08001959 break;
1960 }
Andrea Arcangeli0af4e982011-01-13 15:46:55 -08001961
1962 return 0;
1963}
1964
Andrea Arcangeliba761492011-01-13 15:46:58 -08001965static int __init khugepaged_slab_init(void)
1966{
1967 mm_slot_cache = kmem_cache_create("khugepaged_mm_slot",
1968 sizeof(struct mm_slot),
1969 __alignof__(struct mm_slot), 0, NULL);
1970 if (!mm_slot_cache)
1971 return -ENOMEM;
1972
1973 return 0;
1974}
1975
Andrea Arcangeliba761492011-01-13 15:46:58 -08001976static inline struct mm_slot *alloc_mm_slot(void)
1977{
1978 if (!mm_slot_cache) /* initialization failed */
1979 return NULL;
1980 return kmem_cache_zalloc(mm_slot_cache, GFP_KERNEL);
1981}
1982
1983static inline void free_mm_slot(struct mm_slot *mm_slot)
1984{
1985 kmem_cache_free(mm_slot_cache, mm_slot);
1986}
1987
Andrea Arcangeliba761492011-01-13 15:46:58 -08001988static struct mm_slot *get_mm_slot(struct mm_struct *mm)
1989{
1990 struct mm_slot *mm_slot;
Andrea Arcangeliba761492011-01-13 15:46:58 -08001991
Sasha Levinb67bfe02013-02-27 17:06:00 -08001992 hash_for_each_possible(mm_slots_hash, mm_slot, hash, (unsigned long)mm)
Andrea Arcangeliba761492011-01-13 15:46:58 -08001993 if (mm == mm_slot->mm)
1994 return mm_slot;
Sasha Levin43b5fbb2013-02-22 16:32:27 -08001995
Andrea Arcangeliba761492011-01-13 15:46:58 -08001996 return NULL;
1997}
1998
1999static void insert_to_mm_slots_hash(struct mm_struct *mm,
2000 struct mm_slot *mm_slot)
2001{
Andrea Arcangeliba761492011-01-13 15:46:58 -08002002 mm_slot->mm = mm;
Sasha Levin43b5fbb2013-02-22 16:32:27 -08002003 hash_add(mm_slots_hash, &mm_slot->hash, (long)mm);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002004}
2005
2006static inline int khugepaged_test_exit(struct mm_struct *mm)
2007{
2008 return atomic_read(&mm->mm_users) == 0;
2009}
2010
2011int __khugepaged_enter(struct mm_struct *mm)
2012{
2013 struct mm_slot *mm_slot;
2014 int wakeup;
2015
2016 mm_slot = alloc_mm_slot();
2017 if (!mm_slot)
2018 return -ENOMEM;
2019
2020 /* __khugepaged_exit() must not run from under us */
Sasha Levin96dad672014-10-09 15:28:39 -07002021 VM_BUG_ON_MM(khugepaged_test_exit(mm), mm);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002022 if (unlikely(test_and_set_bit(MMF_VM_HUGEPAGE, &mm->flags))) {
2023 free_mm_slot(mm_slot);
2024 return 0;
2025 }
2026
2027 spin_lock(&khugepaged_mm_lock);
2028 insert_to_mm_slots_hash(mm, mm_slot);
2029 /*
2030 * Insert just behind the scanning cursor, to let the area settle
2031 * down a little.
2032 */
2033 wakeup = list_empty(&khugepaged_scan.mm_head);
2034 list_add_tail(&mm_slot->mm_node, &khugepaged_scan.mm_head);
2035 spin_unlock(&khugepaged_mm_lock);
2036
2037 atomic_inc(&mm->mm_count);
2038 if (wakeup)
2039 wake_up_interruptible(&khugepaged_wait);
2040
2041 return 0;
2042}
2043
David Rientjes6d50e602014-10-29 14:50:31 -07002044int khugepaged_enter_vma_merge(struct vm_area_struct *vma,
2045 unsigned long vm_flags)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002046{
2047 unsigned long hstart, hend;
2048 if (!vma->anon_vma)
2049 /*
2050 * Not yet faulted in so we will register later in the
2051 * page fault if needed.
2052 */
2053 return 0;
Andrea Arcangeli78f11a22011-04-27 15:26:45 -07002054 if (vma->vm_ops)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002055 /* khugepaged not yet working on file or special mappings */
2056 return 0;
David Rientjes6d50e602014-10-29 14:50:31 -07002057 VM_BUG_ON_VMA(vm_flags & VM_NO_THP, vma);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002058 hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
2059 hend = vma->vm_end & HPAGE_PMD_MASK;
2060 if (hstart < hend)
David Rientjes6d50e602014-10-29 14:50:31 -07002061 return khugepaged_enter(vma, vm_flags);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002062 return 0;
2063}
2064
2065void __khugepaged_exit(struct mm_struct *mm)
2066{
2067 struct mm_slot *mm_slot;
2068 int free = 0;
2069
2070 spin_lock(&khugepaged_mm_lock);
2071 mm_slot = get_mm_slot(mm);
2072 if (mm_slot && khugepaged_scan.mm_slot != mm_slot) {
Sasha Levin43b5fbb2013-02-22 16:32:27 -08002073 hash_del(&mm_slot->hash);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002074 list_del(&mm_slot->mm_node);
2075 free = 1;
2076 }
Chris Wrightd788e802011-07-25 17:12:14 -07002077 spin_unlock(&khugepaged_mm_lock);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002078
2079 if (free) {
Andrea Arcangeliba761492011-01-13 15:46:58 -08002080 clear_bit(MMF_VM_HUGEPAGE, &mm->flags);
2081 free_mm_slot(mm_slot);
2082 mmdrop(mm);
2083 } else if (mm_slot) {
Andrea Arcangeliba761492011-01-13 15:46:58 -08002084 /*
2085 * This is required to serialize against
2086 * khugepaged_test_exit() (which is guaranteed to run
2087 * under mmap sem read mode). Stop here (after we
2088 * return all pagetables will be destroyed) until
2089 * khugepaged has finished working on the pagetables
2090 * under the mmap_sem.
2091 */
2092 down_write(&mm->mmap_sem);
2093 up_write(&mm->mmap_sem);
Chris Wrightd788e802011-07-25 17:12:14 -07002094 }
Andrea Arcangeliba761492011-01-13 15:46:58 -08002095}
2096
2097static void release_pte_page(struct page *page)
2098{
2099 /* 0 stands for page_is_file_cache(page) == false */
2100 dec_zone_page_state(page, NR_ISOLATED_ANON + 0);
2101 unlock_page(page);
2102 putback_lru_page(page);
2103}
2104
2105static void release_pte_pages(pte_t *pte, pte_t *_pte)
2106{
2107 while (--_pte >= pte) {
2108 pte_t pteval = *_pte;
2109 if (!pte_none(pteval))
2110 release_pte_page(pte_page(pteval));
2111 }
2112}
2113
Andrea Arcangeliba761492011-01-13 15:46:58 -08002114static int __collapse_huge_page_isolate(struct vm_area_struct *vma,
2115 unsigned long address,
2116 pte_t *pte)
2117{
2118 struct page *page;
2119 pte_t *_pte;
Bob Liu344aa352012-12-11 16:00:34 -08002120 int referenced = 0, none = 0;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002121 for (_pte = pte; _pte < pte+HPAGE_PMD_NR;
2122 _pte++, address += PAGE_SIZE) {
2123 pte_t pteval = *_pte;
2124 if (pte_none(pteval)) {
2125 if (++none <= khugepaged_max_ptes_none)
2126 continue;
Bob Liu344aa352012-12-11 16:00:34 -08002127 else
Andrea Arcangeliba761492011-01-13 15:46:58 -08002128 goto out;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002129 }
Bob Liu344aa352012-12-11 16:00:34 -08002130 if (!pte_present(pteval) || !pte_write(pteval))
Andrea Arcangeliba761492011-01-13 15:46:58 -08002131 goto out;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002132 page = vm_normal_page(vma, address, pteval);
Bob Liu344aa352012-12-11 16:00:34 -08002133 if (unlikely(!page))
Andrea Arcangeliba761492011-01-13 15:46:58 -08002134 goto out;
Bob Liu344aa352012-12-11 16:00:34 -08002135
Sasha Levin309381fea2014-01-23 15:52:54 -08002136 VM_BUG_ON_PAGE(PageCompound(page), page);
2137 VM_BUG_ON_PAGE(!PageAnon(page), page);
2138 VM_BUG_ON_PAGE(!PageSwapBacked(page), page);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002139
2140 /* cannot use mapcount: can't collapse if there's a gup pin */
Bob Liu344aa352012-12-11 16:00:34 -08002141 if (page_count(page) != 1)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002142 goto out;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002143 /*
2144 * We can do it before isolate_lru_page because the
2145 * page can't be freed from under us. NOTE: PG_lock
2146 * is needed to serialize against split_huge_page
2147 * when invoked from the VM.
2148 */
Bob Liu344aa352012-12-11 16:00:34 -08002149 if (!trylock_page(page))
Andrea Arcangeliba761492011-01-13 15:46:58 -08002150 goto out;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002151 /*
2152 * Isolate the page to avoid collapsing an hugepage
2153 * currently in use by the VM.
2154 */
2155 if (isolate_lru_page(page)) {
2156 unlock_page(page);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002157 goto out;
2158 }
2159 /* 0 stands for page_is_file_cache(page) == false */
2160 inc_zone_page_state(page, NR_ISOLATED_ANON + 0);
Sasha Levin309381fea2014-01-23 15:52:54 -08002161 VM_BUG_ON_PAGE(!PageLocked(page), page);
2162 VM_BUG_ON_PAGE(PageLRU(page), page);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002163
2164 /* If there is no mapped pte young don't collapse the page */
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08002165 if (pte_young(pteval) || PageReferenced(page) ||
2166 mmu_notifier_test_young(vma->vm_mm, address))
Andrea Arcangeliba761492011-01-13 15:46:58 -08002167 referenced = 1;
2168 }
Bob Liu344aa352012-12-11 16:00:34 -08002169 if (likely(referenced))
2170 return 1;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002171out:
Bob Liu344aa352012-12-11 16:00:34 -08002172 release_pte_pages(pte, _pte);
2173 return 0;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002174}
2175
2176static void __collapse_huge_page_copy(pte_t *pte, struct page *page,
2177 struct vm_area_struct *vma,
2178 unsigned long address,
2179 spinlock_t *ptl)
2180{
2181 pte_t *_pte;
2182 for (_pte = pte; _pte < pte+HPAGE_PMD_NR; _pte++) {
2183 pte_t pteval = *_pte;
2184 struct page *src_page;
2185
2186 if (pte_none(pteval)) {
2187 clear_user_highpage(page, address);
2188 add_mm_counter(vma->vm_mm, MM_ANONPAGES, 1);
2189 } else {
2190 src_page = pte_page(pteval);
2191 copy_user_highpage(page, src_page, address, vma);
Sasha Levin309381fea2014-01-23 15:52:54 -08002192 VM_BUG_ON_PAGE(page_mapcount(src_page) != 1, src_page);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002193 release_pte_page(src_page);
2194 /*
2195 * ptl mostly unnecessary, but preempt has to
2196 * be disabled to update the per-cpu stats
2197 * inside page_remove_rmap().
2198 */
2199 spin_lock(ptl);
2200 /*
2201 * paravirt calls inside pte_clear here are
2202 * superfluous.
2203 */
2204 pte_clear(vma->vm_mm, address, _pte);
2205 page_remove_rmap(src_page);
2206 spin_unlock(ptl);
2207 free_page_and_swap_cache(src_page);
2208 }
2209
2210 address += PAGE_SIZE;
2211 page++;
2212 }
2213}
2214
Xiao Guangrong26234f32012-10-08 16:29:51 -07002215static void khugepaged_alloc_sleep(void)
2216{
2217 wait_event_freezable_timeout(khugepaged_wait, false,
2218 msecs_to_jiffies(khugepaged_alloc_sleep_millisecs));
2219}
2220
Bob Liu9f1b8682013-11-12 15:07:37 -08002221static int khugepaged_node_load[MAX_NUMNODES];
2222
David Rientjes14a4e212014-08-06 16:07:29 -07002223static bool khugepaged_scan_abort(int nid)
2224{
2225 int i;
2226
2227 /*
2228 * If zone_reclaim_mode is disabled, then no extra effort is made to
2229 * allocate memory locally.
2230 */
2231 if (!zone_reclaim_mode)
2232 return false;
2233
2234 /* If there is a count for this node already, it must be acceptable */
2235 if (khugepaged_node_load[nid])
2236 return false;
2237
2238 for (i = 0; i < MAX_NUMNODES; i++) {
2239 if (!khugepaged_node_load[i])
2240 continue;
2241 if (node_distance(nid, i) > RECLAIM_DISTANCE)
2242 return true;
2243 }
2244 return false;
2245}
2246
Xiao Guangrong26234f32012-10-08 16:29:51 -07002247#ifdef CONFIG_NUMA
Bob Liu9f1b8682013-11-12 15:07:37 -08002248static int khugepaged_find_target_node(void)
2249{
2250 static int last_khugepaged_target_node = NUMA_NO_NODE;
2251 int nid, target_node = 0, max_value = 0;
2252
2253 /* find first node with max normal pages hit */
2254 for (nid = 0; nid < MAX_NUMNODES; nid++)
2255 if (khugepaged_node_load[nid] > max_value) {
2256 max_value = khugepaged_node_load[nid];
2257 target_node = nid;
2258 }
2259
2260 /* do some balance if several nodes have the same hit record */
2261 if (target_node <= last_khugepaged_target_node)
2262 for (nid = last_khugepaged_target_node + 1; nid < MAX_NUMNODES;
2263 nid++)
2264 if (max_value == khugepaged_node_load[nid]) {
2265 target_node = nid;
2266 break;
2267 }
2268
2269 last_khugepaged_target_node = target_node;
2270 return target_node;
2271}
2272
Xiao Guangrong26234f32012-10-08 16:29:51 -07002273static bool khugepaged_prealloc_page(struct page **hpage, bool *wait)
2274{
2275 if (IS_ERR(*hpage)) {
2276 if (!*wait)
2277 return false;
2278
2279 *wait = false;
Xiao Guangronge3b41262012-10-08 16:32:57 -07002280 *hpage = NULL;
Xiao Guangrong26234f32012-10-08 16:29:51 -07002281 khugepaged_alloc_sleep();
2282 } else if (*hpage) {
2283 put_page(*hpage);
2284 *hpage = NULL;
2285 }
2286
2287 return true;
2288}
2289
2290static struct page
2291*khugepaged_alloc_page(struct page **hpage, struct mm_struct *mm,
2292 struct vm_area_struct *vma, unsigned long address,
2293 int node)
2294{
Sasha Levin309381fea2014-01-23 15:52:54 -08002295 VM_BUG_ON_PAGE(*hpage, *hpage);
Vlastimil Babka8b164562014-10-09 15:27:00 -07002296
Xiao Guangrong26234f32012-10-08 16:29:51 -07002297 /*
Vlastimil Babka8b164562014-10-09 15:27:00 -07002298 * Before allocating the hugepage, release the mmap_sem read lock.
2299 * The allocation can take potentially a long time if it involves
2300 * sync compaction, and we do not need to hold the mmap_sem during
2301 * that. We will recheck the vma after taking it again in write mode.
Xiao Guangrong26234f32012-10-08 16:29:51 -07002302 */
2303 up_read(&mm->mmap_sem);
Vlastimil Babka8b164562014-10-09 15:27:00 -07002304
2305 *hpage = alloc_pages_exact_node(node, alloc_hugepage_gfpmask(
2306 khugepaged_defrag(), __GFP_OTHER_NODE), HPAGE_PMD_ORDER);
Xiao Guangrong26234f32012-10-08 16:29:51 -07002307 if (unlikely(!*hpage)) {
2308 count_vm_event(THP_COLLAPSE_ALLOC_FAILED);
2309 *hpage = ERR_PTR(-ENOMEM);
2310 return NULL;
2311 }
2312
2313 count_vm_event(THP_COLLAPSE_ALLOC);
2314 return *hpage;
2315}
2316#else
Bob Liu9f1b8682013-11-12 15:07:37 -08002317static int khugepaged_find_target_node(void)
2318{
2319 return 0;
2320}
2321
Bob Liu10dc4152013-11-12 15:07:35 -08002322static inline struct page *alloc_hugepage(int defrag)
2323{
2324 return alloc_pages(alloc_hugepage_gfpmask(defrag, 0),
2325 HPAGE_PMD_ORDER);
2326}
2327
Xiao Guangrong26234f32012-10-08 16:29:51 -07002328static struct page *khugepaged_alloc_hugepage(bool *wait)
2329{
2330 struct page *hpage;
2331
2332 do {
2333 hpage = alloc_hugepage(khugepaged_defrag());
2334 if (!hpage) {
2335 count_vm_event(THP_COLLAPSE_ALLOC_FAILED);
2336 if (!*wait)
2337 return NULL;
2338
2339 *wait = false;
2340 khugepaged_alloc_sleep();
2341 } else
2342 count_vm_event(THP_COLLAPSE_ALLOC);
2343 } while (unlikely(!hpage) && likely(khugepaged_enabled()));
2344
2345 return hpage;
2346}
2347
2348static bool khugepaged_prealloc_page(struct page **hpage, bool *wait)
2349{
2350 if (!*hpage)
2351 *hpage = khugepaged_alloc_hugepage(wait);
2352
2353 if (unlikely(!*hpage))
2354 return false;
2355
2356 return true;
2357}
2358
2359static struct page
2360*khugepaged_alloc_page(struct page **hpage, struct mm_struct *mm,
2361 struct vm_area_struct *vma, unsigned long address,
2362 int node)
2363{
2364 up_read(&mm->mmap_sem);
2365 VM_BUG_ON(!*hpage);
2366 return *hpage;
2367}
2368#endif
2369
Bob Liufa475e52012-12-11 16:00:39 -08002370static bool hugepage_vma_check(struct vm_area_struct *vma)
2371{
2372 if ((!(vma->vm_flags & VM_HUGEPAGE) && !khugepaged_always()) ||
2373 (vma->vm_flags & VM_NOHUGEPAGE))
2374 return false;
2375
2376 if (!vma->anon_vma || vma->vm_ops)
2377 return false;
2378 if (is_vma_temporary_stack(vma))
2379 return false;
Sasha Levin81d1b092014-10-09 15:28:10 -07002380 VM_BUG_ON_VMA(vma->vm_flags & VM_NO_THP, vma);
Bob Liufa475e52012-12-11 16:00:39 -08002381 return true;
2382}
2383
Andrea Arcangeliba761492011-01-13 15:46:58 -08002384static void collapse_huge_page(struct mm_struct *mm,
Xiao Guangrong26234f32012-10-08 16:29:51 -07002385 unsigned long address,
2386 struct page **hpage,
2387 struct vm_area_struct *vma,
2388 int node)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002389{
Andrea Arcangeliba761492011-01-13 15:46:58 -08002390 pmd_t *pmd, _pmd;
2391 pte_t *pte;
2392 pgtable_t pgtable;
2393 struct page *new_page;
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002394 spinlock_t *pmd_ptl, *pte_ptl;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002395 int isolated;
2396 unsigned long hstart, hend;
Johannes Weiner00501b52014-08-08 14:19:20 -07002397 struct mem_cgroup *memcg;
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07002398 unsigned long mmun_start; /* For mmu_notifiers */
2399 unsigned long mmun_end; /* For mmu_notifiers */
Andrea Arcangeliba761492011-01-13 15:46:58 -08002400
2401 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
Andrea Arcangeli692e0b32011-05-24 17:12:14 -07002402
Xiao Guangrong26234f32012-10-08 16:29:51 -07002403 /* release the mmap_sem read lock. */
2404 new_page = khugepaged_alloc_page(hpage, mm, vma, address, node);
2405 if (!new_page)
Andrea Arcangelice83d212011-01-13 15:47:06 -08002406 return;
Andrea Arcangelice83d212011-01-13 15:47:06 -08002407
Johannes Weiner00501b52014-08-08 14:19:20 -07002408 if (unlikely(mem_cgroup_try_charge(new_page, mm,
2409 GFP_TRANSHUGE, &memcg)))
Andrea Arcangeli692e0b32011-05-24 17:12:14 -07002410 return;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002411
2412 /*
2413 * Prevent all access to pagetables with the exception of
2414 * gup_fast later hanlded by the ptep_clear_flush and the VM
2415 * handled by the anon_vma lock + PG_lock.
2416 */
2417 down_write(&mm->mmap_sem);
2418 if (unlikely(khugepaged_test_exit(mm)))
2419 goto out;
2420
2421 vma = find_vma(mm, address);
Libina8f531eb2013-09-11 14:20:38 -07002422 if (!vma)
2423 goto out;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002424 hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
2425 hend = vma->vm_end & HPAGE_PMD_MASK;
2426 if (address < hstart || address + HPAGE_PMD_SIZE > hend)
2427 goto out;
Bob Liufa475e52012-12-11 16:00:39 -08002428 if (!hugepage_vma_check(vma))
Andrea Arcangeliba761492011-01-13 15:46:58 -08002429 goto out;
Bob Liu62190492012-12-11 16:00:37 -08002430 pmd = mm_find_pmd(mm, address);
2431 if (!pmd)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002432 goto out;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002433
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +00002434 anon_vma_lock_write(vma->anon_vma);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002435
2436 pte = pte_offset_map(pmd, address);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002437 pte_ptl = pte_lockptr(mm, pmd);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002438
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07002439 mmun_start = address;
2440 mmun_end = address + HPAGE_PMD_SIZE;
2441 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002442 pmd_ptl = pmd_lock(mm, pmd); /* probably unnecessary */
Andrea Arcangeliba761492011-01-13 15:46:58 -08002443 /*
2444 * After this gup_fast can't run anymore. This also removes
2445 * any huge TLB entry from the CPU so we won't allow
2446 * huge and small TLB entries for the same virtual address
2447 * to avoid the risk of CPU bugs in that area.
2448 */
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07002449 _pmd = pmdp_clear_flush(vma, address, pmd);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002450 spin_unlock(pmd_ptl);
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07002451 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002452
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002453 spin_lock(pte_ptl);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002454 isolated = __collapse_huge_page_isolate(vma, address, pte);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002455 spin_unlock(pte_ptl);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002456
2457 if (unlikely(!isolated)) {
Johannes Weiner453c7192011-01-20 14:44:18 -08002458 pte_unmap(pte);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002459 spin_lock(pmd_ptl);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002460 BUG_ON(!pmd_none(*pmd));
Aneesh Kumar K.V7c342512013-05-24 15:55:21 -07002461 /*
2462 * We can only use set_pmd_at when establishing
2463 * hugepmds and never for establishing regular pmds that
2464 * points to regular pagetables. Use pmd_populate for that
2465 */
2466 pmd_populate(mm, pmd, pmd_pgtable(_pmd));
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002467 spin_unlock(pmd_ptl);
Konstantin Khlebnikov08b52702013-02-22 16:34:40 -08002468 anon_vma_unlock_write(vma->anon_vma);
Andrea Arcangelice83d212011-01-13 15:47:06 -08002469 goto out;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002470 }
2471
2472 /*
2473 * All pages are isolated and locked so anon_vma rmap
2474 * can't run anymore.
2475 */
Konstantin Khlebnikov08b52702013-02-22 16:34:40 -08002476 anon_vma_unlock_write(vma->anon_vma);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002477
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002478 __collapse_huge_page_copy(pte, new_page, vma, address, pte_ptl);
Johannes Weiner453c7192011-01-20 14:44:18 -08002479 pte_unmap(pte);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002480 __SetPageUptodate(new_page);
2481 pgtable = pmd_pgtable(_pmd);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002482
Kirill A. Shutemov31223592013-09-12 15:14:01 -07002483 _pmd = mk_huge_pmd(new_page, vma->vm_page_prot);
2484 _pmd = maybe_pmd_mkwrite(pmd_mkdirty(_pmd), vma);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002485
2486 /*
2487 * spin_lock() below is not the equivalent of smp_wmb(), so
2488 * this is needed to avoid the copy_huge_page writes to become
2489 * visible after the set_pmd_at() write.
2490 */
2491 smp_wmb();
2492
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002493 spin_lock(pmd_ptl);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002494 BUG_ON(!pmd_none(*pmd));
2495 page_add_new_anon_rmap(new_page, vma, address);
Johannes Weiner00501b52014-08-08 14:19:20 -07002496 mem_cgroup_commit_charge(new_page, memcg, false);
2497 lru_cache_add_active_or_unevictable(new_page, vma);
Aneesh Kumar K.Vfce144b2013-06-05 17:14:06 -07002498 pgtable_trans_huge_deposit(mm, pmd, pgtable);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002499 set_pmd_at(mm, address, pmd, _pmd);
David Millerb113da62012-10-08 16:34:25 -07002500 update_mmu_cache_pmd(vma, address, pmd);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002501 spin_unlock(pmd_ptl);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002502
2503 *hpage = NULL;
Xiao Guangrong420256ef2012-10-08 16:29:49 -07002504
Andrea Arcangeliba761492011-01-13 15:46:58 -08002505 khugepaged_pages_collapsed++;
Andrea Arcangelice83d212011-01-13 15:47:06 -08002506out_up_write:
Andrea Arcangeliba761492011-01-13 15:46:58 -08002507 up_write(&mm->mmap_sem);
Andrea Arcangeli0bbbc0b2011-01-13 15:47:05 -08002508 return;
2509
Andrea Arcangelice83d212011-01-13 15:47:06 -08002510out:
Johannes Weiner00501b52014-08-08 14:19:20 -07002511 mem_cgroup_cancel_charge(new_page, memcg);
Andrea Arcangelice83d212011-01-13 15:47:06 -08002512 goto out_up_write;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002513}
2514
2515static int khugepaged_scan_pmd(struct mm_struct *mm,
2516 struct vm_area_struct *vma,
2517 unsigned long address,
2518 struct page **hpage)
2519{
Andrea Arcangeliba761492011-01-13 15:46:58 -08002520 pmd_t *pmd;
2521 pte_t *pte, *_pte;
2522 int ret = 0, referenced = 0, none = 0;
2523 struct page *page;
2524 unsigned long _address;
2525 spinlock_t *ptl;
David Rientjes00ef2d22013-02-22 16:35:36 -08002526 int node = NUMA_NO_NODE;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002527
2528 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
2529
Bob Liu62190492012-12-11 16:00:37 -08002530 pmd = mm_find_pmd(mm, address);
2531 if (!pmd)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002532 goto out;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002533
Bob Liu9f1b8682013-11-12 15:07:37 -08002534 memset(khugepaged_node_load, 0, sizeof(khugepaged_node_load));
Andrea Arcangeliba761492011-01-13 15:46:58 -08002535 pte = pte_offset_map_lock(mm, pmd, address, &ptl);
2536 for (_address = address, _pte = pte; _pte < pte+HPAGE_PMD_NR;
2537 _pte++, _address += PAGE_SIZE) {
2538 pte_t pteval = *_pte;
2539 if (pte_none(pteval)) {
2540 if (++none <= khugepaged_max_ptes_none)
2541 continue;
2542 else
2543 goto out_unmap;
2544 }
2545 if (!pte_present(pteval) || !pte_write(pteval))
2546 goto out_unmap;
2547 page = vm_normal_page(vma, _address, pteval);
2548 if (unlikely(!page))
2549 goto out_unmap;
Andi Kleen5c4b4be2011-03-04 17:36:32 -08002550 /*
Bob Liu9f1b8682013-11-12 15:07:37 -08002551 * Record which node the original page is from and save this
2552 * information to khugepaged_node_load[].
2553 * Khupaged will allocate hugepage from the node has the max
2554 * hit record.
Andi Kleen5c4b4be2011-03-04 17:36:32 -08002555 */
Bob Liu9f1b8682013-11-12 15:07:37 -08002556 node = page_to_nid(page);
David Rientjes14a4e212014-08-06 16:07:29 -07002557 if (khugepaged_scan_abort(node))
2558 goto out_unmap;
Bob Liu9f1b8682013-11-12 15:07:37 -08002559 khugepaged_node_load[node]++;
Sasha Levin309381fea2014-01-23 15:52:54 -08002560 VM_BUG_ON_PAGE(PageCompound(page), page);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002561 if (!PageLRU(page) || PageLocked(page) || !PageAnon(page))
2562 goto out_unmap;
2563 /* cannot use mapcount: can't collapse if there's a gup pin */
2564 if (page_count(page) != 1)
2565 goto out_unmap;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08002566 if (pte_young(pteval) || PageReferenced(page) ||
2567 mmu_notifier_test_young(vma->vm_mm, address))
Andrea Arcangeliba761492011-01-13 15:46:58 -08002568 referenced = 1;
2569 }
2570 if (referenced)
2571 ret = 1;
2572out_unmap:
2573 pte_unmap_unlock(pte, ptl);
Bob Liu9f1b8682013-11-12 15:07:37 -08002574 if (ret) {
2575 node = khugepaged_find_target_node();
Andrea Arcangelice83d212011-01-13 15:47:06 -08002576 /* collapse_huge_page will return with the mmap_sem released */
Andi Kleen5c4b4be2011-03-04 17:36:32 -08002577 collapse_huge_page(mm, address, hpage, vma, node);
Bob Liu9f1b8682013-11-12 15:07:37 -08002578 }
Andrea Arcangeliba761492011-01-13 15:46:58 -08002579out:
2580 return ret;
2581}
2582
2583static void collect_mm_slot(struct mm_slot *mm_slot)
2584{
2585 struct mm_struct *mm = mm_slot->mm;
2586
Hugh Dickinsb9980cd2012-02-08 17:13:40 -08002587 VM_BUG_ON(NR_CPUS != 1 && !spin_is_locked(&khugepaged_mm_lock));
Andrea Arcangeliba761492011-01-13 15:46:58 -08002588
2589 if (khugepaged_test_exit(mm)) {
2590 /* free mm_slot */
Sasha Levin43b5fbb2013-02-22 16:32:27 -08002591 hash_del(&mm_slot->hash);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002592 list_del(&mm_slot->mm_node);
2593
2594 /*
2595 * Not strictly needed because the mm exited already.
2596 *
2597 * clear_bit(MMF_VM_HUGEPAGE, &mm->flags);
2598 */
2599
2600 /* khugepaged_mm_lock actually not necessary for the below */
2601 free_mm_slot(mm_slot);
2602 mmdrop(mm);
2603 }
2604}
2605
2606static unsigned int khugepaged_scan_mm_slot(unsigned int pages,
2607 struct page **hpage)
H Hartley Sweeten2f1da642011-10-31 17:09:25 -07002608 __releases(&khugepaged_mm_lock)
2609 __acquires(&khugepaged_mm_lock)
Andrea Arcangeliba761492011-01-13 15:46:58 -08002610{
2611 struct mm_slot *mm_slot;
2612 struct mm_struct *mm;
2613 struct vm_area_struct *vma;
2614 int progress = 0;
2615
2616 VM_BUG_ON(!pages);
Hugh Dickinsb9980cd2012-02-08 17:13:40 -08002617 VM_BUG_ON(NR_CPUS != 1 && !spin_is_locked(&khugepaged_mm_lock));
Andrea Arcangeliba761492011-01-13 15:46:58 -08002618
2619 if (khugepaged_scan.mm_slot)
2620 mm_slot = khugepaged_scan.mm_slot;
2621 else {
2622 mm_slot = list_entry(khugepaged_scan.mm_head.next,
2623 struct mm_slot, mm_node);
2624 khugepaged_scan.address = 0;
2625 khugepaged_scan.mm_slot = mm_slot;
2626 }
2627 spin_unlock(&khugepaged_mm_lock);
2628
2629 mm = mm_slot->mm;
2630 down_read(&mm->mmap_sem);
2631 if (unlikely(khugepaged_test_exit(mm)))
2632 vma = NULL;
2633 else
2634 vma = find_vma(mm, khugepaged_scan.address);
2635
2636 progress++;
2637 for (; vma; vma = vma->vm_next) {
2638 unsigned long hstart, hend;
2639
2640 cond_resched();
2641 if (unlikely(khugepaged_test_exit(mm))) {
2642 progress++;
2643 break;
2644 }
Bob Liufa475e52012-12-11 16:00:39 -08002645 if (!hugepage_vma_check(vma)) {
2646skip:
Andrea Arcangeliba761492011-01-13 15:46:58 -08002647 progress++;
2648 continue;
2649 }
Andrea Arcangeliba761492011-01-13 15:46:58 -08002650 hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
2651 hend = vma->vm_end & HPAGE_PMD_MASK;
Andrea Arcangelia7d6e4e2011-02-15 19:02:45 +01002652 if (hstart >= hend)
2653 goto skip;
2654 if (khugepaged_scan.address > hend)
2655 goto skip;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002656 if (khugepaged_scan.address < hstart)
2657 khugepaged_scan.address = hstart;
Andrea Arcangelia7d6e4e2011-02-15 19:02:45 +01002658 VM_BUG_ON(khugepaged_scan.address & ~HPAGE_PMD_MASK);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002659
2660 while (khugepaged_scan.address < hend) {
2661 int ret;
2662 cond_resched();
2663 if (unlikely(khugepaged_test_exit(mm)))
2664 goto breakouterloop;
2665
2666 VM_BUG_ON(khugepaged_scan.address < hstart ||
2667 khugepaged_scan.address + HPAGE_PMD_SIZE >
2668 hend);
2669 ret = khugepaged_scan_pmd(mm, vma,
2670 khugepaged_scan.address,
2671 hpage);
2672 /* move to next address */
2673 khugepaged_scan.address += HPAGE_PMD_SIZE;
2674 progress += HPAGE_PMD_NR;
2675 if (ret)
2676 /* we released mmap_sem so break loop */
2677 goto breakouterloop_mmap_sem;
2678 if (progress >= pages)
2679 goto breakouterloop;
2680 }
2681 }
2682breakouterloop:
2683 up_read(&mm->mmap_sem); /* exit_mmap will destroy ptes after this */
2684breakouterloop_mmap_sem:
2685
2686 spin_lock(&khugepaged_mm_lock);
Andrea Arcangelia7d6e4e2011-02-15 19:02:45 +01002687 VM_BUG_ON(khugepaged_scan.mm_slot != mm_slot);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002688 /*
2689 * Release the current mm_slot if this mm is about to die, or
2690 * if we scanned all vmas of this mm.
2691 */
2692 if (khugepaged_test_exit(mm) || !vma) {
2693 /*
2694 * Make sure that if mm_users is reaching zero while
2695 * khugepaged runs here, khugepaged_exit will find
2696 * mm_slot not pointing to the exiting mm.
2697 */
2698 if (mm_slot->mm_node.next != &khugepaged_scan.mm_head) {
2699 khugepaged_scan.mm_slot = list_entry(
2700 mm_slot->mm_node.next,
2701 struct mm_slot, mm_node);
2702 khugepaged_scan.address = 0;
2703 } else {
2704 khugepaged_scan.mm_slot = NULL;
2705 khugepaged_full_scans++;
2706 }
2707
2708 collect_mm_slot(mm_slot);
2709 }
2710
2711 return progress;
2712}
2713
2714static int khugepaged_has_work(void)
2715{
2716 return !list_empty(&khugepaged_scan.mm_head) &&
2717 khugepaged_enabled();
2718}
2719
2720static int khugepaged_wait_event(void)
2721{
2722 return !list_empty(&khugepaged_scan.mm_head) ||
Xiao Guangrong2017c0b2012-10-08 16:29:44 -07002723 kthread_should_stop();
Andrea Arcangeliba761492011-01-13 15:46:58 -08002724}
2725
Xiao Guangrongd5169042012-10-08 16:29:48 -07002726static void khugepaged_do_scan(void)
2727{
2728 struct page *hpage = NULL;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002729 unsigned int progress = 0, pass_through_head = 0;
2730 unsigned int pages = khugepaged_pages_to_scan;
Xiao Guangrongd5169042012-10-08 16:29:48 -07002731 bool wait = true;
Andrea Arcangeliba761492011-01-13 15:46:58 -08002732
2733 barrier(); /* write khugepaged_pages_to_scan to local stack */
2734
2735 while (progress < pages) {
Xiao Guangrong26234f32012-10-08 16:29:51 -07002736 if (!khugepaged_prealloc_page(&hpage, &wait))
Andrea Arcangeli0bbbc0b2011-01-13 15:47:05 -08002737 break;
Xiao Guangrong26234f32012-10-08 16:29:51 -07002738
Xiao Guangrong420256ef2012-10-08 16:29:49 -07002739 cond_resched();
Andrea Arcangeliba761492011-01-13 15:46:58 -08002740
Andrea Arcangeli878aee72011-01-13 15:47:10 -08002741 if (unlikely(kthread_should_stop() || freezing(current)))
2742 break;
2743
Andrea Arcangeliba761492011-01-13 15:46:58 -08002744 spin_lock(&khugepaged_mm_lock);
2745 if (!khugepaged_scan.mm_slot)
2746 pass_through_head++;
2747 if (khugepaged_has_work() &&
2748 pass_through_head < 2)
2749 progress += khugepaged_scan_mm_slot(pages - progress,
Xiao Guangrongd5169042012-10-08 16:29:48 -07002750 &hpage);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002751 else
2752 progress = pages;
2753 spin_unlock(&khugepaged_mm_lock);
2754 }
Andrea Arcangeliba761492011-01-13 15:46:58 -08002755
Xiao Guangrongd5169042012-10-08 16:29:48 -07002756 if (!IS_ERR_OR_NULL(hpage))
2757 put_page(hpage);
Andrea Arcangeli0bbbc0b2011-01-13 15:47:05 -08002758}
2759
Xiao Guangrong2017c0b2012-10-08 16:29:44 -07002760static void khugepaged_wait_work(void)
2761{
2762 try_to_freeze();
2763
2764 if (khugepaged_has_work()) {
2765 if (!khugepaged_scan_sleep_millisecs)
2766 return;
2767
2768 wait_event_freezable_timeout(khugepaged_wait,
2769 kthread_should_stop(),
2770 msecs_to_jiffies(khugepaged_scan_sleep_millisecs));
2771 return;
2772 }
2773
2774 if (khugepaged_enabled())
2775 wait_event_freezable(khugepaged_wait, khugepaged_wait_event());
2776}
2777
Andrea Arcangeliba761492011-01-13 15:46:58 -08002778static int khugepaged(void *none)
2779{
2780 struct mm_slot *mm_slot;
2781
Andrea Arcangeli878aee72011-01-13 15:47:10 -08002782 set_freezable();
Dongsheng Yang8698a742014-03-11 18:09:12 +08002783 set_user_nice(current, MAX_NICE);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002784
Xiao Guangrongb7231782012-10-08 16:29:54 -07002785 while (!kthread_should_stop()) {
2786 khugepaged_do_scan();
2787 khugepaged_wait_work();
2788 }
Andrea Arcangeliba761492011-01-13 15:46:58 -08002789
2790 spin_lock(&khugepaged_mm_lock);
2791 mm_slot = khugepaged_scan.mm_slot;
2792 khugepaged_scan.mm_slot = NULL;
2793 if (mm_slot)
2794 collect_mm_slot(mm_slot);
2795 spin_unlock(&khugepaged_mm_lock);
Andrea Arcangeliba761492011-01-13 15:46:58 -08002796 return 0;
2797}
2798
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002799static void __split_huge_zero_page_pmd(struct vm_area_struct *vma,
2800 unsigned long haddr, pmd_t *pmd)
2801{
2802 struct mm_struct *mm = vma->vm_mm;
2803 pgtable_t pgtable;
2804 pmd_t _pmd;
2805 int i;
2806
Joerg Roedel34ee6452014-11-13 13:46:09 +11002807 pmdp_clear_flush_notify(vma, haddr, pmd);
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002808 /* leave pmd empty until pte is filled */
2809
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -07002810 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002811 pmd_populate(mm, &_pmd, pgtable);
2812
2813 for (i = 0; i < HPAGE_PMD_NR; i++, haddr += PAGE_SIZE) {
2814 pte_t *pte, entry;
2815 entry = pfn_pte(my_zero_pfn(haddr), vma->vm_page_prot);
2816 entry = pte_mkspecial(entry);
2817 pte = pte_offset_map(&_pmd, haddr);
2818 VM_BUG_ON(!pte_none(*pte));
2819 set_pte_at(mm, haddr, pte, entry);
2820 pte_unmap(pte);
2821 }
2822 smp_wmb(); /* make pte visible before pmd */
2823 pmd_populate(mm, pmd, pgtable);
Kirill A. Shutemov97ae1742012-12-12 13:51:06 -08002824 put_huge_zero_page();
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002825}
2826
Kirill A. Shutemove1803772012-12-12 13:50:59 -08002827void __split_huge_page_pmd(struct vm_area_struct *vma, unsigned long address,
2828 pmd_t *pmd)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08002829{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002830 spinlock_t *ptl;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08002831 struct page *page;
Kirill A. Shutemove1803772012-12-12 13:50:59 -08002832 struct mm_struct *mm = vma->vm_mm;
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002833 unsigned long haddr = address & HPAGE_PMD_MASK;
2834 unsigned long mmun_start; /* For mmu_notifiers */
2835 unsigned long mmun_end; /* For mmu_notifiers */
Kirill A. Shutemove1803772012-12-12 13:50:59 -08002836
2837 BUG_ON(vma->vm_start > haddr || vma->vm_end < haddr + HPAGE_PMD_SIZE);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08002838
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002839 mmun_start = haddr;
2840 mmun_end = haddr + HPAGE_PMD_SIZE;
Hugh Dickins750e8162013-10-16 13:47:08 -07002841again:
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002842 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002843 ptl = pmd_lock(mm, pmd);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08002844 if (unlikely(!pmd_trans_huge(*pmd))) {
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002845 spin_unlock(ptl);
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002846 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
2847 return;
2848 }
2849 if (is_huge_zero_pmd(*pmd)) {
2850 __split_huge_zero_page_pmd(vma, haddr, pmd);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002851 spin_unlock(ptl);
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002852 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08002853 return;
2854 }
2855 page = pmd_page(*pmd);
Sasha Levin309381fea2014-01-23 15:52:54 -08002856 VM_BUG_ON_PAGE(!page_count(page), page);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08002857 get_page(page);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002858 spin_unlock(ptl);
Kirill A. Shutemovc5a647d2012-12-12 13:51:00 -08002859 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08002860
2861 split_huge_page(page);
2862
2863 put_page(page);
Hugh Dickins750e8162013-10-16 13:47:08 -07002864
2865 /*
2866 * We don't always have down_write of mmap_sem here: a racing
2867 * do_huge_pmd_wp_page() might have copied-on-write to another
2868 * huge page before our split_huge_page() got the anon_vma lock.
2869 */
2870 if (unlikely(pmd_trans_huge(*pmd)))
2871 goto again;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08002872}
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002873
Kirill A. Shutemove1803772012-12-12 13:50:59 -08002874void split_huge_page_pmd_mm(struct mm_struct *mm, unsigned long address,
2875 pmd_t *pmd)
2876{
2877 struct vm_area_struct *vma;
2878
2879 vma = find_vma(mm, address);
2880 BUG_ON(vma == NULL);
2881 split_huge_page_pmd(vma, address, pmd);
2882}
2883
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002884static void split_huge_page_address(struct mm_struct *mm,
2885 unsigned long address)
2886{
Hugh Dickinsf72e7dc2014-06-23 13:22:05 -07002887 pgd_t *pgd;
2888 pud_t *pud;
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002889 pmd_t *pmd;
2890
2891 VM_BUG_ON(!(address & ~HPAGE_PMD_MASK));
2892
Hugh Dickinsf72e7dc2014-06-23 13:22:05 -07002893 pgd = pgd_offset(mm, address);
2894 if (!pgd_present(*pgd))
2895 return;
2896
2897 pud = pud_offset(pgd, address);
2898 if (!pud_present(*pud))
2899 return;
2900
2901 pmd = pmd_offset(pud, address);
2902 if (!pmd_present(*pmd))
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002903 return;
2904 /*
2905 * Caller holds the mmap_sem write mode, so a huge pmd cannot
2906 * materialize from under us.
2907 */
Kirill A. Shutemove1803772012-12-12 13:50:59 -08002908 split_huge_page_pmd_mm(mm, address, pmd);
Andrea Arcangeli94fcc582011-01-13 15:47:08 -08002909}
2910
2911void __vma_adjust_trans_huge(struct vm_area_struct *vma,
2912 unsigned long start,
2913 unsigned long end,
2914 long adjust_next)
2915{
2916 /*
2917 * If the new start address isn't hpage aligned and it could
2918 * previously contain an hugepage: check if we need to split
2919 * an huge pmd.
2920 */
2921 if (start & ~HPAGE_PMD_MASK &&
2922 (start & HPAGE_PMD_MASK) >= vma->vm_start &&
2923 (start & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE <= vma->vm_end)
2924 split_huge_page_address(vma->vm_mm, start);
2925
2926 /*
2927 * If the new end address isn't hpage aligned and it could
2928 * previously contain an hugepage: check if we need to split
2929 * an huge pmd.
2930 */
2931 if (end & ~HPAGE_PMD_MASK &&
2932 (end & HPAGE_PMD_MASK) >= vma->vm_start &&
2933 (end & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE <= vma->vm_end)
2934 split_huge_page_address(vma->vm_mm, end);
2935
2936 /*
2937 * If we're also updating the vma->vm_next->vm_start, if the new
2938 * vm_next->vm_start isn't page aligned and it could previously
2939 * contain an hugepage: check if we need to split an huge pmd.
2940 */
2941 if (adjust_next > 0) {
2942 struct vm_area_struct *next = vma->vm_next;
2943 unsigned long nstart = next->vm_start;
2944 nstart += adjust_next << PAGE_SHIFT;
2945 if (nstart & ~HPAGE_PMD_MASK &&
2946 (nstart & HPAGE_PMD_MASK) >= next->vm_start &&
2947 (nstart & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE <= next->vm_end)
2948 split_huge_page_address(next->vm_mm, nstart);
2949 }
2950}