page-isolation.h 1.9 KB
Newer Older
K
KAMEZAWA Hiroyuki 已提交
1 2 3
#ifndef __LINUX_PAGEISOLATION_H
#define __LINUX_PAGEISOLATION_H

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

32 33
bool has_unmovable_pages(struct zone *zone, struct page *page, int count,
			 bool skip_hwpoisoned_pages);
34 35 36
void set_pageblock_migratetype(struct page *page, int migratetype);
int move_freepages_block(struct zone *zone, struct page *page,
				int migratetype);
37 38 39 40
int move_freepages(struct zone *zone,
			  struct page *start_page, struct page *end_page,
			  int migratetype);

K
KAMEZAWA Hiroyuki 已提交
41 42
/*
 * Changes migrate type in [start_pfn, end_pfn) to be MIGRATE_ISOLATE.
43
 * If specified range includes migrate types other than MOVABLE or CMA,
K
KAMEZAWA Hiroyuki 已提交
44 45 46 47 48 49
 * 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.
 */
50
int
51
start_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
52
			 unsigned migratetype, bool skip_hwpoisoned_pages);
K
KAMEZAWA Hiroyuki 已提交
53 54 55 56 57

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

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

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

#endif