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 | |
Christoph Lameter | 906e0be | 2007-05-06 14:50:20 -0700 | [diff] [blame] | 9 | #ifdef CONFIG_MIGRATION |
KOSAKI Motohiro | 64cdd54 | 2009-01-06 14:39:16 -0800 | [diff] [blame] | 10 | #define PAGE_MIGRATION 1 |
| 11 | |
Minchan Kim | e13861d | 2010-05-24 14:31:59 -0700 | [diff] [blame] | 12 | extern void putback_lru_pages(struct list_head *l); |
Christoph Lameter | 2d1db3b | 2006-06-23 02:03:33 -0700 | [diff] [blame] | 13 | extern int migrate_page(struct address_space *, |
| 14 | struct page *, struct page *); |
Hugh Dickins | 62b61f6 | 2009-12-14 17:59:33 -0800 | [diff] [blame] | 15 | extern int migrate_pages(struct list_head *l, new_page_t x, |
Mel Gorman | 7f0f249 | 2011-01-13 15:45:58 -0800 | [diff] [blame] | 16 | unsigned long private, bool offlining, |
Mel Gorman | 77f1fe6 | 2011-01-13 15:45:57 -0800 | [diff] [blame] | 17 | bool sync); |
Naoya Horiguchi | 290408d | 2010-09-08 10:19:35 +0900 | [diff] [blame] | 18 | 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] | 19 | unsigned long private, bool offlining, |
Mel Gorman | 77f1fe6 | 2011-01-13 15:45:57 -0800 | [diff] [blame] | 20 | bool sync); |
Christoph Lameter | 95a402c | 2006-06-23 02:03:53 -0700 | [diff] [blame] | 21 | |
Christoph Lameter | 2d1db3b | 2006-06-23 02:03:33 -0700 | [diff] [blame] | 22 | extern int fail_migrate_page(struct address_space *, |
| 23 | struct page *, struct page *); |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 24 | |
| 25 | extern int migrate_prep(void); |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 26 | extern int migrate_prep_local(void); |
Christoph Lameter | 7b2259b | 2006-06-25 05:46:48 -0700 | [diff] [blame] | 27 | extern int migrate_vmas(struct mm_struct *mm, |
| 28 | const nodemask_t *from, const nodemask_t *to, |
| 29 | unsigned long flags); |
Naoya Horiguchi | 290408d | 2010-09-08 10:19:35 +0900 | [diff] [blame] | 30 | extern void migrate_page_copy(struct page *newpage, struct page *page); |
| 31 | extern int migrate_huge_page_move_mapping(struct address_space *mapping, |
| 32 | struct page *newpage, struct page *page); |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 33 | #else |
KOSAKI Motohiro | 64cdd54 | 2009-01-06 14:39:16 -0800 | [diff] [blame] | 34 | #define PAGE_MIGRATION 0 |
| 35 | |
Minchan Kim | e13861d | 2010-05-24 14:31:59 -0700 | [diff] [blame] | 36 | static inline void putback_lru_pages(struct list_head *l) {} |
Christoph Lameter | 95a402c | 2006-06-23 02:03:53 -0700 | [diff] [blame] | 37 | 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] | 38 | unsigned long private, bool offlining, |
Mel Gorman | 77f1fe6 | 2011-01-13 15:45:57 -0800 | [diff] [blame] | 39 | bool sync) { return -ENOSYS; } |
Naoya Horiguchi | 290408d | 2010-09-08 10:19:35 +0900 | [diff] [blame] | 40 | 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] | 41 | unsigned long private, bool offlining, |
Mel Gorman | 77f1fe6 | 2011-01-13 15:45:57 -0800 | [diff] [blame] | 42 | bool sync) { return -ENOSYS; } |
Christoph Lameter | 9bf9e89 | 2006-03-31 02:29:56 -0800 | [diff] [blame] | 43 | |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 44 | static inline int migrate_prep(void) { return -ENOSYS; } |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 45 | static inline int migrate_prep_local(void) { return -ENOSYS; } |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 46 | |
Christoph Lameter | 7b2259b | 2006-06-25 05:46:48 -0700 | [diff] [blame] | 47 | static inline int migrate_vmas(struct mm_struct *mm, |
| 48 | const nodemask_t *from, const nodemask_t *to, |
| 49 | unsigned long flags) |
| 50 | { |
| 51 | return -ENOSYS; |
| 52 | } |
| 53 | |
Naoya Horiguchi | 290408d | 2010-09-08 10:19:35 +0900 | [diff] [blame] | 54 | static inline void migrate_page_copy(struct page *newpage, |
| 55 | struct page *page) {} |
| 56 | |
Naoya Horiguchi | 6f39ce0 | 2010-09-30 11:54:51 +0900 | [diff] [blame] | 57 | static inline int migrate_huge_page_move_mapping(struct address_space *mapping, |
Naoya Horiguchi | 290408d | 2010-09-08 10:19:35 +0900 | [diff] [blame] | 58 | struct page *newpage, struct page *page) |
| 59 | { |
| 60 | return -ENOSYS; |
| 61 | } |
| 62 | |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 63 | /* Possible settings for the migrate_page() method in address_operations */ |
| 64 | #define migrate_page NULL |
| 65 | #define fail_migrate_page NULL |
| 66 | |
| 67 | #endif /* CONFIG_MIGRATION */ |
| 68 | #endif /* _LINUX_MIGRATE_H */ |