huge_memory.c 97.7 KB
Newer Older
1 2 3 4 5 6 7
/*
 *  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.
 */

8 9
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

10 11 12 13 14 15 16
#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>
17
#include <linux/shrinker.h>
A
Andrea Arcangeli 已提交
18
#include <linux/mm_inline.h>
19
#include <linux/swapops.h>
M
Matthew Wilcox 已提交
20
#include <linux/dax.h>
A
Andrea Arcangeli 已提交
21 22
#include <linux/kthread.h>
#include <linux/khugepaged.h>
23
#include <linux/freezer.h>
24
#include <linux/pfn_t.h>
A
Andrea Arcangeli 已提交
25
#include <linux/mman.h>
26
#include <linux/memremap.h>
R
Ralf Baechle 已提交
27
#include <linux/pagemap.h>
28
#include <linux/debugfs.h>
29
#include <linux/migrate.h>
30
#include <linux/hashtable.h>
31
#include <linux/userfaultfd_k.h>
32
#include <linux/page_idle.h>
33
#include <linux/shmem_fs.h>
34

35 36 37 38
#include <asm/tlb.h>
#include <asm/pgalloc.h>
#include "internal.h"

39 40 41 42 43 44 45 46 47 48 49 50 51 52
enum scan_result {
	SCAN_FAIL,
	SCAN_SUCCEED,
	SCAN_PMD_NULL,
	SCAN_EXCEED_NONE_PTE,
	SCAN_PTE_NON_PRESENT,
	SCAN_PAGE_RO,
	SCAN_NO_REFERENCED_PAGE,
	SCAN_PAGE_NULL,
	SCAN_SCAN_ABORT,
	SCAN_PAGE_COUNT,
	SCAN_PAGE_LRU,
	SCAN_PAGE_LOCK,
	SCAN_PAGE_ANON,
53
	SCAN_PAGE_COMPOUND,
54 55 56 57 58 59 60
	SCAN_ANY_PROCESS,
	SCAN_VMA_NULL,
	SCAN_VMA_CHECK,
	SCAN_ADDRESS_RANGE,
	SCAN_SWAP_CACHE_PAGE,
	SCAN_DEL_PAGE_LRU,
	SCAN_ALLOC_HUGE_PAGE_FAIL,
61 62
	SCAN_CGROUP_CHARGE_FAIL,
	SCAN_EXCEED_SWAP_PTE
63 64 65 66 67
};

#define CREATE_TRACE_POINTS
#include <trace/events/huge_memory.h>

A
Andrea Arcangeli 已提交
68
/*
69 70 71 72 73 74
 * 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.
A
Andrea Arcangeli 已提交
75
 */
76
unsigned long transparent_hugepage_flags __read_mostly =
77
#ifdef CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS
A
Andrea Arcangeli 已提交
78
	(1<<TRANSPARENT_HUGEPAGE_FLAG)|
79 80 81 82
#endif
#ifdef CONFIG_TRANSPARENT_HUGEPAGE_MADVISE
	(1<<TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG)|
#endif
83
	(1<<TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG)|
84 85
	(1<<TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG)|
	(1<<TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
A
Andrea Arcangeli 已提交
86 87

/* default scan 8*512 pte (or vmas) every 30 second */
88
static unsigned int khugepaged_pages_to_scan __read_mostly;
A
Andrea Arcangeli 已提交
89 90 91 92 93
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;
94
static unsigned long khugepaged_sleep_expire;
A
Andrea Arcangeli 已提交
95 96 97 98 99 100 101 102 103
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.
 */
104
static unsigned int khugepaged_max_ptes_none __read_mostly;
105
static unsigned int khugepaged_max_ptes_swap __read_mostly;
A
Andrea Arcangeli 已提交
106 107 108

static int khugepaged(void *none);
static int khugepaged_slab_init(void);
109
static void khugepaged_slab_exit(void);
A
Andrea Arcangeli 已提交
110

111 112 113
#define MM_SLOTS_HASH_BITS 10
static __read_mostly DEFINE_HASHTABLE(mm_slots_hash, MM_SLOTS_HASH_BITS);

A
Andrea Arcangeli 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
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;
140 141
};
static struct khugepaged_scan khugepaged_scan = {
A
Andrea Arcangeli 已提交
142 143 144
	.mm_head = LIST_HEAD_INIT(khugepaged_scan.mm_head),
};

145
static struct shrinker deferred_split_shrinker;
146

147
static void set_recommended_min_free_kbytes(void)
148 149 150 151 152 153 154 155
{
	struct zone *zone;
	int nr_zones = 0;
	unsigned long recommended_min;

	for_each_populated_zone(zone)
		nr_zones++;

156
	/* Ensure 2 pageblocks are free to assist fragmentation avoidance */
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
	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);

173 174
	if (recommended_min > min_free_kbytes) {
		if (user_min_free_kbytes >= 0)
J
Joe Perches 已提交
175
			pr_info("raising min_free_kbytes from %d to %lu to help transparent hugepage allocations\n",
176 177
				min_free_kbytes, recommended_min);

178
		min_free_kbytes = recommended_min;
179
	}
180 181 182
	setup_per_zone_wmarks();
}

183
static int start_stop_khugepaged(void)
A
Andrea Arcangeli 已提交
184 185 186 187 188 189
{
	int err = 0;
	if (khugepaged_enabled()) {
		if (!khugepaged_thread)
			khugepaged_thread = kthread_run(khugepaged, NULL,
							"khugepaged");
190
		if (IS_ERR(khugepaged_thread)) {
191
			pr_err("khugepaged: kthread_run(khugepaged) failed\n");
A
Andrea Arcangeli 已提交
192 193
			err = PTR_ERR(khugepaged_thread);
			khugepaged_thread = NULL;
194
			goto fail;
A
Andrea Arcangeli 已提交
195
		}
196 197

		if (!list_empty(&khugepaged_scan.mm_head))
A
Andrea Arcangeli 已提交
198
			wake_up_interruptible(&khugepaged_wait);
199 200

		set_recommended_min_free_kbytes();
201 202 203 204
	} else if (khugepaged_thread) {
		kthread_stop(khugepaged_thread);
		khugepaged_thread = NULL;
	}
205
fail:
A
Andrea Arcangeli 已提交
206 207
	return err;
}
208

209
static atomic_t huge_zero_refcount;
210
struct page *huge_zero_page __read_mostly;
211

212
struct page *get_huge_zero_page(void)
213 214 215 216
{
	struct page *zero_page;
retry:
	if (likely(atomic_inc_not_zero(&huge_zero_refcount)))
217
		return READ_ONCE(huge_zero_page);
218 219

	zero_page = alloc_pages((GFP_TRANSHUGE | __GFP_ZERO) & ~__GFP_MOVABLE,
220
			HPAGE_PMD_ORDER);
221 222
	if (!zero_page) {
		count_vm_event(THP_ZERO_PAGE_ALLOC_FAILED);
223
		return NULL;
224 225
	}
	count_vm_event(THP_ZERO_PAGE_ALLOC);
226
	preempt_disable();
227
	if (cmpxchg(&huge_zero_page, NULL, zero_page)) {
228
		preempt_enable();
229
		__free_pages(zero_page, compound_order(zero_page));
230 231 232 233 234 235
		goto retry;
	}

	/* We take additional reference here. It will be put back by shrinker */
	atomic_set(&huge_zero_refcount, 2);
	preempt_enable();
236
	return READ_ONCE(huge_zero_page);
237 238
}

239
void put_huge_zero_page(void)
240
{
241 242 243 244 245
	/*
	 * Counter should never go to zero here. Only shrinker can put
	 * last reference.
	 */
	BUG_ON(atomic_dec_and_test(&huge_zero_refcount));
246 247
}

248 249
static unsigned long shrink_huge_zero_page_count(struct shrinker *shrink,
					struct shrink_control *sc)
250
{
251 252 253
	/* we can free zero page only if last reference remains */
	return atomic_read(&huge_zero_refcount) == 1 ? HPAGE_PMD_NR : 0;
}
254

255 256 257
static unsigned long shrink_huge_zero_page_scan(struct shrinker *shrink,
				       struct shrink_control *sc)
{
258
	if (atomic_cmpxchg(&huge_zero_refcount, 1, 0) == 1) {
259 260
		struct page *zero_page = xchg(&huge_zero_page, NULL);
		BUG_ON(zero_page == NULL);
261
		__free_pages(zero_page, compound_order(zero_page));
262
		return HPAGE_PMD_NR;
263 264 265
	}

	return 0;
266 267
}

268
static struct shrinker huge_zero_page_shrinker = {
269 270
	.count_objects = shrink_huge_zero_page_count,
	.scan_objects = shrink_huge_zero_page_scan,
271 272 273
	.seeks = DEFAULT_SEEKS,
};

274
#ifdef CONFIG_SYSFS
A
Andrea Arcangeli 已提交
275

276
static ssize_t triple_flag_store(struct kobject *kobj,
277 278 279
				 struct kobj_attribute *attr,
				 const char *buf, size_t count,
				 enum transparent_hugepage_flag enabled,
280
				 enum transparent_hugepage_flag deferred,
281 282
				 enum transparent_hugepage_flag req_madv)
{
283 284 285 286 287 288 289 290
	if (!memcmp("defer", buf,
		    min(sizeof("defer")-1, count))) {
		if (enabled == deferred)
			return -EINVAL;
		clear_bit(enabled, &transparent_hugepage_flags);
		clear_bit(req_madv, &transparent_hugepage_flags);
		set_bit(deferred, &transparent_hugepage_flags);
	} else if (!memcmp("always", buf,
291
		    min(sizeof("always")-1, count))) {
292
		clear_bit(deferred, &transparent_hugepage_flags);
293
		clear_bit(req_madv, &transparent_hugepage_flags);
294
		set_bit(enabled, &transparent_hugepage_flags);
295 296 297
	} else if (!memcmp("madvise", buf,
			   min(sizeof("madvise")-1, count))) {
		clear_bit(enabled, &transparent_hugepage_flags);
298
		clear_bit(deferred, &transparent_hugepage_flags);
299 300 301 302 303
		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);
304
		clear_bit(deferred, &transparent_hugepage_flags);
305 306 307 308 309 310 311 312 313
	} else
		return -EINVAL;

	return count;
}

static ssize_t enabled_show(struct kobject *kobj,
			    struct kobj_attribute *attr, char *buf)
{
314 315 316 317 318 319
	if (test_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags))
		return sprintf(buf, "[always] madvise never\n");
	else if (test_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags))
		return sprintf(buf, "always [madvise] never\n");
	else
		return sprintf(buf, "always madvise [never]\n");
320
}
321

322 323 324 325
static ssize_t enabled_store(struct kobject *kobj,
			     struct kobj_attribute *attr,
			     const char *buf, size_t count)
{
A
Andrea Arcangeli 已提交
326 327
	ssize_t ret;

328 329
	ret = triple_flag_store(kobj, attr, buf, count,
				TRANSPARENT_HUGEPAGE_FLAG,
A
Andrea Arcangeli 已提交
330 331 332 333
				TRANSPARENT_HUGEPAGE_FLAG,
				TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG);

	if (ret > 0) {
334 335 336
		int err;

		mutex_lock(&khugepaged_mutex);
337
		err = start_stop_khugepaged();
338 339
		mutex_unlock(&khugepaged_mutex);

A
Andrea Arcangeli 已提交
340 341 342 343 344
		if (err)
			ret = err;
	}

	return ret;
345 346 347 348 349 350 351 352
}
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)
{
353 354
	return sprintf(buf, "%d\n",
		       !!test_bit(flag, &transparent_hugepage_flags));
355
}
356

357 358 359 360 361
static ssize_t single_flag_store(struct kobject *kobj,
				 struct kobj_attribute *attr,
				 const char *buf, size_t count,
				 enum transparent_hugepage_flag flag)
{
362 363 364 365 366 367 368 369 370 371
	unsigned long value;
	int ret;

	ret = kstrtoul(buf, 10, &value);
	if (ret < 0)
		return ret;
	if (value > 1)
		return -EINVAL;

	if (value)
372
		set_bit(flag, &transparent_hugepage_flags);
373
	else
374 375 376 377 378 379 380 381 382 383 384 385 386
		clear_bit(flag, &transparent_hugepage_flags);

	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)
{
387 388 389 390 391 392 393 394 395
	if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags))
		return sprintf(buf, "[always] defer madvise never\n");
	if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags))
		return sprintf(buf, "always [defer] madvise never\n");
	else if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags))
		return sprintf(buf, "always defer [madvise] never\n");
	else
		return sprintf(buf, "always defer madvise [never]\n");

396 397 398 399 400
}
static ssize_t defrag_store(struct kobject *kobj,
			    struct kobj_attribute *attr,
			    const char *buf, size_t count)
{
401 402 403
	return triple_flag_store(kobj, attr, buf, count,
				 TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG,
				 TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG,
404 405 406 407 408
				 TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG);
}
static struct kobj_attribute defrag_attr =
	__ATTR(defrag, 0644, defrag_show, defrag_store);

409 410 411 412 413 414 415 416 417 418 419 420 421 422
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);
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
#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,
444
	&use_zero_page_attr.attr,
445 446 447 448 449 450 451 452
#ifdef CONFIG_DEBUG_VM
	&debug_cow_attr.attr,
#endif
	NULL,
};

static struct attribute_group hugepage_attr_group = {
	.attrs = hugepage_attr,
A
Andrea Arcangeli 已提交
453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
};

static ssize_t scan_sleep_millisecs_show(struct kobject *kobj,
					 struct kobj_attribute *attr,
					 char *buf)
{
	return sprintf(buf, "%u\n", 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;

469
	err = kstrtoul(buf, 10, &msecs);
A
Andrea Arcangeli 已提交
470 471 472 473
	if (err || msecs > UINT_MAX)
		return -EINVAL;

	khugepaged_scan_sleep_millisecs = msecs;
474
	khugepaged_sleep_expire = 0;
A
Andrea Arcangeli 已提交
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
	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\n", 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;

497
	err = kstrtoul(buf, 10, &msecs);
A
Andrea Arcangeli 已提交
498 499 500 501
	if (err || msecs > UINT_MAX)
		return -EINVAL;

	khugepaged_alloc_sleep_millisecs = msecs;
502
	khugepaged_sleep_expire = 0;
A
Andrea Arcangeli 已提交
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
	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\n", 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;

524
	err = kstrtoul(buf, 10, &pages);
A
Andrea Arcangeli 已提交
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 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 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
	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\n", 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\n", 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\n", 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;

592
	err = kstrtoul(buf, 10, &max_ptes_none);
A
Andrea Arcangeli 已提交
593 594 595 596 597 598 599 600 601 602 603
	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);

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
static ssize_t khugepaged_max_ptes_swap_show(struct kobject *kobj,
					     struct kobj_attribute *attr,
					     char *buf)
{
	return sprintf(buf, "%u\n", khugepaged_max_ptes_swap);
}

static ssize_t khugepaged_max_ptes_swap_store(struct kobject *kobj,
					      struct kobj_attribute *attr,
					      const char *buf, size_t count)
{
	int err;
	unsigned long max_ptes_swap;

	err  = kstrtoul(buf, 10, &max_ptes_swap);
	if (err || max_ptes_swap > HPAGE_PMD_NR-1)
		return -EINVAL;

	khugepaged_max_ptes_swap = max_ptes_swap;

	return count;
}

static struct kobj_attribute khugepaged_max_ptes_swap_attr =
	__ATTR(max_ptes_swap, 0644, khugepaged_max_ptes_swap_show,
	       khugepaged_max_ptes_swap_store);

A
Andrea Arcangeli 已提交
631 632 633 634 635 636 637 638
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,
639
	&khugepaged_max_ptes_swap_attr.attr,
A
Andrea Arcangeli 已提交
640 641 642 643 644 645
	NULL,
};

