blob: 572458016331e7003af6fc7d1d64809102ece5e3 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __LINUX_PAGEISOLATION_H
3#define __LINUX_PAGEISOLATION_H
4
5#ifdef CONFIG_MEMORY_ISOLATION
6static inline bool has_isolate_pageblock(struct zone *zone)
7{
8 return zone->nr_isolate_pageblock;
9}
10static inline bool is_migrate_isolate_page(struct page *page)
11{
12 return get_pageblock_migratetype(page) == MIGRATE_ISOLATE;
13}
14static inline bool is_migrate_isolate(int migratetype)
15{
16 return migratetype == MIGRATE_ISOLATE;
17}
18#else
19static inline bool has_isolate_pageblock(struct zone *zone)
20{
21 return false;
22}
23static inline bool is_migrate_isolate_page(struct page *page)
24{
25 return false;
26}
27static inline bool is_migrate_isolate(int migratetype)
28{
29 return false;
30}
31#endif
32
Olivier Deprez157378f2022-04-04 15:47:50 +020033#define MEMORY_OFFLINE 0x1
David Brazdil0f672f62019-12-10 10:32:29 +000034#define REPORT_FAILURE 0x2
35
Olivier Deprez157378f2022-04-04 15:47:50 +020036struct page *has_unmovable_pages(struct zone *zone, struct page *page,
37 int migratetype, int flags);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000038void set_pageblock_migratetype(struct page *page, int migratetype);
39int move_freepages_block(struct zone *zone, struct page *page,
40 int migratetype, int *num_movable);
41
42/*
43 * Changes migrate type in [start_pfn, end_pfn) to be MIGRATE_ISOLATE.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000044 */
45int
46start_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
David Brazdil0f672f62019-12-10 10:32:29 +000047 unsigned migratetype, int flags);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000048
49/*
50 * Changes MIGRATE_ISOLATE to MIGRATE_MOVABLE.
51 * target range is [start_pfn, end_pfn)
52 */
David Brazdil0f672f62019-12-10 10:32:29 +000053void
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000054undo_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
55 unsigned migratetype);
56
57/*
58 * Test all pages in [start_pfn, end_pfn) are isolated or not.
59 */
60int test_pages_isolated(unsigned long start_pfn, unsigned long end_pfn,
Olivier Deprez157378f2022-04-04 15:47:50 +020061 int isol_flags);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000062
63struct page *alloc_migrate_target(struct page *page, unsigned long private);
64
65#endif