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

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

24 25
bool has_unmovable_pages(struct zone *zone, struct page *page, int count,
			 bool skip_hwpoisoned_pages);
26 27 28
void set_pageblock_migratetype(struct page *page, int migratetype);
int move_freepages_block(struct zone *zone, struct page *page,
				int migratetype);
29 30 31 32
int move_freepages(struct zone *zone,
			  struct page *start_page, struct page *end_page,
			  int migratetype);

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

/*
 * Changes MIGRATE_ISOLATE to MIGRATE_MOVABLE.
 * target range is [start_pfn, end_pfn)
 */
50
int
51 52
undo_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
			unsigned migratetype);
K
KAMEZAWA Hiroyuki 已提交
53 54

/*
55
 * Test all pages in [start_pfn, end_pfn) are isolated or not.
K
KAMEZAWA Hiroyuki 已提交
56
 */
57 58
int test_pages_isolated(unsigned long start_pfn, unsigned long end_pfn,
			bool skip_hwpoisoned_pages);
K
KAMEZAWA Hiroyuki 已提交
59 60

/*
61
 * Internal functions. Changes pageblock's migrate type.
K
KAMEZAWA Hiroyuki 已提交
62
 */
63
int set_migratetype_isolate(struct page *page, bool skip_hwpoisoned_pages);
64
void unset_migratetype_isolate(struct page *page, unsigned migratetype);
65 66
struct page *alloc_migrate_target(struct page *page, unsigned long private,
				int **resultp);
K
KAMEZAWA Hiroyuki 已提交
67 68

#endif