static struct attribute_group khugepaged_attr_group = {
	.attrs = khugepaged_attr,
	.name = "khugepaged",
646 647
};

S
Shaohua Li 已提交
648
static int __init hugepage_init_sysfs(struct kobject **hugepage_kobj)
649 650 651
{
	int err;

S
Shaohua Li 已提交
652 653
	*hugepage_kobj = kobject_create_and_add("transparent_hugepage", mm_kobj);
	if (unlikely(!*hugepage_kobj)) {
654
		pr_err("failed to create transparent hugepage kobject\n");
S
Shaohua Li 已提交
655
		return -ENOMEM;
A
Andrea Arcangeli 已提交
656 657
	}

S
Shaohua Li 已提交
658
	err = sysfs_create_group(*hugepage_kobj, &hugepage_attr_group);
A
Andrea Arcangeli 已提交
659
	if (err) {
660
		pr_err("failed to register transparent hugepage group\n");
S
Shaohua Li 已提交
661
		goto delete_obj;
A
Andrea Arcangeli 已提交
662 663
	}

S
Shaohua Li 已提交
664
	err = sysfs_create_group(*hugepage_kobj, &khugepaged_attr_group);
A
Andrea Arcangeli 已提交
665
	if (err) {
666
		pr_err("failed to register transparent hugepage group\n");
S
Shaohua Li 已提交
667
		goto remove_hp_group;
A
Andrea Arcangeli 已提交
668
	}
S
Shaohua Li 已提交
669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705

	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;
	}

706 707
	khugepaged_pages_to_scan = HPAGE_PMD_NR * 8;
	khugepaged_max_ptes_none = HPAGE_PMD_NR - 1;
708
	khugepaged_max_ptes_swap = HPAGE_PMD_NR / 8;
709 710 711 712 713 714 715 716 717 718
	/*
	 * hugepages can't be allocated by the buddy allocator
	 */
	MAYBE_BUILD_BUG_ON(HPAGE_PMD_ORDER >= MAX_ORDER);
	/*
	 * we use page->mapping and page->index in second tail page
	 * as list_head: assuming THP order >= 2
	 */
	MAYBE_BUILD_BUG_ON(HPAGE_PMD_ORDER < 2);

S
Shaohua Li 已提交
719 720
	err = hugepage_init_sysfs(&hugepage_kobj);
	if (err)
721
		goto err_sysfs;
A
Andrea Arcangeli 已提交
722 723 724

	err = khugepaged_slab_init();
	if (err)
725
		goto err_slab;
A
Andrea Arcangeli 已提交
726

727 728 729
	err = register_shrinker(&huge_zero_page_shrinker);
	if (err)
		goto err_hzp_shrinker;
730 731 732
	err = register_shrinker(&deferred_split_shrinker);
	if (err)
		goto err_split_shrinker;
733

734 735 736 737 738
	/*
	 * 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.
	 */
739
	if (totalram_pages < (512 << (20 - PAGE_SHIFT))) {
740
		transparent_hugepage_flags = 0;
741 742
		return 0;
	}
743

744
	err = start_stop_khugepaged();
745 746
	if (err)
		goto err_khugepaged;
A
Andrea Arcangeli 已提交
747

S
Shaohua Li 已提交
748
	return 0;
749
err_khugepaged:
750 751
	unregister_shrinker(&deferred_split_shrinker);
err_split_shrinker:
752 753 754 755
	unregister_shrinker(&huge_zero_page_shrinker);
err_hzp_shrinker:
	khugepaged_slab_exit();
err_slab:
S
Shaohua Li 已提交
756
	hugepage_exit_sysfs(hugepage_kobj);
757
err_sysfs:
A
Andrea Arcangeli 已提交
758
	return err;
759
}
760
subsys_initcall(hugepage_init);
761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787

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)
788
		pr_warn("transparent_hugepage= cannot parse, ignored\n");
789 790 791 792
	return ret;
}
__setup("transparent_hugepage=", setup_transparent_hugepage);

793
pmd_t maybe_pmd_mkwrite(pmd_t pmd, struct vm_area_struct *vma)
794 795 796 797 798 799
{
	if (likely(vma->vm_flags & VM_WRITE))
		pmd = pmd_mkwrite(pmd);
	return pmd;
}

800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
static inline struct list_head *page_deferred_list(struct page *page)
{
	/*
	 * ->lru in the tail pages is occupied by compound_head.
	 * Let's use ->mapping + ->index in the second tail page as list_head.
	 */
	return (struct list_head *)&page[2].mapping;
}

void prep_transhuge_page(struct page *page)
{
	/*
	 * we use page->mapping and page->indexlru in second tail page
	 * as list_head: assuming THP order >= 2
	 */

	INIT_LIST_HEAD(page_deferred_list(page));
	set_compound_page_dtor(page, TRANSHUGE_PAGE_DTOR);
}

K
Kirill A. Shutemov 已提交
820 821
static int __do_huge_pmd_anonymous_page(struct fault_env *fe, struct page *page,
		gfp_t gfp)
822
{
K
Kirill A. Shutemov 已提交
823
	struct vm_area_struct *vma = fe->vma;
824
	struct mem_cgroup *memcg;
825
	pgtable_t pgtable;
K
Kirill A. Shutemov 已提交
826
	unsigned long haddr = fe->address & HPAGE_PMD_MASK;
827

828
	VM_BUG_ON_PAGE(!PageCompound(page), page);
829

K
Kirill A. Shutemov 已提交
830
	if (mem_cgroup_try_charge(page, vma->vm_mm, gfp, &memcg, true)) {
831 832 833 834
		put_page(page);
		count_vm_event(THP_FAULT_FALLBACK);
		return VM_FAULT_FALLBACK;
	}
835

K
Kirill A. Shutemov 已提交
836
	pgtable = pte_alloc_one(vma->vm_mm, haddr);
837
	if (unlikely(!pgtable)) {
838
		mem_cgroup_cancel_charge(page, memcg, true);
839
		put_page(page);
840
		return VM_FAULT_OOM;
841
	}
842 843

	clear_huge_page(page, haddr, HPAGE_PMD_NR);
844 845 846 847 848
	/*
	 * The memory barrier inside __SetPageUptodate makes sure that
	 * clear_huge_page writes become visible before the set_pmd_at()
	 * write.
	 */
849 850
	__SetPageUptodate(page);

K
Kirill A. Shutemov 已提交
851 852 853
	fe->ptl = pmd_lock(vma->vm_mm, fe->pmd);
	if (unlikely(!pmd_none(*fe->pmd))) {
		spin_unlock(fe->ptl);
854
		mem_cgroup_cancel_charge(page, memcg, true);
855
		put_page(page);
K
Kirill A. Shutemov 已提交
856
		pte_free(vma->vm_mm, pgtable);
857 858
	} else {
		pmd_t entry;
859 860 861 862 863

		/* Deliver the page fault to userland */
		if (userfaultfd_missing(vma)) {
			int ret;

K
Kirill A. Shutemov 已提交
864
			spin_unlock(fe->ptl);
865
			mem_cgroup_cancel_charge(page, memcg, true);
866
			put_page(page);
K
Kirill A. Shutemov 已提交
867 868
			pte_free(vma->vm_mm, pgtable);
			ret = handle_userfault(fe, VM_UFFD_MISSING);
869 870 871 872
			VM_BUG_ON(ret & VM_FAULT_FALLBACK);
			return ret;
		}

873 874
		entry = mk_huge_pmd(page, vma->vm_page_prot);
		entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
875
		page_add_new_anon_rmap(page, vma, haddr, true);
876
		mem_cgroup_commit_charge(page, memcg, false, true);
877
		lru_cache_add_active_or_unevictable(page, vma);
K
Kirill A. Shutemov 已提交
878 879 880 881 882
		pgtable_trans_huge_deposit(vma->vm_mm, fe->pmd, pgtable);
		set_pmd_at(vma->vm_mm, haddr, fe->pmd, entry);
		add_mm_counter(vma->vm_mm, MM_ANONPAGES, HPAGE_PMD_NR);
		atomic_long_inc(&vma->vm_mm->nr_ptes);
		spin_unlock(fe->ptl);
883
		count_vm_event(THP_FAULT_ALLOC);
884 885
	}

886
	return 0;
887 888
}

889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
/*
 * If THP is set to always then directly reclaim/compact as necessary
 * If set to defer then do no reclaim and defer to khugepaged
 * If set to madvise and the VMA is flagged then directly reclaim/compact
 */
static inline gfp_t alloc_hugepage_direct_gfpmask(struct vm_area_struct *vma)
{
	gfp_t reclaim_flags = 0;

	if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags) &&
	    (vma->vm_flags & VM_HUGEPAGE))
		reclaim_flags = __GFP_DIRECT_RECLAIM;
	else if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags))
		reclaim_flags = __GFP_KSWAPD_RECLAIM;
	else if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags))
		reclaim_flags = __GFP_DIRECT_RECLAIM;

	return GFP_TRANSHUGE | reclaim_flags;
}

/* Defrag for khugepaged will enter direct reclaim/compaction if necessary */
static inline gfp_t alloc_hugepage_khugepaged_gfpmask(void)
911
{
912
	return GFP_TRANSHUGE | (khugepaged_defrag() ? __GFP_DIRECT_RECLAIM : 0);
913 914
}

915
/* Caller must hold page table lock. */
916
static bool set_huge_zero_page(pgtable_t pgtable, struct mm_struct *mm,
917
		struct vm_area_struct *vma, unsigned long haddr, pmd_t *pmd,
918
		struct page *zero_page)
919 920
{
	pmd_t entry;
A
Andrew Morton 已提交
921 922
	if (!pmd_none(*pmd))
		return false;
923
	entry = mk_pmd(zero_page, vma->vm_page_prot);
924
	entry = pmd_mkhuge(entry);
925 926
	if (pgtable)
		pgtable_trans_huge_deposit(mm, pmd, pgtable);
927
	set_pmd_at(mm, haddr, pmd, entry);
928
	atomic_long_inc(&mm->nr_ptes);
A
Andrew Morton 已提交
929
	return true;
930 931
}

K
Kirill A. Shutemov 已提交
932
int do_huge_pmd_anonymous_page(struct fault_env *fe)
933
{
K
Kirill A. Shutemov 已提交
934
	struct vm_area_struct *vma = fe->vma;
935
	gfp_t gfp;
936
	struct page *page;
K
Kirill A. Shutemov 已提交
937
	unsigned long haddr = fe->address & HPAGE_PMD_MASK;
938

939
	if (haddr < vma->vm_start || haddr + HPAGE_PMD_SIZE > vma->vm_end)
940
		return VM_FAULT_FALLBACK;
941 942
	if (unlikely(anon_vma_prepare(vma)))
		return VM_FAULT_OOM;
943
	if (unlikely(khugepaged_enter(vma, vma->vm_flags)))
944
		return VM_FAULT_OOM;
K
Kirill A. Shutemov 已提交
945 946
	if (!(fe->flags & FAULT_FLAG_WRITE) &&
			!mm_forbids_zeropage(vma->vm_mm) &&
947 948 949 950
			transparent_hugepage_use_zero_page()) {
		pgtable_t pgtable;
		struct page *zero_page;
		bool set;
951
		int ret;
K
Kirill A. Shutemov 已提交
952
		pgtable = pte_alloc_one(vma->vm_mm, haddr);
953
		if (unlikely(!pgtable))
A
Andrea Arcangeli 已提交
954
			return VM_FAULT_OOM;
955 956
		zero_page = get_huge_zero_page();
		if (unlikely(!zero_page)) {
K
Kirill A. Shutemov 已提交
957
			pte_free(vma->vm_mm, pgtable);
958
			count_vm_event(THP_FAULT_FALLBACK);
959
			return VM_FAULT_FALLBACK;
A
Andrea Arcangeli 已提交
960
		}
K
Kirill A. Shutemov 已提交
961
		fe->ptl = pmd_lock(vma->vm_mm, fe->pmd);
962 963
		ret = 0;
		set = false;
K
Kirill A. Shutemov 已提交
964
		if (pmd_none(*fe->pmd)) {
965
			if (userfaultfd_missing(vma)) {
K
Kirill A. Shutemov 已提交
966 967
				spin_unlock(fe->ptl);
				ret = handle_userfault(fe, VM_UFFD_MISSING);
968 969
				VM_BUG_ON(ret & VM_FAULT_FALLBACK);
			} else {
K
Kirill A. Shutemov 已提交
970 971 972
				set_huge_zero_page(pgtable, vma->vm_mm, vma,
						   haddr, fe->pmd, zero_page);
				spin_unlock(fe->ptl);
973 974 975
				set = true;
			}
		} else
K
Kirill A. Shutemov 已提交
976
			spin_unlock(fe->ptl);
977
		if (!set) {
K
Kirill A. Shutemov 已提交
978
			pte_free(vma->vm_mm, pgtable);
979
			put_huge_zero_page();
980
		}
981
		return ret;
982
	}
983
	gfp = alloc_hugepage_direct_gfpmask(vma);
984
	page = alloc_hugepage_vma(gfp, vma, haddr, HPAGE_PMD_ORDER);
985 986
	if (unlikely(!page)) {
		count_vm_event(THP_FAULT_FALLBACK);
987
		return VM_FAULT_FALLBACK;
988
	}
989
	prep_transhuge_page(page);
K
Kirill A. Shutemov 已提交
990
	return __do_huge_pmd_anonymous_page(fe, page, gfp);
991 992
}

993
static void insert_pfn_pmd(struct vm_area_struct *vma, unsigned long addr,
994
		pmd_t *pmd, pfn_t pfn, pgprot_t prot, bool write)
M
Matthew Wilcox 已提交
995 996 997 998 999 1000
{
	struct mm_struct *mm = vma->vm_mm;
	pmd_t entry;
	spinlock_t *ptl;

	ptl = pmd_lock(mm, pmd);
1001 1002 1003
	entry = pmd_mkhuge(pfn_t_pmd(pfn, prot));
	if (pfn_t_devmap(pfn))
		entry = pmd_mkdevmap(entry);
1004 1005 1006
	if (write) {
		entry = pmd_mkyoung(pmd_mkdirty(entry));
		entry = maybe_pmd_mkwrite(entry, vma);
M
Matthew Wilcox 已提交
1007
	}
1008 1009
	set_pmd_at(mm, addr, pmd, entry);
	update_mmu_cache_pmd(vma, addr, pmd);
M
Matthew Wilcox 已提交
1010 1011 1012 1013
	spin_unlock(ptl);
}

int vmf_insert_pfn_pmd(struct vm_area_struct *vma, unsigned long addr,
1014
			pmd_t *pmd, pfn_t pfn, bool write)
M
Matthew Wilcox 已提交
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
{
	pgprot_t pgprot = vma->vm_page_prot;
	/*
	 * If we had pmd_special, we could avoid all these restrictions,
	 * but we need to be consistent with PTEs and architectures that
	 * can't support a 'special' bit.
	 */
	BUG_ON(!(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)));
	BUG_ON((vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) ==
						(VM_PFNMAP|VM_MIXEDMAP));
	BUG_ON((vma->vm_flags & VM_PFNMAP) && is_cow_mapping(vma->vm_flags));
1026
	BUG_ON(!pfn_t_devmap(pfn));
M
Matthew Wilcox 已提交
1027 1028 1029 1030 1031

	if (addr < vma->vm_start || addr >= vma->vm_end)
		return VM_FAULT_SIGBUS;
	if (track_pfn_insert(vma, &pgprot, pfn))
		return VM_FAULT_SIGBUS;
1032 1033
	insert_pfn_pmd(vma, addr, pmd, pfn, pgprot, write);
	return VM_FAULT_NOPAGE;
M
Matthew Wilcox 已提交
1034
}
1035
EXPORT_SYMBOL_GPL(vmf_insert_pfn_pmd);
M
Matthew Wilcox 已提交
1036

