blob: e39aeecfe9a21666a107bf02be780bacca1ba0f5 [file] [log] [blame]
Christoph Lameterb20a3502006-03-22 00:09:12 -08001#ifndef _LINUX_MIGRATE_H
2#define _LINUX_MIGRATE_H
3
Christoph Lameterb20a3502006-03-22 00:09:12 -08004#include <linux/mm.h>
Christoph Lameter906e0be2007-05-06 14:50:20 -07005#include <linux/mempolicy.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -08006
Christoph Lameter742755a2006-06-23 02:03:55 -07007typedef struct page *new_page_t(struct page *, unsigned long private, int **);
Christoph Lameter95a402c2006-06-23 02:03:53 -07008
Christoph Lameter906e0be2007-05-06 14:50:20 -07009#ifdef CONFIG_MIGRATION
KOSAKI Motohiro64cdd542009-01-06 14:39:16 -080010#define PAGE_MIGRATION 1
11
Minchan Kime13861d2010-05-24 14:31:59 -070012extern void putback_lru_pages(struct list_head *l);
Christoph Lameter2d1db3b2006-06-23 02:03:33 -070013extern int migrate_page(struct address_space *,
14 struct page *, struct page *);
Hugh Dickins62b61f62009-12-14 17:59:33 -080015extern int migrate_pages(struct list_head *l, new_page_t x,
Mel Gorman7f0f2492011-01-13 15:45:58 -080016 unsigned long private, bool offlining,
Mel Gorman77f1fe62011-01-13 15:45:57 -080017 bool sync);
Naoya Horiguchi290408d2010-09-08 10:19:35 +090018extern int migrate_huge_pages(struct list_head *l, new_page_t x,
Mel Gorman7f0f2492011-01-13 15:45:58 -080019 unsigned long private, bool offlining,
Mel Gorman77f1fe62011-01-13 15:45:57 -080020 bool sync);
Christoph Lameter95a402c2006-06-23 02:03:53 -070021
Christoph Lameter2d1db3b2006-06-23 02:03:33 -070022extern int fail_migrate_page(struct address_space *,
23 struct page *, struct page *);
Christoph Lameterb20a3502006-03-22 00:09:12 -080024
25extern int migrate_prep(void);
Mel Gorman748446b2010-05-24 14:32:27 -070026extern int migrate_prep_local(void);
Christoph Lameter7b2259b2006-06-25 05:46:48 -070027extern int migrate_vmas(struct mm_struct *mm,
28 const nodemask_t *from, const nodemask_t *to,
29 unsigned long flags);
Naoya Horiguchi290408d2010-09-08 10:19:35 +090030extern void migrate_page_copy(struct page *newpage, struct page *page);
31extern int migrate_huge_page_move_mapping(struct address_space *mapping,
32 struct page *newpage, struct page *page);
Christoph Lameterb20a3502006-03-22 00:09:12 -080033#else
KOSAKI Motohiro64cdd542009-01-06 14:39:16 -080034#define PAGE_MIGRATION 0
35
Minchan Kime13861d2010-05-24 14:31:59 -070036static inline void putback_lru_pages(struct list_head *l) {}
Christoph Lameter95a402c2006-06-23 02:03:53 -070037static inline int migrate_pages(struct list_head *l, new_page_t x,
Mel Gorman7f0f2492011-01-13 15:45:58 -080038 unsigned long private, bool offlining,
Mel Gorman77f1fe62011-01-13 15:45:57 -080039 bool sync) { return -ENOSYS; }
Naoya Horiguchi290408d2010-09-08 10:19:35 +090040static inline int migrate_huge_pages(struct list_head *l, new_page_t x,
Mel Gorman7f0f2492011-01-13 15:45:58 -080041 unsigned long private, bool offlining,
Mel Gorman77f1fe62011-01-13 15:45:57 -080042 bool sync) { return -ENOSYS; }
Christoph Lameter9bf9e892006-03-31 02:29:56 -080043
Christoph Lameterb20a3502006-03-22 00:09:12 -080044static inline int migrate_prep(void) { return -ENOSYS; }
Mel Gorman748446b2010-05-24 14:32:27 -070045static inline int migrate_prep_local(void) { return -ENOSYS; }
Christoph Lameterb20a3502006-03-22 00:09:12 -080046
Christoph Lameter7b2259b2006-06-25 05:46:48 -070047static 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 Horiguchi290408d2010-09-08 10:19:35 +090054static inline void migrate_page_copy(struct page *newpage,
55 struct page *page) {}
56
Naoya Horiguchi6f39ce02010-09-30 11:54:51 +090057static inline int migrate_huge_page_move_mapping(struct address_space *mapping,
Naoya Horiguchi290408d2010-09-08 10:19:35 +090058 struct page *newpage, struct page *page)
59{
60 return -ENOSYS;
61}
62
Christoph Lameterb20a3502006-03-22 00:09:12 -080063/* 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 */