page-isolation.h 1.8 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
void set_pageblock_migratetype(struct page *page, int migratetype);
int move_freepages_block(struct zone *zone, struct page *page,
36
				int migratetype, int *num_movable);
37

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

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

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

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

#endif