1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
static void touch_pmd(struct vm_area_struct *vma, unsigned long addr,
		pmd_t *pmd)
{
	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));
	if (pmdp_set_access_flags(vma, addr & HPAGE_PMD_MASK,
				pmd, _pmd,  1))
		update_mmu_cache_pmd(vma, addr, pmd);
}

struct page *follow_devmap_pmd(struct vm_area_struct *vma, unsigned long addr,
		pmd_t *pmd, int flags)
{
	unsigned long pfn = pmd_pfn(*pmd);
	struct mm_struct *mm = vma->vm_mm;
	struct dev_pagemap *pgmap;
	struct page *page;

	assert_spin_locked(pmd_lockptr(mm, pmd));

	if (flags & FOLL_WRITE && !pmd_write(*pmd))
		return NULL;

	if (pmd_present(*pmd) && pmd_devmap(*pmd))
		/* pass */;
	else
		return NULL;

	if (flags & FOLL_TOUCH)
		touch_pmd(vma, addr, pmd);

	/*
	 * device mapped pages can only be returned if the
	 * caller will manage the page reference count.
	 */
	if (!(flags & FOLL_GET))
		return ERR_PTR(-EEXIST);

	pfn += (addr & ~PMD_MASK) >> PAGE_SHIFT;
	pgmap = get_dev_pagemap(pfn, NULL);
	if (!pgmap)
		return ERR_PTR(-EFAULT);
	page = pfn_to_page(pfn);
	get_page(page);
	put_dev_pagemap(pgmap);

	return page;
}

1094 1095 1096 1097
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)
{
1098
	spinlock_t *dst_ptl, *src_ptl;
1099 1100
	struct page *src_page;
	pmd_t pmd;
1101
	pgtable_t pgtable = NULL;
1102
	int ret = -ENOMEM;
1103

1104 1105 1106 1107 1108 1109 1110
	/* Skip if can be re-fill on fault */
	if (!vma_is_anonymous(vma))
		return 0;

	pgtable = pte_alloc_one(dst_mm, addr);
	if (unlikely(!pgtable))
		goto out;
1111

1112 1113 1114
	dst_ptl = pmd_lock(dst_mm, dst_pmd);
	src_ptl = pmd_lockptr(src_mm, src_pmd);
	spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
1115 1116 1117

	ret = -EAGAIN;
	pmd = *src_pmd;
1118
	if (unlikely(!pmd_trans_huge(pmd))) {
1119 1120 1121
		pte_free(dst_mm, pgtable);
		goto out_unlock;
	}
1122
	/*
1123
	 * When page table lock is held, the huge zero pmd should not be
1124 1125 1126 1127
	 * under splitting since we don't split the page itself, only pmd to
	 * a page table.
	 */
	if (is_huge_zero_pmd(pmd)) {
1128
		struct page *zero_page;
1129 1130 1131 1132 1133
		/*
		 * 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.
		 */
1134
		zero_page = get_huge_zero_page();
1135
		set_huge_zero_page(pgtable, dst_mm, vma, addr, dst_pmd,
1136
				zero_page);
1137 1138 1139
		ret = 0;
		goto out_unlock;
	}
1140

1141 1142 1143 1144 1145 1146 1147
	src_page = pmd_page(pmd);
	VM_BUG_ON_PAGE(!PageHead(src_page), src_page);
	get_page(src_page);
	page_dup_rmap(src_page, true);
	add_mm_counter(dst_mm, MM_ANONPAGES, HPAGE_PMD_NR);
	atomic_long_inc(&dst_mm->nr_ptes);
	pgtable_trans_huge_deposit(dst_mm, dst_pmd, pgtable);
1148 1149 1150 1151 1152 1153 1154

	pmdp_set_wrprotect(src_mm, addr, src_pmd);
	pmd = pmd_mkold(pmd_wrprotect(pmd));
	set_pmd_at(dst_mm, addr, dst_pmd, pmd);

	ret = 0;
out_unlock:
1155 1156
	spin_unlock(src_ptl);
	spin_unlock(dst_ptl);
1157 1158 1159 1160
out:
	return ret;
}

K
Kirill A. Shutemov 已提交
1161
void huge_pmd_set_accessed(struct fault_env *fe, pmd_t orig_pmd)
1162 1163 1164 1165
{
	pmd_t entry;
	unsigned long haddr;

K
Kirill A. Shutemov 已提交
1166 1167
	fe->ptl = pmd_lock(fe->vma->vm_mm, fe->pmd);
	if (unlikely(!pmd_same(*fe->pmd, orig_pmd)))
1168 1169 1170
		goto unlock;

	entry = pmd_mkyoung(orig_pmd);
K
Kirill A. Shutemov 已提交
1171 1172 1173 1174
	haddr = fe->address & HPAGE_PMD_MASK;
	if (pmdp_set_access_flags(fe->vma, haddr, fe->pmd, entry,
				fe->flags & FAULT_FLAG_WRITE))
		update_mmu_cache_pmd(fe->vma, fe->address, fe->pmd);
1175 1176

unlock:
K
Kirill A. Shutemov 已提交
1177
	spin_unlock(fe->ptl);
1178 1179
}

K
Kirill A. Shutemov 已提交
1180 1181
static int do_huge_pmd_wp_page_fallback(struct fault_env *fe, pmd_t orig_pmd,
		struct page *page)
1182
{
K
Kirill A. Shutemov 已提交
1183 1184
	struct vm_area_struct *vma = fe->vma;
	unsigned long haddr = fe->address & HPAGE_PMD_MASK;
1185
	struct mem_cgroup *memcg;
1186 1187 1188 1189
	pgtable_t pgtable;
	pmd_t _pmd;
	int ret = 0, i;
	struct page **pages;
1190 1191
	unsigned long mmun_start;	/* For mmu_notifiers */
	unsigned long mmun_end;		/* For mmu_notifiers */
1192 1193 1194 1195 1196 1197 1198 1199 1200

	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++) {
1201
		pages[i] = alloc_page_vma_node(GFP_HIGHUSER_MOVABLE |
K
Kirill A. Shutemov 已提交
1202 1203
					       __GFP_OTHER_NODE, vma,
					       fe->address, page_to_nid(page));
A
Andrea Arcangeli 已提交
1204
		if (unlikely(!pages[i] ||
K
Kirill A. Shutemov 已提交
1205 1206
			     mem_cgroup_try_charge(pages[i], vma->vm_mm,
				     GFP_KERNEL, &memcg, false))) {
A
Andrea Arcangeli 已提交
1207
			if (pages[i])
1208
				put_page(pages[i]);
A
Andrea Arcangeli 已提交
1209
			while (--i >= 0) {
1210 1211
				memcg = (void *)page_private(pages[i]);
				set_page_private(pages[i], 0);
1212 1213
				mem_cgroup_cancel_charge(pages[i], memcg,
						false);
A
Andrea Arcangeli 已提交
1214 1215
				put_page(pages[i]);
			}
1216 1217 1218 1219
			kfree(pages);
			ret |= VM_FAULT_OOM;
			goto out;
		}
1220
		set_page_private(pages[i], (unsigned long)memcg);
1221 1222 1223 1224
	}

	for (i = 0; i < HPAGE_PMD_NR; i++) {
		copy_user_highpage(pages[i], page + i,
1225
				   haddr + PAGE_SIZE * i, vma);
1226 1227 1228 1229
		__SetPageUptodate(pages[i]);
		cond_resched();
	}

1230 1231
	mmun_start = haddr;
	mmun_end   = haddr + HPAGE_PMD_SIZE;
K
Kirill A. Shutemov 已提交
1232
	mmu_notifier_invalidate_range_start(vma->vm_mm, mmun_start, mmun_end);
1233

K
Kirill A. Shutemov 已提交
1234 1235
	fe->ptl = pmd_lock(vma->vm_mm, fe->pmd);
	if (unlikely(!pmd_same(*fe->pmd, orig_pmd)))
1236
		goto out_free_pages;
1237
	VM_BUG_ON_PAGE(!PageHead(page), page);
1238

K
Kirill A. Shutemov 已提交
1239
	pmdp_huge_clear_flush_notify(vma, haddr, fe->pmd);
1240 1241
	/* leave pmd empty until pte is filled */

K
Kirill A. Shutemov 已提交
1242 1243
	pgtable = pgtable_trans_huge_withdraw(vma->vm_mm, fe->pmd);
	pmd_populate(vma->vm_mm, &_pmd, pgtable);
1244 1245

	for (i = 0; i < HPAGE_PMD_NR; i++, haddr += PAGE_SIZE) {
K
Kirill A. Shutemov 已提交
1246
		pte_t entry;
1247 1248
		entry = mk_pte(pages[i], vma->vm_page_prot);
		entry = maybe_mkwrite(pte_mkdirty(entry), vma);
1249 1250
		memcg = (void *)page_private(pages[i]);
		set_page_private(pages[i], 0);
K
Kirill A. Shutemov 已提交
1251
		page_add_new_anon_rmap(pages[i], fe->vma, haddr, false);
1252
		mem_cgroup_commit_charge(pages[i], memcg, false, false);
1253
		lru_cache_add_active_or_unevictable(pages[i], vma);
K
Kirill A. Shutemov 已提交
1254 1255 1256 1257
		fe->pte = pte_offset_map(&_pmd, haddr);
		VM_BUG_ON(!pte_none(*fe->pte));
		set_pte_at(vma->vm_mm, haddr, fe->pte, entry);
		pte_unmap(fe->pte);
1258 1259 1260 1261
	}
	kfree(pages);

	smp_wmb(); /* make pte visible before pmd */
K
Kirill A. Shutemov 已提交
1262
	pmd_populate(vma->vm_mm, fe->pmd, pgtable);
1263
	page_remove_rmap(page, true);
K
Kirill A. Shutemov 已提交
1264
	spin_unlock(fe->ptl);
1265

K
Kirill A. Shutemov 已提交
1266
	mmu_notifier_invalidate_range_end(vma->vm_mm, mmun_start, mmun_end);
1267

1268 1269 1270 1271 1272 1273 1274
	ret |= VM_FAULT_WRITE;
	put_page(page);

out:
	return ret;

out_free_pages:
K
Kirill A. Shutemov 已提交
1275 1276
	spin_unlock(fe->ptl);
	mmu_notifier_invalidate_range_end(vma->vm_mm, mmun_start, mmun_end);
A
Andrea Arcangeli 已提交
1277
	for (i = 0; i < HPAGE_PMD_NR; i++) {
1278 1279
		memcg = (void *)page_private(pages[i]);
		set_page_private(pages[i], 0);
1280
		mem_cgroup_cancel_charge(pages[i], memcg, false);
1281
		put_page(pages[i]);
A
Andrea Arcangeli 已提交
1282
	}
1283 1284 1285 1286
	kfree(pages);
	goto out;
}

K
Kirill A. Shutemov 已提交
1287
int do_huge_pmd_wp_page(struct fault_env *fe, pmd_t orig_pmd)
1288
{
K
Kirill A. Shutemov 已提交
1289
	struct vm_area_struct *vma = fe->vma;
1290
	struct page *page = NULL, *new_page;
1291
	struct mem_cgroup *memcg;
K
Kirill A. Shutemov 已提交
1292
	unsigned long haddr = fe->address & HPAGE_PMD_MASK;
1293 1294
	unsigned long mmun_start;	/* For mmu_notifiers */
	unsigned long mmun_end;		/* For mmu_notifiers */
1295
	gfp_t huge_gfp;			/* for allocation and charge */
K
Kirill A. Shutemov 已提交
1296
	int ret = 0;
1297

K
Kirill A. Shutemov 已提交
1298
	fe->ptl = pmd_lockptr(vma->vm_mm, fe->pmd);
1299
	VM_BUG_ON_VMA(!vma->anon_vma, vma);
1300 1301
	if (is_huge_zero_pmd(orig_pmd))
		goto alloc;
K
Kirill A. Shutemov 已提交
1302 1303
	spin_lock(fe->ptl);
	if (unlikely(!pmd_same(*fe->pmd, orig_pmd)))
1304 1305 1306
		goto out_unlock;

	page = pmd_page(orig_pmd);
1307
	VM_BUG_ON_PAGE(!PageCompound(page) || !PageHead(page), page);
1308 1309
	/*
	 * We can only reuse the page if nobody else maps the huge page or it's
1310
	 * part.
1311
	 */
1312
	if (page_trans_huge_mapcount(page, NULL) == 1) {
1313 1314 1315
		pmd_t entry;
		entry = pmd_mkyoung(orig_pmd);
		entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
K
Kirill A. Shutemov 已提交
1316 1317
		if (pmdp_set_access_flags(vma, haddr, fe->pmd, entry,  1))
			update_mmu_cache_pmd(vma, fe->address, fe->pmd);
1318 1319 1320
		ret |= VM_FAULT_WRITE;
		goto out_unlock;
	}
1321
	get_page(page);
K
Kirill A. Shutemov 已提交
1322
	spin_unlock(fe->ptl);
1323
alloc:
1324
	if (transparent_hugepage_enabled(vma) &&
1325
	    !transparent_hugepage_debug_cow()) {
1326
		huge_gfp = alloc_hugepage_direct_gfpmask(vma);
1327
		new_page = alloc_hugepage_vma(huge_gfp, vma, haddr, HPAGE_PMD_ORDER);
1328
	} else
1329 1330
		new_page = NULL;

1331 1332 1333
	if (likely(new_page)) {
		prep_transhuge_page(new_page);
	} else {
1334
		if (!page) {
K
Kirill A. Shutemov 已提交
1335
			split_huge_pmd(vma, fe->pmd, fe->address);
1336
			ret |= VM_FAULT_FALLBACK;
1337
		} else {
K
Kirill A. Shutemov 已提交
1338
			ret = do_huge_pmd_wp_page_fallback(fe, orig_pmd, page);
1339
			if (ret & VM_FAULT_OOM) {
K
Kirill A. Shutemov 已提交
1340
				split_huge_pmd(vma, fe->pmd, fe->address);
1341 1342
				ret |= VM_FAULT_FALLBACK;
			}
1343
			put_page(page);
1344
		}
1345
		count_vm_event(THP_FAULT_FALLBACK);
1346 1347 1348
		goto out;
	}

K
Kirill A. Shutemov 已提交
1349 1350
	if (unlikely(mem_cgroup_try_charge(new_page, vma->vm_mm,
					huge_gfp, &memcg, true))) {
A
Andrea Arcangeli 已提交
1351
		put_page(new_page);
K
Kirill A. Shutemov 已提交
1352 1353
		split_huge_pmd(vma, fe->pmd, fe->address);
		if (page)
1354
			put_page(page);
1355
		ret |= VM_FAULT_FALLBACK;
1356
		count_vm_event(THP_FAULT_FALLBACK);
A
Andrea Arcangeli 已提交
1357 1358 1359
		goto out;
	}

1360 1361
	count_vm_event(THP_FAULT_ALLOC);

1362
	if (!page)
1363 1364 1365
		clear_huge_page(new_page, haddr, HPAGE_PMD_NR);
	else
		copy_user_huge_page(new_page, page, haddr, vma, HPAGE_PMD_NR);
1366 1367
	__SetPageUptodate(new_page);

1368 1369
	mmun_start = haddr;
	mmun_end   = haddr + HPAGE_PMD_SIZE;
K
Kirill A. Shutemov 已提交
1370
	mmu_notifier_invalidate_range_start(vma->vm_mm, mmun_start, mmun_end);
1371

K
Kirill A. Shutemov 已提交
1372
	spin_lock(fe->ptl);
1373
	if (page)
1374
		put_page(page);
K
Kirill A. Shutemov 已提交
1375 1376
	if (unlikely(!pmd_same(*fe->pmd, orig_pmd))) {
		spin_unlock(fe->ptl);
1377
		mem_cgroup_cancel_charge(new_page, memcg, true);
1378
		put_page(new_page);
1379
		goto out_mn;
A
Andrea Arcangeli 已提交
1380
	} else {
1381
		pmd_t entry;
1382 1383
		entry = mk_huge_pmd(new_page, vma->vm_page_prot);
		entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
K
Kirill A. Shutemov 已提交
1384
		pmdp_huge_clear_flush_notify(vma, haddr, fe->pmd);
1385
		page_add_new_anon_rmap(new_page, vma, haddr, true);
1386
		mem_cgroup_commit_charge(new_page, memcg, false, true);
1387
		lru_cache_add_active_or_unevictable(new_page, vma);
K
Kirill A. Shutemov 已提交
1388 1389
		set_pmd_at(vma->vm_mm, haddr, fe->pmd, entry);
		update_mmu_cache_pmd(vma, fe->address, fe->pmd);
1390
		if (!page) {
K
Kirill A. Shutemov 已提交
1391
			add_mm_counter(vma->vm_mm, MM_ANONPAGES, HPAGE_PMD_NR);
1392 1393
			put_huge_zero_page();
		} else {
1394
			VM_BUG_ON_PAGE(!PageHead(page), page);
1395
			page_remove_rmap(page, true);
1396 1397
			put_page(page);
		}
1398 1399
		ret |= VM_FAULT_WRITE;
	}
K
Kirill A. Shutemov 已提交
1400
	spin_unlock(fe->ptl);
1401
out_mn:
K
Kirill A. Shutemov 已提交
1402
	mmu_notifier_invalidate_range_end(vma->vm_mm, mmun_start, mmun_end);
1403 1404
out:
	return ret;
1405
out_unlock:
K
Kirill A. Shutemov 已提交
1406
	spin_unlock(fe->ptl);
1407
	return ret;
1408 1409
}

