Linux 4.19-rc7
[linux-2.6/btrfs-unstable.git] / include / linux / page-isolation.h
blob4ae347cbc36d16fcaed260ee9f39ad63259c7ed7
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __LINUX_PAGEISOLATION_H
3 #define __LINUX_PAGEISOLATION_H
5 #ifdef CONFIG_MEMORY_ISOLATION
6 static inline bool has_isolate_pageblock(struct zone *zone)
8 return zone->nr_isolate_pageblock;
10 static inline bool is_migrate_isolate_page(struct page *page)
12 return get_pageblock_migratetype(page) == MIGRATE_ISOLATE;
14 static inline bool is_migrate_isolate(int migratetype)
16 return migratetype == MIGRATE_ISOLATE;
18 #else
19 static inline bool has_isolate_pageblock(struct zone *zone)
21 return false;
23 static inline bool is_migrate_isolate_page(struct page *page)
25 return false;
27 static inline bool is_migrate_isolate(int migratetype)
29 return false;
31 #endif
33 bool has_unmovable_pages(struct zone *zone, struct page *page, int count,
34 int migratetype, bool skip_hwpoisoned_pages);
35 void set_pageblock_migratetype(struct page *page, int migratetype);
36 int move_freepages_block(struct zone *zone, struct page *page,
37 int migratetype, int *num_movable);
40 * Changes migrate type in [start_pfn, end_pfn) to be MIGRATE_ISOLATE.
41 * If specified range includes migrate types other than MOVABLE or CMA,
42 * this will fail with -EBUSY.
44 * For isolating all pages in the range finally, the caller have to
45 * free all pages in the range. test_page_isolated() can be used for
46 * test it.
48 int
49 start_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
50 unsigned migratetype, bool skip_hwpoisoned_pages);
53 * Changes MIGRATE_ISOLATE to MIGRATE_MOVABLE.
54 * target range is [start_pfn, end_pfn)
56 int
57 undo_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
58 unsigned migratetype);
61 * Test all pages in [start_pfn, end_pfn) are isolated or not.
63 int test_pages_isolated(unsigned long start_pfn, unsigned long end_pfn,
64 bool skip_hwpoisoned_pages);
66 struct page *alloc_migrate_target(struct page *page, unsigned long private);
68 #endif