Blame view

mm/huge_memory.c 78.1 KB
71e3aac07   Andrea Arcangeli   thp: transparent ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  /*
   *  Copyright (C) 2009  Red Hat, Inc.
   *
   *  This work is licensed under the terms of the GNU GPL, version 2. See
   *  the COPYING file in the top-level directory.
   */
  
  #include <linux/mm.h>
  #include <linux/sched.h>
  #include <linux/highmem.h>
  #include <linux/hugetlb.h>
  #include <linux/mmu_notifier.h>
  #include <linux/rmap.h>
  #include <linux/swap.h>
97ae17497   Kirill A. Shutemov   thp: implement re...
15
  #include <linux/shrinker.h>
ba76149f4   Andrea Arcangeli   thp: khugepaged
16
17
18
  #include <linux/mm_inline.h>
  #include <linux/kthread.h>
  #include <linux/khugepaged.h>
878aee7d6   Andrea Arcangeli   thp: freeze khuge...
19
  #include <linux/freezer.h>
a664b2d85   Andrea Arcangeli   thp: madvise(MADV...
20
  #include <linux/mman.h>
325adeb55   Ralf Baechle   mm: huge_memory: ...
21
  #include <linux/pagemap.h>
4daae3b4b   Mel Gorman   mm: mempolicy: Us...
22
  #include <linux/migrate.h>
43b5fbbd2   Sasha Levin   mm/huge_memory.c:...
23
  #include <linux/hashtable.h>
97ae17497   Kirill A. Shutemov   thp: implement re...
24

71e3aac07   Andrea Arcangeli   thp: transparent ...
25
26
27
  #include <asm/tlb.h>
  #include <asm/pgalloc.h>
  #include "internal.h"
ba76149f4   Andrea Arcangeli   thp: khugepaged
28
  /*
8bfa3f9a0   Jianguo Wu   mm/huge_memory.c:...
29
30
31
32
33
34
   * By default transparent hugepage support is disabled in order that avoid
   * to risk increase the memory footprint of applications without a guaranteed
   * benefit. When transparent hugepage support is enabled, is for all mappings,
   * and khugepaged scans all mappings.
   * Defrag is invoked by khugepaged hugepage allocations and by page faults
   * for all hugepage allocations.
ba76149f4   Andrea Arcangeli   thp: khugepaged
35
   */
71e3aac07   Andrea Arcangeli   thp: transparent ...
36
  unsigned long transparent_hugepage_flags __read_mostly =
13ece886d   Andrea Arcangeli   thp: transparent ...
37
  #ifdef CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS
ba76149f4   Andrea Arcangeli   thp: khugepaged
38
  	(1<<TRANSPARENT_HUGEPAGE_FLAG)|
13ece886d   Andrea Arcangeli   thp: transparent ...
39
40
41
42
  #endif
  #ifdef CONFIG_TRANSPARENT_HUGEPAGE_MADVISE
  	(1<<TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG)|
  #endif
d39d33c33   Andrea Arcangeli   thp: enable direc...
43
  	(1<<TRANSPARENT_HUGEPAGE_DEFRAG_FLAG)|
79da5407e   Kirill A. Shutemov   thp: introduce sy...
44
45
  	(1<<TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG)|
  	(1<<TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
ba76149f4   Andrea Arcangeli   thp: khugepaged
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
  
  /* default scan 8*512 pte (or vmas) every 30 second */
  static unsigned int khugepaged_pages_to_scan __read_mostly = HPAGE_PMD_NR*8;
  static unsigned int khugepaged_pages_collapsed;
  static unsigned int khugepaged_full_scans;
  static unsigned int khugepaged_scan_sleep_millisecs __read_mostly = 10000;
  /* during fragmentation poll the hugepage allocator once every minute */
  static unsigned int khugepaged_alloc_sleep_millisecs __read_mostly = 60000;
  static struct task_struct *khugepaged_thread __read_mostly;
  static DEFINE_MUTEX(khugepaged_mutex);
  static DEFINE_SPINLOCK(khugepaged_mm_lock);
  static DECLARE_WAIT_QUEUE_HEAD(khugepaged_wait);
  /*
   * default collapse hugepages if there is at least one pte mapped like
   * it would have happened if the vma was large enough during page
   * fault.
   */
  static unsigned int khugepaged_max_ptes_none __read_mostly = HPAGE_PMD_NR-1;
  
  static int khugepaged(void *none);
ba76149f4   Andrea Arcangeli   thp: khugepaged
66
  static int khugepaged_slab_init(void);
ba76149f4   Andrea Arcangeli   thp: khugepaged
67

43b5fbbd2   Sasha Levin   mm/huge_memory.c:...
68
69
  #define MM_SLOTS_HASH_BITS 10
  static __read_mostly DEFINE_HASHTABLE(mm_slots_hash, MM_SLOTS_HASH_BITS);
ba76149f4   Andrea Arcangeli   thp: khugepaged
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
  static struct kmem_cache *mm_slot_cache __read_mostly;
  
  /**
   * struct mm_slot - hash lookup from mm to mm_slot
   * @hash: hash collision list
   * @mm_node: khugepaged scan list headed in khugepaged_scan.mm_head
   * @mm: the mm that this information is valid for
   */
  struct mm_slot {
  	struct hlist_node hash;
  	struct list_head mm_node;
  	struct mm_struct *mm;
  };
  
  /**
   * struct khugepaged_scan - cursor for scanning
   * @mm_head: the head of the mm list to scan
   * @mm_slot: the current mm_slot we are scanning
   * @address: the next address inside that to be scanned
   *
   * There is only the one khugepaged_scan instance of this cursor structure.
   */
  struct khugepaged_scan {
  	struct list_head mm_head;
  	struct mm_slot *mm_slot;
  	unsigned long address;
2f1da6421   H Hartley Sweeten   mm/huge_memory.c:...
96
97
  };
  static struct khugepaged_scan khugepaged_scan = {
ba76149f4   Andrea Arcangeli   thp: khugepaged
98
99
  	.mm_head = LIST_HEAD_INIT(khugepaged_scan.mm_head),
  };
f000565ad   Andrea Arcangeli   thp: set recommen...
100
101
102
103
104
105
  
  static int set_recommended_min_free_kbytes(void)
  {
  	struct zone *zone;
  	int nr_zones = 0;
  	unsigned long recommended_min;
f000565ad   Andrea Arcangeli   thp: set recommen...
106

17c230afa   Xiao Guangrong   thp: use khugepag...
107
  	if (!khugepaged_enabled())
f000565ad   Andrea Arcangeli   thp: set recommen...
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
  		return 0;
  
  	for_each_populated_zone(zone)
  		nr_zones++;
  
  	/* Make sure at least 2 hugepages are free for MIGRATE_RESERVE */
  	recommended_min = pageblock_nr_pages * nr_zones * 2;
  
  	/*
  	 * Make sure that on average at least two pageblocks are almost free
  	 * of another type, one for a migratetype to fall back to and a
  	 * second to avoid subsequent fallbacks of other types There are 3
  	 * MIGRATE_TYPES we care about.
  	 */
  	recommended_min += pageblock_nr_pages * nr_zones *
  			   MIGRATE_PCPTYPES * MIGRATE_PCPTYPES;
  
  	/* don't ever allow to reserve more than 5% of the lowmem */
  	recommended_min = min(recommended_min,
  			      (unsigned long) nr_free_buffer_pages() / 20);
  	recommended_min <<= (PAGE_SHIFT-10);
42aa83cb6   Han Pingtian   mm: show message ...
129
130
131
132
133
134
  	if (recommended_min > min_free_kbytes) {
  		if (user_min_free_kbytes >= 0)
  			pr_info("raising min_free_kbytes from %d to %lu "
  				"to help transparent hugepage allocations
  ",
  				min_free_kbytes, recommended_min);
f000565ad   Andrea Arcangeli   thp: set recommen...
135
  		min_free_kbytes = recommended_min;
42aa83cb6   Han Pingtian   mm: show message ...
136
  	}
f000565ad   Andrea Arcangeli   thp: set recommen...
137
138
139
140
  	setup_per_zone_wmarks();
  	return 0;
  }
  late_initcall(set_recommended_min_free_kbytes);
ba76149f4   Andrea Arcangeli   thp: khugepaged
141
142
143
144
  static int start_khugepaged(void)
  {
  	int err = 0;
  	if (khugepaged_enabled()) {
ba76149f4   Andrea Arcangeli   thp: khugepaged
145
146
147
148
149
150
151
152
153
154
  		if (!khugepaged_thread)
  			khugepaged_thread = kthread_run(khugepaged, NULL,
  							"khugepaged");
  		if (unlikely(IS_ERR(khugepaged_thread))) {
  			printk(KERN_ERR
  			       "khugepaged: kthread_run(khugepaged) failed
  ");
  			err = PTR_ERR(khugepaged_thread);
  			khugepaged_thread = NULL;
  		}
911891afe   Xiao Guangrong   thp: move khugepa...
155
156
  
  		if (!list_empty(&khugepaged_scan.mm_head))
ba76149f4   Andrea Arcangeli   thp: khugepaged
157
  			wake_up_interruptible(&khugepaged_wait);
f000565ad   Andrea Arcangeli   thp: set recommen...
158
159
  
  		set_recommended_min_free_kbytes();
911891afe   Xiao Guangrong   thp: move khugepa...
160
  	} else if (khugepaged_thread) {
911891afe   Xiao Guangrong   thp: move khugepa...
161
162
163
  		kthread_stop(khugepaged_thread);
  		khugepaged_thread = NULL;
  	}
637e3a27e   Xiao Guangrong   thp: remove unnec...
164

ba76149f4   Andrea Arcangeli   thp: khugepaged
165
166
  	return err;
  }
71e3aac07   Andrea Arcangeli   thp: transparent ...
167

97ae17497   Kirill A. Shutemov   thp: implement re...
168
  static atomic_t huge_zero_refcount;
5918d10a4   Kirill A. Shutemov   thp: fix huge zer...
169
  static struct page *huge_zero_page __read_mostly;
97ae17497   Kirill A. Shutemov   thp: implement re...
170

5918d10a4   Kirill A. Shutemov   thp: fix huge zer...
171
  static inline bool is_huge_zero_page(struct page *page)
4a6c12972   Kirill A. Shutemov   thp: huge zero pa...
172
  {
5918d10a4   Kirill A. Shutemov   thp: fix huge zer...
173
  	return ACCESS_ONCE(huge_zero_page) == page;
97ae17497   Kirill A. Shutemov   thp: implement re...
174
  }
4a6c12972   Kirill A. Shutemov   thp: huge zero pa...
175

97ae17497   Kirill A. Shutemov   thp: implement re...
176
177
  static inline bool is_huge_zero_pmd(pmd_t pmd)
  {
5918d10a4   Kirill A. Shutemov   thp: fix huge zer...
178
  	return is_huge_zero_page(pmd_page(pmd));
97ae17497   Kirill A. Shutemov   thp: implement re...
179
  }
5918d10a4   Kirill A. Shutemov   thp: fix huge zer...
180
  static struct page *get_huge_zero_page(void)
97ae17497   Kirill A. Shutemov   thp: implement re...
181
182
183
184
  {
  	struct page *zero_page;
  retry:
  	if (likely(atomic_inc_not_zero(&huge_zero_refcount)))
5918d10a4   Kirill A. Shutemov   thp: fix huge zer...
185
  		return ACCESS_ONCE(huge_zero_page);
97ae17497   Kirill A. Shutemov   thp: implement re...
186
187
  
  	zero_page = alloc_pages((GFP_TRANSHUGE | __GFP_ZERO) & ~__GFP_MOVABLE,
4a6c12972   Kirill A. Shutemov   thp: huge zero pa...
188
  			HPAGE_PMD_ORDER);
d8a8e1f0d   Kirill A. Shutemov   thp, vmstat: impl...
189
190
  	if (!zero_page) {
  		count_vm_event(THP_ZERO_PAGE_ALLOC_FAILED);
5918d10a4   Kirill A. Shutemov   thp: fix huge zer...
191
  		return NULL;
d8a8e1f0d   Kirill A. Shutemov   thp, vmstat: impl...
192
193
  	}
  	count_vm_event(THP_ZERO_PAGE_ALLOC);
97ae17497   Kirill A. Shutemov   thp: implement re...
194
  	preempt_disable();
5918d10a4   Kirill A. Shutemov   thp: fix huge zer...
195
  	if (cmpxchg(&huge_zero_page, NULL, zero_page)) {
97ae17497   Kirill A. Shutemov   thp: implement re...
196
  		preempt_enable();
271aa4736   Yu Zhao   mm: free compound...
197
  		__free_pages(zero_page, compound_order(zero_page));
97ae17497   Kirill A. Shutemov   thp: implement re...
198
199
200
201
202
203
  		goto retry;
  	}
  
  	/* We take additional reference here. It will be put back by shrinker */
  	atomic_set(&huge_zero_refcount, 2);
  	preempt_enable();
5918d10a4   Kirill A. Shutemov   thp: fix huge zer...
204
  	return ACCESS_ONCE(huge_zero_page);
4a6c12972   Kirill A. Shutemov   thp: huge zero pa...
205
  }
97ae17497   Kirill A. Shutemov   thp: implement re...
206
  static void put_huge_zero_page(void)
4a6c12972   Kirill A. Shutemov   thp: huge zero pa...
207
  {
97ae17497   Kirill A. Shutemov   thp: implement re...
208
209
210
211
212
  	/*
  	 * Counter should never go to zero here. Only shrinker can put
  	 * last reference.
  	 */
  	BUG_ON(atomic_dec_and_test(&huge_zero_refcount));
4a6c12972   Kirill A. Shutemov   thp: huge zero pa...
213
  }
488964666   Glauber Costa   hugepage: convert...
214
215
  static unsigned long shrink_huge_zero_page_count(struct shrinker *shrink,
  					struct shrink_control *sc)
4a6c12972   Kirill A. Shutemov   thp: huge zero pa...
216
  {
488964666   Glauber Costa   hugepage: convert...
217
218
219
  	/* we can free zero page only if last reference remains */
  	return atomic_read(&huge_zero_refcount) == 1 ? HPAGE_PMD_NR : 0;
  }
97ae17497   Kirill A. Shutemov   thp: implement re...
220

488964666   Glauber Costa   hugepage: convert...
221
222
223
  static unsigned long shrink_huge_zero_page_scan(struct shrinker *shrink,
  				       struct shrink_control *sc)
  {
97ae17497   Kirill A. Shutemov   thp: implement re...
224
  	if (atomic_cmpxchg(&huge_zero_refcount, 1, 0) == 1) {
5918d10a4   Kirill A. Shutemov   thp: fix huge zer...
225
226
  		struct page *zero_page = xchg(&huge_zero_page, NULL);
  		BUG_ON(zero_page == NULL);
271aa4736   Yu Zhao   mm: free compound...
227
  		__free_pages(zero_page, compound_order(zero_page));
488964666   Glauber Costa   hugepage: convert...
228
  		return HPAGE_PMD_NR;
97ae17497   Kirill A. Shutemov   thp: implement re...
229
230
231
  	}
  
  	return 0;
4a6c12972   Kirill A. Shutemov   thp: huge zero pa...
232
  }
97ae17497   Kirill A. Shutemov   thp: implement re...
233
  static struct shrinker huge_zero_page_shrinker = {
488964666   Glauber Costa   hugepage: convert...
234
235
  	.count_objects = shrink_huge_zero_page_count,
  	.scan_objects = shrink_huge_zero_page_scan,
97ae17497   Kirill A. Shutemov   thp: implement re...
236
237
  	.seeks = DEFAULT_SEEKS,
  };
71e3aac07   Andrea Arcangeli   thp: transparent ...
238
  #ifdef CONFIG_SYSFS
ba76149f4   Andrea Arcangeli   thp: khugepaged
239

71e3aac07   Andrea Arcangeli   thp: transparent ...
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
  static ssize_t double_flag_show(struct kobject *kobj,
  				struct kobj_attribute *attr, char *buf,
  				enum transparent_hugepage_flag enabled,
  				enum transparent_hugepage_flag req_madv)
  {
  	if (test_bit(enabled, &transparent_hugepage_flags)) {
  		VM_BUG_ON(test_bit(req_madv, &transparent_hugepage_flags));
  		return sprintf(buf, "[always] madvise never
  ");
  	} else if (test_bit(req_madv, &transparent_hugepage_flags))
  		return sprintf(buf, "always [madvise] never
  ");
  	else
  		return sprintf(buf, "always madvise [never]
  ");
  }
  static ssize_t double_flag_store(struct kobject *kobj,
  				 struct kobj_attribute *attr,
  				 const char *buf, size_t count,
  				 enum transparent_hugepage_flag enabled,
  				 enum transparent_hugepage_flag req_madv)
  {
  	if (!memcmp("always", buf,
  		    min(sizeof("always")-1, count))) {
  		set_bit(enabled, &transparent_hugepage_flags);
  		clear_bit(req_madv, &transparent_hugepage_flags);
  	} else if (!memcmp("madvise", buf,
  			   min(sizeof("madvise")-1, count))) {
  		clear_bit(enabled, &transparent_hugepage_flags);
  		set_bit(req_madv, &transparent_hugepage_flags);
  	} else if (!memcmp("never", buf,
  			   min(sizeof("never")-1, count))) {
  		clear_bit(enabled, &transparent_hugepage_flags);
  		clear_bit(req_madv, &transparent_hugepage_flags);
  	} else
  		return -EINVAL;
  
  	return count;
  }
  
  static ssize_t enabled_show(struct kobject *kobj,
  			    struct kobj_attribute *attr, char *buf)
  {
  	return double_flag_show(kobj, attr, buf,
  				TRANSPARENT_HUGEPAGE_FLAG,
  				TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG);
  }
  static ssize_t enabled_store(struct kobject *kobj,
  			     struct kobj_attribute *attr,
  			     const char *buf, size_t count)
  {
ba76149f4   Andrea Arcangeli   thp: khugepaged
291
292
293
294
295
296
297
  	ssize_t ret;
  
  	ret = double_flag_store(kobj, attr, buf, count,
  				TRANSPARENT_HUGEPAGE_FLAG,
  				TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG);
  
  	if (ret > 0) {
911891afe   Xiao Guangrong   thp: move khugepa...
298
299
300
301
302
  		int err;
  
  		mutex_lock(&khugepaged_mutex);
  		err = start_khugepaged();
  		mutex_unlock(&khugepaged_mutex);
ba76149f4   Andrea Arcangeli   thp: khugepaged
303
304
305
306
307
  		if (err)
  			ret = err;
  	}
  
  	return ret;
71e3aac07   Andrea Arcangeli   thp: transparent ...
308
309
310
311
312
313
314
315
  }
  static struct kobj_attribute enabled_attr =
  	__ATTR(enabled, 0644, enabled_show, enabled_store);
  
  static ssize_t single_flag_show(struct kobject *kobj,
  				struct kobj_attribute *attr, char *buf,
  				enum transparent_hugepage_flag flag)
  {
e27e6151b   Ben Hutchings   mm/thp: use conve...
316
317
318
  	return sprintf(buf, "%d
  ",
  		       !!test_bit(flag, &transparent_hugepage_flags));
71e3aac07   Andrea Arcangeli   thp: transparent ...
319
  }
e27e6151b   Ben Hutchings   mm/thp: use conve...
320

71e3aac07   Andrea Arcangeli   thp: transparent ...
321
322
323
324
325
  static ssize_t single_flag_store(struct kobject *kobj,
  				 struct kobj_attribute *attr,
  				 const char *buf, size_t count,
  				 enum transparent_hugepage_flag flag)
  {
e27e6151b   Ben Hutchings   mm/thp: use conve...
326
327
328
329
330
331
332
333
334
335
  	unsigned long value;
  	int ret;
  
  	ret = kstrtoul(buf, 10, &value);
  	if (ret < 0)
  		return ret;
  	if (value > 1)
  		return -EINVAL;
  
  	if (value)
71e3aac07   Andrea Arcangeli   thp: transparent ...
336
  		set_bit(flag, &transparent_hugepage_flags);
e27e6151b   Ben Hutchings   mm/thp: use conve...
337
  	else
71e3aac07   Andrea Arcangeli   thp: transparent ...
338
  		clear_bit(flag, &transparent_hugepage_flags);
71e3aac07   Andrea Arcangeli   thp: transparent ...
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
  
  	return count;
  }
  
  /*
   * Currently defrag only disables __GFP_NOWAIT for allocation. A blind
   * __GFP_REPEAT is too aggressive, it's never worth swapping tons of
   * memory just to allocate one more hugepage.
   */
  static ssize_t defrag_show(struct kobject *kobj,
  			   struct kobj_attribute *attr, char *buf)
  {
  	return double_flag_show(kobj, attr, buf,
  				TRANSPARENT_HUGEPAGE_DEFRAG_FLAG,
  				TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG);
  }
  static ssize_t defrag_store(struct kobject *kobj,
  			    struct kobj_attribute *attr,
  			    const char *buf, size_t count)
  {
  	return double_flag_store(kobj, attr, buf, count,
  				 TRANSPARENT_HUGEPAGE_DEFRAG_FLAG,
  				 TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG);
  }
  static struct kobj_attribute defrag_attr =
  	__ATTR(defrag, 0644, defrag_show, defrag_store);
79da5407e   Kirill A. Shutemov   thp: introduce sy...
365
366
367
368
369
370
371
372
373
374
375
376
377
378
  static ssize_t use_zero_page_show(struct kobject *kobj,
  		struct kobj_attribute *attr, char *buf)
  {
  	return single_flag_show(kobj, attr, buf,
  				TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
  }
  static ssize_t use_zero_page_store(struct kobject *kobj,
  		struct kobj_attribute *attr, const char *buf, size_t count)
  {
  	return single_flag_store(kobj, attr, buf, count,
  				 TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
  }
  static struct kobj_attribute use_zero_page_attr =
  	__ATTR(use_zero_page, 0644, use_zero_page_show, use_zero_page_store);
71e3aac07   Andrea Arcangeli   thp: transparent ...
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
  #ifdef CONFIG_DEBUG_VM
  static ssize_t debug_cow_show(struct kobject *kobj,
  				struct kobj_attribute *attr, char *buf)
  {
  	return single_flag_show(kobj, attr, buf,
  				TRANSPARENT_HUGEPAGE_DEBUG_COW_FLAG);
  }
  static ssize_t debug_cow_store(struct kobject *kobj,
  			       struct kobj_attribute *attr,
  			       const char *buf, size_t count)
  {
  	return single_flag_store(kobj, attr, buf, count,
  				 TRANSPARENT_HUGEPAGE_DEBUG_COW_FLAG);
  }
  static struct kobj_attribute debug_cow_attr =
  	__ATTR(debug_cow, 0644, debug_cow_show, debug_cow_store);
  #endif /* CONFIG_DEBUG_VM */
  
  static struct attribute *hugepage_attr[] = {
  	&enabled_attr.attr,
  	&defrag_attr.attr,
79da5407e   Kirill A. Shutemov   thp: introduce sy...
400
  	&use_zero_page_attr.attr,
71e3aac07   Andrea Arcangeli   thp: transparent ...
401
402
403
404
405
406
407
408
  #ifdef CONFIG_DEBUG_VM
  	&debug_cow_attr.attr,
  #endif
  	NULL,
  };
  
  static struct attribute_group hugepage_attr_group = {
  	.attrs = hugepage_attr,
ba76149f4   Andrea Arcangeli   thp: khugepaged
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
  };
  
  static ssize_t scan_sleep_millisecs_show(struct kobject *kobj,
  					 struct kobj_attribute *attr,
  					 char *buf)
  {
  	return sprintf(buf, "%u
  ", khugepaged_scan_sleep_millisecs);
  }
  
  static ssize_t scan_sleep_millisecs_store(struct kobject *kobj,
  					  struct kobj_attribute *attr,
  					  const char *buf, size_t count)
  {
  	unsigned long msecs;
  	int err;
3dbb95f78   Jingoo Han   mm: replace stric...
425
  	err = kstrtoul(buf, 10, &msecs);
ba76149f4   Andrea Arcangeli   thp: khugepaged
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
  	if (err || msecs > UINT_MAX)
  		return -EINVAL;
  
  	khugepaged_scan_sleep_millisecs = msecs;
  	wake_up_interruptible(&khugepaged_wait);
  
  	return count;
  }
  static struct kobj_attribute scan_sleep_millisecs_attr =
  	__ATTR(scan_sleep_millisecs, 0644, scan_sleep_millisecs_show,
  	       scan_sleep_millisecs_store);
  
  static ssize_t alloc_sleep_millisecs_show(struct kobject *kobj,
  					  struct kobj_attribute *attr,
  					  char *buf)
  {
  	return sprintf(buf, "%u
  ", khugepaged_alloc_sleep_millisecs);
  }
  
  static ssize_t alloc_sleep_millisecs_store(struct kobject *kobj,
  					   struct kobj_attribute *attr,
  					   const char *buf, size_t count)
  {
  	unsigned long msecs;
  	int err;
3dbb95f78   Jingoo Han   mm: replace stric...
452
  	err = kstrtoul(buf, 10, &msecs);
ba76149f4   Andrea Arcangeli   thp: khugepaged
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
  	if (err || msecs > UINT_MAX)
  		return -EINVAL;
  
  	khugepaged_alloc_sleep_millisecs = msecs;
  	wake_up_interruptible(&khugepaged_wait);
  
  	return count;
  }
  static struct kobj_attribute alloc_sleep_millisecs_attr =
  	__ATTR(alloc_sleep_millisecs, 0644, alloc_sleep_millisecs_show,
  	       alloc_sleep_millisecs_store);
  
  static ssize_t pages_to_scan_show(struct kobject *kobj,
  				  struct kobj_attribute *attr,
  				  char *buf)
  {
  	return sprintf(buf, "%u
  ", khugepaged_pages_to_scan);
  }
  static ssize_t pages_to_scan_store(struct kobject *kobj,
  				   struct kobj_attribute *attr,
  				   const char *buf, size_t count)
  {
  	int err;
  	unsigned long pages;
3dbb95f78   Jingoo Han   mm: replace stric...
478
  	err = kstrtoul(buf, 10, &pages);
ba76149f4   Andrea Arcangeli   thp: khugepaged
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
  	if (err || !pages || pages > UINT_MAX)
  		return -EINVAL;
  
  	khugepaged_pages_to_scan = pages;
  
  	return count;
  }
  static struct kobj_attribute pages_to_scan_attr =
  	__ATTR(pages_to_scan, 0644, pages_to_scan_show,
  	       pages_to_scan_store);
  
  static ssize_t pages_collapsed_show(struct kobject *kobj,
  				    struct kobj_attribute *attr,
  				    char *buf)
  {
  	return sprintf(buf, "%u
  ", khugepaged_pages_collapsed);
  }
  static struct kobj_attribute pages_collapsed_attr =
  	__ATTR_RO(pages_collapsed);
  
  static ssize_t full_scans_show(struct kobject *kobj,
  			       struct kobj_attribute *attr,
  			       char *buf)
  {
  	return sprintf(buf, "%u
  ", khugepaged_full_scans);
  }
  static struct kobj_attribute full_scans_attr =
  	__ATTR_RO(full_scans);
  
  static ssize_t khugepaged_defrag_show(struct kobject *kobj,
  				      struct kobj_attribute *attr, char *buf)
  {
  	return single_flag_show(kobj, attr, buf,
  				TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG);
  }
  static ssize_t khugepaged_defrag_store(struct kobject *kobj,
  				       struct kobj_attribute *attr,
  				       const char *buf, size_t count)
  {
  	return single_flag_store(kobj, attr, buf, count,
  				 TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG);
  }
  static struct kobj_attribute khugepaged_defrag_attr =
  	__ATTR(defrag, 0644, khugepaged_defrag_show,
  	       khugepaged_defrag_store);
  
  /*
   * max_ptes_none controls if khugepaged should collapse hugepages over
   * any unmapped ptes in turn potentially increasing the memory
   * footprint of the vmas. When max_ptes_none is 0 khugepaged will not
   * reduce the available free memory in the system as it
   * runs. Increasing max_ptes_none will instead potentially reduce the
   * free memory in the system during the khugepaged scan.
   */
  static ssize_t khugepaged_max_ptes_none_show(struct kobject *kobj,
  					     struct kobj_attribute *attr,
  					     char *buf)
  {
  	return sprintf(buf, "%u
  ", khugepaged_max_ptes_none);
  }
  static ssize_t khugepaged_max_ptes_none_store(struct kobject *kobj,
  					      struct kobj_attribute *attr,
  					      const char *buf, size_t count)
  {
  	int err;
  	unsigned long max_ptes_none;
3dbb95f78   Jingoo Han   mm: replace stric...
548
  	err = kstrtoul(buf, 10, &max_ptes_none);
ba76149f4   Andrea Arcangeli   thp: khugepaged
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
  	if (err || max_ptes_none > HPAGE_PMD_NR-1)
  		return -EINVAL;
  
  	khugepaged_max_ptes_none = max_ptes_none;
  
  	return count;
  }
  static struct kobj_attribute khugepaged_max_ptes_none_attr =
  	__ATTR(max_ptes_none, 0644, khugepaged_max_ptes_none_show,
  	       khugepaged_max_ptes_none_store);
  
  static struct attribute *khugepaged_attr[] = {
  	&khugepaged_defrag_attr.attr,
  	&khugepaged_max_ptes_none_attr.attr,
  	&pages_to_scan_attr.attr,
  	&pages_collapsed_attr.attr,
  	&full_scans_attr.attr,
  	&scan_sleep_millisecs_attr.attr,
  	&alloc_sleep_millisecs_attr.attr,
  	NULL,
  };
  
  static struct attribute_group khugepaged_attr_group = {
  	.attrs = khugepaged_attr,
  	.name = "khugepaged",
71e3aac07   Andrea Arcangeli   thp: transparent ...
574
  };
71e3aac07   Andrea Arcangeli   thp: transparent ...
575

569e55900   Shaohua Li   thp: improve the ...
576
  static int __init hugepage_init_sysfs(struct kobject **hugepage_kobj)
71e3aac07   Andrea Arcangeli   thp: transparent ...
577
  {
71e3aac07   Andrea Arcangeli   thp: transparent ...
578
  	int err;
569e55900   Shaohua Li   thp: improve the ...
579
580
  	*hugepage_kobj = kobject_create_and_add("transparent_hugepage", mm_kobj);
  	if (unlikely(!*hugepage_kobj)) {
2c79737af   Jeremy Eder   mm: clean up tran...
581
582
  		printk(KERN_ERR "hugepage: failed to create transparent hugepage kobject
  ");
569e55900   Shaohua Li   thp: improve the ...
583
  		return -ENOMEM;
ba76149f4   Andrea Arcangeli   thp: khugepaged
584
  	}
569e55900   Shaohua Li   thp: improve the ...
585
  	err = sysfs_create_group(*hugepage_kobj, &hugepage_attr_group);
ba76149f4   Andrea Arcangeli   thp: khugepaged
586
  	if (err) {
2c79737af   Jeremy Eder   mm: clean up tran...
587
588
  		printk(KERN_ERR "hugepage: failed to register transparent hugepage group
  ");
569e55900   Shaohua Li   thp: improve the ...
589
  		goto delete_obj;
ba76149f4   Andrea Arcangeli   thp: khugepaged
590
  	}
569e55900   Shaohua Li   thp: improve the ...
591
  	err = sysfs_create_group(*hugepage_kobj, &khugepaged_attr_group);
ba76149f4   Andrea Arcangeli   thp: khugepaged
592
  	if (err) {
2c79737af   Jeremy Eder   mm: clean up tran...
593
594
  		printk(KERN_ERR "hugepage: failed to register transparent hugepage group
  ");
569e55900   Shaohua Li   thp: improve the ...
595
  		goto remove_hp_group;
ba76149f4   Andrea Arcangeli   thp: khugepaged
596
  	}
569e55900   Shaohua Li   thp: improve the ...
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
  
  	return 0;
  
  remove_hp_group:
  	sysfs_remove_group(*hugepage_kobj, &hugepage_attr_group);
  delete_obj:
  	kobject_put(*hugepage_kobj);
  	return err;
  }
  
  static void __init hugepage_exit_sysfs(struct kobject *hugepage_kobj)
  {
  	sysfs_remove_group(hugepage_kobj, &khugepaged_attr_group);
  	sysfs_remove_group(hugepage_kobj, &hugepage_attr_group);
  	kobject_put(hugepage_kobj);
  }
  #else
  static inline int hugepage_init_sysfs(struct kobject **hugepage_kobj)
  {
  	return 0;
  }
  
  static inline void hugepage_exit_sysfs(struct kobject *hugepage_kobj)
  {
  }
  #endif /* CONFIG_SYSFS */
  
  static int __init hugepage_init(void)
  {
  	int err;
  	struct kobject *hugepage_kobj;
  
  	if (!has_transparent_hugepage()) {
  		transparent_hugepage_flags = 0;
  		return -EINVAL;
  	}
  
  	err = hugepage_init_sysfs(&hugepage_kobj);
  	if (err)
  		return err;
ba76149f4   Andrea Arcangeli   thp: khugepaged
637
638
639
640
  
  	err = khugepaged_slab_init();
  	if (err)
  		goto out;
97ae17497   Kirill A. Shutemov   thp: implement re...
641
  	register_shrinker(&huge_zero_page_shrinker);
97562cd24   Rik van Riel   thp: disable tran...
642
643
644
645
646
647
648
  	/*
  	 * By default disable transparent hugepages on smaller systems,
  	 * where the extra memory used could hurt more than TLB overhead
  	 * is likely to save.  The admin can still enable it through /sys.
  	 */
  	if (totalram_pages < (512 << (20 - PAGE_SHIFT)))
  		transparent_hugepage_flags = 0;
ba76149f4   Andrea Arcangeli   thp: khugepaged
649
  	start_khugepaged();
569e55900   Shaohua Li   thp: improve the ...
650
  	return 0;
ba76149f4   Andrea Arcangeli   thp: khugepaged
651
  out:
569e55900   Shaohua Li   thp: improve the ...
652
  	hugepage_exit_sysfs(hugepage_kobj);
ba76149f4   Andrea Arcangeli   thp: khugepaged
653
  	return err;
71e3aac07   Andrea Arcangeli   thp: transparent ...
654
  }
a64fb3cd6   Paul Gortmaker   mm: audit/fix non...
655
  subsys_initcall(hugepage_init);
71e3aac07   Andrea Arcangeli   thp: transparent ...
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
  
  static int __init setup_transparent_hugepage(char *str)
  {
  	int ret = 0;
  	if (!str)
  		goto out;
  	if (!strcmp(str, "always")) {
  		set_bit(TRANSPARENT_HUGEPAGE_FLAG,
  			&transparent_hugepage_flags);
  		clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
  			  &transparent_hugepage_flags);
  		ret = 1;
  	} else if (!strcmp(str, "madvise")) {
  		clear_bit(TRANSPARENT_HUGEPAGE_FLAG,
  			  &transparent_hugepage_flags);
  		set_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
  			&transparent_hugepage_flags);
  		ret = 1;
  	} else if (!strcmp(str, "never")) {
  		clear_bit(TRANSPARENT_HUGEPAGE_FLAG,
  			  &transparent_hugepage_flags);
  		clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
  			  &transparent_hugepage_flags);
  		ret = 1;
  	}
  out:
  	if (!ret)
  		printk(KERN_WARNING
  		       "transparent_hugepage= cannot parse, ignored
  ");
  	return ret;
  }
  __setup("transparent_hugepage=", setup_transparent_hugepage);
b32967ff1   Mel Gorman   mm: numa: Add THP...
689
  pmd_t maybe_pmd_mkwrite(pmd_t pmd, struct vm_area_struct *vma)
71e3aac07   Andrea Arcangeli   thp: transparent ...
690
691
692
693
694
  {
  	if (likely(vma->vm_flags & VM_WRITE))
  		pmd = pmd_mkwrite(pmd);
  	return pmd;
  }
3122359a6   Kirill A. Shutemov   thp: move maybe_p...
695
  static inline pmd_t mk_huge_pmd(struct page *page, pgprot_t prot)
b3092b3b7   Bob Liu   thp: cleanup: int...
696
697
  {
  	pmd_t entry;
3122359a6   Kirill A. Shutemov   thp: move maybe_p...
698
  	entry = mk_pmd(page, prot);
b3092b3b7   Bob Liu   thp: cleanup: int...
699
700
701
  	entry = pmd_mkhuge(entry);
  	return entry;
  }
71e3aac07   Andrea Arcangeli   thp: transparent ...
702
703
704
705
706
  static int __do_huge_pmd_anonymous_page(struct mm_struct *mm,
  					struct vm_area_struct *vma,
  					unsigned long haddr, pmd_t *pmd,
  					struct page *page)
  {
71e3aac07   Andrea Arcangeli   thp: transparent ...
707
  	pgtable_t pgtable;
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
708
  	spinlock_t *ptl;
71e3aac07   Andrea Arcangeli   thp: transparent ...
709

309381fea   Sasha Levin   mm: dump page whe...
710
  	VM_BUG_ON_PAGE(!PageCompound(page), page);
71e3aac07   Andrea Arcangeli   thp: transparent ...
711
  	pgtable = pte_alloc_one(mm, haddr);
edad9d2c3   David Rientjes   mm, thp: allow fa...
712
  	if (unlikely(!pgtable))
71e3aac07   Andrea Arcangeli   thp: transparent ...
713
  		return VM_FAULT_OOM;
71e3aac07   Andrea Arcangeli   thp: transparent ...
714
715
  
  	clear_huge_page(page, haddr, HPAGE_PMD_NR);
52f37629f   Minchan Kim   THP: fix comment ...
716
717
718
719
720
  	/*
  	 * The memory barrier inside __SetPageUptodate makes sure that
  	 * clear_huge_page writes become visible before the set_pmd_at()
  	 * write.
  	 */
71e3aac07   Andrea Arcangeli   thp: transparent ...
721
  	__SetPageUptodate(page);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
722
  	ptl = pmd_lock(mm, pmd);
71e3aac07   Andrea Arcangeli   thp: transparent ...
723
  	if (unlikely(!pmd_none(*pmd))) {
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
724
  		spin_unlock(ptl);
b9bbfbe30   Andrea Arcangeli   thp: memcg huge m...
725
  		mem_cgroup_uncharge_page(page);
71e3aac07   Andrea Arcangeli   thp: transparent ...
726
727
728
729
  		put_page(page);
  		pte_free(mm, pgtable);
  	} else {
  		pmd_t entry;
3122359a6   Kirill A. Shutemov   thp: move maybe_p...
730
731
  		entry = mk_huge_pmd(page, vma->vm_page_prot);
  		entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
71e3aac07   Andrea Arcangeli   thp: transparent ...
732
  		page_add_new_anon_rmap(page, vma, haddr);
6b0b50b06   Aneesh Kumar K.V   mm/THP: add pmd a...
733
  		pgtable_trans_huge_deposit(mm, pmd, pgtable);
71e3aac07   Andrea Arcangeli   thp: transparent ...
734
  		set_pmd_at(mm, haddr, pmd, entry);
71e3aac07   Andrea Arcangeli   thp: transparent ...
735
  		add_mm_counter(mm, MM_ANONPAGES, HPAGE_PMD_NR);
e1f56c89b   Kirill A. Shutemov   mm: convert mm->n...
736
  		atomic_long_inc(&mm->nr_ptes);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
737
  		spin_unlock(ptl);
71e3aac07   Andrea Arcangeli   thp: transparent ...
738
  	}
aa2e878ef   David Rientjes   mm, thp: remove u...
739
  	return 0;
71e3aac07   Andrea Arcangeli   thp: transparent ...
740
  }
cc5d462f7   Andi Kleen   mm: use __GFP_OTH...
741
  static inline gfp_t alloc_hugepage_gfpmask(int defrag, gfp_t extra_gfp)
0bbbc0b33   Andrea Arcangeli   thp: add numa awa...
742
  {
cc5d462f7   Andi Kleen   mm: use __GFP_OTH...
743
  	return (GFP_TRANSHUGE & ~(defrag ? 0 : __GFP_WAIT)) | extra_gfp;
0bbbc0b33   Andrea Arcangeli   thp: add numa awa...
744
745
746
747
  }
  
  static inline struct page *alloc_hugepage_vma(int defrag,
  					      struct vm_area_struct *vma,
cc5d462f7   Andi Kleen   mm: use __GFP_OTH...
748
749
  					      unsigned long haddr, int nd,
  					      gfp_t extra_gfp)
0bbbc0b33   Andrea Arcangeli   thp: add numa awa...
750
  {
cc5d462f7   Andi Kleen   mm: use __GFP_OTH...
751
  	return alloc_pages_vma(alloc_hugepage_gfpmask(defrag, extra_gfp),
5c4b4be3b   Andi Kleen   mm: use correct n...
752
  			       HPAGE_PMD_ORDER, vma, haddr, nd);
0bbbc0b33   Andrea Arcangeli   thp: add numa awa...
753
  }
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
754
  /* Caller must hold page table lock. */
3ea41e621   Kirill A. Shutemov   thp: avoid race o...
755
  static bool set_huge_zero_page(pgtable_t pgtable, struct mm_struct *mm,
97ae17497   Kirill A. Shutemov   thp: implement re...
756
  		struct vm_area_struct *vma, unsigned long haddr, pmd_t *pmd,
5918d10a4   Kirill A. Shutemov   thp: fix huge zer...
757
  		struct page *zero_page)
fc9fe822f   Kirill A. Shutemov   thp: copy_huge_pm...
758
759
  {
  	pmd_t entry;
3ea41e621   Kirill A. Shutemov   thp: avoid race o...
760
761
  	if (!pmd_none(*pmd))
  		return false;
5918d10a4   Kirill A. Shutemov   thp: fix huge zer...
762
  	entry = mk_pmd(zero_page, vma->vm_page_prot);
fc9fe822f   Kirill A. Shutemov   thp: copy_huge_pm...
763
764
  	entry = pmd_wrprotect(entry);
  	entry = pmd_mkhuge(entry);
6b0b50b06   Aneesh Kumar K.V   mm/THP: add pmd a...
765
  	pgtable_trans_huge_deposit(mm, pmd, pgtable);
fc9fe822f   Kirill A. Shutemov   thp: copy_huge_pm...
766
  	set_pmd_at(mm, haddr, pmd, entry);
e1f56c89b   Kirill A. Shutemov   mm: convert mm->n...
767
  	atomic_long_inc(&mm->nr_ptes);
3ea41e621   Kirill A. Shutemov   thp: avoid race o...
768
  	return true;
fc9fe822f   Kirill A. Shutemov   thp: copy_huge_pm...
769
  }
71e3aac07   Andrea Arcangeli   thp: transparent ...
770
771
772
773
774
775
  int do_huge_pmd_anonymous_page(struct mm_struct *mm, struct vm_area_struct *vma,
  			       unsigned long address, pmd_t *pmd,
  			       unsigned int flags)
  {
  	struct page *page;
  	unsigned long haddr = address & HPAGE_PMD_MASK;
71e3aac07   Andrea Arcangeli   thp: transparent ...
776

128ec037b   Kirill A. Shutemov   thp: do_huge_pmd_...
777
  	if (haddr < vma->vm_start || haddr + HPAGE_PMD_SIZE > vma->vm_end)
c02925540   Kirill A. Shutemov   thp: consolidate ...
778
  		return VM_FAULT_FALLBACK;
128ec037b   Kirill A. Shutemov   thp: do_huge_pmd_...
779
780
781
782
783
784
  	if (unlikely(anon_vma_prepare(vma)))
  		return VM_FAULT_OOM;
  	if (unlikely(khugepaged_enter(vma)))
  		return VM_FAULT_OOM;
  	if (!(flags & FAULT_FLAG_WRITE) &&
  			transparent_hugepage_use_zero_page()) {
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
785
  		spinlock_t *ptl;
128ec037b   Kirill A. Shutemov   thp: do_huge_pmd_...
786
787
788
789
790
  		pgtable_t pgtable;
  		struct page *zero_page;
  		bool set;
  		pgtable = pte_alloc_one(mm, haddr);
  		if (unlikely(!pgtable))
ba76149f4   Andrea Arcangeli   thp: khugepaged
791
  			return VM_FAULT_OOM;
128ec037b   Kirill A. Shutemov   thp: do_huge_pmd_...
792
793
794
  		zero_page = get_huge_zero_page();
  		if (unlikely(!zero_page)) {
  			pte_free(mm, pgtable);
81ab4201f   Andi Kleen   mm: add VM counte...
795
  			count_vm_event(THP_FAULT_FALLBACK);
c02925540   Kirill A. Shutemov   thp: consolidate ...
796
  			return VM_FAULT_FALLBACK;
b9bbfbe30   Andrea Arcangeli   thp: memcg huge m...
797
  		}
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
798
  		ptl = pmd_lock(mm, pmd);
128ec037b   Kirill A. Shutemov   thp: do_huge_pmd_...
799
800
  		set = set_huge_zero_page(pgtable, mm, vma, haddr, pmd,
  				zero_page);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
801
  		spin_unlock(ptl);
128ec037b   Kirill A. Shutemov   thp: do_huge_pmd_...
802
803
804
  		if (!set) {
  			pte_free(mm, pgtable);
  			put_huge_zero_page();
edad9d2c3   David Rientjes   mm, thp: allow fa...
805
  		}
edad9d2c3   David Rientjes   mm, thp: allow fa...
806
  		return 0;
71e3aac07   Andrea Arcangeli   thp: transparent ...
807
  	}
128ec037b   Kirill A. Shutemov   thp: do_huge_pmd_...
808
809
810
811
  	page = alloc_hugepage_vma(transparent_hugepage_defrag(vma),
  			vma, haddr, numa_node_id(), 0);
  	if (unlikely(!page)) {
  		count_vm_event(THP_FAULT_FALLBACK);
c02925540   Kirill A. Shutemov   thp: consolidate ...
812
  		return VM_FAULT_FALLBACK;
128ec037b   Kirill A. Shutemov   thp: do_huge_pmd_...
813
  	}
128ec037b   Kirill A. Shutemov   thp: do_huge_pmd_...
814
815
  	if (unlikely(mem_cgroup_newpage_charge(page, mm, GFP_KERNEL))) {
  		put_page(page);
17766dde3   David Rientjes   mm, thp: count th...
816
  		count_vm_event(THP_FAULT_FALLBACK);
c02925540   Kirill A. Shutemov   thp: consolidate ...
817
  		return VM_FAULT_FALLBACK;
128ec037b   Kirill A. Shutemov   thp: do_huge_pmd_...
818
819
820
821
  	}
  	if (unlikely(__do_huge_pmd_anonymous_page(mm, vma, haddr, pmd, page))) {
  		mem_cgroup_uncharge_page(page);
  		put_page(page);
17766dde3   David Rientjes   mm, thp: count th...
822
  		count_vm_event(THP_FAULT_FALLBACK);
c02925540   Kirill A. Shutemov   thp: consolidate ...
823
  		return VM_FAULT_FALLBACK;
128ec037b   Kirill A. Shutemov   thp: do_huge_pmd_...
824
  	}
17766dde3   David Rientjes   mm, thp: count th...
825
  	count_vm_event(THP_FAULT_ALLOC);
128ec037b   Kirill A. Shutemov   thp: do_huge_pmd_...
826
  	return 0;
71e3aac07   Andrea Arcangeli   thp: transparent ...
827
828
829
830
831
832
  }
  
  int copy_huge_pmd(struct mm_struct *dst_mm, struct mm_struct *src_mm,
  		  pmd_t *dst_pmd, pmd_t *src_pmd, unsigned long addr,
  		  struct vm_area_struct *vma)
  {
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
833
  	spinlock_t *dst_ptl, *src_ptl;
71e3aac07   Andrea Arcangeli   thp: transparent ...
834
835
836
837
838
839
840
841
842
  	struct page *src_page;
  	pmd_t pmd;
  	pgtable_t pgtable;
  	int ret;
  
  	ret = -ENOMEM;
  	pgtable = pte_alloc_one(dst_mm, addr);
  	if (unlikely(!pgtable))
  		goto out;
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
843
844
845
  	dst_ptl = pmd_lock(dst_mm, dst_pmd);
  	src_ptl = pmd_lockptr(src_mm, src_pmd);
  	spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
71e3aac07   Andrea Arcangeli   thp: transparent ...
846
847
848
849
850
851
852
  
  	ret = -EAGAIN;
  	pmd = *src_pmd;
  	if (unlikely(!pmd_trans_huge(pmd))) {
  		pte_free(dst_mm, pgtable);
  		goto out_unlock;
  	}
fc9fe822f   Kirill A. Shutemov   thp: copy_huge_pm...
853
  	/*
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
854
  	 * When page table lock is held, the huge zero pmd should not be
fc9fe822f   Kirill A. Shutemov   thp: copy_huge_pm...
855
856
857
858
  	 * under splitting since we don't split the page itself, only pmd to
  	 * a page table.
  	 */
  	if (is_huge_zero_pmd(pmd)) {
5918d10a4   Kirill A. Shutemov   thp: fix huge zer...
859
  		struct page *zero_page;
3ea41e621   Kirill A. Shutemov   thp: avoid race o...
860
  		bool set;
97ae17497   Kirill A. Shutemov   thp: implement re...
861
862
863
864
865
  		/*
  		 * get_huge_zero_page() will never allocate a new page here,
  		 * since we already have a zero page to copy. It just takes a
  		 * reference.
  		 */
5918d10a4   Kirill A. Shutemov   thp: fix huge zer...
866
  		zero_page = get_huge_zero_page();
3ea41e621   Kirill A. Shutemov   thp: avoid race o...
867
  		set = set_huge_zero_page(pgtable, dst_mm, vma, addr, dst_pmd,
5918d10a4   Kirill A. Shutemov   thp: fix huge zer...
868
  				zero_page);
3ea41e621   Kirill A. Shutemov   thp: avoid race o...
869
  		BUG_ON(!set); /* unexpected !pmd_none(dst_pmd) */
fc9fe822f   Kirill A. Shutemov   thp: copy_huge_pm...
870
871
872
  		ret = 0;
  		goto out_unlock;
  	}
de466bd62   Mel Gorman   mm: numa: avoid u...
873

71e3aac07   Andrea Arcangeli   thp: transparent ...
874
875
  	if (unlikely(pmd_trans_splitting(pmd))) {
  		/* split huge page running from under us */
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
876
877
  		spin_unlock(src_ptl);
  		spin_unlock(dst_ptl);
71e3aac07   Andrea Arcangeli   thp: transparent ...
878
879
880
881
882
883
  		pte_free(dst_mm, pgtable);
  
  		wait_split_huge_page(vma->anon_vma, src_pmd); /* src_vma */
  		goto out;
  	}
  	src_page = pmd_page(pmd);
309381fea   Sasha Levin   mm: dump page whe...
884
  	VM_BUG_ON_PAGE(!PageHead(src_page), src_page);
71e3aac07   Andrea Arcangeli   thp: transparent ...
885
886
887
888
889
890
  	get_page(src_page);
  	page_dup_rmap(src_page);
  	add_mm_counter(dst_mm, MM_ANONPAGES, HPAGE_PMD_NR);
  
  	pmdp_set_wrprotect(src_mm, addr, src_pmd);
  	pmd = pmd_mkold(pmd_wrprotect(pmd));
6b0b50b06   Aneesh Kumar K.V   mm/THP: add pmd a...
891
  	pgtable_trans_huge_deposit(dst_mm, dst_pmd, pgtable);
71e3aac07   Andrea Arcangeli   thp: transparent ...
892
  	set_pmd_at(dst_mm, addr, dst_pmd, pmd);
e1f56c89b   Kirill A. Shutemov   mm: convert mm->n...
893
  	atomic_long_inc(&dst_mm->nr_ptes);
71e3aac07   Andrea Arcangeli   thp: transparent ...
894
895
896
  
  	ret = 0;
  out_unlock:
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
897
898
  	spin_unlock(src_ptl);
  	spin_unlock(dst_ptl);
71e3aac07   Andrea Arcangeli   thp: transparent ...
899
900
901
  out:
  	return ret;
  }
a1dd450bc   Will Deacon   mm: thp: set the ...
902
903
904
905
906
907
  void huge_pmd_set_accessed(struct mm_struct *mm,
  			   struct vm_area_struct *vma,
  			   unsigned long address,
  			   pmd_t *pmd, pmd_t orig_pmd,
  			   int dirty)
  {
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
908
  	spinlock_t *ptl;
a1dd450bc   Will Deacon   mm: thp: set the ...
909
910
  	pmd_t entry;
  	unsigned long haddr;
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
911
  	ptl = pmd_lock(mm, pmd);
a1dd450bc   Will Deacon   mm: thp: set the ...
912
913
914
915
916
917
918
919
920
  	if (unlikely(!pmd_same(*pmd, orig_pmd)))
  		goto unlock;
  
  	entry = pmd_mkyoung(orig_pmd);
  	haddr = address & HPAGE_PMD_MASK;
  	if (pmdp_set_access_flags(vma, haddr, pmd, entry, dirty))
  		update_mmu_cache_pmd(vma, address, pmd);
  
  unlock:
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
921
  	spin_unlock(ptl);
a1dd450bc   Will Deacon   mm: thp: set the ...
922
  }
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
923
924
  static int do_huge_pmd_wp_zero_page_fallback(struct mm_struct *mm,
  		struct vm_area_struct *vma, unsigned long address,
3ea41e621   Kirill A. Shutemov   thp: avoid race o...
925
  		pmd_t *pmd, pmd_t orig_pmd, unsigned long haddr)
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
926
  {
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
927
  	spinlock_t *ptl;
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
  	pgtable_t pgtable;
  	pmd_t _pmd;
  	struct page *page;
  	int i, ret = 0;
  	unsigned long mmun_start;	/* For mmu_notifiers */
  	unsigned long mmun_end;		/* For mmu_notifiers */
  
  	page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
  	if (!page) {
  		ret |= VM_FAULT_OOM;
  		goto out;
  	}
  
  	if (mem_cgroup_newpage_charge(page, mm, GFP_KERNEL)) {
  		put_page(page);
  		ret |= VM_FAULT_OOM;
  		goto out;
  	}
  
  	clear_user_highpage(page, address);
  	__SetPageUptodate(page);
  
  	mmun_start = haddr;
  	mmun_end   = haddr + HPAGE_PMD_SIZE;
  	mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
953
  	ptl = pmd_lock(mm, pmd);
3ea41e621   Kirill A. Shutemov   thp: avoid race o...
954
955
  	if (unlikely(!pmd_same(*pmd, orig_pmd)))
  		goto out_free_page;
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
956
957
  	pmdp_clear_flush(vma, haddr, pmd);
  	/* leave pmd empty until pte is filled */
6b0b50b06   Aneesh Kumar K.V   mm/THP: add pmd a...
958
  	pgtable = pgtable_trans_huge_withdraw(mm, pmd);
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
  	pmd_populate(mm, &_pmd, pgtable);
  
  	for (i = 0; i < HPAGE_PMD_NR; i++, haddr += PAGE_SIZE) {
  		pte_t *pte, entry;
  		if (haddr == (address & PAGE_MASK)) {
  			entry = mk_pte(page, vma->vm_page_prot);
  			entry = maybe_mkwrite(pte_mkdirty(entry), vma);
  			page_add_new_anon_rmap(page, vma, haddr);
  		} else {
  			entry = pfn_pte(my_zero_pfn(haddr), vma->vm_page_prot);
  			entry = pte_mkspecial(entry);
  		}
  		pte = pte_offset_map(&_pmd, haddr);
  		VM_BUG_ON(!pte_none(*pte));
  		set_pte_at(mm, haddr, pte, entry);
  		pte_unmap(pte);
  	}
  	smp_wmb(); /* make pte visible before pmd */
  	pmd_populate(mm, pmd, pgtable);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
978
  	spin_unlock(ptl);
97ae17497   Kirill A. Shutemov   thp: implement re...
979
  	put_huge_zero_page();
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
980
981
982
983
984
985
986
  	inc_mm_counter(mm, MM_ANONPAGES);
  
  	mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
  
  	ret |= VM_FAULT_WRITE;
  out:
  	return ret;
3ea41e621   Kirill A. Shutemov   thp: avoid race o...
987
  out_free_page:
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
988
  	spin_unlock(ptl);
3ea41e621   Kirill A. Shutemov   thp: avoid race o...
989
990
991
992
  	mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
  	mem_cgroup_uncharge_page(page);
  	put_page(page);
  	goto out;
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
993
  }
71e3aac07   Andrea Arcangeli   thp: transparent ...
994
995
996
997
998
999
1000
  static int do_huge_pmd_wp_page_fallback(struct mm_struct *mm,
  					struct vm_area_struct *vma,
  					unsigned long address,
  					pmd_t *pmd, pmd_t orig_pmd,
  					struct page *page,
  					unsigned long haddr)
  {
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1001
  	spinlock_t *ptl;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1002
1003
1004
1005
  	pgtable_t pgtable;
  	pmd_t _pmd;
  	int ret = 0, i;
  	struct page **pages;
2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
1006
1007
  	unsigned long mmun_start;	/* For mmu_notifiers */
  	unsigned long mmun_end;		/* For mmu_notifiers */
71e3aac07   Andrea Arcangeli   thp: transparent ...
1008
1009
1010
1011
1012
1013
1014
1015
1016
  
  	pages = kmalloc(sizeof(struct page *) * HPAGE_PMD_NR,
  			GFP_KERNEL);
  	if (unlikely(!pages)) {
  		ret |= VM_FAULT_OOM;
  		goto out;
  	}
  
  	for (i = 0; i < HPAGE_PMD_NR; i++) {
cc5d462f7   Andi Kleen   mm: use __GFP_OTH...
1017
1018
  		pages[i] = alloc_page_vma_node(GFP_HIGHUSER_MOVABLE |
  					       __GFP_OTHER_NODE,
19ee151e1   Andi Kleen   mm: preserve orig...
1019
  					       vma, address, page_to_nid(page));
b9bbfbe30   Andrea Arcangeli   thp: memcg huge m...
1020
1021
1022
1023
  		if (unlikely(!pages[i] ||
  			     mem_cgroup_newpage_charge(pages[i], mm,
  						       GFP_KERNEL))) {
  			if (pages[i])
71e3aac07   Andrea Arcangeli   thp: transparent ...
1024
  				put_page(pages[i]);
b9bbfbe30   Andrea Arcangeli   thp: memcg huge m...
1025
1026
1027
1028
1029
1030
  			mem_cgroup_uncharge_start();
  			while (--i >= 0) {
  				mem_cgroup_uncharge_page(pages[i]);
  				put_page(pages[i]);
  			}
  			mem_cgroup_uncharge_end();
71e3aac07   Andrea Arcangeli   thp: transparent ...
1031
1032
1033
1034
1035
1036
1037
1038
  			kfree(pages);
  			ret |= VM_FAULT_OOM;
  			goto out;
  		}
  	}
  
  	for (i = 0; i < HPAGE_PMD_NR; i++) {
  		copy_user_highpage(pages[i], page + i,
0089e4853   Hillf Danton   mm/huge_memory: f...
1039
  				   haddr + PAGE_SIZE * i, vma);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1040
1041
1042
  		__SetPageUptodate(pages[i]);
  		cond_resched();
  	}
2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
1043
1044
1045
  	mmun_start = haddr;
  	mmun_end   = haddr + HPAGE_PMD_SIZE;
  	mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1046
  	ptl = pmd_lock(mm, pmd);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1047
1048
  	if (unlikely(!pmd_same(*pmd, orig_pmd)))
  		goto out_free_pages;
309381fea   Sasha Levin   mm: dump page whe...
1049
  	VM_BUG_ON_PAGE(!PageHead(page), page);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1050

2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
1051
  	pmdp_clear_flush(vma, haddr, pmd);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1052
  	/* leave pmd empty until pte is filled */
6b0b50b06   Aneesh Kumar K.V   mm/THP: add pmd a...
1053
  	pgtable = pgtable_trans_huge_withdraw(mm, pmd);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
  	pmd_populate(mm, &_pmd, pgtable);
  
  	for (i = 0; i < HPAGE_PMD_NR; i++, haddr += PAGE_SIZE) {
  		pte_t *pte, entry;
  		entry = mk_pte(pages[i], vma->vm_page_prot);
  		entry = maybe_mkwrite(pte_mkdirty(entry), vma);
  		page_add_new_anon_rmap(pages[i], vma, haddr);
  		pte = pte_offset_map(&_pmd, haddr);
  		VM_BUG_ON(!pte_none(*pte));
  		set_pte_at(mm, haddr, pte, entry);
  		pte_unmap(pte);
  	}
  	kfree(pages);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1067
1068
1069
  	smp_wmb(); /* make pte visible before pmd */
  	pmd_populate(mm, pmd, pgtable);
  	page_remove_rmap(page);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1070
  	spin_unlock(ptl);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1071

2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
1072
  	mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1073
1074
1075
1076
1077
1078
1079
  	ret |= VM_FAULT_WRITE;
  	put_page(page);
  
  out:
  	return ret;
  
  out_free_pages:
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1080
  	spin_unlock(ptl);
2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
1081
  	mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
b9bbfbe30   Andrea Arcangeli   thp: memcg huge m...
1082
1083
1084
  	mem_cgroup_uncharge_start();
  	for (i = 0; i < HPAGE_PMD_NR; i++) {
  		mem_cgroup_uncharge_page(pages[i]);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1085
  		put_page(pages[i]);
b9bbfbe30   Andrea Arcangeli   thp: memcg huge m...
1086
1087
  	}
  	mem_cgroup_uncharge_end();
71e3aac07   Andrea Arcangeli   thp: transparent ...
1088
1089
1090
1091
1092
1093
1094
  	kfree(pages);
  	goto out;
  }
  
  int do_huge_pmd_wp_page(struct mm_struct *mm, struct vm_area_struct *vma,
  			unsigned long address, pmd_t *pmd, pmd_t orig_pmd)
  {
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1095
  	spinlock_t *ptl;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1096
  	int ret = 0;
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
1097
  	struct page *page = NULL, *new_page;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1098
  	unsigned long haddr;
2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
1099
1100
  	unsigned long mmun_start;	/* For mmu_notifiers */
  	unsigned long mmun_end;		/* For mmu_notifiers */
71e3aac07   Andrea Arcangeli   thp: transparent ...
1101

c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1102
  	ptl = pmd_lockptr(mm, pmd);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1103
  	VM_BUG_ON(!vma->anon_vma);
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
1104
1105
1106
  	haddr = address & HPAGE_PMD_MASK;
  	if (is_huge_zero_pmd(orig_pmd))
  		goto alloc;
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1107
  	spin_lock(ptl);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1108
1109
1110
1111
  	if (unlikely(!pmd_same(*pmd, orig_pmd)))
  		goto out_unlock;
  
  	page = pmd_page(orig_pmd);
309381fea   Sasha Levin   mm: dump page whe...
1112
  	VM_BUG_ON_PAGE(!PageCompound(page) || !PageHead(page), page);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1113
1114
1115
1116
1117
  	if (page_mapcount(page) == 1) {
  		pmd_t entry;
  		entry = pmd_mkyoung(orig_pmd);
  		entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
  		if (pmdp_set_access_flags(vma, haddr, pmd, entry,  1))
b113da657   David Miller   mm: Add and use u...
1118
  			update_mmu_cache_pmd(vma, address, pmd);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1119
1120
1121
1122
  		ret |= VM_FAULT_WRITE;
  		goto out_unlock;
  	}
  	get_page(page);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1123
  	spin_unlock(ptl);
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
1124
  alloc:
71e3aac07   Andrea Arcangeli   thp: transparent ...
1125
1126
  	if (transparent_hugepage_enabled(vma) &&
  	    !transparent_hugepage_debug_cow())
0bbbc0b33   Andrea Arcangeli   thp: add numa awa...
1127
  		new_page = alloc_hugepage_vma(transparent_hugepage_defrag(vma),
cc5d462f7   Andi Kleen   mm: use __GFP_OTH...
1128
  					      vma, haddr, numa_node_id(), 0);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1129
1130
1131
1132
  	else
  		new_page = NULL;
  
  	if (unlikely(!new_page)) {
eecc1e426   Hugh Dickins   thp: fix copy_pag...
1133
  		if (!page) {
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
1134
  			ret = do_huge_pmd_wp_zero_page_fallback(mm, vma,
3ea41e621   Kirill A. Shutemov   thp: avoid race o...
1135
  					address, pmd, orig_pmd, haddr);
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
1136
1137
1138
  		} else {
  			ret = do_huge_pmd_wp_page_fallback(mm, vma, address,
  					pmd, orig_pmd, page, haddr);
9845cbbd1   Kirill A. Shutemov   mm, thp: fix infi...
1139
  			if (ret & VM_FAULT_OOM) {
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
1140
  				split_huge_page(page);
9845cbbd1   Kirill A. Shutemov   mm, thp: fix infi...
1141
1142
  				ret |= VM_FAULT_FALLBACK;
  			}
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
1143
1144
  			put_page(page);
  		}
17766dde3   David Rientjes   mm, thp: count th...
1145
  		count_vm_event(THP_FAULT_FALLBACK);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1146
1147
  		goto out;
  	}
b9bbfbe30   Andrea Arcangeli   thp: memcg huge m...
1148
1149
  	if (unlikely(mem_cgroup_newpage_charge(new_page, mm, GFP_KERNEL))) {
  		put_page(new_page);
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
1150
1151
1152
  		if (page) {
  			split_huge_page(page);
  			put_page(page);
9845cbbd1   Kirill A. Shutemov   mm, thp: fix infi...
1153
1154
1155
  		} else
  			split_huge_page_pmd(vma, address, pmd);
  		ret |= VM_FAULT_FALLBACK;
17766dde3   David Rientjes   mm, thp: count th...
1156
  		count_vm_event(THP_FAULT_FALLBACK);
b9bbfbe30   Andrea Arcangeli   thp: memcg huge m...
1157
1158
  		goto out;
  	}
17766dde3   David Rientjes   mm, thp: count th...
1159
  	count_vm_event(THP_FAULT_ALLOC);
eecc1e426   Hugh Dickins   thp: fix copy_pag...
1160
  	if (!page)
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
1161
1162
1163
  		clear_huge_page(new_page, haddr, HPAGE_PMD_NR);
  	else
  		copy_user_huge_page(new_page, page, haddr, vma, HPAGE_PMD_NR);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1164
  	__SetPageUptodate(new_page);
2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
1165
1166
1167
  	mmun_start = haddr;
  	mmun_end   = haddr + HPAGE_PMD_SIZE;
  	mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1168
  	spin_lock(ptl);
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
1169
1170
  	if (page)
  		put_page(page);
b9bbfbe30   Andrea Arcangeli   thp: memcg huge m...
1171
  	if (unlikely(!pmd_same(*pmd, orig_pmd))) {
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1172
  		spin_unlock(ptl);
b9bbfbe30   Andrea Arcangeli   thp: memcg huge m...
1173
  		mem_cgroup_uncharge_page(new_page);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1174
  		put_page(new_page);
2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
1175
  		goto out_mn;
b9bbfbe30   Andrea Arcangeli   thp: memcg huge m...
1176
  	} else {
71e3aac07   Andrea Arcangeli   thp: transparent ...
1177
  		pmd_t entry;
3122359a6   Kirill A. Shutemov   thp: move maybe_p...
1178
1179
  		entry = mk_huge_pmd(new_page, vma->vm_page_prot);
  		entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
1180
  		pmdp_clear_flush(vma, haddr, pmd);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1181
1182
  		page_add_new_anon_rmap(new_page, vma, haddr);
  		set_pmd_at(mm, haddr, pmd, entry);
b113da657   David Miller   mm: Add and use u...
1183
  		update_mmu_cache_pmd(vma, address, pmd);
eecc1e426   Hugh Dickins   thp: fix copy_pag...
1184
  		if (!page) {
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
1185
  			add_mm_counter(mm, MM_ANONPAGES, HPAGE_PMD_NR);
97ae17497   Kirill A. Shutemov   thp: implement re...
1186
1187
  			put_huge_zero_page();
  		} else {
309381fea   Sasha Levin   mm: dump page whe...
1188
  			VM_BUG_ON_PAGE(!PageHead(page), page);
93b4796de   Kirill A. Shutemov   thp: do_huge_pmd_...
1189
1190
1191
  			page_remove_rmap(page);
  			put_page(page);
  		}
71e3aac07   Andrea Arcangeli   thp: transparent ...
1192
1193
  		ret |= VM_FAULT_WRITE;
  	}
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1194
  	spin_unlock(ptl);
2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
1195
1196
  out_mn:
  	mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1197
1198
  out:
  	return ret;
2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
1199
  out_unlock:
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1200
  	spin_unlock(ptl);
2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
1201
  	return ret;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1202
  }
b676b293f   David Rientjes   mm, thp: fix mapp...
1203
  struct page *follow_trans_huge_pmd(struct vm_area_struct *vma,
71e3aac07   Andrea Arcangeli   thp: transparent ...
1204
1205
1206
1207
  				   unsigned long addr,
  				   pmd_t *pmd,
  				   unsigned int flags)
  {
b676b293f   David Rientjes   mm, thp: fix mapp...
1208
  	struct mm_struct *mm = vma->vm_mm;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1209
  	struct page *page = NULL;
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1210
  	assert_spin_locked(pmd_lockptr(mm, pmd));
71e3aac07   Andrea Arcangeli   thp: transparent ...
1211
1212
1213
  
  	if (flags & FOLL_WRITE && !pmd_write(*pmd))
  		goto out;
85facf257   Kirill A. Shutemov   thp: avoid dumpin...
1214
1215
1216
  	/* Avoid dumping huge zero page */
  	if ((flags & FOLL_DUMP) && is_huge_zero_pmd(*pmd))
  		return ERR_PTR(-EFAULT);
2b4847e73   Mel Gorman   mm: numa: seriali...
1217
1218
1219
  	/* Full NUMA hinting faults to serialise migration in fault paths */
  	if ((flags & FOLL_NUMA) && pmd_numa(*pmd))
  		goto out;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1220
  	page = pmd_page(*pmd);
309381fea   Sasha Levin   mm: dump page whe...
1221
  	VM_BUG_ON_PAGE(!PageHead(page), page);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
  	if (flags & FOLL_TOUCH) {
  		pmd_t _pmd;
  		/*
  		 * We should set the dirty bit only for FOLL_WRITE but
  		 * for now the dirty bit in the pmd is meaningless.
  		 * And if the dirty bit will become meaningful and
  		 * we'll only set it with FOLL_WRITE, an atomic
  		 * set_bit will be required on the pmd to set the
  		 * young bit, instead of the current set_pmd_at.
  		 */
  		_pmd = pmd_mkyoung(pmd_mkdirty(*pmd));
8663890a9   Aneesh Kumar K.V   mm/thp: use the c...
1233
1234
1235
  		if (pmdp_set_access_flags(vma, addr & HPAGE_PMD_MASK,
  					  pmd, _pmd,  1))
  			update_mmu_cache_pmd(vma, addr, pmd);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1236
  	}
b676b293f   David Rientjes   mm, thp: fix mapp...
1237
1238
1239
1240
1241
1242
1243
1244
  	if ((flags & FOLL_MLOCK) && (vma->vm_flags & VM_LOCKED)) {
  		if (page->mapping && trylock_page(page)) {
  			lru_add_drain();
  			if (page->mapping)
  				mlock_vma_page(page);
  			unlock_page(page);
  		}
  	}
71e3aac07   Andrea Arcangeli   thp: transparent ...
1245
  	page += (addr & ~HPAGE_PMD_MASK) >> PAGE_SHIFT;
309381fea   Sasha Levin   mm: dump page whe...
1246
  	VM_BUG_ON_PAGE(!PageCompound(page), page);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1247
  	if (flags & FOLL_GET)
70b50f94f   Andrea Arcangeli   mm: thp: tail pag...
1248
  		get_page_foll(page);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1249
1250
1251
1252
  
  out:
  	return page;
  }
d10e63f29   Mel Gorman   mm: numa: Create ...
1253
  /* NUMA hinting page fault entry point for trans huge pmds */
4daae3b4b   Mel Gorman   mm: mempolicy: Us...
1254
1255
  int do_huge_pmd_numa_page(struct mm_struct *mm, struct vm_area_struct *vma,
  				unsigned long addr, pmd_t pmd, pmd_t *pmdp)
d10e63f29   Mel Gorman   mm: numa: Create ...
1256
  {
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1257
  	spinlock_t *ptl;
b8916634b   Mel Gorman   mm: Prevent paral...
1258
  	struct anon_vma *anon_vma = NULL;
b32967ff1   Mel Gorman   mm: numa: Add THP...
1259
  	struct page *page;
d10e63f29   Mel Gorman   mm: numa: Create ...
1260
  	unsigned long haddr = addr & HPAGE_PMD_MASK;
8191acbd3   Mel Gorman   mm: numa: Sanitiz...
1261
  	int page_nid = -1, this_nid = numa_node_id();
90572890d   Peter Zijlstra   mm: numa: Change ...
1262
  	int target_nid, last_cpupid = -1;
8191acbd3   Mel Gorman   mm: numa: Sanitiz...
1263
1264
  	bool page_locked;
  	bool migrated = false;
6688cc054   Peter Zijlstra   mm: numa: Do not ...
1265
  	int flags = 0;
d10e63f29   Mel Gorman   mm: numa: Create ...
1266

c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1267
  	ptl = pmd_lock(mm, pmdp);
d10e63f29   Mel Gorman   mm: numa: Create ...
1268
1269
  	if (unlikely(!pmd_same(pmd, *pmdp)))
  		goto out_unlock;
de466bd62   Mel Gorman   mm: numa: avoid u...
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
  	/*
  	 * If there are potential migrations, wait for completion and retry
  	 * without disrupting NUMA hinting information. Do not relock and
  	 * check_same as the page may no longer be mapped.
  	 */
  	if (unlikely(pmd_trans_migrating(*pmdp))) {
  		spin_unlock(ptl);
  		wait_migrate_huge_page(vma->anon_vma, pmdp);
  		goto out;
  	}
d10e63f29   Mel Gorman   mm: numa: Create ...
1280
  	page = pmd_page(pmd);
a1a46184e   Mel Gorman   mm: numa: Do not ...
1281
  	BUG_ON(is_huge_zero_page(page));
8191acbd3   Mel Gorman   mm: numa: Sanitiz...
1282
  	page_nid = page_to_nid(page);
90572890d   Peter Zijlstra   mm: numa: Change ...
1283
  	last_cpupid = page_cpupid_last(page);
03c5a6e16   Mel Gorman   mm: numa: Add pte...
1284
  	count_vm_numa_event(NUMA_HINT_FAULTS);
04bb2f947   Rik van Riel   sched/numa: Adjus...
1285
  	if (page_nid == this_nid) {
03c5a6e16   Mel Gorman   mm: numa: Add pte...
1286
  		count_vm_numa_event(NUMA_HINT_FAULTS_LOCAL);
04bb2f947   Rik van Riel   sched/numa: Adjus...
1287
1288
  		flags |= TNF_FAULT_LOCAL;
  	}
4daae3b4b   Mel Gorman   mm: mempolicy: Us...
1289

ff9042b11   Mel Gorman   mm: Wait for THP ...
1290
  	/*
6688cc054   Peter Zijlstra   mm: numa: Do not ...
1291
1292
1293
1294
1295
1296
1297
1298
  	 * Avoid grouping on DSO/COW pages in specific and RO pages
  	 * in general, RO pages shouldn't hurt as much anyway since
  	 * they can be in shared cache state.
  	 */
  	if (!pmd_write(pmd))
  		flags |= TNF_NO_GROUP;
  
  	/*
ff9042b11   Mel Gorman   mm: Wait for THP ...
1299
1300
1301
  	 * Acquire the page lock to serialise THP migrations but avoid dropping
  	 * page_table_lock if at all possible
  	 */
b8916634b   Mel Gorman   mm: Prevent paral...
1302
1303
1304
1305
  	page_locked = trylock_page(page);
  	target_nid = mpol_misplaced(page, vma, haddr);
  	if (target_nid == -1) {
  		/* If the page was locked, there are no parallel migrations */
a54a407fb   Mel Gorman   mm: Close races b...
1306
  		if (page_locked)
b8916634b   Mel Gorman   mm: Prevent paral...
1307
  			goto clear_pmdnuma;
2b4847e73   Mel Gorman   mm: numa: seriali...
1308
  	}
4daae3b4b   Mel Gorman   mm: mempolicy: Us...
1309

de466bd62   Mel Gorman   mm: numa: avoid u...
1310
  	/* Migration could have started since the pmd_trans_migrating check */
2b4847e73   Mel Gorman   mm: numa: seriali...
1311
  	if (!page_locked) {
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1312
  		spin_unlock(ptl);
b8916634b   Mel Gorman   mm: Prevent paral...
1313
  		wait_on_page_locked(page);
a54a407fb   Mel Gorman   mm: Close races b...
1314
  		page_nid = -1;
b8916634b   Mel Gorman   mm: Prevent paral...
1315
1316
  		goto out;
  	}
2b4847e73   Mel Gorman   mm: numa: seriali...
1317
1318
1319
1320
  	/*
  	 * Page is misplaced. Page lock serialises migrations. Acquire anon_vma
  	 * to serialises splits
  	 */
b8916634b   Mel Gorman   mm: Prevent paral...
1321
  	get_page(page);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1322
  	spin_unlock(ptl);
b8916634b   Mel Gorman   mm: Prevent paral...
1323
  	anon_vma = page_lock_anon_vma_read(page);
4daae3b4b   Mel Gorman   mm: mempolicy: Us...
1324

c69307d53   Peter Zijlstra   sched/numa: Fix c...
1325
  	/* Confirm the PMD did not change while page_table_lock was released */
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1326
  	spin_lock(ptl);
b32967ff1   Mel Gorman   mm: numa: Add THP...
1327
1328
1329
  	if (unlikely(!pmd_same(pmd, *pmdp))) {
  		unlock_page(page);
  		put_page(page);
a54a407fb   Mel Gorman   mm: Close races b...
1330
  		page_nid = -1;
4daae3b4b   Mel Gorman   mm: mempolicy: Us...
1331
  		goto out_unlock;
b32967ff1   Mel Gorman   mm: numa: Add THP...
1332
  	}
ff9042b11   Mel Gorman   mm: Wait for THP ...
1333

c3a489cac   Mel Gorman   mm: numa: ensure ...
1334
1335
1336
1337
1338
1339
  	/* Bail if we fail to protect against THP splits for any reason */
  	if (unlikely(!anon_vma)) {
  		put_page(page);
  		page_nid = -1;
  		goto clear_pmdnuma;
  	}
a54a407fb   Mel Gorman   mm: Close races b...
1340
1341
1342
1343
  	/*
  	 * Migrate the THP to the requested node, returns with page unlocked
  	 * and pmd_numa cleared.
  	 */
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1344
  	spin_unlock(ptl);
b32967ff1   Mel Gorman   mm: numa: Add THP...
1345
  	migrated = migrate_misplaced_transhuge_page(mm, vma,
340ef3902   Hugh Dickins   mm: numa: cleanup...
1346
  				pmdp, pmd, addr, page, target_nid);
6688cc054   Peter Zijlstra   mm: numa: Do not ...
1347
1348
  	if (migrated) {
  		flags |= TNF_MIGRATED;
8191acbd3   Mel Gorman   mm: numa: Sanitiz...
1349
  		page_nid = target_nid;
6688cc054   Peter Zijlstra   mm: numa: Do not ...
1350
  	}
b32967ff1   Mel Gorman   mm: numa: Add THP...
1351

8191acbd3   Mel Gorman   mm: numa: Sanitiz...
1352
  	goto out;
b32967ff1   Mel Gorman   mm: numa: Add THP...
1353
  clear_pmdnuma:
a54a407fb   Mel Gorman   mm: Close races b...
1354
  	BUG_ON(!PageLocked(page));
d10e63f29   Mel Gorman   mm: numa: Create ...
1355
1356
1357
1358
  	pmd = pmd_mknonnuma(pmd);
  	set_pmd_at(mm, haddr, pmdp, pmd);
  	VM_BUG_ON(pmd_numa(*pmdp));
  	update_mmu_cache_pmd(vma, addr, pmdp);
a54a407fb   Mel Gorman   mm: Close races b...
1359
  	unlock_page(page);
d10e63f29   Mel Gorman   mm: numa: Create ...
1360
  out_unlock:
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
1361
  	spin_unlock(ptl);
b8916634b   Mel Gorman   mm: Prevent paral...
1362
1363
1364
1365
  
  out:
  	if (anon_vma)
  		page_unlock_anon_vma_read(anon_vma);
8191acbd3   Mel Gorman   mm: numa: Sanitiz...
1366
  	if (page_nid != -1)
6688cc054   Peter Zijlstra   mm: numa: Do not ...
1367
  		task_numa_fault(last_cpupid, page_nid, HPAGE_PMD_NR, flags);
8191acbd3   Mel Gorman   mm: numa: Sanitiz...
1368

d10e63f29   Mel Gorman   mm: numa: Create ...
1369
1370
  	return 0;
  }
71e3aac07   Andrea Arcangeli   thp: transparent ...
1371
  int zap_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
f21760b15   Shaohua Li   thp: add tlb_remo...
1372
  		 pmd_t *pmd, unsigned long addr)
71e3aac07   Andrea Arcangeli   thp: transparent ...
1373
  {
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1374
  	spinlock_t *ptl;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1375
  	int ret = 0;
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1376
  	if (__pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
025c5b245   Naoya Horiguchi   thp: optimize awa...
1377
1378
  		struct page *page;
  		pgtable_t pgtable;
f5c8ad472   David Miller   mm: thp: Use more...
1379
  		pmd_t orig_pmd;
a6bf2bb03   Aneesh Kumar K.V   mm/THP: withdraw ...
1380
1381
1382
1383
1384
1385
  		/*
  		 * For architectures like ppc64 we look at deposited pgtable
  		 * when calling pmdp_get_and_clear. So do the
  		 * pgtable_trans_huge_withdraw after finishing pmdp related
  		 * operations.
  		 */
f5c8ad472   David Miller   mm: thp: Use more...
1386
  		orig_pmd = pmdp_get_and_clear(tlb->mm, addr, pmd);
025c5b245   Naoya Horiguchi   thp: optimize awa...
1387
  		tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
a6bf2bb03   Aneesh Kumar K.V   mm/THP: withdraw ...
1388
  		pgtable = pgtable_trans_huge_withdraw(tlb->mm, pmd);
479f0abbf   Kirill A. Shutemov   thp: zap_huge_pmd...
1389
  		if (is_huge_zero_pmd(orig_pmd)) {
e1f56c89b   Kirill A. Shutemov   mm: convert mm->n...
1390
  			atomic_long_dec(&tlb->mm->nr_ptes);
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1391
  			spin_unlock(ptl);
97ae17497   Kirill A. Shutemov   thp: implement re...
1392
  			put_huge_zero_page();
479f0abbf   Kirill A. Shutemov   thp: zap_huge_pmd...
1393
1394
1395
  		} else {
  			page = pmd_page(orig_pmd);
  			page_remove_rmap(page);
309381fea   Sasha Levin   mm: dump page whe...
1396
  			VM_BUG_ON_PAGE(page_mapcount(page) < 0, page);
479f0abbf   Kirill A. Shutemov   thp: zap_huge_pmd...
1397
  			add_mm_counter(tlb->mm, MM_ANONPAGES, -HPAGE_PMD_NR);
309381fea   Sasha Levin   mm: dump page whe...
1398
  			VM_BUG_ON_PAGE(!PageHead(page), page);
e1f56c89b   Kirill A. Shutemov   mm: convert mm->n...
1399
  			atomic_long_dec(&tlb->mm->nr_ptes);
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1400
  			spin_unlock(ptl);
479f0abbf   Kirill A. Shutemov   thp: zap_huge_pmd...
1401
1402
  			tlb_remove_page(tlb, page);
  		}
025c5b245   Naoya Horiguchi   thp: optimize awa...
1403
1404
1405
  		pte_free(tlb->mm, pgtable);
  		ret = 1;
  	}
71e3aac07   Andrea Arcangeli   thp: transparent ...
1406
1407
  	return ret;
  }
0ca1634d4   Johannes Weiner   thp: mincore tran...
1408
1409
1410
1411
  int mincore_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
  		unsigned long addr, unsigned long end,
  		unsigned char *vec)
  {
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1412
  	spinlock_t *ptl;
0ca1634d4   Johannes Weiner   thp: mincore tran...
1413
  	int ret = 0;
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1414
  	if (__pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
025c5b245   Naoya Horiguchi   thp: optimize awa...
1415
1416
1417
1418
  		/*
  		 * All logical pages in the range are present
  		 * if backed by a huge page.
  		 */
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1419
  		spin_unlock(ptl);
025c5b245   Naoya Horiguchi   thp: optimize awa...
1420
1421
1422
  		memset(vec, 1, (end - addr) >> PAGE_SHIFT);
  		ret = 1;
  	}
0ca1634d4   Johannes Weiner   thp: mincore tran...
1423
1424
1425
  
  	return ret;
  }
37a1c49a9   Andrea Arcangeli   thp: mremap suppo...
1426
1427
1428
1429
1430
  int move_huge_pmd(struct vm_area_struct *vma, struct vm_area_struct *new_vma,
  		  unsigned long old_addr,
  		  unsigned long new_addr, unsigned long old_end,
  		  pmd_t *old_pmd, pmd_t *new_pmd)
  {
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1431
  	spinlock_t *old_ptl, *new_ptl;
37a1c49a9   Andrea Arcangeli   thp: mremap suppo...
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
  	int ret = 0;
  	pmd_t pmd;
  
  	struct mm_struct *mm = vma->vm_mm;
  
  	if ((old_addr & ~HPAGE_PMD_MASK) ||
  	    (new_addr & ~HPAGE_PMD_MASK) ||
  	    old_end - old_addr < HPAGE_PMD_SIZE ||
  	    (new_vma->vm_flags & VM_NOHUGEPAGE))
  		goto out;
  
  	/*
  	 * The destination pmd shouldn't be established, free_pgtables()
  	 * should have release it.
  	 */
  	if (WARN_ON(!pmd_none(*new_pmd))) {
  		VM_BUG_ON(pmd_trans_huge(*new_pmd));
  		goto out;
  	}
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1451
1452
1453
1454
1455
  	/*
  	 * We don't have to worry about the ordering of src and dst
  	 * ptlocks because exclusive mmap_sem prevents deadlock.
  	 */
  	ret = __pmd_trans_huge_lock(old_pmd, vma, &old_ptl);
025c5b245   Naoya Horiguchi   thp: optimize awa...
1456
  	if (ret == 1) {
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1457
1458
1459
  		new_ptl = pmd_lockptr(mm, new_pmd);
  		if (new_ptl != old_ptl)
  			spin_lock_nested(new_ptl, SINGLE_DEPTH_NESTING);
025c5b245   Naoya Horiguchi   thp: optimize awa...
1460
1461
  		pmd = pmdp_get_and_clear(mm, old_addr, old_pmd);
  		VM_BUG_ON(!pmd_none(*new_pmd));
3592806cf   Kirill A. Shutemov   thp: move preallo...
1462

b3084f4db   Aneesh Kumar K.V   powerpc/thp: Fix ...
1463
1464
  		if (pmd_move_must_withdraw(new_ptl, old_ptl)) {
  			pgtable_t pgtable;
3592806cf   Kirill A. Shutemov   thp: move preallo...
1465
1466
  			pgtable = pgtable_trans_huge_withdraw(mm, old_pmd);
  			pgtable_trans_huge_deposit(mm, new_pmd, pgtable);
3592806cf   Kirill A. Shutemov   thp: move preallo...
1467
  		}
b3084f4db   Aneesh Kumar K.V   powerpc/thp: Fix ...
1468
1469
1470
  		set_pmd_at(mm, new_addr, new_pmd, pmd_mksoft_dirty(pmd));
  		if (new_ptl != old_ptl)
  			spin_unlock(new_ptl);
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1471
  		spin_unlock(old_ptl);
37a1c49a9   Andrea Arcangeli   thp: mremap suppo...
1472
1473
1474
1475
  	}
  out:
  	return ret;
  }
f123d74ab   Mel Gorman   mm: Only flush TL...
1476
1477
1478
1479
1480
1481
  /*
   * Returns
   *  - 0 if PMD could not be locked
   *  - 1 if PMD was locked but protections unchange and TLB flush unnecessary
   *  - HPAGE_PMD_NR is protections changed and TLB flush necessary
   */
cd7548ab3   Johannes Weiner   thp: mprotect: tr...
1482
  int change_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
4b10e7d56   Mel Gorman   mm: mempolicy: Im...
1483
  		unsigned long addr, pgprot_t newprot, int prot_numa)
cd7548ab3   Johannes Weiner   thp: mprotect: tr...
1484
1485
  {
  	struct mm_struct *mm = vma->vm_mm;
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1486
  	spinlock_t *ptl;
cd7548ab3   Johannes Weiner   thp: mprotect: tr...
1487
  	int ret = 0;
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1488
  	if (__pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
025c5b245   Naoya Horiguchi   thp: optimize awa...
1489
  		pmd_t entry;
f123d74ab   Mel Gorman   mm: Only flush TL...
1490
  		ret = 1;
a4f1de176   Hugh Dickins   mm: fix kernel BU...
1491
  		if (!prot_numa) {
f123d74ab   Mel Gorman   mm: Only flush TL...
1492
  			entry = pmdp_get_and_clear(mm, addr, pmd);
1667918b6   Mel Gorman   mm: numa: clear n...
1493
1494
  			if (pmd_numa(entry))
  				entry = pmd_mknonnuma(entry);
4b10e7d56   Mel Gorman   mm: mempolicy: Im...
1495
  			entry = pmd_modify(entry, newprot);
f123d74ab   Mel Gorman   mm: Only flush TL...
1496
  			ret = HPAGE_PMD_NR;
56eecdb91   Aneesh Kumar K.V   mm: Use ptep/pmdp...
1497
  			set_pmd_at(mm, addr, pmd, entry);
a4f1de176   Hugh Dickins   mm: fix kernel BU...
1498
1499
  			BUG_ON(pmd_write(entry));
  		} else {
4b10e7d56   Mel Gorman   mm: mempolicy: Im...
1500
  			struct page *page = pmd_page(*pmd);
a1a46184e   Mel Gorman   mm: numa: Do not ...
1501
  			/*
1bc115d87   Mel Gorman   mm: numa: Scan pa...
1502
1503
1504
1505
  			 * Do not trap faults against the zero page. The
  			 * read-only data is likely to be read-cached on the
  			 * local CPU cache and it is less useful to know about
  			 * local vs remote hits on the zero page.
a1a46184e   Mel Gorman   mm: numa: Do not ...
1506
  			 */
1bc115d87   Mel Gorman   mm: numa: Scan pa...
1507
  			if (!is_huge_zero_page(page) &&
4b10e7d56   Mel Gorman   mm: mempolicy: Im...
1508
  			    !pmd_numa(*pmd)) {
56eecdb91   Aneesh Kumar K.V   mm: Use ptep/pmdp...
1509
  				pmdp_set_numa(mm, addr, pmd);
f123d74ab   Mel Gorman   mm: Only flush TL...
1510
  				ret = HPAGE_PMD_NR;
4b10e7d56   Mel Gorman   mm: mempolicy: Im...
1511
1512
  			}
  		}
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1513
  		spin_unlock(ptl);
025c5b245   Naoya Horiguchi   thp: optimize awa...
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
  	}
  
  	return ret;
  }
  
  /*
   * Returns 1 if a given pmd maps a stable (not under splitting) thp.
   * Returns -1 if it maps a thp under splitting. Returns 0 otherwise.
   *
   * Note that if it returns 1, this routine returns without unlocking page
   * table locks. So callers must unlock them.
   */
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1526
1527
  int __pmd_trans_huge_lock(pmd_t *pmd, struct vm_area_struct *vma,
  		spinlock_t **ptl)
025c5b245   Naoya Horiguchi   thp: optimize awa...
1528
  {
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1529
  	*ptl = pmd_lock(vma->vm_mm, pmd);
cd7548ab3   Johannes Weiner   thp: mprotect: tr...
1530
1531
  	if (likely(pmd_trans_huge(*pmd))) {
  		if (unlikely(pmd_trans_splitting(*pmd))) {
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1532
  			spin_unlock(*ptl);
cd7548ab3   Johannes Weiner   thp: mprotect: tr...
1533
  			wait_split_huge_page(vma->anon_vma, pmd);
025c5b245   Naoya Horiguchi   thp: optimize awa...
1534
  			return -1;
cd7548ab3   Johannes Weiner   thp: mprotect: tr...
1535
  		} else {
025c5b245   Naoya Horiguchi   thp: optimize awa...
1536
1537
1538
  			/* Thp mapped by 'pmd' is stable, so we can
  			 * handle it as it is. */
  			return 1;
cd7548ab3   Johannes Weiner   thp: mprotect: tr...
1539
  		}
025c5b245   Naoya Horiguchi   thp: optimize awa...
1540
  	}
bf929152e   Kirill A. Shutemov   mm, thp: change p...
1541
  	spin_unlock(*ptl);
025c5b245   Naoya Horiguchi   thp: optimize awa...
1542
  	return 0;
cd7548ab3   Johannes Weiner   thp: mprotect: tr...
1543
  }
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1544
1545
1546
1547
1548
1549
1550
1551
  /*
   * This function returns whether a given @page is mapped onto the @address
   * in the virtual space of @mm.
   *
   * When it's true, this function returns *pmd with holding the page table lock
   * and passing it back to the caller via @ptl.
   * If it's false, returns NULL without holding the page table lock.
   */
71e3aac07   Andrea Arcangeli   thp: transparent ...
1552
1553
1554
  pmd_t *page_check_address_pmd(struct page *page,
  			      struct mm_struct *mm,
  			      unsigned long address,
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1555
1556
  			      enum page_check_address_pmd_flag flag,
  			      spinlock_t **ptl)
71e3aac07   Andrea Arcangeli   thp: transparent ...
1557
  {
e412868ec   Kirill A. Shutemov   thp: close race b...
1558
1559
  	pgd_t *pgd;
  	pud_t *pud;
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1560
  	pmd_t *pmd;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1561
1562
  
  	if (address & ~HPAGE_PMD_MASK)
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1563
  		return NULL;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1564

e412868ec   Kirill A. Shutemov   thp: close race b...
1565
1566
  	pgd = pgd_offset(mm, address);
  	if (!pgd_present(*pgd))
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1567
  		return NULL;
e412868ec   Kirill A. Shutemov   thp: close race b...
1568
1569
1570
1571
  	pud = pud_offset(pgd, address);
  	if (!pud_present(*pud))
  		return NULL;
  	pmd = pmd_offset(pud, address);
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1572
  	*ptl = pmd_lock(mm, pmd);
e412868ec   Kirill A. Shutemov   thp: close race b...
1573
  	if (!pmd_present(*pmd))
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1574
  		goto unlock;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1575
  	if (pmd_page(*pmd) != page)
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1576
  		goto unlock;
94fcc585f   Andrea Arcangeli   thp: avoid breaki...
1577
1578
1579
1580
1581
1582
1583
1584
1585
  	/*
  	 * split_vma() may create temporary aliased mappings. There is
  	 * no risk as long as all huge pmd are found and have their
  	 * splitting bit set before __split_huge_page_refcount
  	 * runs. Finding the same huge pmd more than once during the
  	 * same rmap walk is not a problem.
  	 */
  	if (flag == PAGE_CHECK_ADDRESS_PMD_NOTSPLITTING_FLAG &&
  	    pmd_trans_splitting(*pmd))
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1586
  		goto unlock;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1587
1588
1589
  	if (pmd_trans_huge(*pmd)) {
  		VM_BUG_ON(flag == PAGE_CHECK_ADDRESS_PMD_SPLITTING_FLAG &&
  			  !pmd_trans_splitting(*pmd));
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1590
  		return pmd;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1591
  	}
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1592
1593
1594
  unlock:
  	spin_unlock(*ptl);
  	return NULL;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1595
1596
1597
1598
1599
1600
1601
  }
  
  static int __split_huge_page_splitting(struct page *page,
  				       struct vm_area_struct *vma,
  				       unsigned long address)
  {
  	struct mm_struct *mm = vma->vm_mm;
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1602
  	spinlock_t *ptl;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1603
1604
  	pmd_t *pmd;
  	int ret = 0;
2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
1605
1606
1607
  	/* For mmu_notifiers */
  	const unsigned long mmun_start = address;
  	const unsigned long mmun_end   = address + HPAGE_PMD_SIZE;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1608

2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
1609
  	mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1610
  	pmd = page_check_address_pmd(page, mm, address,
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1611
  			PAGE_CHECK_ADDRESS_PMD_NOTSPLITTING_FLAG, &ptl);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1612
1613
1614
1615
1616
  	if (pmd) {
  		/*
  		 * We can't temporarily set the pmd to null in order
  		 * to split it, the pmd must remain marked huge at all
  		 * times or the VM won't take the pmd_trans_huge paths
5a505085f   Ingo Molnar   mm/rmap: Convert ...
1617
  		 * and it won't wait on the anon_vma->root->rwsem to
71e3aac07   Andrea Arcangeli   thp: transparent ...
1618
1619
  		 * serialize against split_huge_page*.
  		 */
2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
1620
  		pmdp_splitting_flush(vma, address, pmd);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1621
  		ret = 1;
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1622
  		spin_unlock(ptl);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1623
  	}
2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
1624
  	mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1625
1626
1627
  
  	return ret;
  }
5bc7b8aca   Shaohua Li   mm: thp: add spli...
1628
1629
  static void __split_huge_page_refcount(struct page *page,
  				       struct list_head *list)
71e3aac07   Andrea Arcangeli   thp: transparent ...
1630
1631
  {
  	int i;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1632
  	struct zone *zone = page_zone(page);
fa9add641   Hugh Dickins   mm/memcg: apply a...
1633
  	struct lruvec *lruvec;
70b50f94f   Andrea Arcangeli   mm: thp: tail pag...
1634
  	int tail_count = 0;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1635
1636
1637
  
  	/* prevent PageLRU to go away from under us, and freeze lru stats */
  	spin_lock_irq(&zone->lru_lock);
fa9add641   Hugh Dickins   mm/memcg: apply a...
1638
  	lruvec = mem_cgroup_page_lruvec(page, zone);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1639
  	compound_lock(page);
e94c8a9cb   KAMEZAWA Hiroyuki   memcg: make mem_c...
1640
1641
  	/* complete memcg works before add pages to LRU */
  	mem_cgroup_split_huge_fixup(page);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1642

45676885b   Shaohua Li   thp: improve orde...
1643
  	for (i = HPAGE_PMD_NR - 1; i >= 1; i--) {
71e3aac07   Andrea Arcangeli   thp: transparent ...
1644
  		struct page *page_tail = page + i;
70b50f94f   Andrea Arcangeli   mm: thp: tail pag...
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
  		/* tail_page->_mapcount cannot change */
  		BUG_ON(page_mapcount(page_tail) < 0);
  		tail_count += page_mapcount(page_tail);
  		/* check for overflow */
  		BUG_ON(tail_count < 0);
  		BUG_ON(atomic_read(&page_tail->_count) != 0);
  		/*
  		 * tail_page->_count is zero and not changing from
  		 * under us. But get_page_unless_zero() may be running
  		 * from under us on the tail_page. If we used
  		 * atomic_set() below instead of atomic_add(), we
  		 * would then run atomic_set() concurrently with
  		 * get_page_unless_zero(), and atomic_set() is
  		 * implemented in C not using locked ops. spin_unlock
  		 * on x86 sometime uses locked ops because of PPro
  		 * errata 66, 92, so unless somebody can guarantee
  		 * atomic_set() here would be safe on all archs (and
  		 * not only on x86), it's safer to use atomic_add().
  		 */
  		atomic_add(page_mapcount(page) + page_mapcount(page_tail) + 1,
  			   &page_tail->_count);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1666
1667
1668
  
  		/* after clearing PageTail the gup refcount can be released */
  		smp_mb();
a6d30ddda   Jin Dongming   thp: fix the wron...
1669
1670
1671
1672
1673
1674
  		/*
  		 * retain hwpoison flag of the poisoned tail page:
  		 *   fix for the unsuitable process killed on Guest Machine(KVM)
  		 *   by the memory-failure.
  		 */
  		page_tail->flags &= ~PAGE_FLAGS_CHECK_AT_PREP | __PG_HWPOISON;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1675
1676
1677
1678
  		page_tail->flags |= (page->flags &
  				     ((1L << PG_referenced) |
  				      (1L << PG_swapbacked) |
  				      (1L << PG_mlocked) |
e180cf806   Kirill A. Shutemov   thp, mm: avoid Pa...
1679
1680
1681
  				      (1L << PG_uptodate) |
  				      (1L << PG_active) |
  				      (1L << PG_unevictable)));
71e3aac07   Andrea Arcangeli   thp: transparent ...
1682
  		page_tail->flags |= (1L << PG_dirty);
70b50f94f   Andrea Arcangeli   mm: thp: tail pag...
1683
  		/* clear PageTail before overwriting first_page */
71e3aac07   Andrea Arcangeli   thp: transparent ...
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
  		smp_wmb();
  
  		/*
  		 * __split_huge_page_splitting() already set the
  		 * splitting bit in all pmd that could map this
  		 * hugepage, that will ensure no CPU can alter the
  		 * mapcount on the head page. The mapcount is only
  		 * accounted in the head page and it has to be
  		 * transferred to all tail pages in the below code. So
  		 * for this code to be safe, the split the mapcount
  		 * can't change. But that doesn't mean userland can't
  		 * keep changing and reading the page contents while
  		 * we transfer the mapcount, so the pmd splitting
  		 * status is achieved setting a reserved bit in the
  		 * pmd, not by clearing the present bit.
  		*/
71e3aac07   Andrea Arcangeli   thp: transparent ...
1700
1701
1702
1703
  		page_tail->_mapcount = page->_mapcount;
  
  		BUG_ON(page_tail->mapping);
  		page_tail->mapping = page->mapping;
45676885b   Shaohua Li   thp: improve orde...
1704
  		page_tail->index = page->index + i;
90572890d   Peter Zijlstra   mm: numa: Change ...
1705
  		page_cpupid_xchg_last(page_tail, page_cpupid_last(page));
71e3aac07   Andrea Arcangeli   thp: transparent ...
1706
1707
1708
1709
1710
  
  		BUG_ON(!PageAnon(page_tail));
  		BUG_ON(!PageUptodate(page_tail));
  		BUG_ON(!PageDirty(page_tail));
  		BUG_ON(!PageSwapBacked(page_tail));
5bc7b8aca   Shaohua Li   mm: thp: add spli...
1711
  		lru_add_page_tail(page, page_tail, lruvec, list);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1712
  	}
70b50f94f   Andrea Arcangeli   mm: thp: tail pag...
1713
1714
  	atomic_sub(tail_count, &page->_count);
  	BUG_ON(atomic_read(&page->_count) <= 0);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1715

fa9add641   Hugh Dickins   mm/memcg: apply a...
1716
  	__mod_zone_page_state(zone, NR_ANON_TRANSPARENT_HUGEPAGES, -1);
79134171d   Andrea Arcangeli   thp: transparent ...
1717

71e3aac07   Andrea Arcangeli   thp: transparent ...
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
  	ClearPageCompound(page);
  	compound_unlock(page);
  	spin_unlock_irq(&zone->lru_lock);
  
  	for (i = 1; i < HPAGE_PMD_NR; i++) {
  		struct page *page_tail = page + i;
  		BUG_ON(page_count(page_tail) <= 0);
  		/*
  		 * Tail pages may be freed if there wasn't any mapping
  		 * like if add_to_swap() is running on a lru page that
  		 * had its mapping zapped. And freeing these pages
  		 * requires taking the lru_lock so we do the put_page
  		 * of the tail pages after the split is complete.
  		 */
  		put_page(page_tail);
  	}
  
  	/*
  	 * Only the head page (now become a regular page) is required
  	 * to be pinned by the caller.
  	 */
  	BUG_ON(page_count(page) <= 0);
  }
  
  static int __split_huge_page_map(struct page *page,
  				 struct vm_area_struct *vma,
  				 unsigned long address)
  {
  	struct mm_struct *mm = vma->vm_mm;
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1747
  	spinlock_t *ptl;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1748
1749
1750
1751
  	pmd_t *pmd, _pmd;
  	int ret = 0, i;
  	pgtable_t pgtable;
  	unsigned long haddr;
71e3aac07   Andrea Arcangeli   thp: transparent ...
1752
  	pmd = page_check_address_pmd(page, mm, address,
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1753
  			PAGE_CHECK_ADDRESS_PMD_SPLITTING_FLAG, &ptl);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1754
  	if (pmd) {
6b0b50b06   Aneesh Kumar K.V   mm/THP: add pmd a...
1755
  		pgtable = pgtable_trans_huge_withdraw(mm, pmd);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1756
  		pmd_populate(mm, &_pmd, pgtable);
1da286ebc   Waiman Long   mm, thp: move inv...
1757
1758
  		if (pmd_write(*pmd))
  			BUG_ON(page_mapcount(page) != 1);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1759

e3ebcf643   Gerald Schaefer   thp: remove assum...
1760
1761
  		haddr = address;
  		for (i = 0; i < HPAGE_PMD_NR; i++, haddr += PAGE_SIZE) {
71e3aac07   Andrea Arcangeli   thp: transparent ...
1762
1763
  			pte_t *pte, entry;
  			BUG_ON(PageCompound(page+i));
5f50c44d8   Mel Gorman   mm: numa: Do not ...
1764
1765
1766
1767
1768
  			/*
  			 * Note that pmd_numa is not transferred deliberately
  			 * to avoid any possibility that pte_numa leaks to
  			 * a PROT_NONE VMA by accident.
  			 */
71e3aac07   Andrea Arcangeli   thp: transparent ...
1769
1770
1771
1772
  			entry = mk_pte(page + i, vma->vm_page_prot);
  			entry = maybe_mkwrite(pte_mkdirty(entry), vma);
  			if (!pmd_write(*pmd))
  				entry = pte_wrprotect(entry);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1773
1774
1775
1776
1777
1778
1779
  			if (!pmd_young(*pmd))
  				entry = pte_mkold(entry);
  			pte = pte_offset_map(&_pmd, haddr);
  			BUG_ON(!pte_none(*pte));
  			set_pte_at(mm, haddr, pte, entry);
  			pte_unmap(pte);
  		}
71e3aac07   Andrea Arcangeli   thp: transparent ...
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
  		smp_wmb(); /* make pte visible before pmd */
  		/*
  		 * Up to this point the pmd is present and huge and
  		 * userland has the whole access to the hugepage
  		 * during the split (which happens in place). If we
  		 * overwrite the pmd with the not-huge version
  		 * pointing to the pte here (which of course we could
  		 * if all CPUs were bug free), userland could trigger
  		 * a small page size TLB miss on the small sized TLB
  		 * while the hugepage TLB entry is still established
  		 * in the huge TLB. Some CPU doesn't like that. See
  		 * http://support.amd.com/us/Processor_TechDocs/41322.pdf,
  		 * Erratum 383 on page 93. Intel should be safe but is
  		 * also warns that it's only safe if the permission
  		 * and cache attributes of the two entries loaded in
  		 * the two TLB is identical (which should be the case
  		 * here). But it is generally safer to never allow
  		 * small and huge TLB entries for the same virtual
  		 * address to be loaded simultaneously. So instead of
  		 * doing "pmd_populate(); flush_tlb_range();" we first
  		 * mark the current pmd notpresent (atomically because
  		 * here the pmd_trans_huge and pmd_trans_splitting
  		 * must remain set at all times on the pmd until the
  		 * split is complete for this pmd), then we flush the
  		 * SMP TLB and finally we write the non-huge version
  		 * of the pmd entry with pmd_populate.
  		 */
46dcde735   Gerald Schaefer   thp: introduce pm...
1807
  		pmdp_invalidate(vma, address, pmd);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1808
1809
  		pmd_populate(mm, pmd, pgtable);
  		ret = 1;
117b0791a   Kirill A. Shutemov   mm, thp: move ptl...
1810
  		spin_unlock(ptl);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1811
  	}
71e3aac07   Andrea Arcangeli   thp: transparent ...
1812
1813
1814
  
  	return ret;
  }
5a505085f   Ingo Molnar   mm/rmap: Convert ...
1815
  /* must be called with anon_vma->root->rwsem held */
71e3aac07   Andrea Arcangeli   thp: transparent ...
1816
  static void __split_huge_page(struct page *page,
5bc7b8aca   Shaohua Li   mm: thp: add spli...
1817
1818
  			      struct anon_vma *anon_vma,
  			      struct list_head *list)
71e3aac07   Andrea Arcangeli   thp: transparent ...
1819
1820
  {
  	int mapcount, mapcount2;
bf181b9f9   Michel Lespinasse   mm anon rmap: rep...
1821
  	pgoff_t pgoff = page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1822
1823
1824
1825
1826
1827
  	struct anon_vma_chain *avc;
  
  	BUG_ON(!PageHead(page));
  	BUG_ON(PageTail(page));
  
  	mapcount = 0;
bf181b9f9   Michel Lespinasse   mm anon rmap: rep...
1828
  	anon_vma_interval_tree_foreach(avc, &anon_vma->rb_root, pgoff, pgoff) {
71e3aac07   Andrea Arcangeli   thp: transparent ...
1829
1830
1831
  		struct vm_area_struct *vma = avc->vma;
  		unsigned long addr = vma_address(page, vma);
  		BUG_ON(is_vma_temporary_stack(vma));
71e3aac07   Andrea Arcangeli   thp: transparent ...
1832
1833
  		mapcount += __split_huge_page_splitting(page, vma, addr);
  	}
05759d380   Andrea Arcangeli   thp: split_huge_p...
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
  	/*
  	 * It is critical that new vmas are added to the tail of the
  	 * anon_vma list. This guarantes that if copy_huge_pmd() runs
  	 * and establishes a child pmd before
  	 * __split_huge_page_splitting() freezes the parent pmd (so if
  	 * we fail to prevent copy_huge_pmd() from running until the
  	 * whole __split_huge_page() is complete), we will still see
  	 * the newly established pmd of the child later during the
  	 * walk, to be able to set it as pmd_trans_splitting too.
  	 */
  	if (mapcount != page_mapcount(page))
  		printk(KERN_ERR "mapcount %d page_mapcount %d
  ",
  		       mapcount, page_mapcount(page));
71e3aac07   Andrea Arcangeli   thp: transparent ...
1848
  	BUG_ON(mapcount != page_mapcount(page));
5bc7b8aca   Shaohua Li   mm: thp: add spli...
1849
  	__split_huge_page_refcount(page, list);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1850
1851
  
  	mapcount2 = 0;
bf181b9f9   Michel Lespinasse   mm anon rmap: rep...
1852
  	anon_vma_interval_tree_foreach(avc, &anon_vma->rb_root, pgoff, pgoff) {
71e3aac07   Andrea Arcangeli   thp: transparent ...
1853
1854
1855
  		struct vm_area_struct *vma = avc->vma;
  		unsigned long addr = vma_address(page, vma);
  		BUG_ON(is_vma_temporary_stack(vma));
71e3aac07   Andrea Arcangeli   thp: transparent ...
1856
1857
  		mapcount2 += __split_huge_page_map(page, vma, addr);
  	}
05759d380   Andrea Arcangeli   thp: split_huge_p...
1858
1859
1860
1861
  	if (mapcount != mapcount2)
  		printk(KERN_ERR "mapcount %d mapcount2 %d page_mapcount %d
  ",
  		       mapcount, mapcount2, page_mapcount(page));
71e3aac07   Andrea Arcangeli   thp: transparent ...
1862
1863
  	BUG_ON(mapcount != mapcount2);
  }
5bc7b8aca   Shaohua Li   mm: thp: add spli...
1864
1865
1866
1867
1868
1869
1870
1871
  /*
   * Split a hugepage into normal pages. This doesn't change the position of head
   * page. If @list is null, tail pages will be added to LRU list, otherwise, to
   * @list. Both head page and tail pages will inherit mapping, flags, and so on
   * from the hugepage.
   * Return 0 if the hugepage is split successfully otherwise return 1.
   */
  int split_huge_page_to_list(struct page *page, struct list_head *list)
71e3aac07   Andrea Arcangeli   thp: transparent ...
1872
1873
1874
  {
  	struct anon_vma *anon_vma;
  	int ret = 1;
5918d10a4   Kirill A. Shutemov   thp: fix huge zer...
1875
  	BUG_ON(is_huge_zero_page(page));
71e3aac07   Andrea Arcangeli   thp: transparent ...
1876
  	BUG_ON(!PageAnon(page));
062f1af21   Mel Gorman   mm: thp: acquire ...
1877
1878
1879
1880
1881
1882
1883
1884
1885
  
  	/*
  	 * The caller does not necessarily hold an mmap_sem that would prevent
  	 * the anon_vma disappearing so we first we take a reference to it
  	 * and then lock the anon_vma for write. This is similar to
  	 * page_lock_anon_vma_read except the write lock is taken to serialise
  	 * against parallel split or collapse operations.
  	 */
  	anon_vma = page_get_anon_vma(page);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1886
1887
  	if (!anon_vma)
  		goto out;
062f1af21   Mel Gorman   mm: thp: acquire ...
1888
  	anon_vma_lock_write(anon_vma);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1889
1890
1891
1892
1893
  	ret = 0;
  	if (!PageCompound(page))
  		goto out_unlock;
  
  	BUG_ON(!PageSwapBacked(page));
5bc7b8aca   Shaohua Li   mm: thp: add spli...
1894
  	__split_huge_page(page, anon_vma, list);
81ab4201f   Andi Kleen   mm: add VM counte...
1895
  	count_vm_event(THP_SPLIT);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1896
1897
1898
  
  	BUG_ON(PageCompound(page));
  out_unlock:
08b52706d   Konstantin Khlebnikov   mm/rmap: rename a...
1899
  	anon_vma_unlock_write(anon_vma);
062f1af21   Mel Gorman   mm: thp: acquire ...
1900
  	put_anon_vma(anon_vma);
71e3aac07   Andrea Arcangeli   thp: transparent ...
1901
1902
1903
  out:
  	return ret;
  }
9050d7eba   Vlastimil Babka   mm: include VM_MI...
1904
  #define VM_NO_THP (VM_SPECIAL | VM_HUGETLB | VM_SHARED | VM_MAYSHARE)
78f11a255   Andrea Arcangeli   mm: thp: fix /dev...
1905

60ab3244e   Andrea Arcangeli   thp: khugepaged: ...
1906
1907
  int hugepage_madvise(struct vm_area_struct *vma,
  		     unsigned long *vm_flags, int advice)
0af4e98b6   Andrea Arcangeli   thp: madvise(MADV...
1908
  {
8e72033f2   Gerald Schaefer   thp: make MADV_HU...
1909
  	struct mm_struct *mm = vma->vm_mm;
a664b2d85   Andrea Arcangeli   thp: madvise(MADV...
1910
1911
1912
1913
1914
  	switch (advice) {
  	case MADV_HUGEPAGE:
  		/*
  		 * Be somewhat over-protective like KSM for now!
  		 */
78f11a255   Andrea Arcangeli   mm: thp: fix /dev...
1915
  		if (*vm_flags & (VM_HUGEPAGE | VM_NO_THP))
a664b2d85   Andrea Arcangeli   thp: madvise(MADV...
1916
  			return -EINVAL;
8e72033f2   Gerald Schaefer   thp: make MADV_HU...
1917
1918
  		if (mm->def_flags & VM_NOHUGEPAGE)
  			return -EINVAL;
a664b2d85   Andrea Arcangeli   thp: madvise(MADV...
1919
1920
  		*vm_flags &= ~VM_NOHUGEPAGE;
  		*vm_flags |= VM_HUGEPAGE;
60ab3244e   Andrea Arcangeli   thp: khugepaged: ...
1921
1922
1923
1924
1925
1926
1927
  		/*
  		 * If the vma become good for khugepaged to scan,
  		 * register it here without waiting a page fault that
  		 * may not happen any time soon.
  		 */
  		if (unlikely(khugepaged_enter_vma_merge(vma)))
  			return -ENOMEM;
a664b2d85   Andrea Arcangeli   thp: madvise(MADV...
1928
1929
1930
1931
1932
  		break;
  	case MADV_NOHUGEPAGE:
  		/*
  		 * Be somewhat over-protective like KSM for now!
  		 */
78f11a255   Andrea Arcangeli   mm: thp: fix /dev...
1933
  		if (*vm_flags & (VM_NOHUGEPAGE | VM_NO_THP))
a664b2d85   Andrea Arcangeli   thp: madvise(MADV...
1934
1935
1936
  			return -EINVAL;
  		*vm_flags &= ~VM_HUGEPAGE;
  		*vm_flags |= VM_NOHUGEPAGE;
60ab3244e   Andrea Arcangeli   thp: khugepaged: ...
1937
1938
1939
1940
1941
  		/*
  		 * Setting VM_NOHUGEPAGE will prevent khugepaged from scanning
  		 * this vma even if we leave the mm registered in khugepaged if
  		 * it got registered before VM_NOHUGEPAGE was set.
  		 */
a664b2d85   Andrea Arcangeli   thp: madvise(MADV...
1942
1943
  		break;
  	}
0af4e98b6   Andrea Arcangeli   thp: madvise(MADV...
1944
1945
1946
  
  	return 0;
  }
ba76149f4   Andrea Arcangeli   thp: khugepaged
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
  static int __init khugepaged_slab_init(void)
  {
  	mm_slot_cache = kmem_cache_create("khugepaged_mm_slot",
  					  sizeof(struct mm_slot),
  					  __alignof__(struct mm_slot), 0, NULL);
  	if (!mm_slot_cache)
  		return -ENOMEM;
  
  	return 0;
  }
ba76149f4   Andrea Arcangeli   thp: khugepaged
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
  static inline struct mm_slot *alloc_mm_slot(void)
  {
  	if (!mm_slot_cache)	/* initialization failed */
  		return NULL;
  	return kmem_cache_zalloc(mm_slot_cache, GFP_KERNEL);
  }
  
  static inline void free_mm_slot(struct mm_slot *mm_slot)
  {
  	kmem_cache_free(mm_slot_cache, mm_slot);
  }
ba76149f4   Andrea Arcangeli   thp: khugepaged
1968
1969
1970
  static struct mm_slot *get_mm_slot(struct mm_struct *mm)
  {
  	struct mm_slot *mm_slot;
ba76149f4   Andrea Arcangeli   thp: khugepaged
1971

b67bfe0d4   Sasha Levin   hlist: drop the n...
1972
  	hash_for_each_possible(mm_slots_hash, mm_slot, hash, (unsigned long)mm)
ba76149f4   Andrea Arcangeli   thp: khugepaged
1973
1974
  		if (mm == mm_slot->mm)
  			return mm_slot;
43b5fbbd2   Sasha Levin   mm/huge_memory.c:...
1975

ba76149f4   Andrea Arcangeli   thp: khugepaged
1976
1977
1978
1979
1980
1981
  	return NULL;
  }
  
  static void insert_to_mm_slots_hash(struct mm_struct *mm,
  				    struct mm_slot *mm_slot)
  {
ba76149f4   Andrea Arcangeli   thp: khugepaged
1982
  	mm_slot->mm = mm;
43b5fbbd2   Sasha Levin   mm/huge_memory.c:...
1983
  	hash_add(mm_slots_hash, &mm_slot->hash, (long)mm);
ba76149f4   Andrea Arcangeli   thp: khugepaged
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
  }
  
  static inline int khugepaged_test_exit(struct mm_struct *mm)
  {
  	return atomic_read(&mm->mm_users) == 0;
  }
  
  int __khugepaged_enter(struct mm_struct *mm)
  {
  	struct mm_slot *mm_slot;
  	int wakeup;
  
  	mm_slot = alloc_mm_slot();
  	if (!mm_slot)
  		return -ENOMEM;
  
  	/* __khugepaged_exit() must not run from under us */
  	VM_BUG_ON(khugepaged_test_exit(mm));
  	if (unlikely(test_and_set_bit(MMF_VM_HUGEPAGE, &mm->flags))) {
  		free_mm_slot(mm_slot);
  		return 0;
  	}
  
  	spin_lock(&khugepaged_mm_lock);
  	insert_to_mm_slots_hash(mm, mm_slot);
  	/*
  	 * Insert just behind the scanning cursor, to let the area settle
  	 * down a little.
  	 */
  	wakeup = list_empty(&khugepaged_scan.mm_head);
  	list_add_tail(&mm_slot->mm_node, &khugepaged_scan.mm_head);
  	spin_unlock(&khugepaged_mm_lock);
  
  	atomic_inc(&mm->mm_count);
  	if (wakeup)
  		wake_up_interruptible(&khugepaged_wait);
  
  	return 0;
  }
  
  int khugepaged_enter_vma_merge(struct vm_area_struct *vma)
  {
  	unsigned long hstart, hend;
  	if (!vma->anon_vma)
  		/*
  		 * Not yet faulted in so we will register later in the
  		 * page fault if needed.
  		 */
  		return 0;
78f11a255   Andrea Arcangeli   mm: thp: fix /dev...
2033
  	if (vma->vm_ops)
ba76149f4   Andrea Arcangeli   thp: khugepaged
2034
2035
  		/* khugepaged not yet working on file or special mappings */
  		return 0;
b3b9c2932   Konstantin Khlebnikov   mm, x86, pat: rew...
2036
  	VM_BUG_ON(vma->vm_flags & VM_NO_THP);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
  	hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
  	hend = vma->vm_end & HPAGE_PMD_MASK;
  	if (hstart < hend)
  		return khugepaged_enter(vma);
  	return 0;
  }
  
  void __khugepaged_exit(struct mm_struct *mm)
  {
  	struct mm_slot *mm_slot;
  	int free = 0;
  
  	spin_lock(&khugepaged_mm_lock);
  	mm_slot = get_mm_slot(mm);
  	if (mm_slot && khugepaged_scan.mm_slot != mm_slot) {
43b5fbbd2   Sasha Levin   mm/huge_memory.c:...
2052
  		hash_del(&mm_slot->hash);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2053
2054
2055
  		list_del(&mm_slot->mm_node);
  		free = 1;
  	}
d788e80a8   Chris Wright   mm/huge_memory.c:...
2056
  	spin_unlock(&khugepaged_mm_lock);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2057
2058
  
  	if (free) {
ba76149f4   Andrea Arcangeli   thp: khugepaged
2059
2060
2061
2062
  		clear_bit(MMF_VM_HUGEPAGE, &mm->flags);
  		free_mm_slot(mm_slot);
  		mmdrop(mm);
  	} else if (mm_slot) {
ba76149f4   Andrea Arcangeli   thp: khugepaged
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
  		/*
  		 * This is required to serialize against
  		 * khugepaged_test_exit() (which is guaranteed to run
  		 * under mmap sem read mode). Stop here (after we
  		 * return all pagetables will be destroyed) until
  		 * khugepaged has finished working on the pagetables
  		 * under the mmap_sem.
  		 */
  		down_write(&mm->mmap_sem);
  		up_write(&mm->mmap_sem);
d788e80a8   Chris Wright   mm/huge_memory.c:...
2073
  	}
ba76149f4   Andrea Arcangeli   thp: khugepaged
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
  }
  
  static void release_pte_page(struct page *page)
  {
  	/* 0 stands for page_is_file_cache(page) == false */
  	dec_zone_page_state(page, NR_ISOLATED_ANON + 0);
  	unlock_page(page);
  	putback_lru_page(page);
  }
  
  static void release_pte_pages(pte_t *pte, pte_t *_pte)
  {
  	while (--_pte >= pte) {
  		pte_t pteval = *_pte;
  		if (!pte_none(pteval))
  			release_pte_page(pte_page(pteval));
  	}
  }
ba76149f4   Andrea Arcangeli   thp: khugepaged
2092
2093
2094
2095
2096
2097
  static int __collapse_huge_page_isolate(struct vm_area_struct *vma,
  					unsigned long address,
  					pte_t *pte)
  {
  	struct page *page;
  	pte_t *_pte;
344aa35c2   Bob Liu   thp: clean up __c...
2098
  	int referenced = 0, none = 0;
ba76149f4   Andrea Arcangeli   thp: khugepaged
2099
2100
2101
2102
2103
2104
  	for (_pte = pte; _pte < pte+HPAGE_PMD_NR;
  	     _pte++, address += PAGE_SIZE) {
  		pte_t pteval = *_pte;
  		if (pte_none(pteval)) {
  			if (++none <= khugepaged_max_ptes_none)
  				continue;
344aa35c2   Bob Liu   thp: clean up __c...
2105
  			else
ba76149f4   Andrea Arcangeli   thp: khugepaged
2106
  				goto out;
ba76149f4   Andrea Arcangeli   thp: khugepaged
2107
  		}
344aa35c2   Bob Liu   thp: clean up __c...
2108
  		if (!pte_present(pteval) || !pte_write(pteval))
ba76149f4   Andrea Arcangeli   thp: khugepaged
2109
  			goto out;
ba76149f4   Andrea Arcangeli   thp: khugepaged
2110
  		page = vm_normal_page(vma, address, pteval);
344aa35c2   Bob Liu   thp: clean up __c...
2111
  		if (unlikely(!page))
ba76149f4   Andrea Arcangeli   thp: khugepaged
2112
  			goto out;
344aa35c2   Bob Liu   thp: clean up __c...
2113

309381fea   Sasha Levin   mm: dump page whe...
2114
2115
2116
  		VM_BUG_ON_PAGE(PageCompound(page), page);
  		VM_BUG_ON_PAGE(!PageAnon(page), page);
  		VM_BUG_ON_PAGE(!PageSwapBacked(page), page);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2117
2118
  
  		/* cannot use mapcount: can't collapse if there's a gup pin */
344aa35c2   Bob Liu   thp: clean up __c...
2119
  		if (page_count(page) != 1)
ba76149f4   Andrea Arcangeli   thp: khugepaged
2120
  			goto out;
ba76149f4   Andrea Arcangeli   thp: khugepaged
2121
2122
2123
2124
2125
2126
  		/*
  		 * We can do it before isolate_lru_page because the
  		 * page can't be freed from under us. NOTE: PG_lock
  		 * is needed to serialize against split_huge_page
  		 * when invoked from the VM.
  		 */
344aa35c2   Bob Liu   thp: clean up __c...
2127
  		if (!trylock_page(page))
ba76149f4   Andrea Arcangeli   thp: khugepaged
2128
  			goto out;
ba76149f4   Andrea Arcangeli   thp: khugepaged
2129
2130
2131
2132
2133
2134
  		/*
  		 * Isolate the page to avoid collapsing an hugepage
  		 * currently in use by the VM.
  		 */
  		if (isolate_lru_page(page)) {
  			unlock_page(page);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2135
2136
2137
2138
  			goto out;
  		}
  		/* 0 stands for page_is_file_cache(page) == false */
  		inc_zone_page_state(page, NR_ISOLATED_ANON + 0);
309381fea   Sasha Levin   mm: dump page whe...
2139
2140
  		VM_BUG_ON_PAGE(!PageLocked(page), page);
  		VM_BUG_ON_PAGE(PageLRU(page), page);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2141
2142
  
  		/* If there is no mapped pte young don't collapse the page */
8ee53820e   Andrea Arcangeli   thp: mmu_notifier...
2143
2144
  		if (pte_young(pteval) || PageReferenced(page) ||
  		    mmu_notifier_test_young(vma->vm_mm, address))
ba76149f4   Andrea Arcangeli   thp: khugepaged
2145
2146
  			referenced = 1;
  	}
344aa35c2   Bob Liu   thp: clean up __c...
2147
2148
  	if (likely(referenced))
  		return 1;
ba76149f4   Andrea Arcangeli   thp: khugepaged
2149
  out:
344aa35c2   Bob Liu   thp: clean up __c...
2150
2151
  	release_pte_pages(pte, _pte);
  	return 0;
ba76149f4   Andrea Arcangeli   thp: khugepaged
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
  }
  
  static void __collapse_huge_page_copy(pte_t *pte, struct page *page,
  				      struct vm_area_struct *vma,
  				      unsigned long address,
  				      spinlock_t *ptl)
  {
  	pte_t *_pte;
  	for (_pte = pte; _pte < pte+HPAGE_PMD_NR; _pte++) {
  		pte_t pteval = *_pte;
  		struct page *src_page;
  
  		if (pte_none(pteval)) {
  			clear_user_highpage(page, address);
  			add_mm_counter(vma->vm_mm, MM_ANONPAGES, 1);
  		} else {
  			src_page = pte_page(pteval);
  			copy_user_highpage(page, src_page, address, vma);
309381fea   Sasha Levin   mm: dump page whe...
2170
  			VM_BUG_ON_PAGE(page_mapcount(src_page) != 1, src_page);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
  			release_pte_page(src_page);
  			/*
  			 * ptl mostly unnecessary, but preempt has to
  			 * be disabled to update the per-cpu stats
  			 * inside page_remove_rmap().
  			 */
  			spin_lock(ptl);
  			/*
  			 * paravirt calls inside pte_clear here are
  			 * superfluous.
  			 */
  			pte_clear(vma->vm_mm, address, _pte);
  			page_remove_rmap(src_page);
  			spin_unlock(ptl);
  			free_page_and_swap_cache(src_page);
  		}
  
  		address += PAGE_SIZE;
  		page++;
  	}
  }
26234f36e   Xiao Guangrong   thp: introduce kh...
2192
  static void khugepaged_alloc_sleep(void)
ba76149f4   Andrea Arcangeli   thp: khugepaged
2193
  {
26234f36e   Xiao Guangrong   thp: introduce kh...
2194
2195
2196
  	wait_event_freezable_timeout(khugepaged_wait, false,
  			msecs_to_jiffies(khugepaged_alloc_sleep_millisecs));
  }
ba76149f4   Andrea Arcangeli   thp: khugepaged
2197

9f1b868a1   Bob Liu   mm: thp: khugepag...
2198
  static int khugepaged_node_load[MAX_NUMNODES];
26234f36e   Xiao Guangrong   thp: introduce kh...
2199
  #ifdef CONFIG_NUMA
9f1b868a1   Bob Liu   mm: thp: khugepag...
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
  static int khugepaged_find_target_node(void)
  {
  	static int last_khugepaged_target_node = NUMA_NO_NODE;
  	int nid, target_node = 0, max_value = 0;
  
  	/* find first node with max normal pages hit */
  	for (nid = 0; nid < MAX_NUMNODES; nid++)
  		if (khugepaged_node_load[nid] > max_value) {
  			max_value = khugepaged_node_load[nid];
  			target_node = nid;
  		}
  
  	/* do some balance if several nodes have the same hit record */
  	if (target_node <= last_khugepaged_target_node)
  		for (nid = last_khugepaged_target_node + 1; nid < MAX_NUMNODES;
  				nid++)
  			if (max_value == khugepaged_node_load[nid]) {
  				target_node = nid;
  				break;
  			}
  
  	last_khugepaged_target_node = target_node;
  	return target_node;
  }
26234f36e   Xiao Guangrong   thp: introduce kh...
2224
2225
2226
2227
2228
2229
2230
  static bool khugepaged_prealloc_page(struct page **hpage, bool *wait)
  {
  	if (IS_ERR(*hpage)) {
  		if (!*wait)
  			return false;
  
  		*wait = false;
e3b4126c5   Xiao Guangrong   thp: khugepaged_p...
2231
  		*hpage = NULL;
26234f36e   Xiao Guangrong   thp: introduce kh...
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
  		khugepaged_alloc_sleep();
  	} else if (*hpage) {
  		put_page(*hpage);
  		*hpage = NULL;
  	}
  
  	return true;
  }
  
  static struct page
  *khugepaged_alloc_page(struct page **hpage, struct mm_struct *mm,
  		       struct vm_area_struct *vma, unsigned long address,
  		       int node)
  {
309381fea   Sasha Levin   mm: dump page whe...
2246
  	VM_BUG_ON_PAGE(*hpage, *hpage);
ce83d2174   Andrea Arcangeli   thp: allocate mem...
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
  	/*
  	 * Allocate the page while the vma is still valid and under
  	 * the mmap_sem read mode so there is no memory allocation
  	 * later when we take the mmap_sem in write mode. This is more
  	 * friendly behavior (OTOH it may actually hide bugs) to
  	 * filesystems in userland with daemons allocating memory in
  	 * the userland I/O paths.  Allocating memory with the
  	 * mmap_sem in read mode is good idea also to allow greater
  	 * scalability.
  	 */
9f1b868a1   Bob Liu   mm: thp: khugepag...
2257
2258
  	*hpage = alloc_pages_exact_node(node, alloc_hugepage_gfpmask(
  		khugepaged_defrag(), __GFP_OTHER_NODE), HPAGE_PMD_ORDER);
692e0b354   Andrea Arcangeli   mm: thp: optimize...
2259
2260
2261
2262
2263
  	/*
  	 * After allocating the hugepage, release the mmap_sem read lock in
  	 * preparation for taking it in write mode.
  	 */
  	up_read(&mm->mmap_sem);
26234f36e   Xiao Guangrong   thp: introduce kh...
2264
  	if (unlikely(!*hpage)) {
81ab4201f   Andi Kleen   mm: add VM counte...
2265
  		count_vm_event(THP_COLLAPSE_ALLOC_FAILED);
ce83d2174   Andrea Arcangeli   thp: allocate mem...
2266
  		*hpage = ERR_PTR(-ENOMEM);
26234f36e   Xiao Guangrong   thp: introduce kh...
2267
  		return NULL;
ce83d2174   Andrea Arcangeli   thp: allocate mem...
2268
  	}
26234f36e   Xiao Guangrong   thp: introduce kh...
2269

65b3c07b4   Xiao Guangrong   thp: fix the coun...
2270
  	count_vm_event(THP_COLLAPSE_ALLOC);
26234f36e   Xiao Guangrong   thp: introduce kh...
2271
2272
2273
  	return *hpage;
  }
  #else
9f1b868a1   Bob Liu   mm: thp: khugepag...
2274
2275
2276
2277
  static int khugepaged_find_target_node(void)
  {
  	return 0;
  }
10dc4155c   Bob Liu   mm: thp: cleanup:...
2278
2279
2280
2281
2282
  static inline struct page *alloc_hugepage(int defrag)
  {
  	return alloc_pages(alloc_hugepage_gfpmask(defrag, 0),
  			   HPAGE_PMD_ORDER);
  }
26234f36e   Xiao Guangrong   thp: introduce kh...
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
  static struct page *khugepaged_alloc_hugepage(bool *wait)
  {
  	struct page *hpage;
  
  	do {
  		hpage = alloc_hugepage(khugepaged_defrag());
  		if (!hpage) {
  			count_vm_event(THP_COLLAPSE_ALLOC_FAILED);
  			if (!*wait)
  				return NULL;
  
  			*wait = false;
  			khugepaged_alloc_sleep();
  		} else
  			count_vm_event(THP_COLLAPSE_ALLOC);
  	} while (unlikely(!hpage) && likely(khugepaged_enabled()));
  
  	return hpage;
  }
  
  static bool khugepaged_prealloc_page(struct page **hpage, bool *wait)
  {
  	if (!*hpage)
  		*hpage = khugepaged_alloc_hugepage(wait);
  
  	if (unlikely(!*hpage))
  		return false;
  
  	return true;
  }
  
  static struct page
  *khugepaged_alloc_page(struct page **hpage, struct mm_struct *mm,
  		       struct vm_area_struct *vma, unsigned long address,
  		       int node)
  {
  	up_read(&mm->mmap_sem);
  	VM_BUG_ON(!*hpage);
  	return  *hpage;
  }
692e0b354   Andrea Arcangeli   mm: thp: optimize...
2323
  #endif
fa475e517   Bob Liu   thp: introduce hu...
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
  static bool hugepage_vma_check(struct vm_area_struct *vma)
  {
  	if ((!(vma->vm_flags & VM_HUGEPAGE) && !khugepaged_always()) ||
  	    (vma->vm_flags & VM_NOHUGEPAGE))
  		return false;
  
  	if (!vma->anon_vma || vma->vm_ops)
  		return false;
  	if (is_vma_temporary_stack(vma))
  		return false;
  	VM_BUG_ON(vma->vm_flags & VM_NO_THP);
  	return true;
  }
26234f36e   Xiao Guangrong   thp: introduce kh...
2337
2338
2339
2340
2341
2342
  static void collapse_huge_page(struct mm_struct *mm,
  				   unsigned long address,
  				   struct page **hpage,
  				   struct vm_area_struct *vma,
  				   int node)
  {
26234f36e   Xiao Guangrong   thp: introduce kh...
2343
2344
2345
2346
  	pmd_t *pmd, _pmd;
  	pte_t *pte;
  	pgtable_t pgtable;
  	struct page *new_page;
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
2347
  	spinlock_t *pmd_ptl, *pte_ptl;
26234f36e   Xiao Guangrong   thp: introduce kh...
2348
2349
  	int isolated;
  	unsigned long hstart, hend;
2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
2350
2351
  	unsigned long mmun_start;	/* For mmu_notifiers */
  	unsigned long mmun_end;		/* For mmu_notifiers */
26234f36e   Xiao Guangrong   thp: introduce kh...
2352
2353
2354
2355
2356
2357
2358
  
  	VM_BUG_ON(address & ~HPAGE_PMD_MASK);
  
  	/* release the mmap_sem read lock. */
  	new_page = khugepaged_alloc_page(hpage, mm, vma, address, node);
  	if (!new_page)
  		return;
420256ef0   Xiao Guangrong   thp: release page...
2359
  	if (unlikely(mem_cgroup_newpage_charge(new_page, mm, GFP_KERNEL)))
ce83d2174   Andrea Arcangeli   thp: allocate mem...
2360
  		return;
ba76149f4   Andrea Arcangeli   thp: khugepaged
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
  
  	/*
  	 * Prevent all access to pagetables with the exception of
  	 * gup_fast later hanlded by the ptep_clear_flush and the VM
  	 * handled by the anon_vma lock + PG_lock.
  	 */
  	down_write(&mm->mmap_sem);
  	if (unlikely(khugepaged_test_exit(mm)))
  		goto out;
  
  	vma = find_vma(mm, address);
a8f531ebc   Libin   mm/huge_memory.c:...
2372
2373
  	if (!vma)
  		goto out;
ba76149f4   Andrea Arcangeli   thp: khugepaged
2374
2375
2376
2377
  	hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
  	hend = vma->vm_end & HPAGE_PMD_MASK;
  	if (address < hstart || address + HPAGE_PMD_SIZE > hend)
  		goto out;
fa475e517   Bob Liu   thp: introduce hu...
2378
  	if (!hugepage_vma_check(vma))
a7d6e4ecd   Andrea Arcangeli   thp: prevent huge...
2379
  		goto out;
6219049ae   Bob Liu   mm: introduce mm_...
2380
2381
  	pmd = mm_find_pmd(mm, address);
  	if (!pmd)
ba76149f4   Andrea Arcangeli   thp: khugepaged
2382
  		goto out;
6219049ae   Bob Liu   mm: introduce mm_...
2383
  	if (pmd_trans_huge(*pmd))
ba76149f4   Andrea Arcangeli   thp: khugepaged
2384
  		goto out;
4fc3f1d66   Ingo Molnar   mm/rmap, migratio...
2385
  	anon_vma_lock_write(vma->anon_vma);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2386
2387
  
  	pte = pte_offset_map(pmd, address);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
2388
  	pte_ptl = pte_lockptr(mm, pmd);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2389

2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
2390
2391
2392
  	mmun_start = address;
  	mmun_end   = address + HPAGE_PMD_SIZE;
  	mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
2393
  	pmd_ptl = pmd_lock(mm, pmd); /* probably unnecessary */
ba76149f4   Andrea Arcangeli   thp: khugepaged
2394
2395
2396
2397
2398
2399
  	/*
  	 * After this gup_fast can't run anymore. This also removes
  	 * any huge TLB entry from the CPU so we won't allow
  	 * huge and small TLB entries for the same virtual address
  	 * to avoid the risk of CPU bugs in that area.
  	 */
2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
2400
  	_pmd = pmdp_clear_flush(vma, address, pmd);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
2401
  	spin_unlock(pmd_ptl);
2ec74c3ef   Sagi Grimberg   mm: move all mmu ...
2402
  	mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2403

c4088ebdc   Kirill A. Shutemov   mm: convert the r...
2404
  	spin_lock(pte_ptl);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2405
  	isolated = __collapse_huge_page_isolate(vma, address, pte);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
2406
  	spin_unlock(pte_ptl);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2407
2408
  
  	if (unlikely(!isolated)) {
453c71926   Johannes Weiner   thp: keep highpte...
2409
  		pte_unmap(pte);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
2410
  		spin_lock(pmd_ptl);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2411
  		BUG_ON(!pmd_none(*pmd));
7c3425123   Aneesh Kumar K.V   mm/THP: use pmd_p...
2412
2413
2414
2415
2416
2417
  		/*
  		 * We can only use set_pmd_at when establishing
  		 * hugepmds and never for establishing regular pmds that
  		 * points to regular pagetables. Use pmd_populate for that
  		 */
  		pmd_populate(mm, pmd, pmd_pgtable(_pmd));
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
2418
  		spin_unlock(pmd_ptl);
08b52706d   Konstantin Khlebnikov   mm/rmap: rename a...
2419
  		anon_vma_unlock_write(vma->anon_vma);
ce83d2174   Andrea Arcangeli   thp: allocate mem...
2420
  		goto out;
ba76149f4   Andrea Arcangeli   thp: khugepaged
2421
2422
2423
2424
2425
2426
  	}
  
  	/*
  	 * All pages are isolated and locked so anon_vma rmap
  	 * can't run anymore.
  	 */
08b52706d   Konstantin Khlebnikov   mm/rmap: rename a...
2427
  	anon_vma_unlock_write(vma->anon_vma);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2428

c4088ebdc   Kirill A. Shutemov   mm: convert the r...
2429
  	__collapse_huge_page_copy(pte, new_page, vma, address, pte_ptl);
453c71926   Johannes Weiner   thp: keep highpte...
2430
  	pte_unmap(pte);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2431
2432
  	__SetPageUptodate(new_page);
  	pgtable = pmd_pgtable(_pmd);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2433

3122359a6   Kirill A. Shutemov   thp: move maybe_p...
2434
2435
  	_pmd = mk_huge_pmd(new_page, vma->vm_page_prot);
  	_pmd = maybe_pmd_mkwrite(pmd_mkdirty(_pmd), vma);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2436
2437
2438
2439
2440
2441
2442
  
  	/*
  	 * spin_lock() below is not the equivalent of smp_wmb(), so
  	 * this is needed to avoid the copy_huge_page writes to become
  	 * visible after the set_pmd_at() write.
  	 */
  	smp_wmb();
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
2443
  	spin_lock(pmd_ptl);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2444
2445
  	BUG_ON(!pmd_none(*pmd));
  	page_add_new_anon_rmap(new_page, vma, address);
fce144b47   Aneesh Kumar K.V   mm/THP: deposit t...
2446
  	pgtable_trans_huge_deposit(mm, pmd, pgtable);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2447
  	set_pmd_at(mm, address, pmd, _pmd);
b113da657   David Miller   mm: Add and use u...
2448
  	update_mmu_cache_pmd(vma, address, pmd);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
2449
  	spin_unlock(pmd_ptl);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2450
2451
  
  	*hpage = NULL;
420256ef0   Xiao Guangrong   thp: release page...
2452

ba76149f4   Andrea Arcangeli   thp: khugepaged
2453
  	khugepaged_pages_collapsed++;
ce83d2174   Andrea Arcangeli   thp: allocate mem...
2454
  out_up_write:
ba76149f4   Andrea Arcangeli   thp: khugepaged
2455
  	up_write(&mm->mmap_sem);
0bbbc0b33   Andrea Arcangeli   thp: add numa awa...
2456
  	return;
ce83d2174   Andrea Arcangeli   thp: allocate mem...
2457
  out:
678ff896a   KAMEZAWA Hiroyuki   memcg: fix leak o...
2458
  	mem_cgroup_uncharge_page(new_page);
ce83d2174   Andrea Arcangeli   thp: allocate mem...
2459
  	goto out_up_write;
ba76149f4   Andrea Arcangeli   thp: khugepaged
2460
2461
2462
2463
2464
2465
2466
  }
  
  static int khugepaged_scan_pmd(struct mm_struct *mm,
  			       struct vm_area_struct *vma,
  			       unsigned long address,
  			       struct page **hpage)
  {
ba76149f4   Andrea Arcangeli   thp: khugepaged
2467
2468
2469
2470
2471
2472
  	pmd_t *pmd;
  	pte_t *pte, *_pte;
  	int ret = 0, referenced = 0, none = 0;
  	struct page *page;
  	unsigned long _address;
  	spinlock_t *ptl;
00ef2d2f8   David Rientjes   mm: use NUMA_NO_NODE
2473
  	int node = NUMA_NO_NODE;
ba76149f4   Andrea Arcangeli   thp: khugepaged
2474
2475
  
  	VM_BUG_ON(address & ~HPAGE_PMD_MASK);
6219049ae   Bob Liu   mm: introduce mm_...
2476
2477
  	pmd = mm_find_pmd(mm, address);
  	if (!pmd)
ba76149f4   Andrea Arcangeli   thp: khugepaged
2478
  		goto out;
6219049ae   Bob Liu   mm: introduce mm_...
2479
  	if (pmd_trans_huge(*pmd))
ba76149f4   Andrea Arcangeli   thp: khugepaged
2480
  		goto out;
9f1b868a1   Bob Liu   mm: thp: khugepag...
2481
  	memset(khugepaged_node_load, 0, sizeof(khugepaged_node_load));
ba76149f4   Andrea Arcangeli   thp: khugepaged
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
  	pte = pte_offset_map_lock(mm, pmd, address, &ptl);
  	for (_address = address, _pte = pte; _pte < pte+HPAGE_PMD_NR;
  	     _pte++, _address += PAGE_SIZE) {
  		pte_t pteval = *_pte;
  		if (pte_none(pteval)) {
  			if (++none <= khugepaged_max_ptes_none)
  				continue;
  			else
  				goto out_unmap;
  		}
  		if (!pte_present(pteval) || !pte_write(pteval))
  			goto out_unmap;
  		page = vm_normal_page(vma, _address, pteval);
  		if (unlikely(!page))
  			goto out_unmap;
5c4b4be3b   Andi Kleen   mm: use correct n...
2497
  		/*
9f1b868a1   Bob Liu   mm: thp: khugepag...
2498
2499
2500
2501
  		 * Record which node the original page is from and save this
  		 * information to khugepaged_node_load[].
  		 * Khupaged will allocate hugepage from the node has the max
  		 * hit record.
5c4b4be3b   Andi Kleen   mm: use correct n...
2502
  		 */
9f1b868a1   Bob Liu   mm: thp: khugepag...
2503
2504
  		node = page_to_nid(page);
  		khugepaged_node_load[node]++;
309381fea   Sasha Levin   mm: dump page whe...
2505
  		VM_BUG_ON_PAGE(PageCompound(page), page);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2506
2507
2508
2509
2510
  		if (!PageLRU(page) || PageLocked(page) || !PageAnon(page))
  			goto out_unmap;
  		/* cannot use mapcount: can't collapse if there's a gup pin */
  		if (page_count(page) != 1)
  			goto out_unmap;
8ee53820e   Andrea Arcangeli   thp: mmu_notifier...
2511
2512
  		if (pte_young(pteval) || PageReferenced(page) ||
  		    mmu_notifier_test_young(vma->vm_mm, address))
ba76149f4   Andrea Arcangeli   thp: khugepaged
2513
2514
2515
2516
2517
2518
  			referenced = 1;
  	}
  	if (referenced)
  		ret = 1;
  out_unmap:
  	pte_unmap_unlock(pte, ptl);
9f1b868a1   Bob Liu   mm: thp: khugepag...
2519
2520
  	if (ret) {
  		node = khugepaged_find_target_node();
ce83d2174   Andrea Arcangeli   thp: allocate mem...
2521
  		/* collapse_huge_page will return with the mmap_sem released */
5c4b4be3b   Andi Kleen   mm: use correct n...
2522
  		collapse_huge_page(mm, address, hpage, vma, node);
9f1b868a1   Bob Liu   mm: thp: khugepag...
2523
  	}
ba76149f4   Andrea Arcangeli   thp: khugepaged
2524
2525
2526
2527
2528
2529
2530
  out:
  	return ret;
  }
  
  static void collect_mm_slot(struct mm_slot *mm_slot)
  {
  	struct mm_struct *mm = mm_slot->mm;
b9980cdcf   Hugh Dickins   mm: fix UP THP sp...
2531
  	VM_BUG_ON(NR_CPUS != 1 && !spin_is_locked(&khugepaged_mm_lock));
ba76149f4   Andrea Arcangeli   thp: khugepaged
2532
2533
2534
  
  	if (khugepaged_test_exit(mm)) {
  		/* free mm_slot */
43b5fbbd2   Sasha Levin   mm/huge_memory.c:...
2535
  		hash_del(&mm_slot->hash);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
  		list_del(&mm_slot->mm_node);
  
  		/*
  		 * Not strictly needed because the mm exited already.
  		 *
  		 * clear_bit(MMF_VM_HUGEPAGE, &mm->flags);
  		 */
  
  		/* khugepaged_mm_lock actually not necessary for the below */
  		free_mm_slot(mm_slot);
  		mmdrop(mm);
  	}
  }
  
  static unsigned int khugepaged_scan_mm_slot(unsigned int pages,
  					    struct page **hpage)
2f1da6421   H Hartley Sweeten   mm/huge_memory.c:...
2552
2553
  	__releases(&khugepaged_mm_lock)
  	__acquires(&khugepaged_mm_lock)
ba76149f4   Andrea Arcangeli   thp: khugepaged
2554
2555
2556
2557
2558
2559
2560
  {
  	struct mm_slot *mm_slot;
  	struct mm_struct *mm;
  	struct vm_area_struct *vma;
  	int progress = 0;
  
  	VM_BUG_ON(!pages);
b9980cdcf   Hugh Dickins   mm: fix UP THP sp...
2561
  	VM_BUG_ON(NR_CPUS != 1 && !spin_is_locked(&khugepaged_mm_lock));
ba76149f4   Andrea Arcangeli   thp: khugepaged
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
  
  	if (khugepaged_scan.mm_slot)
  		mm_slot = khugepaged_scan.mm_slot;
  	else {
  		mm_slot = list_entry(khugepaged_scan.mm_head.next,
  				     struct mm_slot, mm_node);
  		khugepaged_scan.address = 0;
  		khugepaged_scan.mm_slot = mm_slot;
  	}
  	spin_unlock(&khugepaged_mm_lock);
  
  	mm = mm_slot->mm;
  	down_read(&mm->mmap_sem);
  	if (unlikely(khugepaged_test_exit(mm)))
  		vma = NULL;
  	else
  		vma = find_vma(mm, khugepaged_scan.address);
  
  	progress++;
  	for (; vma; vma = vma->vm_next) {
  		unsigned long hstart, hend;
  
  		cond_resched();
  		if (unlikely(khugepaged_test_exit(mm))) {
  			progress++;
  			break;
  		}
fa475e517   Bob Liu   thp: introduce hu...
2589
2590
  		if (!hugepage_vma_check(vma)) {
  skip:
ba76149f4   Andrea Arcangeli   thp: khugepaged
2591
2592
2593
  			progress++;
  			continue;
  		}
ba76149f4   Andrea Arcangeli   thp: khugepaged
2594
2595
  		hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
  		hend = vma->vm_end & HPAGE_PMD_MASK;
a7d6e4ecd   Andrea Arcangeli   thp: prevent huge...
2596
2597
2598
2599
  		if (hstart >= hend)
  			goto skip;
  		if (khugepaged_scan.address > hend)
  			goto skip;
ba76149f4   Andrea Arcangeli   thp: khugepaged
2600
2601
  		if (khugepaged_scan.address < hstart)
  			khugepaged_scan.address = hstart;
a7d6e4ecd   Andrea Arcangeli   thp: prevent huge...
2602
  		VM_BUG_ON(khugepaged_scan.address & ~HPAGE_PMD_MASK);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
  
  		while (khugepaged_scan.address < hend) {
  			int ret;
  			cond_resched();
  			if (unlikely(khugepaged_test_exit(mm)))
  				goto breakouterloop;
  
  			VM_BUG_ON(khugepaged_scan.address < hstart ||
  				  khugepaged_scan.address + HPAGE_PMD_SIZE >
  				  hend);
  			ret = khugepaged_scan_pmd(mm, vma,
  						  khugepaged_scan.address,
  						  hpage);
  			/* move to next address */
  			khugepaged_scan.address += HPAGE_PMD_SIZE;
  			progress += HPAGE_PMD_NR;
  			if (ret)
  				/* we released mmap_sem so break loop */
  				goto breakouterloop_mmap_sem;
  			if (progress >= pages)
  				goto breakouterloop;
  		}
  	}
  breakouterloop:
  	up_read(&mm->mmap_sem); /* exit_mmap will destroy ptes after this */
  breakouterloop_mmap_sem:
  
  	spin_lock(&khugepaged_mm_lock);
a7d6e4ecd   Andrea Arcangeli   thp: prevent huge...
2631
  	VM_BUG_ON(khugepaged_scan.mm_slot != mm_slot);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
  	/*
  	 * Release the current mm_slot if this mm is about to die, or
  	 * if we scanned all vmas of this mm.
  	 */
  	if (khugepaged_test_exit(mm) || !vma) {
  		/*
  		 * Make sure that if mm_users is reaching zero while
  		 * khugepaged runs here, khugepaged_exit will find
  		 * mm_slot not pointing to the exiting mm.
  		 */
  		if (mm_slot->mm_node.next != &khugepaged_scan.mm_head) {
  			khugepaged_scan.mm_slot = list_entry(
  				mm_slot->mm_node.next,
  				struct mm_slot, mm_node);
  			khugepaged_scan.address = 0;
  		} else {
  			khugepaged_scan.mm_slot = NULL;
  			khugepaged_full_scans++;
  		}
  
  		collect_mm_slot(mm_slot);
  	}
  
  	return progress;
  }
  
  static int khugepaged_has_work(void)
  {
  	return !list_empty(&khugepaged_scan.mm_head) &&
  		khugepaged_enabled();
  }
  
  static int khugepaged_wait_event(void)
  {
  	return !list_empty(&khugepaged_scan.mm_head) ||
2017c0bff   Xiao Guangrong   thp: remove wake_...
2667
  		kthread_should_stop();
ba76149f4   Andrea Arcangeli   thp: khugepaged
2668
  }
d516904bd   Xiao Guangrong   thp: merge page p...
2669
  static void khugepaged_do_scan(void)
ba76149f4   Andrea Arcangeli   thp: khugepaged
2670
  {
d516904bd   Xiao Guangrong   thp: merge page p...
2671
  	struct page *hpage = NULL;
ba76149f4   Andrea Arcangeli   thp: khugepaged
2672
2673
  	unsigned int progress = 0, pass_through_head = 0;
  	unsigned int pages = khugepaged_pages_to_scan;
d516904bd   Xiao Guangrong   thp: merge page p...
2674
  	bool wait = true;
ba76149f4   Andrea Arcangeli   thp: khugepaged
2675
2676
2677
2678
  
  	barrier(); /* write khugepaged_pages_to_scan to local stack */
  
  	while (progress < pages) {
26234f36e   Xiao Guangrong   thp: introduce kh...
2679
  		if (!khugepaged_prealloc_page(&hpage, &wait))
d516904bd   Xiao Guangrong   thp: merge page p...
2680
  			break;
26234f36e   Xiao Guangrong   thp: introduce kh...
2681

420256ef0   Xiao Guangrong   thp: release page...
2682
  		cond_resched();
ba76149f4   Andrea Arcangeli   thp: khugepaged
2683

878aee7d6   Andrea Arcangeli   thp: freeze khuge...
2684
2685
  		if (unlikely(kthread_should_stop() || freezing(current)))
  			break;
ba76149f4   Andrea Arcangeli   thp: khugepaged
2686
2687
2688
2689
2690
2691
  		spin_lock(&khugepaged_mm_lock);
  		if (!khugepaged_scan.mm_slot)
  			pass_through_head++;
  		if (khugepaged_has_work() &&
  		    pass_through_head < 2)
  			progress += khugepaged_scan_mm_slot(pages - progress,
d516904bd   Xiao Guangrong   thp: merge page p...
2692
  							    &hpage);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2693
2694
2695
2696
  		else
  			progress = pages;
  		spin_unlock(&khugepaged_mm_lock);
  	}
ba76149f4   Andrea Arcangeli   thp: khugepaged
2697

d516904bd   Xiao Guangrong   thp: merge page p...
2698
2699
  	if (!IS_ERR_OR_NULL(hpage))
  		put_page(hpage);
0bbbc0b33   Andrea Arcangeli   thp: add numa awa...
2700
  }
2017c0bff   Xiao Guangrong   thp: remove wake_...
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
  static void khugepaged_wait_work(void)
  {
  	try_to_freeze();
  
  	if (khugepaged_has_work()) {
  		if (!khugepaged_scan_sleep_millisecs)
  			return;
  
  		wait_event_freezable_timeout(khugepaged_wait,
  					     kthread_should_stop(),
  			msecs_to_jiffies(khugepaged_scan_sleep_millisecs));
  		return;
  	}
  
  	if (khugepaged_enabled())
  		wait_event_freezable(khugepaged_wait, khugepaged_wait_event());
  }
ba76149f4   Andrea Arcangeli   thp: khugepaged
2718
2719
2720
  static int khugepaged(void *none)
  {
  	struct mm_slot *mm_slot;
878aee7d6   Andrea Arcangeli   thp: freeze khuge...
2721
  	set_freezable();
ba76149f4   Andrea Arcangeli   thp: khugepaged
2722
  	set_user_nice(current, 19);
b7231789b   Xiao Guangrong   thp: remove khuge...
2723
2724
2725
2726
  	while (!kthread_should_stop()) {
  		khugepaged_do_scan();
  		khugepaged_wait_work();
  	}
ba76149f4   Andrea Arcangeli   thp: khugepaged
2727
2728
2729
2730
2731
2732
2733
  
  	spin_lock(&khugepaged_mm_lock);
  	mm_slot = khugepaged_scan.mm_slot;
  	khugepaged_scan.mm_slot = NULL;
  	if (mm_slot)
  		collect_mm_slot(mm_slot);
  	spin_unlock(&khugepaged_mm_lock);
ba76149f4   Andrea Arcangeli   thp: khugepaged
2734
2735
  	return 0;
  }
c5a647d09   Kirill A. Shutemov   thp: implement sp...
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
  static void __split_huge_zero_page_pmd(struct vm_area_struct *vma,
  		unsigned long haddr, pmd_t *pmd)
  {
  	struct mm_struct *mm = vma->vm_mm;
  	pgtable_t pgtable;
  	pmd_t _pmd;
  	int i;
  
  	pmdp_clear_flush(vma, haddr, pmd);
  	/* leave pmd empty until pte is filled */
6b0b50b06   Aneesh Kumar K.V   mm/THP: add pmd a...
2746
  	pgtable = pgtable_trans_huge_withdraw(mm, pmd);
c5a647d09   Kirill A. Shutemov   thp: implement sp...
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
  	pmd_populate(mm, &_pmd, pgtable);
  
  	for (i = 0; i < HPAGE_PMD_NR; i++, haddr += PAGE_SIZE) {
  		pte_t *pte, entry;
  		entry = pfn_pte(my_zero_pfn(haddr), vma->vm_page_prot);
  		entry = pte_mkspecial(entry);
  		pte = pte_offset_map(&_pmd, haddr);
  		VM_BUG_ON(!pte_none(*pte));
  		set_pte_at(mm, haddr, pte, entry);
  		pte_unmap(pte);
  	}
  	smp_wmb(); /* make pte visible before pmd */
  	pmd_populate(mm, pmd, pgtable);
97ae17497   Kirill A. Shutemov   thp: implement re...
2760
  	put_huge_zero_page();
c5a647d09   Kirill A. Shutemov   thp: implement sp...
2761
  }
e180377f1   Kirill A. Shutemov   thp: change split...
2762
2763
  void __split_huge_page_pmd(struct vm_area_struct *vma, unsigned long address,
  		pmd_t *pmd)
71e3aac07   Andrea Arcangeli   thp: transparent ...
2764
  {
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
2765
  	spinlock_t *ptl;
71e3aac07   Andrea Arcangeli   thp: transparent ...
2766
  	struct page *page;
e180377f1   Kirill A. Shutemov   thp: change split...
2767
  	struct mm_struct *mm = vma->vm_mm;
c5a647d09   Kirill A. Shutemov   thp: implement sp...
2768
2769
2770
  	unsigned long haddr = address & HPAGE_PMD_MASK;
  	unsigned long mmun_start;	/* For mmu_notifiers */
  	unsigned long mmun_end;		/* For mmu_notifiers */
e180377f1   Kirill A. Shutemov   thp: change split...
2771
2772
  
  	BUG_ON(vma->vm_start > haddr || vma->vm_end < haddr + HPAGE_PMD_SIZE);
71e3aac07   Andrea Arcangeli   thp: transparent ...
2773

c5a647d09   Kirill A. Shutemov   thp: implement sp...
2774
2775
  	mmun_start = haddr;
  	mmun_end   = haddr + HPAGE_PMD_SIZE;
750e8165f   Hugh Dickins   mm: fix BUG in __...
2776
  again:
c5a647d09   Kirill A. Shutemov   thp: implement sp...
2777
  	mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
2778
  	ptl = pmd_lock(mm, pmd);
71e3aac07   Andrea Arcangeli   thp: transparent ...
2779
  	if (unlikely(!pmd_trans_huge(*pmd))) {
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
2780
  		spin_unlock(ptl);
c5a647d09   Kirill A. Shutemov   thp: implement sp...
2781
2782
2783
2784
2785
  		mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
  		return;
  	}
  	if (is_huge_zero_pmd(*pmd)) {
  		__split_huge_zero_page_pmd(vma, haddr, pmd);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
2786
  		spin_unlock(ptl);
c5a647d09   Kirill A. Shutemov   thp: implement sp...
2787
  		mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
71e3aac07   Andrea Arcangeli   thp: transparent ...
2788
2789
2790
  		return;
  	}
  	page = pmd_page(*pmd);
309381fea   Sasha Levin   mm: dump page whe...
2791
  	VM_BUG_ON_PAGE(!page_count(page), page);
71e3aac07   Andrea Arcangeli   thp: transparent ...
2792
  	get_page(page);
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
2793
  	spin_unlock(ptl);
c5a647d09   Kirill A. Shutemov   thp: implement sp...
2794
  	mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
71e3aac07   Andrea Arcangeli   thp: transparent ...
2795
2796
2797
2798
  
  	split_huge_page(page);
  
  	put_page(page);
750e8165f   Hugh Dickins   mm: fix BUG in __...
2799
2800
2801
2802
2803
2804
2805
2806
  
  	/*
  	 * We don't always have down_write of mmap_sem here: a racing
  	 * do_huge_pmd_wp_page() might have copied-on-write to another
  	 * huge page before our split_huge_page() got the anon_vma lock.
  	 */
  	if (unlikely(pmd_trans_huge(*pmd)))
  		goto again;
71e3aac07   Andrea Arcangeli   thp: transparent ...
2807
  }
94fcc585f   Andrea Arcangeli   thp: avoid breaki...
2808

e180377f1   Kirill A. Shutemov   thp: change split...
2809
2810
2811
2812
2813
2814
2815
2816
2817
  void split_huge_page_pmd_mm(struct mm_struct *mm, unsigned long address,
  		pmd_t *pmd)
  {
  	struct vm_area_struct *vma;
  
  	vma = find_vma(mm, address);
  	BUG_ON(vma == NULL);
  	split_huge_page_pmd(vma, address, pmd);
  }
94fcc585f   Andrea Arcangeli   thp: avoid breaki...
2818
2819
2820
  static void split_huge_page_address(struct mm_struct *mm,
  				    unsigned long address)
  {
94fcc585f   Andrea Arcangeli   thp: avoid breaki...
2821
2822
2823
  	pmd_t *pmd;
  
  	VM_BUG_ON(!(address & ~HPAGE_PMD_MASK));
6219049ae   Bob Liu   mm: introduce mm_...
2824
2825
  	pmd = mm_find_pmd(mm, address);
  	if (!pmd)
94fcc585f   Andrea Arcangeli   thp: avoid breaki...
2826
2827
2828
2829
2830
  		return;
  	/*
  	 * Caller holds the mmap_sem write mode, so a huge pmd cannot
  	 * materialize from under us.
  	 */
e180377f1   Kirill A. Shutemov   thp: change split...
2831
  	split_huge_page_pmd_mm(mm, address, pmd);
94fcc585f   Andrea Arcangeli   thp: avoid breaki...
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
  }
  
  void __vma_adjust_trans_huge(struct vm_area_struct *vma,
  			     unsigned long start,
  			     unsigned long end,
  			     long adjust_next)
  {
  	/*
  	 * If the new start address isn't hpage aligned and it could
  	 * previously contain an hugepage: check if we need to split
  	 * an huge pmd.
  	 */
  	if (start & ~HPAGE_PMD_MASK &&
  	    (start & HPAGE_PMD_MASK) >= vma->vm_start &&
  	    (start & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE <= vma->vm_end)
  		split_huge_page_address(vma->vm_mm, start);
  
  	/*
  	 * If the new end address isn't hpage aligned and it could
  	 * previously contain an hugepage: check if we need to split
  	 * an huge pmd.
  	 */
  	if (end & ~HPAGE_PMD_MASK &&
  	    (end & HPAGE_PMD_MASK) >= vma->vm_start &&
  	    (end & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE <= vma->vm_end)
  		split_huge_page_address(vma->vm_mm, end);
  
  	/*
  	 * If we're also updating the vma->vm_next->vm_start, if the new
  	 * vm_next->vm_start isn't page aligned and it could previously
  	 * contain an hugepage: check if we need to split an huge pmd.
  	 */
  	if (adjust_next > 0) {
  		struct vm_area_struct *next = vma->vm_next;
  		unsigned long nstart = next->vm_start;
  		nstart += adjust_next << PAGE_SHIFT;
  		if (nstart & ~HPAGE_PMD_MASK &&
  		    (nstart & HPAGE_PMD_MASK) >= next->vm_start &&
  		    (nstart & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE <= next->vm_end)
  			split_huge_page_address(next->vm_mm, nstart);
  	}
  }