1410
struct page *follow_trans_huge_pmd(struct vm_area_struct *vma,
1411 1412 1413 1414
				   unsigned long addr,
				   pmd_t *pmd,
				   unsigned int flags)
{
1415
	struct mm_struct *mm = vma->vm_mm;
1416 1417
	struct page *page = NULL;

1418
	assert_spin_locked(pmd_lockptr(mm, pmd));
1419 1420 1421 1422

	if (flags & FOLL_WRITE && !pmd_write(*pmd))
		goto out;

1423 1424 1425 1426
	/* Avoid dumping huge zero page */
	if ((flags & FOLL_DUMP) && is_huge_zero_pmd(*pmd))
		return ERR_PTR(-EFAULT);

1427
	/* Full NUMA hinting faults to serialise migration in fault paths */
1428
	if ((flags & FOLL_NUMA) && pmd_protnone(*pmd))
1429 1430
		goto out;

1431
	page = pmd_page(*pmd);
1432
	VM_BUG_ON_PAGE(!PageHead(page), page);
1433 1434
	if (flags & FOLL_TOUCH)
		touch_pmd(vma, addr, pmd);
E
Eric B Munson 已提交
1435
	if ((flags & FOLL_MLOCK) && (vma->vm_flags & VM_LOCKED)) {
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449
		/*
		 * We don't mlock() pte-mapped THPs. This way we can avoid
		 * leaking mlocked pages into non-VM_LOCKED VMAs.
		 *
		 * In most cases the pmd is the only mapping of the page as we
		 * break COW for the mlock() -- see gup_flags |= FOLL_WRITE for
		 * writable private mappings in populate_vma_page_range().
		 *
		 * The only scenario when we have the page shared here is if we
		 * mlocking read-only mapping shared over fork(). We skip
		 * mlocking such pages.
		 */
		if (compound_mapcount(page) == 1 && !PageDoubleMap(page) &&
				page->mapping && trylock_page(page)) {
1450 1451 1452 1453 1454 1455
			lru_add_drain();
			if (page->mapping)
				mlock_vma_page(page);
			unlock_page(page);
		}
	}
1456
	page += (addr & ~HPAGE_PMD_MASK) >> PAGE_SHIFT;
1457
	VM_BUG_ON_PAGE(!PageCompound(page), page);
1458
	if (flags & FOLL_GET)
1459
		get_page(page);
1460 1461 1462 1463 1464

out:
	return page;
}

1465
/* NUMA hinting page fault entry point for trans huge pmds */
K
Kirill A. Shutemov 已提交
1466
int do_huge_pmd_numa_page(struct fault_env *fe, pmd_t pmd)
1467
{
K
Kirill A. Shutemov 已提交
1468
	struct vm_area_struct *vma = fe->vma;
1469
	struct anon_vma *anon_vma = NULL;
1470
	struct page *page;
K
Kirill A. Shutemov 已提交
1471
	unsigned long haddr = fe->address & HPAGE_PMD_MASK;
1472
	int page_nid = -1, this_nid = numa_node_id();
1473
	int target_nid, last_cpupid = -1;
1474 1475
	bool page_locked;
	bool migrated = false;
1476
	bool was_writable;
1477
	int flags = 0;
1478

1479 1480 1481
	/* A PROT_NONE fault should not end up here */
	BUG_ON(!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE)));

K
Kirill A. Shutemov 已提交
1482 1483
	fe->ptl = pmd_lock(vma->vm_mm, fe->pmd);
	if (unlikely(!pmd_same(pmd, *fe->pmd)))
1484 1485
		goto out_unlock;

1486 1487 1488 1489 1490
	/*
	 * 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.
	 */
K
Kirill A. Shutemov 已提交
1491 1492 1493
	if (unlikely(pmd_trans_migrating(*fe->pmd))) {
		page = pmd_page(*fe->pmd);
		spin_unlock(fe->ptl);
1494
		wait_on_page_locked(page);
1495 1496 1497
		goto out;
	}

1498
	page = pmd_page(pmd);
1499
	BUG_ON(is_huge_zero_page(page));
1500
	page_nid = page_to_nid(page);
1501
	last_cpupid = page_cpupid_last(page);
1502
	count_vm_numa_event(NUMA_HINT_FAULTS);
1503
	if (page_nid == this_nid) {
1504
		count_vm_numa_event(NUMA_HINT_FAULTS_LOCAL);
1505 1506
		flags |= TNF_FAULT_LOCAL;
	}
1507

1508 1509
	/* See similar comment in do_numa_page for explanation */
	if (!(vma->vm_flags & VM_WRITE))
1510 1511
		flags |= TNF_NO_GROUP;

1512 1513 1514 1515
	/*
	 * Acquire the page lock to serialise THP migrations but avoid dropping
	 * page_table_lock if at all possible
	 */
1516 1517 1518 1519
	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 */
1520
		if (page_locked)
1521
			goto clear_pmdnuma;
1522
	}
1523

1524
	/* Migration could have started since the pmd_trans_migrating check */
1525
	if (!page_locked) {
K
Kirill A. Shutemov 已提交
1526
		spin_unlock(fe->ptl);
1527
		wait_on_page_locked(page);
1528
		page_nid = -1;
1529 1530 1531
		goto out;
	}

1532 1533 1534 1535
	/*
	 * Page is misplaced. Page lock serialises migrations. Acquire anon_vma
	 * to serialises splits
	 */
1536
	get_page(page);
K
Kirill A. Shutemov 已提交
1537
	spin_unlock(fe->ptl);
1538
	anon_vma = page_lock_anon_vma_read(page);
1539

P
Peter Zijlstra 已提交
1540
	/* Confirm the PMD did not change while page_table_lock was released */
K
Kirill A. Shutemov 已提交
1541 1542
	spin_lock(fe->ptl);
	if (unlikely(!pmd_same(pmd, *fe->pmd))) {
1543 1544
		unlock_page(page);
		put_page(page);
1545
		page_nid = -1;
1546
		goto out_unlock;
1547
	}
1548

1549 1550 1551 1552 1553 1554 1555
	/* 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;
	}

1556 1557
	/*
	 * Migrate the THP to the requested node, returns with page unlocked
1558
	 * and access rights restored.
1559
	 */
K
Kirill A. Shutemov 已提交
1560 1561 1562
	spin_unlock(fe->ptl);
	migrated = migrate_misplaced_transhuge_page(vma->vm_mm, vma,
				fe->pmd, pmd, fe->address, page, target_nid);
1563 1564
	if (migrated) {
		flags |= TNF_MIGRATED;
1565
		page_nid = target_nid;
1566 1567
	} else
		flags |= TNF_MIGRATE_FAIL;
1568

1569
	goto out;
1570
clear_pmdnuma:
1571
	BUG_ON(!PageLocked(page));
1572
	was_writable = pmd_write(pmd);
1573
	pmd = pmd_modify(pmd, vma->vm_page_prot);
1574
	pmd = pmd_mkyoung(pmd);
1575 1576
	if (was_writable)
		pmd = pmd_mkwrite(pmd);
K
Kirill A. Shutemov 已提交
1577 1578
	set_pmd_at(vma->vm_mm, haddr, fe->pmd, pmd);
	update_mmu_cache_pmd(vma, fe->address, fe->pmd);
1579
	unlock_page(page);
1580
out_unlock:
K
Kirill A. Shutemov 已提交
1581
	spin_unlock(fe->ptl);
1582 1583 1584 1585 1586

out:
	if (anon_vma)
		page_unlock_anon_vma_read(anon_vma);

1587
	if (page_nid != -1)
K
Kirill A. Shutemov 已提交
1588
		task_numa_fault(last_cpupid, page_nid, HPAGE_PMD_NR, fe->flags);
1589

1590 1591 1592
	return 0;
}

1593 1594 1595 1596 1597 1598 1599 1600 1601 1602
int madvise_free_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
		pmd_t *pmd, unsigned long addr, unsigned long next)

{
	spinlock_t *ptl;
	pmd_t orig_pmd;
	struct page *page;
	struct mm_struct *mm = tlb->mm;
	int ret = 0;

1603 1604
	ptl = pmd_trans_huge_lock(pmd, vma);
	if (!ptl)
1605
		goto out_unlocked;
1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630

	orig_pmd = *pmd;
	if (is_huge_zero_pmd(orig_pmd)) {
		ret = 1;
		goto out;
	}

	page = pmd_page(orig_pmd);
	/*
	 * If other processes are mapping this page, we couldn't discard
	 * the page unless they all do MADV_FREE so let's skip the page.
	 */
	if (page_mapcount(page) != 1)
		goto out;

	if (!trylock_page(page))
		goto out;

	/*
	 * If user want to discard part-pages of THP, split it so MADV_FREE
	 * will deactivate only them.
	 */
	if (next - addr != HPAGE_PMD_SIZE) {
		get_page(page);
		spin_unlock(ptl);
1631
		split_huge_page(page);
1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659
		put_page(page);
		unlock_page(page);
		goto out_unlocked;
	}

	if (PageDirty(page))
		ClearPageDirty(page);
	unlock_page(page);

	if (PageActive(page))
		deactivate_page(page);

	if (pmd_young(orig_pmd) || pmd_dirty(orig_pmd)) {
		orig_pmd = pmdp_huge_get_and_clear_full(tlb->mm, addr, pmd,
			tlb->fullmm);
		orig_pmd = pmd_mkold(orig_pmd);
		orig_pmd = pmd_mkclean(orig_pmd);

		set_pmd_at(mm, addr, pmd, orig_pmd);
		tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
	}
	ret = 1;
out:
	spin_unlock(ptl);
out_unlocked:
	return ret;
}

1660
int zap_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
S
Shaohua Li 已提交
1661
		 pmd_t *pmd, unsigned long addr)
1662
{
1663
	pmd_t orig_pmd;
1664
	spinlock_t *ptl;
1665

1666 1667
	ptl = __pmd_trans_huge_lock(pmd, vma);
	if (!ptl)
1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680
		return 0;
	/*
	 * For architectures like ppc64 we look at deposited pgtable
	 * when calling pmdp_huge_get_and_clear. So do the
	 * pgtable_trans_huge_withdraw after finishing pmdp related
	 * operations.
	 */
	orig_pmd = pmdp_huge_get_and_clear_full(tlb->mm, addr, pmd,
			tlb->fullmm);
	tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
	if (vma_is_dax(vma)) {
		spin_unlock(ptl);
		if (is_huge_zero_pmd(orig_pmd))
1681
			tlb_remove_page(tlb, pmd_page(orig_pmd));
1682 1683 1684 1685
	} else if (is_huge_zero_pmd(orig_pmd)) {
		pte_free(tlb->mm, pgtable_trans_huge_withdraw(tlb->mm, pmd));
		atomic_long_dec(&tlb->mm->nr_ptes);
		spin_unlock(ptl);
1686
		tlb_remove_page(tlb, pmd_page(orig_pmd));
1687 1688
	} else {
		struct page *page = pmd_page(orig_pmd);
1689
		page_remove_rmap(page, true);
1690 1691
		VM_BUG_ON_PAGE(page_mapcount(page) < 0, page);
		VM_BUG_ON_PAGE(!PageHead(page), page);
1692 1693 1694 1695 1696 1697 1698 1699 1700
		if (PageAnon(page)) {
			pgtable_t pgtable;
			pgtable = pgtable_trans_huge_withdraw(tlb->mm, pmd);
			pte_free(tlb->mm, pgtable);
			atomic_long_dec(&tlb->mm->nr_ptes);
			add_mm_counter(tlb->mm, MM_ANONPAGES, -HPAGE_PMD_NR);
		} else {
			add_mm_counter(tlb->mm, MM_FILEPAGES, -HPAGE_PMD_NR);
		}
1701
		spin_unlock(ptl);
1702
		tlb_remove_page_size(tlb, page, HPAGE_PMD_SIZE);
1703
	}
1704
	return 1;
1705 1706
}

1707
bool move_huge_pmd(struct vm_area_struct *vma, unsigned long old_addr,
1708 1709 1710
		  unsigned long new_addr, unsigned long old_end,
		  pmd_t *old_pmd, pmd_t *new_pmd)
{
1711
	spinlock_t *old_ptl, *new_ptl;
1712 1713 1714 1715 1716
	pmd_t pmd;
	struct mm_struct *mm = vma->vm_mm;

	if ((old_addr & ~HPAGE_PMD_MASK) ||
	    (new_addr & ~HPAGE_PMD_MASK) ||
1717
	    old_end - old_addr < HPAGE_PMD_SIZE)
1718
		return false;
1719 1720 1721 1722 1723 1724 1725

	/*
	 * 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));
1726
		return false;
1727 1728
	}

1729 1730 1731 1732
	/*
	 * We don't have to worry about the ordering of src and dst
	 * ptlocks because exclusive mmap_sem prevents deadlock.
	 */
1733 1734
	old_ptl = __pmd_trans_huge_lock(old_pmd, vma);
	if (old_ptl) {
1735 1736 1737
		new_ptl = pmd_lockptr(mm, new_pmd);
		if (new_ptl != old_ptl)
			spin_lock_nested(new_ptl, SINGLE_DEPTH_NESTING);
1738
		pmd = pmdp_huge_get_and_clear(mm, old_addr, old_pmd);
1739
		VM_BUG_ON(!pmd_none(*new_pmd));
1740

1741 1742
		if (pmd_move_must_withdraw(new_ptl, old_ptl) &&
				vma_is_anonymous(vma)) {
1743
			pgtable_t pgtable;
1744 1745 1746
			pgtable = pgtable_trans_huge_withdraw(mm, old_pmd);
			pgtable_trans_huge_deposit(mm, new_pmd, pgtable);
		}
1747 1748 1749
		set_pmd_at(mm, new_addr, new_pmd, pmd_mksoft_dirty(pmd));
		if (new_ptl != old_ptl)
			spin_unlock(new_ptl);
1750
		spin_unlock(old_ptl);
1751
		return true;
1752
	}
1753
	return false;
1754 1755
}

1756 1757 1758 1759 1760 1761
/*
 * 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
 */
1762
int change_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
1763
		unsigned long addr, pgprot_t newprot, int prot_numa)
