#ifndef __LINUX_PAGEISOLATION_H#define __LINUX_PAGEISOLATION_H/* * Changes migrate type in [start_pfn, end_pfn) to be MIGRATE_ISOLATE. * If specified range includes migrate types other than MOVABLE, * 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. */externintstart_isolate_page_range(unsignedlongstart_pfn,unsignedlongend_pfn);/* * Changes MIGRATE_ISOLATE to MIGRATE_MOVABLE. * target range is [start_pfn, end_pfn) */externintundo_isolate_page_range(unsignedlongstart_pfn,unsignedlongend_pfn);/* * test all pages in [start_pfn, end_pfn)are isolated or not. */externinttest_pages_isolated(unsignedlongstart_pfn,unsignedlongend_pfn);/* * Internal funcs.Changes pageblock's migrate type. * Please use make_pagetype_isolated()/make_pagetype_movable(). */externintset_migratetype_isolate(structpage*page);externvoidunset_migratetype_isolate(structpage*page);#endif