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> |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 6 | |
Christoph Lameter | 742755a | 2006-06-23 02:03:55 -0700 | [diff] [blame] | 7 | typedef struct page *new_page_t(struct page *, unsigned long private, int **); |
Christoph Lameter | 95a402c | 2006-06-23 02:03:53 -0700 | [diff] [blame] | 8 | |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame^] | 9 | /* |
| 10 | * MIGRATE_ASYNC means never block |
| 11 | * MIGRATE_SYNC_LIGHT in the current implementation means to allow blocking |
| 12 | * on most operations but not ->writepage as the potential stall time |
| 13 | * is too significant |
| 14 | * MIGRATE_SYNC will block when migrating pages |
| 15 | */ |
| 16 | enum migrate_mode { |
| 17 | MIGRATE_ASYNC, |
| 18 | MIGRATE_SYNC_LIGHT, |
| 19 | MIGRATE_SYNC, |
| 20 | }; |
| 21 | |
Christoph Lameter | 906e0be | 2007-05-06 14:50:20 -0700 | [diff] [blame] | 22 | #ifdef CONFIG_MIGRATION |
KOSAKI Motohiro | 64cdd54 | 2009-01-06 14:39:16 -0800 | [diff] [blame] | 23 | #define PAGE_MIGRATION 1 |
| 24 | |
Minchan Kim | e13861d | 2010-05-24 14:31:59 -0700 | [diff] [blame] | 25 | extern void putback_lru_pages(struct list_head *l); |
Christoph Lameter | 2d1db3b | 2006-06-23 02:03:33 -0700 | [diff] [blame] | 26 | extern int migrate_page(struct address_space *, |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame^] | 27 | struct page *, struct page *, enum migrate_mode); |
Hugh Dickins | 62b61f6 | 2009-12-14 17:59:33 -0800 | [diff] [blame] | 28 | extern int migrate_pages(struct list_head *l, new_page_t x, |
Mel Gorman | 7f0f249 | 2011-01-13 15:45:58 -0800 | [diff] [blame] | 29 | unsigned long private, bool offlining, |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame^] | 30 | enum migrate_mode mode); |
Naoya Horiguchi | 290408d | 2010-09-08 10:19:35 +0900 | [diff] [blame] | 31 | extern int migrate_huge_pages(struct list_head *l, new_page_t x, |
Mel Gorman | 7f0f249 | 2011-01-13 15:45:58 -0800 | [diff] [blame] | 32 | unsigned long private, bool offlining, |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame^] | 33 | enum migrate_mode mode); |
Christoph Lameter | 95a402c | 2006-06-23 02:03:53 -0700 | [diff] [blame] | 34 | |
Christoph Lameter | 2d1db3b | 2006-06-23 02:03:33 -0700 | [diff] [blame] | 35 | extern int fail_migrate_page(struct address_space *, |
| 36 | struct page *, struct page *); |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 37 | |
| 38 | extern int migrate_prep(void); |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 39 | extern int migrate_prep_local(void); |
Christoph Lameter | 7b2259b | 2006-06-25 05:46:48 -0700 | [diff] [blame] | 40 | extern int migrate_vmas(struct mm_struct *mm, |
| 41 | const nodemask_t *from, const nodemask_t *to, |
| 42 | unsigned long flags); |
Naoya Horiguchi | 290408d | 2010-09-08 10:19:35 +0900 | [diff] [blame] | 43 | extern void migrate_page_copy(struct page *newpage, struct page *page); |
| 44 | extern int migrate_huge_page_move_mapping(struct address_space *mapping, |
| 45 | struct page *newpage, struct page *page); |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 46 | #else |
KOSAKI Motohiro | 64cdd54 | 2009-01-06 14:39:16 -0800 | [diff] [blame] | 47 | #define PAGE_MIGRATION 0 |
| 48 | |
Minchan Kim | e13861d | 2010-05-24 14:31:59 -0700 | [diff] [blame] | 49 | static inline void putback_lru_pages(struct list_head *l) {} |
Christoph Lameter | 95a402c | 2006-06-23 02:03:53 -0700 | [diff] [blame] | 50 | static inline int migrate_pages(struct list_head *l, new_page_t x, |
Mel Gorman | 7f0f249 | 2011-01-13 15:45:58 -0800 | [diff] [blame] | 51 | unsigned long private, bool offlining, |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame^] | 52 | enum migrate_mode mode) { return -ENOSYS; } |
Naoya Horiguchi | 290408d | 2010-09-08 10:19:35 +0900 | [diff] [blame] | 53 | static inline int migrate_huge_pages(struct list_head *l, new_page_t x, |
Mel Gorman | 7f0f249 | 2011-01-13 15:45:58 -0800 | [diff] [blame] | 54 | unsigned long private, bool offlining, |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame^] | 55 | enum migrate_mode mode) { return -ENOSYS; } |
Christoph Lameter | 9bf9e89 | 2006-03-31 02:29:56 -0800 | [diff] [blame] | 56 | |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 57 | static inline int migrate_prep(void) { return -ENOSYS; } |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 58 | static inline int migrate_prep_local(void) { return -ENOSYS; } |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 59 | |
Christoph Lameter | 7b2259b | 2006-06-25 05:46:48 -0700 | [diff] [blame] | 60 | static inline int migrate_vmas(struct mm_struct *mm, |
| 61 | const nodemask_t *from, const nodemask_t *to, |
| 62 | unsigned long flags) |
| 63 | { |
| 64 | return -ENOSYS; |
| 65 | } |
| 66 | |
Naoya Horiguchi | 290408d | 2010-09-08 10:19:35 +0900 | [diff] [blame] | 67 | static inline void migrate_page_copy(struct page *newpage, |
| 68 | struct page *page) {} |
| 69 | |
Naoya Horiguchi | 6f39ce0 | 2010-09-30 11:54:51 +0900 | [diff] [blame] | 70 | static inline int migrate_huge_page_move_mapping(struct address_space *mapping, |
Naoya Horiguchi | 290408d | 2010-09-08 10:19:35 +0900 | [diff] [blame] | 71 | struct page *newpage, struct page *page) |
| 72 | { |
| 73 | return -ENOSYS; |
| 74 | } |
| 75 | |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 76 | /* Possible settings for the migrate_page() method in address_operations */ |
| 77 | #define migrate_page NULL |
| 78 | #define fail_migrate_page NULL |
| 79 | |
| 80 | #endif /* CONFIG_MIGRATION */ |
| 81 | #endif /* _LINUX_MIGRATE_H */ |