1764 1765
{
	struct mm_struct *mm = vma->vm_mm;
1766
	spinlock_t *ptl;
1767 1768
	int ret = 0;

1769 1770
	ptl = __pmd_trans_huge_lock(pmd, vma);
	if (ptl) {
1771
		pmd_t entry;
1772
		bool preserve_write = prot_numa && pmd_write(*pmd);
1773
		ret = 1;
1774 1775 1776 1777 1778 1779 1780 1781

		/*
		 * Avoid trapping faults against the zero page. The read-only
		 * data is likely to be read-cached on the local CPU and
		 * local/remote hits to the zero page are not interesting.
		 */
		if (prot_numa && is_huge_zero_pmd(*pmd)) {
			spin_unlock(ptl);
1782
			return ret;
1783 1784
		}

1785
		if (!prot_numa || !pmd_protnone(*pmd)) {
1786
			entry = pmdp_huge_get_and_clear_notify(mm, addr, pmd);
1787
			entry = pmd_modify(entry, newprot);
1788 1789
			if (preserve_write)
				entry = pmd_mkwrite(entry);
1790 1791
			ret = HPAGE_PMD_NR;
			set_pmd_at(mm, addr, pmd, entry);
1792 1793
			BUG_ON(vma_is_anonymous(vma) && !preserve_write &&
					pmd_write(entry));
1794
		}
1795
		spin_unlock(ptl);
1796 1797 1798 1799 1800 1801
	}

	return ret;
}

/*
1802
 * Returns true if a given pmd maps a thp, false otherwise.
1803
 *
1804 1805
 * Note that if it returns true, this routine returns without unlocking page
 * table lock. So callers must unlock it.
1806
 */
1807
spinlock_t *__pmd_trans_huge_lock(pmd_t *pmd, struct vm_area_struct *vma)
1808
{
1809 1810
	spinlock_t *ptl;
	ptl = pmd_lock(vma->vm_mm, pmd);
1811
	if (likely(pmd_trans_huge(*pmd) || pmd_devmap(*pmd)))
1812 1813 1814
		return ptl;
	spin_unlock(ptl);
	return NULL;
1815 1816
}

1817
#define VM_NO_THP (VM_SPECIAL | VM_HUGETLB | VM_SHARED | VM_MAYSHARE)
1818

1819 1820
int hugepage_madvise(struct vm_area_struct *vma,
		     unsigned long *vm_flags, int advice)
A
Andrea Arcangeli 已提交
1821
{
A
Andrea Arcangeli 已提交
1822 1823
	switch (advice) {
	case MADV_HUGEPAGE:
1824 1825 1826 1827 1828 1829 1830 1831 1832
#ifdef CONFIG_S390
		/*
		 * qemu blindly sets MADV_HUGEPAGE on all allocations, but s390
		 * can't handle this properly after s390_enable_sie, so we simply
		 * ignore the madvise to prevent qemu from causing a SIGSEGV.
		 */
		if (mm_has_pgste(vma->vm_mm))
			return 0;
#endif
A
Andrea Arcangeli 已提交
1833 1834 1835
		/*
		 * Be somewhat over-protective like KSM for now!
		 */
1836
		if (*vm_flags & VM_NO_THP)
A
Andrea Arcangeli 已提交
1837 1838 1839
			return -EINVAL;
		*vm_flags &= ~VM_NOHUGEPAGE;
		*vm_flags |= VM_HUGEPAGE;
1840 1841 1842 1843 1844
		/*
		 * If the vma become good for khugepaged to scan,
		 * register it here without waiting a page fault that
		 * may not happen any time soon.
		 */
1845
		if (unlikely(khugepaged_enter_vma_merge(vma, *vm_flags)))
1846
			return -ENOMEM;
A
Andrea Arcangeli 已提交
1847 1848 1849 1850 1851
		break;
	case MADV_NOHUGEPAGE:
		/*
		 * Be somewhat over-protective like KSM for now!
		 */
1852
		if (*vm_flags & VM_NO_THP)
A
Andrea Arcangeli 已提交
1853 1854 1855
			return -EINVAL;
		*vm_flags &= ~VM_HUGEPAGE;
		*vm_flags |= VM_NOHUGEPAGE;
1856 1857 1858 1859 1860
		/*
		 * 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.
		 */
A
Andrea Arcangeli 已提交
1861 1862
		break;
	}
A
Andrea Arcangeli 已提交
1863 1864 1865 1866

	return 0;
}

A
Andrea Arcangeli 已提交
1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877
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;
}

1878 1879 1880 1881 1882
static void __init khugepaged_slab_exit(void)
{
	kmem_cache_destroy(mm_slot_cache);
}

A
Andrea Arcangeli 已提交
1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898
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);
}

static struct mm_slot *get_mm_slot(struct mm_struct *mm)
{
	struct mm_slot *mm_slot;

1899
	hash_for_each_possible(mm_slots_hash, mm_slot, hash, (unsigned long)mm)
A
Andrea Arcangeli 已提交
1900 1901
		if (mm == mm_slot->mm)
			return mm_slot;
1902

A
Andrea Arcangeli 已提交
1903 1904 1905 1906 1907 1908 1909
	return NULL;
}

static void insert_to_mm_slots_hash(struct mm_struct *mm,
				    struct mm_slot *mm_slot)
{
	mm_slot->mm = mm;
1910
	hash_add(mm_slots_hash, &mm_slot->hash, (long)mm);
A
Andrea Arcangeli 已提交
1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927
}

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 */
S
Sasha Levin 已提交
1928
	VM_BUG_ON_MM(khugepaged_test_exit(mm), mm);
A
Andrea Arcangeli 已提交
1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950
	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;
}

1951 1952
int khugepaged_enter_vma_merge(struct vm_area_struct *vma,
			       unsigned long vm_flags)
A
Andrea Arcangeli 已提交
1953 1954 1955 1956 1957 1958 1959 1960
{
	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;
1961
	if (vma->vm_ops || (vm_flags & VM_NO_THP))
A
Andrea Arcangeli 已提交
1962 1963 1964 1965 1966
		/* khugepaged not yet working on file or special mappings */
		return 0;
	hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
	hend = vma->vm_end & HPAGE_PMD_MASK;
	if (hstart < hend)
1967
		return khugepaged_enter(vma, vm_flags);
A
Andrea Arcangeli 已提交
1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978
	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) {
1979
		hash_del(&mm_slot->hash);
A
Andrea Arcangeli 已提交
1980 1981 1982
		list_del(&mm_slot->mm_node);
		free = 1;
	}
1983
	spin_unlock(&khugepaged_mm_lock);
A
Andrea Arcangeli 已提交
1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999

	if (free) {
		clear_bit(MMF_VM_HUGEPAGE, &mm->flags);
		free_mm_slot(mm_slot);
		mmdrop(mm);
	} else if (mm_slot) {
		/*
		 * 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);
2000
	}
A
Andrea Arcangeli 已提交
2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014
}

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;
2015
		if (!pte_none(pteval) && !is_zero_pfn(pte_pfn(pteval)))
A
Andrea Arcangeli 已提交
2016 2017 2018 2019 2020 2021 2022 2023
			release_pte_page(pte_page(pteval));
	}
}

static int __collapse_huge_page_isolate(struct vm_area_struct *vma,
					unsigned long address,
					pte_t *pte)
{
2024
	struct page *page = NULL;
A
Andrea Arcangeli 已提交
2025
	pte_t *_pte;
2026
	int none_or_zero = 0, result = 0;
2027
	bool referenced = false, writable = false;
2028

A
Andrea Arcangeli 已提交
2029 2030 2031
	for (_pte = pte; _pte < pte+HPAGE_PMD_NR;
	     _pte++, address += PAGE_SIZE) {
		pte_t pteval = *_pte;
2032 2033
		if (pte_none(pteval) || (pte_present(pteval) &&
				is_zero_pfn(pte_pfn(pteval)))) {
2034
			if (!userfaultfd_armed(vma) &&
2035
			    ++none_or_zero <= khugepaged_max_ptes_none) {
A
Andrea Arcangeli 已提交
2036
				continue;
2037 2038
			} else {
				result = SCAN_EXCEED_NONE_PTE;
A
Andrea Arcangeli 已提交
2039
				goto out;
2040
			}
A
Andrea Arcangeli 已提交
2041
		}
2042 2043
		if (!pte_present(pteval)) {
			result = SCAN_PTE_NON_PRESENT;
A
Andrea Arcangeli 已提交
2044
			goto out;
2045
		}
A
Andrea Arcangeli 已提交
2046
		page = vm_normal_page(vma, address, pteval);
2047 2048
		if (unlikely(!page)) {
			result = SCAN_PAGE_NULL;
A
Andrea Arcangeli 已提交
2049
			goto out;
2050
		}
2051

2052 2053 2054
		VM_BUG_ON_PAGE(PageCompound(page), page);
		VM_BUG_ON_PAGE(!PageAnon(page), page);
		VM_BUG_ON_PAGE(!PageSwapBacked(page), page);
A
Andrea Arcangeli 已提交
2055 2056 2057 2058 2059 2060 2061

		/*
		 * 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.
		 */
2062 2063
		if (!trylock_page(page)) {
			result = SCAN_PAGE_LOCK;
A
Andrea Arcangeli 已提交
2064
			goto out;
2065
		}
2066 2067 2068 2069 2070 2071 2072 2073

		/*
		 * cannot use mapcount: can't collapse if there's a gup pin.
		 * The page must only be referenced by the scanned process
		 * and page swap cache.
		 */
		if (page_count(page) != 1 + !!PageSwapCache(page)) {
			unlock_page(page);
2074
			result = SCAN_PAGE_COUNT;
2075 2076 2077 2078 2079
			goto out;
		}
		if (pte_write(pteval)) {
			writable = true;
		} else {
2080 2081
			if (PageSwapCache(page) &&
			    !reuse_swap_page(page, NULL)) {
2082
				unlock_page(page);
2083
				result = SCAN_SWAP_CACHE_PAGE;
2084 2085 2086 2087 2088 2089 2090 2091
				goto out;
			}
			/*
			 * Page is not in the swap cache. It can be collapsed
			 * into a THP.
			 */
		}

A
Andrea Arcangeli 已提交
2092 2093 2094 2095 2096 2097
		/*
		 * Isolate the page to avoid collapsing an hugepage
		 * currently in use by the VM.
		 */
		if (isolate_lru_page(page)) {
			unlock_page(page);
2098
			result = SCAN_DEL_PAGE_LRU;
A
Andrea Arcangeli 已提交
2099 2100 2101 2102
			goto out;
		}
		/* 0 stands for page_is_file_cache(page) == false */
		inc_zone_page_state(page, NR_ISOLATED_ANON + 0);
2103 2104
		VM_BUG_ON_PAGE(!PageLocked(page), page);
		VM_BUG_ON_PAGE(PageLRU(page), page);
A
Andrea Arcangeli 已提交
2105 2106

		/* If there is no mapped pte young don't collapse the page */
2107 2108
		if (pte_young(pteval) ||
		    page_is_young(page) || PageReferenced(page) ||
A
Andrea Arcangeli 已提交
2109
		    mmu_notifier_test_young(vma->vm_mm, address))
2110
			referenced = true;
A
Andrea Arcangeli 已提交
2111
	}
2112 2113 2114
	if (likely(writable)) {
		if (likely(referenced)) {
			result = SCAN_SUCCEED;
2115
			trace_mm_collapse_huge_page_isolate(page, none_or_zero,
2116 2117 2118 2119 2120 2121 2122
							    referenced, writable, result);
			return 1;
		}
	} else {
		result = SCAN_PAGE_RO;
	}

A
Andrea Arcangeli 已提交
2123
out:
2124
	release_pte_pages(pte, _pte);
2125
	trace_mm_collapse_huge_page_isolate(page, none_or_zero,
2126
					    referenced, writable, result);
2127
	return 0;
A
Andrea Arcangeli 已提交
2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139
}

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;

2140
		if (pte_none(pteval) || is_zero_pfn(pte_pfn(pteval))) {
A
Andrea Arcangeli 已提交
2141 2142
			clear_user_highpage(page, address);
			add_mm_counter(vma->vm_mm, MM_ANONPAGES, 1);
2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154
			if (is_zero_pfn(pte_pfn(pteval))) {
				/*
				 * ptl mostly unnecessary.
				 */
				spin_lock(ptl);
				/*
				 * paravirt calls inside pte_clear here are
				 * superfluous.
				 */
				pte_clear(vma->vm_mm, address, _pte);
				spin_unlock(ptl);
			}
A
Andrea Arcangeli 已提交
2155 2156 2157
		} else {
			src_page = pte_page(pteval);
			copy_user_highpage(page, src_page, address, vma);
2158
			VM_BUG_ON_PAGE(page_mapcount(src_page) != 1, src_page);
A
Andrea Arcangeli 已提交
2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170
			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);
2171
			page_remove_rmap(src_page, false);
A
Andrea Arcangeli 已提交
2172 2173 2174 2175 2176 2177 2178 2179 2180
			spin_unlock(ptl);
			free_page_and_swap_cache(src_page);
		}

		address += PAGE_SIZE;
		page++;
	}
}

2181
static void khugepaged_alloc_sleep(void)
A
Andrea Arcangeli 已提交
2182
{
2183 2184 2185 2186 2187 2188
	DEFINE_WAIT(wait);

	add_wait_queue(&khugepaged_wait, &wait);
	freezable_schedule_timeout_interruptible(
		msecs_to_jiffies(khugepaged_alloc_sleep_millisecs));
	remove_wait_queue(&khugepaged_wait, &wait);
2189
}
A
Andrea Arcangeli 已提交
2190

2191 2192
static int khugepaged_node_load[MAX_NUMNODES];

2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216
static bool khugepaged_scan_abort(int nid)
{
	int i;

	/*
	 * If zone_reclaim_mode is disabled, then no extra effort is made to
	 * allocate memory locally.
	 */
	if (!zone_reclaim_mode)
		return false;

	/* If there is a count for this node already, it must be acceptable */
	if (khugepaged_node_load[nid])
		return false;

	for (i = 0; i < MAX_NUMNODES; i++) {
		if (!khugepaged_node_load[i])
			continue;
		if (node_distance(nid, i) > RECLAIM_DISTANCE)
			return true;
	}
	return false;
}

2217
#ifdef CONFIG_NUMA
2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242
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;
}

2243 2244 2245 2246 2247 2248 2249
static bool khugepaged_prealloc_page(struct page **hpage, bool *wait)
{
	if (IS_ERR(*hpage)) {
		if (!*wait)
			return false;

		*wait = false;
2250
		*hpage = NULL;
2251 2252 2253 2254 2255 2256 2257 2258 2259
		khugepaged_alloc_sleep();
	} else if (*hpage) {
		put_page(*hpage);
		*hpage = NULL;
	}

	return true;
}

2260 2261
static struct page *
khugepaged_alloc_page(struct page **hpage, gfp_t gfp, struct mm_struct *mm,
2262
		       unsigned long address, int node)
2263
{
2264
	VM_BUG_ON_PAGE(*hpage, *hpage);
2265

2266
	/*
2267 2268 2269 2270
	 * Before allocating the hugepage, release the mmap_sem read lock.
	 * The allocation can take potentially a long time if it involves
	 * sync compaction, and we do not need to hold the mmap_sem during
	 * that. We will recheck the vma after taking it again in write mode.
2271
	 */
2272 2273
	up_read(&mm->mmap_sem);

2274
	*hpage = __alloc_pages_node(node, gfp, HPAGE_PMD_ORDER);
2275
	if (unlikely(!*hpage)) {
2276
		count_vm_event(THP_COLLAPSE_ALLOC_FAILED);
2277
		*hpage = ERR_PTR(-ENOMEM);
2278
		return NULL;
2279
	}
2280

2281
	prep_transhuge_page(*hpage);
2282
	count_vm_event(THP_COLLAPSE_ALLOC);
2283 2284 2285
	return *hpage;
}
#else
2286 2287 2288 2289 2290
static int khugepaged_find_target_node(void)
{
	return 0;
}

