2007-10-16 16:26:11 +08:00
|
|
|
#ifndef __LINUX_PAGEISOLATION_H
|
|
|
|
#define __LINUX_PAGEISOLATION_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Changes migrate type in [start_pfn, end_pfn) to be MIGRATE_ISOLATE.
|
2012-04-03 21:06:15 +08:00
|
|
|
* If specified range includes migrate types other than MOVABLE or CMA,
|
2007-10-16 16:26:11 +08:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
extern int
|
2012-04-03 21:06:15 +08:00
|
|
|
start_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
|
|
|
|
unsigned migratetype);
|
2007-10-16 16:26:11 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Changes MIGRATE_ISOLATE to MIGRATE_MOVABLE.
|
|
|
|
* target range is [start_pfn, end_pfn)
|
|
|
|
*/
|
|
|
|
extern int
|
2012-04-03 21:06:15 +08:00
|
|
|
undo_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
|
|
|
|
unsigned migratetype);
|
2007-10-16 16:26:11 +08:00
|
|
|
|
|
|
|
/*
|
2012-04-03 21:06:15 +08:00
|
|
|
* Test all pages in [start_pfn, end_pfn) are isolated or not.
|
2007-10-16 16:26:11 +08:00
|
|
|
*/
|
2012-04-03 21:06:15 +08:00
|
|
|
int test_pages_isolated(unsigned long start_pfn, unsigned long end_pfn);
|
2007-10-16 16:26:11 +08:00
|
|
|
|
|
|
|
/*
|
2012-04-03 21:06:15 +08:00
|
|
|
* Internal functions. Changes pageblock's migrate type.
|
2007-10-16 16:26:11 +08:00
|
|
|
*/
|
|
|
|
extern int set_migratetype_isolate(struct page *page);
|
2012-04-03 21:06:15 +08:00
|
|
|
extern void unset_migratetype_isolate(struct page *page, unsigned migratetype);
|
2007-10-16 16:26:11 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|