blob: a92061e08d48a4b8839ede4d62606b59744a441a [file] [log] [blame]
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -07001#ifndef __LINUX_PAGEISOLATION_H
2#define __LINUX_PAGEISOLATION_H
3
Minchan Kimee6f5092012-07-31 16:43:50 -07004
Wen Congyangb023f462012-12-11 16:00:45 -08005bool has_unmovable_pages(struct zone *zone, struct page *page, int count,
6 bool skip_hwpoisoned_pages);
Minchan Kimee6f5092012-07-31 16:43:50 -07007void set_pageblock_migratetype(struct page *page, int migratetype);
8int move_freepages_block(struct zone *zone, struct page *page,
9 int migratetype);
Minchan Kim435b4052012-10-08 16:32:16 -070010int move_freepages(struct zone *zone,
11 struct page *start_page, struct page *end_page,
12 int migratetype);
13
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -070014/*
15 * Changes migrate type in [start_pfn, end_pfn) to be MIGRATE_ISOLATE.
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +020016 * If specified range includes migrate types other than MOVABLE or CMA,
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -070017 * this will fail with -EBUSY.
18 *
19 * For isolating all pages in the range finally, the caller have to
20 * free all pages in the range. test_page_isolated() can be used for
21 * test it.
22 */
Minchan Kimee6f5092012-07-31 16:43:50 -070023int
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +020024start_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
Wen Congyangb023f462012-12-11 16:00:45 -080025 unsigned migratetype, bool skip_hwpoisoned_pages);
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -070026
27/*
28 * Changes MIGRATE_ISOLATE to MIGRATE_MOVABLE.
29 * target range is [start_pfn, end_pfn)
30 */
Minchan Kimee6f5092012-07-31 16:43:50 -070031int
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +020032undo_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
33 unsigned migratetype);
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -070034
35/*
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +020036 * Test all pages in [start_pfn, end_pfn) are isolated or not.
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -070037 */
Wen Congyangb023f462012-12-11 16:00:45 -080038int test_pages_isolated(unsigned long start_pfn, unsigned long end_pfn,
39 bool skip_hwpoisoned_pages);
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -070040
41/*
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +020042 * Internal functions. Changes pageblock's migrate type.
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -070043 */
Wen Congyangb023f462012-12-11 16:00:45 -080044int set_migratetype_isolate(struct page *page, bool skip_hwpoisoned_pages);
Minchan Kimee6f5092012-07-31 16:43:50 -070045void unset_migratetype_isolate(struct page *page, unsigned migratetype);
Minchan Kim723a0642012-10-08 16:32:52 -070046struct page *alloc_migrate_target(struct page *page, unsigned long private,
47 int **resultp);
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -070048
49#endif