2291
static inline struct page *alloc_khugepaged_hugepage(void)
2292
{
2293 2294
	struct page *page;

2295 2296
	page = alloc_pages(alloc_hugepage_khugepaged_gfpmask(),
			   HPAGE_PMD_ORDER);
2297 2298 2299
	if (page)
		prep_transhuge_page(page);
	return page;
2300 2301
}

2302 2303 2304 2305 2306
static struct page *khugepaged_alloc_hugepage(bool *wait)
{
	struct page *hpage;

	do {
2307
		hpage = alloc_khugepaged_hugepage();
2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332
		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;
}

2333 2334
static struct page *
khugepaged_alloc_page(struct page **hpage, gfp_t gfp, struct mm_struct *mm,
2335
		       unsigned long address, int node)
2336 2337 2338
{
	up_read(&mm->mmap_sem);
	VM_BUG_ON(!*hpage);
2339

2340 2341
	return  *hpage;
}
2342 2343
#endif

B
Bob Liu 已提交
2344 2345 2346 2347 2348 2349 2350 2351 2352
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;
2353
	return !(vma->vm_flags & VM_NO_THP);
B
Bob Liu 已提交
2354 2355
}

2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383
/*
 * If mmap_sem temporarily dropped, revalidate vma
 * before taking mmap_sem.
 * Return 0 if succeeds, otherwise return none-zero
 * value (scan code).
 */

static int hugepage_vma_revalidate(struct mm_struct *mm, unsigned long address)
{
	struct vm_area_struct *vma;
	unsigned long hstart, hend;

	if (unlikely(khugepaged_test_exit(mm)))
		return SCAN_ANY_PROCESS;

	vma = find_vma(mm, address);
	if (!vma)
		return SCAN_VMA_NULL;

	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)
		return SCAN_ADDRESS_RANGE;
	if (!hugepage_vma_check(vma))
		return SCAN_VMA_CHECK;
	return 0;
}

2384 2385 2386 2387 2388 2389 2390 2391
/*
 * Bring missing pages in from swap, to complete THP collapse.
 * Only done if khugepaged_scan_pmd believes it is worthwhile.
 *
 * Called and returns without pte mapped or spinlocks held,
 * but with mmap_sem held to protect against vma changes.
 */

2392
static bool __collapse_huge_page_swapin(struct mm_struct *mm,
2393 2394 2395
					struct vm_area_struct *vma,
					unsigned long address, pmd_t *pmd)
{
K
Kirill A. Shutemov 已提交
2396
	pte_t pteval;
2397
	int swapped_in = 0, ret = 0;
K
Kirill A. Shutemov 已提交
2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408
	struct fault_env fe = {
		.vma = vma,
		.address = address,
		.flags = FAULT_FLAG_ALLOW_RETRY,
		.pmd = pmd,
	};

	fe.pte = pte_offset_map(pmd, address);
	for (; fe.address < address + HPAGE_PMD_NR*PAGE_SIZE;
			fe.pte++, fe.address += PAGE_SIZE) {
		pteval = *fe.pte;
2409 2410 2411
		if (!is_swap_pte(pteval))
			continue;
		swapped_in++;
K
Kirill A. Shutemov 已提交
2412
		ret = do_swap_page(&fe, pteval);
2413 2414 2415 2416 2417 2418
		/* do_swap_page returns VM_FAULT_RETRY with released mmap_sem */
		if (ret & VM_FAULT_RETRY) {
			down_read(&mm->mmap_sem);
			/* vma is no longer available, don't continue to swapin */
			if (hugepage_vma_revalidate(mm, address))
				return false;
2419 2420 2421
			/* check if the pmd is still valid */
			if (mm_find_pmd(mm, address) != pmd)
				return false;
2422
		}
2423 2424
		if (ret & VM_FAULT_ERROR) {
			trace_mm_collapse_huge_page_swapin(mm, swapped_in, 0);
2425
			return false;
2426 2427
		}
		/* pte is unmapped now, we need to map it */
K
Kirill A. Shutemov 已提交
2428
		fe.pte = pte_offset_map(pmd, fe.address);
2429
	}
K
Kirill A. Shutemov 已提交
2430 2431
	fe.pte--;
	pte_unmap(fe.pte);
2432
	trace_mm_collapse_huge_page_swapin(mm, swapped_in, 1);
2433
	return true;
2434 2435
}

2436 2437 2438 2439 2440 2441 2442 2443 2444 2445
static void collapse_huge_page(struct mm_struct *mm,
				   unsigned long address,
				   struct page **hpage,
				   struct vm_area_struct *vma,
				   int node)
{
	pmd_t *pmd, _pmd;
	pte_t *pte;
	pgtable_t pgtable;
	struct page *new_page;
2446
	spinlock_t *pmd_ptl, *pte_ptl;
2447
	int isolated = 0, result = 0;
2448
	struct mem_cgroup *memcg;
2449 2450
	unsigned long mmun_start;	/* For mmu_notifiers */
	unsigned long mmun_end;		/* For mmu_notifiers */
2451
	gfp_t gfp;
2452 2453 2454

	VM_BUG_ON(address & ~HPAGE_PMD_MASK);

2455
	/* Only allocate from the target node */
2456
	gfp = alloc_hugepage_khugepaged_gfpmask() | __GFP_OTHER_NODE | __GFP_THISNODE;
2457

2458
	/* release the mmap_sem read lock. */
2459
	new_page = khugepaged_alloc_page(hpage, gfp, mm, address, node);
2460 2461 2462 2463
	if (!new_page) {
		result = SCAN_ALLOC_HUGE_PAGE_FAIL;
		goto out_nolock;
	}
2464

2465
	if (unlikely(mem_cgroup_try_charge(new_page, mm, gfp, &memcg, true))) {
2466 2467 2468
		result = SCAN_CGROUP_CHARGE_FAIL;
		goto out_nolock;
	}
A
Andrea Arcangeli 已提交
2469

2470 2471
	down_read(&mm->mmap_sem);
	result = hugepage_vma_revalidate(mm, address);
2472 2473 2474 2475 2476
	if (result) {
		mem_cgroup_cancel_charge(new_page, memcg, true);
		up_read(&mm->mmap_sem);
		goto out_nolock;
	}
A
Andrea Arcangeli 已提交
2477

B
Bob Liu 已提交
2478
	pmd = mm_find_pmd(mm, address);
2479 2480
	if (!pmd) {
		result = SCAN_PMD_NULL;
2481 2482 2483
		mem_cgroup_cancel_charge(new_page, memcg, true);
		up_read(&mm->mmap_sem);
		goto out_nolock;
2484
	}
A
Andrea Arcangeli 已提交
2485

2486 2487 2488 2489 2490 2491
	/*
	 * __collapse_huge_page_swapin always returns with mmap_sem locked.
	 * If it fails, release mmap_sem and jump directly out.
	 * Continuing to collapse causes inconsistency.
	 */
	if (!__collapse_huge_page_swapin(mm, vma, address, pmd)) {
2492
		mem_cgroup_cancel_charge(new_page, memcg, true);
2493
		up_read(&mm->mmap_sem);
2494
		goto out_nolock;
2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506
	}

	up_read(&mm->mmap_sem);
	/*
	 * Prevent all access to pagetables with the exception of
	 * gup_fast later handled by the ptep_clear_flush and the VM
	 * handled by the anon_vma lock + PG_lock.
	 */
	down_write(&mm->mmap_sem);
	result = hugepage_vma_revalidate(mm, address);
	if (result)
		goto out;
2507 2508 2509
	/* check if the pmd is still valid */
	if (mm_find_pmd(mm, address) != pmd)
		goto out;
2510

2511
	anon_vma_lock_write(vma->anon_vma);
A
Andrea Arcangeli 已提交
2512 2513

	pte = pte_offset_map(pmd, address);
2514
	pte_ptl = pte_lockptr(mm, pmd);
A
Andrea Arcangeli 已提交
2515

2516 2517 2518
	mmun_start = address;
	mmun_end   = address + HPAGE_PMD_SIZE;
	mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
2519
	pmd_ptl = pmd_lock(mm, pmd); /* probably unnecessary */
A
Andrea Arcangeli 已提交
2520 2521 2522 2523 2524 2525
	/*
	 * 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.
	 */
2526
	_pmd = pmdp_collapse_flush(vma, address, pmd);
2527
	spin_unlock(pmd_ptl);
2528
	mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
A
Andrea Arcangeli 已提交
2529

2530
	spin_lock(pte_ptl);
A
Andrea Arcangeli 已提交
2531
	isolated = __collapse_huge_page_isolate(vma, address, pte);
2532
	spin_unlock(pte_ptl);
A
Andrea Arcangeli 已提交
2533 2534

	if (unlikely(!isolated)) {
2535
		pte_unmap(pte);
2536
		spin_lock(pmd_ptl);
A
Andrea Arcangeli 已提交
2537
		BUG_ON(!pmd_none(*pmd));
2538 2539 2540 2541 2542 2543
		/*
		 * 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));
2544
		spin_unlock(pmd_ptl);
2545
		anon_vma_unlock_write(vma->anon_vma);
2546
		result = SCAN_FAIL;
2547
		goto out;
A
Andrea Arcangeli 已提交
2548 2549 2550 2551 2552 2553
	}

	/*
	 * All pages are isolated and locked so anon_vma rmap
	 * can't run anymore.
	 */
2554
	anon_vma_unlock_write(vma->anon_vma);
A
Andrea Arcangeli 已提交
2555

2556
	__collapse_huge_page_copy(pte, new_page, vma, address, pte_ptl);
2557
	pte_unmap(pte);
A
Andrea Arcangeli 已提交
2558 2559 2560
	__SetPageUptodate(new_page);
	pgtable = pmd_pgtable(_pmd);

2561 2562
	_pmd = mk_huge_pmd(new_page, vma->vm_page_prot);
	_pmd = maybe_pmd_mkwrite(pmd_mkdirty(_pmd), vma);
A
Andrea Arcangeli 已提交
2563 2564 2565 2566 2567 2568 2569 2570

	/*
	 * 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();

2571
	spin_lock(pmd_ptl);
A
Andrea Arcangeli 已提交
2572
	BUG_ON(!pmd_none(*pmd));
2573
	page_add_new_anon_rmap(new_page, vma, address, true);
2574
	mem_cgroup_commit_charge(new_page, memcg, false, true);
2575
	lru_cache_add_active_or_unevictable(new_page, vma);
2576
	pgtable_trans_huge_deposit(mm, pmd, pgtable);
A
Andrea Arcangeli 已提交
2577
	set_pmd_at(mm, address, pmd, _pmd);
2578
	update_mmu_cache_pmd(vma, address, pmd);
2579
	spin_unlock(pmd_ptl);
A
Andrea Arcangeli 已提交
2580 2581

	*hpage = NULL;
2582

A
Andrea Arcangeli 已提交
2583
	khugepaged_pages_collapsed++;
2584
	result = SCAN_SUCCEED;
2585
out_up_write:
A
Andrea Arcangeli 已提交
2586
	up_write(&mm->mmap_sem);
2587 2588 2589
out_nolock:
	trace_mm_collapse_huge_page(mm, isolated, result);
	return;
2590
out:
2591
	mem_cgroup_cancel_charge(new_page, memcg, true);
2592
	goto out_up_write;
A
Andrea Arcangeli 已提交
2593 2594 2595 2596 2597 2598 2599 2600 2601
}

static int khugepaged_scan_pmd(struct mm_struct *mm,
			       struct vm_area_struct *vma,
			       unsigned long address,
			       struct page **hpage)
{
	pmd_t *pmd;
	pte_t *pte, *_pte;
2602 2603
	int ret = 0, none_or_zero = 0, result = 0;
	struct page *page = NULL;
A
Andrea Arcangeli 已提交
2604 2605
	unsigned long _address;
	spinlock_t *ptl;
2606
	int node = NUMA_NO_NODE, unmapped = 0;
2607
	bool writable = false, referenced = false;
A
Andrea Arcangeli 已提交
2608 2609 2610

	VM_BUG_ON(address & ~HPAGE_PMD_MASK);

B
Bob Liu 已提交
2611
	pmd = mm_find_pmd(mm, address);
2612 2613
	if (!pmd) {
		result = SCAN_PMD_NULL;
A
Andrea Arcangeli 已提交
2614
		goto out;
2615
	}
A
Andrea Arcangeli 已提交
2616

2617
	memset(khugepaged_node_load, 0, sizeof(khugepaged_node_load));
A
Andrea Arcangeli 已提交
2618 2619 2620 2621
	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;
2622 2623 2624 2625 2626 2627 2628 2629
		if (is_swap_pte(pteval)) {
			if (++unmapped <= khugepaged_max_ptes_swap) {
				continue;
			} else {
				result = SCAN_EXCEED_SWAP_PTE;
				goto out_unmap;
			}
		}
2630
		if (pte_none(pteval) || is_zero_pfn(pte_pfn(pteval))) {
2631
			if (!userfaultfd_armed(vma) &&
2632
			    ++none_or_zero <= khugepaged_max_ptes_none) {
A
Andrea Arcangeli 已提交
2633
				continue;
2634 2635
			} else {
				result = SCAN_EXCEED_NONE_PTE;
A
Andrea Arcangeli 已提交
2636
				goto out_unmap;
2637
			}
A
Andrea Arcangeli 已提交
2638
		}
2639 2640
		if (!pte_present(pteval)) {
			result = SCAN_PTE_NON_PRESENT;
A
Andrea Arcangeli 已提交
2641
			goto out_unmap;
2642
		}
2643 2644 2645
		if (pte_write(pteval))
			writable = true;

A
Andrea Arcangeli 已提交
2646
		page = vm_normal_page(vma, _address, pteval);
2647 2648
		if (unlikely(!page)) {
			result = SCAN_PAGE_NULL;
A
Andrea Arcangeli 已提交
2649
			goto out_unmap;
2650
		}
2651 2652 2653 2654 2655 2656 2657

		/* TODO: teach khugepaged to collapse THP mapped with pte */
		if (PageCompound(page)) {
			result = SCAN_PAGE_COMPOUND;
			goto out_unmap;
		}

2658
		/*
2659 2660 2661 2662
		 * 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.
2663
		 */
2664
		node = page_to_nid(page);
2665 2666
		if (khugepaged_scan_abort(node)) {
			result = SCAN_SCAN_ABORT;
2667
			goto out_unmap;
2668
		}
2669
		khugepaged_node_load[node]++;
2670
		if (!PageLRU(page)) {
2671
			result = SCAN_PAGE_LRU;
2672 2673 2674 2675
			goto out_unmap;
		}
		if (PageLocked(page)) {
			result = SCAN_PAGE_LOCK;
A
Andrea Arcangeli 已提交
2676
			goto out_unmap;
2677 2678 2679 2680 2681 2682
		}
		if (!PageAnon(page)) {
			result = SCAN_PAGE_ANON;
			goto out_unmap;
		}

2683 2684 2685 2686 2687
		/*
		 * cannot use mapcount: can't collapse if there's a gup pin.
		 * The page must only be referenced by the scanned process
		 * and page swap cache.
		 */
2688 2689
		if (page_count(page) != 1 + !!PageSwapCache(page)) {
			result = SCAN_PAGE_COUNT;
A
Andrea Arcangeli 已提交
2690
			goto out_unmap;
2691
		}
2692 2693
		if (pte_young(pteval) ||
		    page_is_young(page) || PageReferenced(page) ||
A
Andrea Arcangeli 已提交
2694
		    mmu_notifier_test_young(vma->vm_mm, address))
2695
			referenced = true;
A
Andrea Arcangeli 已提交
2696
	}
2697 2698 2699 2700 2701 2702 2703 2704 2705 2706
	if (writable) {
		if (referenced) {
			result = SCAN_SUCCEED;
			ret = 1;
		} else {
			result = SCAN_NO_REFERENCED_PAGE;
		}
	} else {
		result = SCAN_PAGE_RO;
	}
A
Andrea Arcangeli 已提交
2707 2708
out_unmap:
	pte_unmap_unlock(pte, ptl);
2709 2710
	if (ret) {
		node = khugepaged_find_target_node();
2711
		/* collapse_huge_page will return with the mmap_sem released */
2712
		collapse_huge_page(mm, address, hpage, vma, node);
2713
	}
A
Andrea Arcangeli 已提交
2714
out:
2715
	trace_mm_khugepaged_scan_pmd(mm, page, writable, referenced,
2716
				     none_or_zero, result, unmapped);
A
Andrea Arcangeli 已提交
2717 2718 2719 2720 2721 2722 2723
	return ret;
}

