page-isolation.h 1.9 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
K
KAMEZAWA Hiroyuki 已提交
2 3 4
#ifndef __LINUX_PAGEISOLATION_H
#define __LINUX_PAGEISOLATION_H

5
#ifdef CONFIG_MEMORY_ISOLATION
6 7 8 9
static inline bool has_isolate_pageblock(struct zone *zone)
{
	return zone->nr_isolate_pageblock;
}
10 11 12 13 14 15 16 17 18
static inline bool is_migrate_isolate_page(struct page *page)
{
	return get_pageblock_migratetype(page) == MIGRATE_ISOLATE;
}
static inline bool is_migrate_isolate(int migratetype)
{
	return migratetype == MIGRATE_ISOLATE;
}
#else
19 20 21 22
static inline bool has_isolate_pageblock(struct zone *zone)
{
	return false;
}
23 24 25 26 27 28 29 30 31
static inline bool is_migrate_isolate_page(struct page *page)
{
	return false;
}
static inline bool is_migrate_isolate(int migratetype)
{
	return false;
}
#endif
32

33
bool has_unmovable_pages(struct zone *zone, struct page *page, int count,
34
			 int migratetype, bool skip_hwpoisoned_pages);
35 36
void set_pageblock_migratetype(struct page *page, int migratetype);
int move_freepages_block(struct zone *zone, struct page *page,
37
				int migratetype, int *num_movable);
38

K
KAMEZAWA Hiroyuki 已提交
39 40
/*
 * Changes migrate type in [start_pfn, end_pfn) to be MIGRATE_ISOLATE.
41
 * If specified range includes migrate types other than MOVABLE or CMA,
K
KAMEZAWA Hiroyuki 已提交
42 43 44 45 46 47
 * this will fail with -EBUSY.
 *
 * For isolating all pages in the range finally, the caller have to
 * free all pages in the range. test_page_isolated() can be used for
 * test it.
 */
48
int
49
start_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
50
			 unsigned migratetype, bool skip_hwpoisoned_pages);
K
KAMEZAWA Hiroyuki 已提交
51 52 53 54 55

/*
 * Changes MIGRATE_ISOLATE to MIGRATE_MOVABLE.
 * target range is [start_pfn, end_pfn)
 */
56
int
57 58
undo_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
			unsigned migratetype);
K
KAMEZAWA Hiroyuki 已提交
59 60

/*
61
 * Test all pages in [start_pfn, end_pfn) are isolated or not.
K
KAMEZAWA Hiroyuki 已提交
62
 */
63 64
int test_pages_isolated(unsigned long start_pfn, unsigned long end_pfn,
			bool skip_hwpoisoned_pages);
K
KAMEZAWA Hiroyuki 已提交
65

66 67
struct page *alloc_migrate_target(struct page *page, unsigned long private,
				int **resultp);
K
KAMEZAWA Hiroyuki 已提交
68 69

#endif