1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_MIGRATE_H
3 #define _LINUX_MIGRATE_H
6 #include <linux/mempolicy.h>
7 #include <linux/migrate_mode.h>
8 #include <linux/hugetlb.h>
10 typedef struct page *new_page_t(struct page *page, unsigned long private);
11 typedef void free_page_t(struct page *page, unsigned long private);
13 struct migration_target_control;
16 * Return values from addresss_space_operations.migratepage():
17 * - negative errno on page migration failure;
18 * - zero on page migration success;
20 #define MIGRATEPAGE_SUCCESS 0
22 /* Defined in mm/debug.c: */
23 extern const char *migrate_reason_names[MR_TYPES];
25 #ifdef CONFIG_MIGRATION
27 extern void putback_movable_pages(struct list_head *l);
28 extern int migrate_page(struct address_space *mapping,
29 struct page *newpage, struct page *page,
30 enum migrate_mode mode);
31 extern int migrate_pages(struct list_head *l, new_page_t new, free_page_t free,
32 unsigned long private, enum migrate_mode mode, int reason,
33 unsigned int *ret_succeeded);
34 extern struct page *alloc_migration_target(struct page *page, unsigned long private);
35 extern int isolate_movable_page(struct page *page, isolate_mode_t mode);
37 extern void migrate_page_states(struct page *newpage, struct page *page);
38 extern void migrate_page_copy(struct page *newpage, struct page *page);
39 extern int migrate_huge_page_move_mapping(struct address_space *mapping,
40 struct page *newpage, struct page *page);
41 extern int migrate_page_move_mapping(struct address_space *mapping,
42 struct page *newpage, struct page *page, int extra_count);
43 void folio_migrate_flags(struct folio *newfolio, struct folio *folio);
44 void folio_migrate_copy(struct folio *newfolio, struct folio *folio);
45 int folio_migrate_mapping(struct address_space *mapping,
46 struct folio *newfolio, struct folio *folio, int extra_count);
48 extern bool numa_demotion_enabled;
51 static inline void putback_movable_pages(struct list_head *l) {}
52 static inline int migrate_pages(struct list_head *l, new_page_t new,
53 free_page_t free, unsigned long private, enum migrate_mode mode,
54 int reason, unsigned int *ret_succeeded)
56 static inline struct page *alloc_migration_target(struct page *page,
57 unsigned long private)
59 static inline int isolate_movable_page(struct page *page, isolate_mode_t mode)
62 static inline void migrate_page_states(struct page *newpage, struct page *page)
66 static inline void migrate_page_copy(struct page *newpage,
69 static inline int migrate_huge_page_move_mapping(struct address_space *mapping,
70 struct page *newpage, struct page *page)
75 #define numa_demotion_enabled false
76 #endif /* CONFIG_MIGRATION */
78 #ifdef CONFIG_COMPACTION
79 extern int PageMovable(struct page *page);
80 extern void __SetPageMovable(struct page *page, struct address_space *mapping);
81 extern void __ClearPageMovable(struct page *page);
83 static inline int PageMovable(struct page *page) { return 0; }
84 static inline void __SetPageMovable(struct page *page,
85 struct address_space *mapping)
88 static inline void __ClearPageMovable(struct page *page)
93 #ifdef CONFIG_NUMA_BALANCING
94 extern int migrate_misplaced_page(struct page *page,
95 struct vm_area_struct *vma, int node);
97 static inline int migrate_misplaced_page(struct page *page,
98 struct vm_area_struct *vma, int node)
100 return -EAGAIN; /* can't migrate now */
102 #endif /* CONFIG_NUMA_BALANCING */
104 #ifdef CONFIG_MIGRATION
107 * Watch out for PAE architecture, which has an unsigned long, and might not
108 * have enough bits to store all physical address and flags. So far we have
109 * enough room for all our flags.
111 #define MIGRATE_PFN_VALID (1UL << 0)
112 #define MIGRATE_PFN_MIGRATE (1UL << 1)
113 #define MIGRATE_PFN_LOCKED (1UL << 2)
114 #define MIGRATE_PFN_WRITE (1UL << 3)
115 #define MIGRATE_PFN_SHIFT 6
117 static inline struct page *migrate_pfn_to_page(unsigned long mpfn)
119 if (!(mpfn & MIGRATE_PFN_VALID))
121 return pfn_to_page(mpfn >> MIGRATE_PFN_SHIFT);
124 static inline unsigned long migrate_pfn(unsigned long pfn)
126 return (pfn << MIGRATE_PFN_SHIFT) | MIGRATE_PFN_VALID;
129 enum migrate_vma_direction {
130 MIGRATE_VMA_SELECT_SYSTEM = 1 << 0,
131 MIGRATE_VMA_SELECT_DEVICE_PRIVATE = 1 << 1,
135 struct vm_area_struct *vma;
137 * Both src and dst array must be big enough for
138 * (end - start) >> PAGE_SHIFT entries.
140 * The src array must not be modified by the caller after
141 * migrate_vma_setup(), and must not change the dst array after
142 * migrate_vma_pages() returns.
146 unsigned long cpages;
147 unsigned long npages;
152 * Set to the owner value also stored in page->pgmap->owner for
153 * migrating out of device private memory. The flags also need to
154 * be set to MIGRATE_VMA_SELECT_DEVICE_PRIVATE.
155 * The caller should always set this field when using mmu notifier
156 * callbacks to avoid device MMU invalidations for device private
157 * pages that are not being migrated.
163 int migrate_vma_setup(struct migrate_vma *args);
164 void migrate_vma_pages(struct migrate_vma *migrate);
165 void migrate_vma_finalize(struct migrate_vma *migrate);
166 int next_demotion_node(int node);
168 #else /* CONFIG_MIGRATION disabled: */
170 static inline int next_demotion_node(int node)
175 #endif /* CONFIG_MIGRATION */
177 #endif /* _LINUX_MIGRATE_H */