static void collect_mm_slot(struct mm_slot *mm_slot)
{
	struct mm_struct *mm = mm_slot->mm;

2724
	VM_BUG_ON(NR_CPUS != 1 && !spin_is_locked(&khugepaged_mm_lock));
A
Andrea Arcangeli 已提交
2725 2726 2727

	if (khugepaged_test_exit(mm)) {
		/* free mm_slot */
2728
		hash_del(&mm_slot->hash);
A
Andrea Arcangeli 已提交
2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744
		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)
2745 2746
	__releases(&khugepaged_mm_lock)
	__acquires(&khugepaged_mm_lock)
A
Andrea Arcangeli 已提交
2747 2748 2749 2750 2751 2752 2753
{
	struct mm_slot *mm_slot;
	struct mm_struct *mm;
	struct vm_area_struct *vma;
	int progress = 0;

	VM_BUG_ON(!pages);
2754
	VM_BUG_ON(NR_CPUS != 1 && !spin_is_locked(&khugepaged_mm_lock));
A
Andrea Arcangeli 已提交
2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781

	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;
		}
B
Bob Liu 已提交
2782 2783
		if (!hugepage_vma_check(vma)) {
skip:
A
Andrea Arcangeli 已提交
2784 2785 2786 2787 2788
			progress++;
			continue;
		}
		hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
		hend = vma->vm_end & HPAGE_PMD_MASK;
2789 2790 2791 2792
		if (hstart >= hend)
			goto skip;
		if (khugepaged_scan.address > hend)
			goto skip;
A
Andrea Arcangeli 已提交
2793 2794
		if (khugepaged_scan.address < hstart)
			khugepaged_scan.address = hstart;
2795
		VM_BUG_ON(khugepaged_scan.address & ~HPAGE_PMD_MASK);
A
Andrea Arcangeli 已提交
2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823

		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);
2824
	VM_BUG_ON(khugepaged_scan.mm_slot != mm_slot);
A
Andrea Arcangeli 已提交
2825 2826 2827 2828 2829 2830 2831 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
	/*
	 * 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) ||
2860
		kthread_should_stop();
A
Andrea Arcangeli 已提交
2861 2862
}

2863
static void khugepaged_do_scan(void)
A
Andrea Arcangeli 已提交
2864
{
2865
	struct page *hpage = NULL;
A
Andrea Arcangeli 已提交
2866 2867
	unsigned int progress = 0, pass_through_head = 0;
	unsigned int pages = khugepaged_pages_to_scan;
2868
	bool wait = true;
A
Andrea Arcangeli 已提交
2869 2870 2871 2872

	barrier(); /* write khugepaged_pages_to_scan to local stack */

	while (progress < pages) {
2873
		if (!khugepaged_prealloc_page(&hpage, &wait))
2874
			break;
2875

2876
		cond_resched();
A
Andrea Arcangeli 已提交
2877

2878
		if (unlikely(kthread_should_stop() || try_to_freeze()))
2879 2880
			break;

A
Andrea Arcangeli 已提交
2881 2882 2883 2884 2885 2886
		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,
2887
							    &hpage);
A
Andrea Arcangeli 已提交
2888 2889 2890 2891 2892
		else
			progress = pages;
		spin_unlock(&khugepaged_mm_lock);
	}

2893 2894
	if (!IS_ERR_OR_NULL(hpage))
		put_page(hpage);
2895 2896
}

2897 2898 2899 2900 2901 2902
static bool khugepaged_should_wakeup(void)
{
	return kthread_should_stop() ||
	       time_after_eq(jiffies, khugepaged_sleep_expire);
}

2903 2904 2905
static void khugepaged_wait_work(void)
{
	if (khugepaged_has_work()) {
2906 2907 2908 2909
		const unsigned long scan_sleep_jiffies =
			msecs_to_jiffies(khugepaged_scan_sleep_millisecs);

		if (!scan_sleep_jiffies)
2910 2911
			return;

2912
		khugepaged_sleep_expire = jiffies + scan_sleep_jiffies;
2913
		wait_event_freezable_timeout(khugepaged_wait,
2914 2915
					     khugepaged_should_wakeup(),
					     scan_sleep_jiffies);
2916 2917 2918 2919 2920 2921 2922
		return;
	}

	if (khugepaged_enabled())
		wait_event_freezable(khugepaged_wait, khugepaged_wait_event());
}

A
Andrea Arcangeli 已提交
2923 2924 2925 2926
static int khugepaged(void *none)
{
	struct mm_slot *mm_slot;

2927
	set_freezable();
2928
	set_user_nice(current, MAX_NICE);
A
Andrea Arcangeli 已提交
2929

X
Xiao Guangrong 已提交
2930 2931 2932 2933
	while (!kthread_should_stop()) {
		khugepaged_do_scan();
		khugepaged_wait_work();
	}
A
Andrea Arcangeli 已提交
2934 2935 2936 2937 2938 2939 2940 2941 2942 2943

	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);
	return 0;
}

2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972
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;

	/* leave pmd empty until pte is filled */
	pmdp_huge_clear_flush_notify(vma, haddr, pmd);

	pgtable = pgtable_trans_huge_withdraw(mm, pmd);
	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);
	put_huge_zero_page();
}

static void __split_huge_pmd_locked(struct vm_area_struct *vma, pmd_t *pmd,
2973
		unsigned long haddr, bool freeze)
2974 2975 2976 2977 2978
{
	struct mm_struct *mm = vma->vm_mm;
	struct page *page;
	pgtable_t pgtable;
	pmd_t _pmd;
2979
	bool young, write, dirty;
2980
	unsigned long addr;
2981 2982 2983 2984 2985
	int i;

	VM_BUG_ON(haddr & ~HPAGE_PMD_MASK);
	VM_BUG_ON_VMA(vma->vm_start > haddr, vma);
	VM_BUG_ON_VMA(vma->vm_end < haddr + HPAGE_PMD_SIZE, vma);
2986
	VM_BUG_ON(!pmd_trans_huge(*pmd) && !pmd_devmap(*pmd));
2987 2988 2989

	count_vm_event(THP_SPLIT_PMD);

2990 2991
	if (!vma_is_anonymous(vma)) {
		_pmd = pmdp_huge_clear_flush_notify(vma, haddr, pmd);
2992 2993
		if (is_huge_zero_pmd(_pmd))
			put_huge_zero_page();
2994 2995 2996 2997 2998 2999 3000 3001
		if (vma_is_dax(vma))
			return;
		page = pmd_page(_pmd);
		if (!PageReferenced(page) && pmd_young(_pmd))
			SetPageReferenced(page);
		page_remove_rmap(page, true);
		put_page(page);
		add_mm_counter(mm, MM_FILEPAGES, -HPAGE_PMD_NR);
3002 3003 3004 3005 3006 3007 3008
		return;
	} else if (is_huge_zero_pmd(*pmd)) {
		return __split_huge_zero_page_pmd(vma, haddr, pmd);
	}

	page = pmd_page(*pmd);
	VM_BUG_ON_PAGE(!page_count(page), page);
3009
	page_ref_add(page, HPAGE_PMD_NR - 1);
3010 3011
	write = pmd_write(*pmd);
	young = pmd_young(*pmd);
3012
	dirty = pmd_dirty(*pmd);
3013

3014
	pmdp_huge_split_prepare(vma, haddr, pmd);
3015 3016 3017
	pgtable = pgtable_trans_huge_withdraw(mm, pmd);
	pmd_populate(mm, &_pmd, pgtable);

3018
	for (i = 0, addr = haddr; i < HPAGE_PMD_NR; i++, addr += PAGE_SIZE) {
3019 3020 3021 3022 3023 3024
		pte_t entry, *pte;
		/*
		 * Note that NUMA hinting access restrictions are not
		 * transferred to avoid any possibility of altering
		 * permissions across VMAs.
		 */
3025 3026 3027 3028 3029 3030
		if (freeze) {
			swp_entry_t swp_entry;
			swp_entry = make_migration_entry(page + i, write);
			entry = swp_entry_to_pte(swp_entry);
		} else {
			entry = mk_pte(page + i, vma->vm_page_prot);
3031
			entry = maybe_mkwrite(entry, vma);
3032 3033 3034 3035 3036
			if (!write)
				entry = pte_wrprotect(entry);
			if (!young)
				entry = pte_mkold(entry);
		}
3037 3038
		if (dirty)
			SetPageDirty(page + i);
3039
		pte = pte_offset_map(&_pmd, addr);
3040
		BUG_ON(!pte_none(*pte));
3041
		set_pte_at(mm, addr, pte, entry);
3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065
		atomic_inc(&page[i]._mapcount);
		pte_unmap(pte);
	}

	/*
	 * Set PG_double_map before dropping compound_mapcount to avoid
	 * false-negative page_mapped().
	 */
	if (compound_mapcount(page) > 1 && !TestSetPageDoubleMap(page)) {
		for (i = 0; i < HPAGE_PMD_NR; i++)
			atomic_inc(&page[i]._mapcount);
	}

	if (atomic_add_negative(-1, compound_mapcount_ptr(page))) {
		/* Last compound_mapcount is gone. */
		__dec_zone_page_state(page, NR_ANON_TRANSPARENT_HUGEPAGES);
		if (TestClearPageDoubleMap(page)) {
			/* No need in mapcount reference anymore */
			for (i = 0; i < HPAGE_PMD_NR; i++)
				atomic_dec(&page[i]._mapcount);
		}
	}

	smp_wmb(); /* make pte visible before pmd */
3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087
	/*
	 * 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_pmd_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.
	 */
	pmdp_invalidate(vma, haddr, pmd);
3088
	pmd_populate(mm, pmd, pgtable);
3089 3090

	if (freeze) {
3091
		for (i = 0; i < HPAGE_PMD_NR; i++) {
3092 3093 3094 3095
			page_remove_rmap(page + i, false);
			put_page(page + i);
		}
	}
3096 3097 3098
}

void __split_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
3099
		unsigned long address, bool freeze, struct page *page)
3100 3101 3102 3103 3104 3105 3106
{
	spinlock_t *ptl;
	struct mm_struct *mm = vma->vm_mm;
	unsigned long haddr = address & HPAGE_PMD_MASK;

	mmu_notifier_invalidate_range_start(mm, haddr, haddr + HPAGE_PMD_SIZE);
	ptl = pmd_lock(mm, pmd);
3107 3108 3109 3110 3111 3112 3113 3114 3115

	/*
	 * If caller asks to setup a migration entries, we need a page to check
	 * pmd against. Otherwise we can end up replacing wrong page.
	 */
	VM_BUG_ON(freeze && !page);
	if (page && page != pmd_page(*pmd))
	        goto out;

3116
	if (pmd_trans_huge(*pmd)) {
3117
		page = pmd_page(*pmd);
3118
		if (PageMlocked(page))
3119
			clear_page_mlock(page);
3120
	} else if (!pmd_devmap(*pmd))
3121
		goto out;
3122
	__split_huge_pmd_locked(vma, pmd, haddr, freeze);
3123
out:
3124 3125 3126 3127
	spin_unlock(ptl);
	mmu_notifier_invalidate_range_end(mm, haddr, haddr + HPAGE_PMD_SIZE);
}

3128 3129
void split_huge_pmd_address(struct vm_area_struct *vma, unsigned long address,
		bool freeze, struct page *page)
3130
{
3131 3132
	pgd_t *pgd;
	pud_t *pud;
3133 3134
	pmd_t *pmd;

3135
	pgd = pgd_offset(vma->vm_mm, address);
3136 3137 3138 3139 3140 3141 3142 3143
	if (!pgd_present(*pgd))
		return;

	pud = pud_offset(pgd, address);
	if (!pud_present(*pud))
		return;

	pmd = pmd_offset(pud, address);
3144

3145
	__split_huge_pmd(vma, pmd, address, freeze, page);
3146 3147
}

3148
void vma_adjust_trans_huge(struct vm_area_struct *vma,
3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160
			     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)
3161
		split_huge_pmd_address(vma, start, false, NULL);
3162 3163 3164 3165 3166 3167 3168 3169 3170

	/*
	 * 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)
3171
		split_huge_pmd_address(vma, end, false, NULL);
3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184

	/*
	 * 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)
3185
			split_huge_pmd_address(next, nstart, false, NULL);
3186 3187
	}
}
3188

3189
static void freeze_page(struct page *page)
3190
{
3191 3192
	enum ttu_flags ttu_flags = TTU_IGNORE_MLOCK | TTU_IGNORE_ACCESS |
		TTU_RMAP_LOCKED;
3193
	int i, ret;
3194 3195 3196

	VM_BUG_ON_PAGE(!PageHead(page), page);

3197 3198 3199
	if (PageAnon(page))
		ttu_flags |= TTU_MIGRATION;

3200 3201 3202 3203 3204 3205
	/* We only need TTU_SPLIT_HUGE_PMD once */
	ret = try_to_unmap(page, ttu_flags | TTU_SPLIT_HUGE_PMD);
	for (i = 1; !ret && i < HPAGE_PMD_NR; i++) {
		/* Cut short if the page is unmapped */
		if (page_count(page) == 1)
			return;
3206

3207
		ret = try_to_unmap(page + i, ttu_flags);
3208
	}
3209
	VM_BUG_ON_PAGE(ret, page + i - 1);
3210 3211
}

3212
static void unfreeze_page(struct page *page)
3213
{
3214
	int i;
3215

3216 3217
	for (i = 0; i < HPAGE_PMD_NR; i++)
		remove_migration_ptes(page + i, page + i, true);
3218 3219
}

3220
static void __split_huge_page_tail(struct page *head, int tail,
3221 3222 3223 3224
		struct lruvec *lruvec, struct list_head *list)
{
	struct page *page_tail = head + tail;

3225
	VM_BUG_ON_PAGE(atomic_read(&page_tail->_mapcount) != -1, page_tail);
3226
	VM_BUG_ON_PAGE(page_ref_count(page_tail) != 0, page_tail);
3227 3228

	/*
3229
	 * tail_page->_refcount is zero and not changing from under us. But
3230
	 * get_page_unless_zero() may be running from under us on the
3231 3232
	 * tail_page. If we used atomic_set() below instead of atomic_inc() or
	 * atomic_add(), we would then run atomic_set() concurrently with
3233 3234 3235 3236
	 * 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),
3237
	 * it's safer to use atomic_inc()/atomic_add().
3238
	 */
3239 3240 3241 3242 3243 3244
	if (PageAnon(head)) {
		page_ref_inc(page_tail);
	} else {
		/* Additional pin to radix tree */
		page_ref_add(page_tail, 2);
	}
3245 3246 3247 3248 3249 3250 3251 3252 3253

	page_tail->flags &= ~PAGE_FLAGS_CHECK_AT_PREP;
	page_tail->flags |= (head->flags &
			((1L << PG_referenced) |
			 (1L << PG_swapbacked) |
			 (1L << PG_mlocked) |
			 (1L << PG_uptodate) |
			 (1L << PG_active) |
			 (1L << PG_locked) |
3254 3255
			 (1L << PG_unevictable) |
			 (1L << PG_dirty)));
3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270

	/*
	 * After clearing PageTail the gup refcount can be released.
	 * Page flags also must be visible before we make the page non-compound.
	 */
	smp_wmb();

	clear_compound_head(page_tail);

