page-isolation.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #ifndef __LINUX_PAGEISOLATION_H
  2. #define __LINUX_PAGEISOLATION_H
  3. bool has_unmovable_pages(struct zone *zone, struct page *page, int count);
  4. void set_pageblock_migratetype(struct page *page, int migratetype);
  5. int move_freepages_block(struct zone *zone, struct page *page,
  6. int migratetype);
  7. /*
  8. * Changes migrate type in [start_pfn, end_pfn) to be MIGRATE_ISOLATE.
  9. * If specified range includes migrate types other than MOVABLE or CMA,
  10. * this will fail with -EBUSY.
  11. *
  12. * For isolating all pages in the range finally, the caller have to
  13. * free all pages in the range. test_page_isolated() can be used for
  14. * test it.
  15. */
  16. int
  17. start_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
  18. unsigned migratetype);
  19. /*
  20. * Changes MIGRATE_ISOLATE to MIGRATE_MOVABLE.
  21. * target range is [start_pfn, end_pfn)
  22. */
  23. int
  24. undo_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
  25. unsigned migratetype);
  26. /*
  27. * Test all pages in [start_pfn, end_pfn) are isolated or not.
  28. */
  29. int test_pages_isolated(unsigned long start_pfn, unsigned long end_pfn);
  30. /*
  31. * Internal functions. Changes pageblock's migrate type.
  32. */
  33. int set_migratetype_isolate(struct page *page);
  34. void unset_migratetype_isolate(struct page *page, unsigned migratetype);
  35. #endif