Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 1 | #ifndef _LINUX_MIGRATE_H |
| 2 | #define _LINUX_MIGRATE_H |
| 3 | |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 4 | #include <linux/mm.h> |
Christoph Lameter | 906e0be | 2007-05-06 14:50:20 -0700 | [diff] [blame] | 5 | #include <linux/mempolicy.h> |
Andrew Morton | 6536e31 | 2012-01-20 14:33:53 -0800 | [diff] [blame] | 6 | #include <linux/migrate_mode.h> |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 7 | |
Christoph Lameter | 742755a | 2006-06-23 02:03:55 -0700 | [diff] [blame] | 8 | typedef struct page *new_page_t(struct page *, unsigned long private, int **); |
Christoph Lameter | 95a402c | 2006-06-23 02:03:53 -0700 | [diff] [blame] | 9 | |
Rafael Aquini | 78bd520 | 2012-12-11 16:02:31 -0800 | [diff] [blame] | 10 | /* |
| 11 | * Return values from addresss_space_operations.migratepage(): |
| 12 | * - negative errno on page migration failure; |
| 13 | * - zero on page migration success; |
Rafael Aquini | 18468d9 | 2012-12-11 16:02:38 -0800 | [diff] [blame] | 14 | * |
| 15 | * The balloon page migration introduces this special case where a 'distinct' |
| 16 | * return code is used to flag a successful page migration to unmap_and_move(). |
| 17 | * This approach is necessary because page migration can race against balloon |
| 18 | * deflation procedure, and for such case we could introduce a nasty page leak |
| 19 | * if a successfully migrated balloon page gets released concurrently with |
| 20 | * migration's unmap_and_move() wrap-up steps. |
Rafael Aquini | 78bd520 | 2012-12-11 16:02:31 -0800 | [diff] [blame] | 21 | */ |
| 22 | #define MIGRATEPAGE_SUCCESS 0 |
Rafael Aquini | 18468d9 | 2012-12-11 16:02:38 -0800 | [diff] [blame] | 23 | #define MIGRATEPAGE_BALLOON_SUCCESS 1 /* special ret code for balloon page |
| 24 | * sucessful migration case. |
| 25 | */ |
Mel Gorman | 7b2a2d4 | 2012-10-19 14:07:31 +0100 | [diff] [blame] | 26 | enum migrate_reason { |
| 27 | MR_COMPACTION, |
| 28 | MR_MEMORY_FAILURE, |
| 29 | MR_MEMORY_HOTPLUG, |
| 30 | MR_SYSCALL, /* also applies to cpusets */ |
| 31 | MR_MEMPOLICY_MBIND, |
Peter Zijlstra | 7039e1d | 2012-10-25 14:16:34 +0200 | [diff] [blame] | 32 | MR_NUMA_MISPLACED, |
Mel Gorman | 7b2a2d4 | 2012-10-19 14:07:31 +0100 | [diff] [blame] | 33 | MR_CMA |
| 34 | }; |
Rafael Aquini | 78bd520 | 2012-12-11 16:02:31 -0800 | [diff] [blame] | 35 | |
Christoph Lameter | 906e0be | 2007-05-06 14:50:20 -0700 | [diff] [blame] | 36 | #ifdef CONFIG_MIGRATION |
KOSAKI Motohiro | 64cdd54 | 2009-01-06 14:39:16 -0800 | [diff] [blame] | 37 | |
Minchan Kim | e13861d | 2010-05-24 14:31:59 -0700 | [diff] [blame] | 38 | extern void putback_lru_pages(struct list_head *l); |
Rafael Aquini | 5733c7d | 2012-12-11 16:02:47 -0800 | [diff] [blame] | 39 | extern void putback_movable_pages(struct list_head *l); |
Christoph Lameter | 2d1db3b | 2006-06-23 02:03:33 -0700 | [diff] [blame] | 40 | extern int migrate_page(struct address_space *, |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame] | 41 | struct page *, struct page *, enum migrate_mode); |
Hugh Dickins | 62b61f6 | 2009-12-14 17:59:33 -0800 | [diff] [blame] | 42 | extern int migrate_pages(struct list_head *l, new_page_t x, |
Hugh Dickins | 9c620e2 | 2013-02-22 16:35:14 -0800 | [diff] [blame] | 43 | unsigned long private, enum migrate_mode mode, int reason); |
Christoph Lameter | 95a402c | 2006-06-23 02:03:53 -0700 | [diff] [blame] | 44 | |
Christoph Lameter | 2d1db3b | 2006-06-23 02:03:33 -0700 | [diff] [blame] | 45 | extern int fail_migrate_page(struct address_space *, |
| 46 | struct page *, struct page *); |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 47 | |
| 48 | extern int migrate_prep(void); |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 49 | extern int migrate_prep_local(void); |
Christoph Lameter | 7b2259b | 2006-06-25 05:46:48 -0700 | [diff] [blame] | 50 | extern int migrate_vmas(struct mm_struct *mm, |
| 51 | const nodemask_t *from, const nodemask_t *to, |
| 52 | unsigned long flags); |
Naoya Horiguchi | 290408d | 2010-09-08 10:19:35 +0900 | [diff] [blame] | 53 | extern void migrate_page_copy(struct page *newpage, struct page *page); |
| 54 | extern int migrate_huge_page_move_mapping(struct address_space *mapping, |
| 55 | struct page *newpage, struct page *page); |
Gu Zheng | 36bc08c | 2013-07-16 17:56:16 +0800 | [diff] [blame] | 56 | extern int migrate_page_move_mapping(struct address_space *mapping, |
| 57 | struct page *newpage, struct page *page, |
| 58 | struct buffer_head *head, enum migrate_mode mode); |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 59 | #else |
KOSAKI Motohiro | 64cdd54 | 2009-01-06 14:39:16 -0800 | [diff] [blame] | 60 | |
Minchan Kim | e13861d | 2010-05-24 14:31:59 -0700 | [diff] [blame] | 61 | static inline void putback_lru_pages(struct list_head *l) {} |
Rafael Aquini | 5733c7d | 2012-12-11 16:02:47 -0800 | [diff] [blame] | 62 | static inline void putback_movable_pages(struct list_head *l) {} |
Christoph Lameter | 95a402c | 2006-06-23 02:03:53 -0700 | [diff] [blame] | 63 | static inline int migrate_pages(struct list_head *l, new_page_t x, |
Hugh Dickins | 9c620e2 | 2013-02-22 16:35:14 -0800 | [diff] [blame] | 64 | unsigned long private, enum migrate_mode mode, int reason) |
| 65 | { return -ENOSYS; } |
Christoph Lameter | 9bf9e89 | 2006-03-31 02:29:56 -0800 | [diff] [blame] | 66 | |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 67 | static inline int migrate_prep(void) { return -ENOSYS; } |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 68 | static inline int migrate_prep_local(void) { return -ENOSYS; } |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 69 | |
Christoph Lameter | 7b2259b | 2006-06-25 05:46:48 -0700 | [diff] [blame] | 70 | static inline int migrate_vmas(struct mm_struct *mm, |
| 71 | const nodemask_t *from, const nodemask_t *to, |
| 72 | unsigned long flags) |
| 73 | { |
| 74 | return -ENOSYS; |
| 75 | } |
| 76 | |
Naoya Horiguchi | 290408d | 2010-09-08 10:19:35 +0900 | [diff] [blame] | 77 | static inline void migrate_page_copy(struct page *newpage, |
| 78 | struct page *page) {} |
| 79 | |
Naoya Horiguchi | 6f39ce0 | 2010-09-30 11:54:51 +0900 | [diff] [blame] | 80 | static inline int migrate_huge_page_move_mapping(struct address_space *mapping, |
Naoya Horiguchi | 290408d | 2010-09-08 10:19:35 +0900 | [diff] [blame] | 81 | struct page *newpage, struct page *page) |
| 82 | { |
| 83 | return -ENOSYS; |
| 84 | } |
| 85 | |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 86 | /* Possible settings for the migrate_page() method in address_operations */ |
| 87 | #define migrate_page NULL |
| 88 | #define fail_migrate_page NULL |
| 89 | |
| 90 | #endif /* CONFIG_MIGRATION */ |
Peter Zijlstra | 7039e1d | 2012-10-25 14:16:34 +0200 | [diff] [blame] | 91 | |
| 92 | #ifdef CONFIG_NUMA_BALANCING |
| 93 | extern int migrate_misplaced_page(struct page *page, int node); |
Mel Gorman | e14808b | 2012-11-19 10:59:15 +0000 | [diff] [blame] | 94 | extern int migrate_misplaced_page(struct page *page, int node); |
| 95 | extern bool migrate_ratelimited(int node); |
Peter Zijlstra | 7039e1d | 2012-10-25 14:16:34 +0200 | [diff] [blame] | 96 | #else |
| 97 | static inline int migrate_misplaced_page(struct page *page, int node) |
| 98 | { |
| 99 | return -EAGAIN; /* can't migrate now */ |
| 100 | } |
Mel Gorman | e14808b | 2012-11-19 10:59:15 +0000 | [diff] [blame] | 101 | static inline bool migrate_ratelimited(int node) |
| 102 | { |
| 103 | return false; |
| 104 | } |
Mel Gorman | 220018d | 2012-12-05 09:32:56 +0000 | [diff] [blame] | 105 | #endif /* CONFIG_NUMA_BALANCING */ |
Mel Gorman | b32967f | 2012-11-19 12:35:47 +0000 | [diff] [blame] | 106 | |
Mel Gorman | 220018d | 2012-12-05 09:32:56 +0000 | [diff] [blame] | 107 | #if defined(CONFIG_NUMA_BALANCING) && defined(CONFIG_TRANSPARENT_HUGEPAGE) |
| 108 | extern int migrate_misplaced_transhuge_page(struct mm_struct *mm, |
| 109 | struct vm_area_struct *vma, |
| 110 | pmd_t *pmd, pmd_t entry, |
| 111 | unsigned long address, |
| 112 | struct page *page, int node); |
| 113 | #else |
Mel Gorman | b32967f | 2012-11-19 12:35:47 +0000 | [diff] [blame] | 114 | static inline int migrate_misplaced_transhuge_page(struct mm_struct *mm, |
| 115 | struct vm_area_struct *vma, |
| 116 | pmd_t *pmd, pmd_t entry, |
| 117 | unsigned long address, |
| 118 | struct page *page, int node) |
| 119 | { |
| 120 | return -EAGAIN; |
| 121 | } |
Mel Gorman | 220018d | 2012-12-05 09:32:56 +0000 | [diff] [blame] | 122 | #endif /* CONFIG_NUMA_BALANCING && CONFIG_TRANSPARENT_HUGEPAGE*/ |
Peter Zijlstra | 7039e1d | 2012-10-25 14:16:34 +0200 | [diff] [blame] | 123 | |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 124 | #endif /* _LINUX_MIGRATE_H */ |