page-isolation.h 2.1 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
#define MEMORY_OFFLINE  0x1
34 35
#define REPORT_FAILURE	0x2

36
bool has_unmovable_pages(struct zone *zone, struct page *page, int count,
37
			 int migratetype, int flags);
38 39
void set_pageblock_migratetype(struct page *page, int migratetype);
int move_freepages_block(struct zone *zone, struct page *page,
40
				int migratetype, int *num_movable);
41

K
KAMEZAWA Hiroyuki 已提交
42 43
/*
 * Changes migrate type in [start_pfn, end_pfn) to be MIGRATE_ISOLATE.
44
 * If specified range includes migrate types other than MOVABLE or CMA,
K
KAMEZAWA Hiroyuki 已提交
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 51 52 53
 *
 * The following flags are allowed (they can be combined in a bit mask)
 * SKIP_HWPOISON - ignore hwpoison pages
 * REPORT_FAILURE - report details about the failure to isolate the range
K
KAMEZAWA Hiroyuki 已提交
54
 */
55
int
56
start_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
57
			 unsigned migratetype, int flags);
K
KAMEZAWA Hiroyuki 已提交
58 59 60 61 62

/*
 * Changes MIGRATE_ISOLATE to MIGRATE_MOVABLE.
 * target range is [start_pfn, end_pfn)
 */
63
int
64 65
undo_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
			unsigned migratetype);
K
KAMEZAWA Hiroyuki 已提交
66 67

/*
68
 * Test all pages in [start_pfn, end_pfn) are isolated or not.
K
KAMEZAWA Hiroyuki 已提交
69
 */
70
int test_pages_isolated(unsigned long start_pfn, unsigned long end_pfn,
71
			int isol_flags);
K
KAMEZAWA Hiroyuki 已提交
72

73
struct page *alloc_migrate_target(struct page *page, unsigned long private);
K
KAMEZAWA Hiroyuki 已提交
74 75

#endif