	if (page_is_young(head))
		set_page_young(page_tail);
	if (page_is_idle(head))
		set_page_idle(page_tail);

	/* ->mapping in first tail page is compound_mapcount */
3271
	VM_BUG_ON_PAGE(tail > 2 && page_tail->mapping != TAIL_MAPPING,
3272 3273 3274 3275 3276 3277 3278 3279
			page_tail);
	page_tail->mapping = head->mapping;

	page_tail->index = head->index + tail;
	page_cpupid_xchg_last(page_tail, page_cpupid_last(head));
	lru_add_page_tail(head, page_tail, lruvec, list);
}

3280 3281
static void __split_huge_page(struct page *page, struct list_head *list,
		unsigned long flags)
3282 3283 3284 3285
{
	struct page *head = compound_head(page);
	struct zone *zone = page_zone(head);
	struct lruvec *lruvec;
3286
	pgoff_t end = -1;
3287
	int i;
3288 3289 3290 3291 3292 3293

	lruvec = mem_cgroup_page_lruvec(head, zone);

	/* complete memcg works before add pages to LRU */
	mem_cgroup_split_huge_fixup(head);

3294 3295 3296 3297
	if (!PageAnon(page))
		end = DIV_ROUND_UP(i_size_read(head->mapping->host), PAGE_SIZE);

	for (i = HPAGE_PMD_NR - 1; i >= 1; i--) {
3298
		__split_huge_page_tail(head, i, lruvec, list);
3299 3300 3301 3302 3303 3304 3305
		/* Some pages can be beyond i_size: drop them from page cache */
		if (head[i].index >= end) {
			__ClearPageDirty(head + i);
			__delete_from_page_cache(head + i, NULL);
			put_page(head + i);
		}
	}
3306 3307

	ClearPageCompound(head);
3308 3309 3310 3311 3312 3313 3314 3315 3316 3317
	/* See comment in __split_huge_page_tail() */
	if (PageAnon(head)) {
		page_ref_inc(head);
	} else {
		/* Additional pin to radix tree */
		page_ref_add(head, 2);
		spin_unlock(&head->mapping->tree_lock);
	}

	spin_unlock_irqrestore(&page_zone(head)->lru_lock, flags);
3318

3319
	unfreeze_page(head);
3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337

	for (i = 0; i < HPAGE_PMD_NR; i++) {
		struct page *subpage = head + i;
		if (subpage == page)
			continue;
		unlock_page(subpage);

		/*
		 * Subpages 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(subpage);
	}
}

3338 3339
int total_mapcount(struct page *page)
{
K
Kirill A. Shutemov 已提交
3340
	int i, compound, ret;
3341 3342 3343 3344 3345 3346

	VM_BUG_ON_PAGE(PageTail(page), page);

	if (likely(!PageCompound(page)))
		return atomic_read(&page->_mapcount) + 1;

K
Kirill A. Shutemov 已提交
3347
	compound = compound_mapcount(page);
3348
	if (PageHuge(page))
K
Kirill A. Shutemov 已提交
3349 3350
		return compound;
	ret = compound;
3351 3352
	for (i = 0; i < HPAGE_PMD_NR; i++)
		ret += atomic_read(&page[i]._mapcount) + 1;
K
Kirill A. Shutemov 已提交
3353 3354 3355
	/* File pages has compound_mapcount included in _mapcount */
	if (!PageAnon(page))
		return ret - compound * HPAGE_PMD_NR;
3356 3357 3358 3359 3360
	if (PageDoubleMap(page))
		ret -= HPAGE_PMD_NR;
	return ret;
}

3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418
/*
 * This calculates accurately how many mappings a transparent hugepage
 * has (unlike page_mapcount() which isn't fully accurate). This full
 * accuracy is primarily needed to know if copy-on-write faults can
 * reuse the page and change the mapping to read-write instead of
 * copying them. At the same time this returns the total_mapcount too.
 *
 * The function returns the highest mapcount any one of the subpages
 * has. If the return value is one, even if different processes are
 * mapping different subpages of the transparent hugepage, they can
 * all reuse it, because each process is reusing a different subpage.
 *
 * The total_mapcount is instead counting all virtual mappings of the
 * subpages. If the total_mapcount is equal to "one", it tells the
 * caller all mappings belong to the same "mm" and in turn the
 * anon_vma of the transparent hugepage can become the vma->anon_vma
 * local one as no other process may be mapping any of the subpages.
 *
 * It would be more accurate to replace page_mapcount() with
 * page_trans_huge_mapcount(), however we only use
 * page_trans_huge_mapcount() in the copy-on-write faults where we
 * need full accuracy to avoid breaking page pinning, because
 * page_trans_huge_mapcount() is slower than page_mapcount().
 */
int page_trans_huge_mapcount(struct page *page, int *total_mapcount)
{
	int i, ret, _total_mapcount, mapcount;

	/* hugetlbfs shouldn't call it */
	VM_BUG_ON_PAGE(PageHuge(page), page);

	if (likely(!PageTransCompound(page))) {
		mapcount = atomic_read(&page->_mapcount) + 1;
		if (total_mapcount)
			*total_mapcount = mapcount;
		return mapcount;
	}

	page = compound_head(page);

	_total_mapcount = ret = 0;
	for (i = 0; i < HPAGE_PMD_NR; i++) {
		mapcount = atomic_read(&page[i]._mapcount) + 1;
		ret = max(ret, mapcount);
		_total_mapcount += mapcount;
	}
	if (PageDoubleMap(page)) {
		ret -= 1;
		_total_mapcount -= HPAGE_PMD_NR;
	}
	mapcount = compound_mapcount(page);
	ret += mapcount;
	_total_mapcount += mapcount;
	if (total_mapcount)
		*total_mapcount = _total_mapcount;
	return ret;
}

3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440
/*
 * This function splits huge page into normal pages. @page can point to any
 * subpage of huge page to split. Split doesn't change the position of @page.
 *
 * Only caller must hold pin on the @page, otherwise split fails with -EBUSY.
 * The huge page must be locked.
 *
 * 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.
 *
 * GUP pin and PG_locked transferred to @page. Rest subpages can be freed if
 * they are not mapped.
 *
 * Returns 0 if the hugepage is split successfully.
 * Returns -EBUSY if the page is pinned or if anon_vma disappeared from under
 * us.
 */
int split_huge_page_to_list(struct page *page, struct list_head *list)
{
	struct page *head = compound_head(page);
3441
	struct pglist_data *pgdata = NODE_DATA(page_to_nid(head));
3442 3443 3444
	struct anon_vma *anon_vma = NULL;
	struct address_space *mapping = NULL;
	int count, mapcount, extra_pins, ret;
3445
	bool mlocked;
3446
	unsigned long flags;
3447 3448 3449 3450 3451 3452

	VM_BUG_ON_PAGE(is_huge_zero_page(page), page);
	VM_BUG_ON_PAGE(!PageLocked(page), page);
	VM_BUG_ON_PAGE(!PageSwapBacked(page), page);
	VM_BUG_ON_PAGE(!PageCompound(page), page);

3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482
	if (PageAnon(head)) {
		/*
		 * 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(head);
		if (!anon_vma) {
			ret = -EBUSY;
			goto out;
		}
		extra_pins = 0;
		mapping = NULL;
		anon_vma_lock_write(anon_vma);
	} else {
		mapping = head->mapping;

		/* Truncated ? */
		if (!mapping) {
			ret = -EBUSY;
			goto out;
		}

		/* Addidional pins from radix tree */
		extra_pins = HPAGE_PMD_NR;
		anon_vma = NULL;
		i_mmap_lock_read(mapping);
3483 3484 3485 3486 3487 3488
	}

	/*
	 * Racy check if we can split the page, before freeze_page() will
	 * split PMDs
	 */
3489
	if (total_mapcount(head) != page_count(head) - extra_pins - 1) {
3490 3491 3492 3493
		ret = -EBUSY;
		goto out_unlock;
	}

3494
	mlocked = PageMlocked(page);
3495
	freeze_page(head);
3496 3497
	VM_BUG_ON_PAGE(compound_mapcount(head), head);

3498 3499 3500 3501
	/* Make sure the page is not on per-CPU pagevec as it takes pin */
	if (mlocked)
		lru_add_drain();

3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519
	/* prevent PageLRU to go away from under us, and freeze lru stats */
	spin_lock_irqsave(&page_zone(head)->lru_lock, flags);

	if (mapping) {
		void **pslot;

		spin_lock(&mapping->tree_lock);
		pslot = radix_tree_lookup_slot(&mapping->page_tree,
				page_index(head));
		/*
		 * Check if the head page is present in radix tree.
		 * We assume all tail are present too, if head is there.
		 */
		if (radix_tree_deref_slot_protected(pslot,
					&mapping->tree_lock) != head)
			goto fail;
	}

3520
	/* Prevent deferred_split_scan() touching ->_refcount */
3521
	spin_lock(&pgdata->split_queue_lock);
3522 3523
	count = page_count(head);
	mapcount = total_mapcount(head);
3524
	if (!mapcount && page_ref_freeze(head, 1 + extra_pins)) {
3525
		if (!list_empty(page_deferred_list(head))) {
3526
			pgdata->split_queue_len--;
3527 3528
			list_del(page_deferred_list(head));
		}
3529 3530
		spin_unlock(&pgdata->split_queue_lock);
		__split_huge_page(page, list, flags);
3531 3532
		ret = 0;
	} else {
3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544
		if (IS_ENABLED(CONFIG_DEBUG_VM) && mapcount) {
			pr_alert("total_mapcount: %u, page_count(): %u\n",
					mapcount, count);
			if (PageTail(page))
				dump_page(head, NULL);
			dump_page(page, "total_mapcount(head) > 0");
			BUG();
		}
		spin_unlock(&pgdata->split_queue_lock);
fail:		if (mapping)
			spin_unlock(&mapping->tree_lock);
		spin_unlock_irqrestore(&page_zone(head)->lru_lock, flags);
3545
		unfreeze_page(head);
3546 3547 3548 3549
		ret = -EBUSY;
	}

out_unlock:
3550 3551 3552 3553 3554 3555
	if (anon_vma) {
		anon_vma_unlock_write(anon_vma);
		put_anon_vma(anon_vma);
	}
	if (mapping)
		i_mmap_unlock_read(mapping);
3556 3557 3558 3559
out:
	count_vm_event(!ret ? THP_SPLIT_PAGE : THP_SPLIT_PAGE_FAILED);
	return ret;
}
3560 3561 3562

void free_transhuge_page(struct page *page)
{
3563
	struct pglist_data *pgdata = NODE_DATA(page_to_nid(page));
3564 3565
	unsigned long flags;

3566
	spin_lock_irqsave(&pgdata->split_queue_lock, flags);
3567
	if (!list_empty(page_deferred_list(page))) {
3568
		pgdata->split_queue_len--;
3569 3570
		list_del(page_deferred_list(page));
	}
3571
	spin_unlock_irqrestore(&pgdata->split_queue_lock, flags);
3572 3573 3574 3575 3576
	free_compound_page(page);
}

void deferred_split_huge_page(struct page *page)
{
3577
	struct pglist_data *pgdata = NODE_DATA(page_to_nid(page));
3578 3579 3580 3581
	unsigned long flags;

	VM_BUG_ON_PAGE(!PageTransHuge(page), page);

3582
	spin_lock_irqsave(&pgdata->split_queue_lock, flags);
3583
	if (list_empty(page_deferred_list(page))) {
3584
		count_vm_event(THP_DEFERRED_SPLIT_PAGE);
3585 3586
		list_add_tail(page_deferred_list(page), &pgdata->split_queue);
		pgdata->split_queue_len++;
3587
	}
3588
	spin_unlock_irqrestore(&pgdata->split_queue_lock, flags);
3589 3590 3591 3592 3593
}

static unsigned long deferred_split_count(struct shrinker *shrink,
		struct shrink_control *sc)
{
3594
	struct pglist_data *pgdata = NODE_DATA(sc->nid);
3595
	return ACCESS_ONCE(pgdata->split_queue_len);
3596 3597 3598 3599 3600
}

static unsigned long deferred_split_scan(struct shrinker *shrink,
		struct shrink_control *sc)
{
3601
	struct pglist_data *pgdata = NODE_DATA(sc->nid);
3602 3603 3604 3605 3606
	unsigned long flags;
	LIST_HEAD(list), *pos, *next;
	struct page *page;
	int split = 0;

3607
	spin_lock_irqsave(&pgdata->split_queue_lock, flags);
3608
	/* Take pin on all head pages to avoid freeing them under us */
3609
	list_for_each_safe(pos, next, &pgdata->split_queue) {
3610 3611
		page = list_entry((void *)pos, struct page, mapping);
		page = compound_head(page);
3612 3613 3614 3615
		if (get_page_unless_zero(page)) {
			list_move(page_deferred_list(page), &list);
		} else {
			/* We lost race with put_compound_page() */
3616
			list_del_init(page_deferred_list(page));
3617
			pgdata->split_queue_len--;
3618
		}
3619 3620
		if (!--sc->nr_to_scan)
			break;
3621
	}
3622
	spin_unlock_irqrestore(&pgdata->split_queue_lock, flags);
3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633

	list_for_each_safe(pos, next, &list) {
		page = list_entry((void *)pos, struct page, mapping);
		lock_page(page);
		/* split_huge_page() removes page from list on success */
		if (!split_huge_page(page))
			split++;
		unlock_page(page);
		put_page(page);
	}

3634 3635 3636
	spin_lock_irqsave(&pgdata->split_queue_lock, flags);
	list_splice_tail(&list, &pgdata->split_queue);
	spin_unlock_irqrestore(&pgdata->split_queue_lock, flags);
3637

3638 3639 3640 3641 3642 3643 3644
	/*
	 * Stop shrinker if we didn't split any page, but the queue is empty.
	 * This can happen if pages were freed under us.
	 */
	if (!split && list_empty(&pgdata->split_queue))
		return SHRINK_STOP;
	return split;
3645 3646 3647 3648 3649 3650
}

static struct shrinker deferred_split_shrinker = {
	.count_objects = deferred_split_count,
	.scan_objects = deferred_split_scan,
	.seeks = DEFAULT_SEEKS,
3651
	.flags = SHRINKER_NUMA_AWARE,
3652
};
3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677

#ifdef CONFIG_DEBUG_FS
static int split_huge_pages_set(void *data, u64 val)
{
	struct zone *zone;
	struct page *page;
	unsigned long pfn, max_zone_pfn;
	unsigned long total = 0, split = 0;

	if (val != 1)
		return -EINVAL;

	for_each_populated_zone(zone) {
		max_zone_pfn = zone_end_pfn(zone);
		for (pfn = zone->zone_start_pfn; pfn < max_zone_pfn; pfn++) {
			if (!pfn_valid(pfn))
				continue;

			page = pfn_to_page(pfn);
			if (!get_page_unless_zero(page))
				continue;

			if (zone != page_zone(page))
				goto next;

3678
			if (!PageHead(page) || PageHuge(page) || !PageLRU(page))
3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690
				goto next;

			total++;
			lock_page(page);
			if (!split_huge_page(page))
				split++;
			unlock_page(page);
next:
			put_page(page);
		}
	}

3691
	pr_info("%lu of %lu THP split\n", split, total);
3692 3693 3694 3695 3696 3697 3698 3699 3700 3701

	return 0;
}
DEFINE_SIMPLE_ATTRIBUTE(split_huge_pages_fops, NULL, split_huge_pages_set,
		"%llu\n");

static int __init split_huge_pages_debugfs(void)
{
	void *ret;

3702
	ret = debugfs_create_file("split_huge_pages", 0200, NULL, NULL,
3703 3704 3705 3706 3707 3708 3709
			&split_huge_pages_fops);
	if (!ret)
		pr_warn("Failed to create split_huge_pages in debugfs");
	return 0;
}
late_initcall(split_huge_pages_debugfs);
#endif