blob: 05ed2828a5535bfe151c17ab2b5a656a5209ef4c [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>
Andrew Morton6536e312012-01-20 14:33:53 -08006#include <linux/migrate_mode.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -08007
Christoph Lameter742755a2006-06-23 02:03:55 -07008typedef struct page *new_page_t(struct page *, unsigned long private, int **);
Christoph Lameter95a402c2006-06-23 02:03:53 -07009
Christoph Lameter906e0be2007-05-06 14:50:20 -070010#ifdef CONFIG_MIGRATION
KOSAKI Motohiro64cdd542009-01-06 14:39:16 -080011#define PAGE_MIGRATION 1
12
Minchan Kime13861d2010-05-24 14:31:59 -070013extern void putback_lru_pages(struct list_head *l);
Christoph Lameter2d1db3b2006-06-23 02:03:33 -070014extern int migrate_page(struct address_space *,
Mel Gormana6bc32b2012-01-12 17:19:43 -080015 struct page *, struct page *, enum migrate_mode);
Hugh Dickins62b61f62009-12-14 17:59:33 -080016extern int migrate_pages(struct list_head *l, new_page_t x,
Mel Gorman7f0f2492011-01-13 15:45:58 -080017 unsigned long private, bool offlining,
Mel Gormana6bc32b2012-01-12 17:19:43 -080018 enum migrate_mode mode);
Naoya Horiguchi290408d2010-09-08 10:19:35 +090019extern int migrate_huge_pages(struct list_head *l, new_page_t x,
Mel Gorman7f0f2492011-01-13 15:45:58 -080020 unsigned long private, bool offlining,
Mel Gormana6bc32b2012-01-12 17:19:43 -080021 enum migrate_mode mode);
Christoph Lameter95a402c2006-06-23 02:03:53 -070022
Christoph Lameter2d1db3b2006-06-23 02:03:33 -070023extern int fail_migrate_page(struct address_space *,
24 struct page *, struct page *);
Christoph Lameterb20a3502006-03-22 00:09:12 -080025
26extern int migrate_prep(void);
Mel Gorman748446b2010-05-24 14:32:27 -070027extern int migrate_prep_local(void);
Christoph Lameter7b2259b2006-06-25 05:46:48 -070028extern int migrate_vmas(struct mm_struct *mm,
29 const nodemask_t *from, const nodemask_t *to,
30 unsigned long flags);
Naoya Horiguchi290408d2010-09-08 10:19:35 +090031extern void migrate_page_copy(struct page *newpage, struct page *page);
32extern int migrate_huge_page_move_mapping(struct address_space *mapping,
33 struct page *newpage, struct page *page);
Christoph Lameterb20a3502006-03-22 00:09:12 -080034#else
KOSAKI Motohiro64cdd542009-01-06 14:39:16 -080035#define PAGE_MIGRATION 0
36
Minchan Kime13861d2010-05-24 14:31:59 -070037static inline void putback_lru_pages(struct list_head *l) {}
Christoph Lameter95a402c2006-06-23 02:03:53 -070038static inline int migrate_pages(struct list_head *l, new_page_t x,
Mel Gorman7f0f2492011-01-13 15:45:58 -080039 unsigned long private, bool offlining,
Mel Gormana6bc32b2012-01-12 17:19:43 -080040 enum migrate_mode mode) { return -ENOSYS; }
Naoya Horiguchi290408d2010-09-08 10:19:35 +090041static inline int migrate_huge_pages(struct list_head *l, new_page_t x,
Mel Gorman7f0f2492011-01-13 15:45:58 -080042 unsigned long private, bool offlining,
Mel Gormana6bc32b2012-01-12 17:19:43 -080043 enum migrate_mode mode) { return -ENOSYS; }
Christoph Lameter9bf9e892006-03-31 02:29:56 -080044
Christoph Lameterb20a3502006-03-22 00:09:12 -080045static inline int migrate_prep(void) { return -ENOSYS; }
Mel Gorman748446b2010-05-24 14:32:27 -070046static inline int migrate_prep_local(void) { return -ENOSYS; }
Christoph Lameterb20a3502006-03-22 00:09:12 -080047
Christoph Lameter7b2259b2006-06-25 05:46:48 -070048static inline int migrate_vmas(struct mm_struct *mm,
49 const nodemask_t *from, const nodemask_t *to,
50 unsigned long flags)
51{
52 return -ENOSYS;
53}
54
Naoya Horiguchi290408d2010-09-08 10:19:35 +090055static inline void migrate_page_copy(struct page *newpage,
56 struct page *page) {}
57
Naoya Horiguchi6f39ce02010-09-30 11:54:51 +090058static inline int migrate_huge_page_move_mapping(struct address_space *mapping,
Naoya Horiguchi290408d2010-09-08 10:19:35 +090059 struct page *newpage, struct page *page)
60{
61 return -ENOSYS;
62}
63
Christoph Lameterb20a3502006-03-22 00:09:12 -080064/* Possible settings for the migrate_page() method in address_operations */
65#define migrate_page NULL
66#define fail_migrate_page NULL
67
68#endif /* CONFIG_MIGRATION */
69#endif /* _LINUX_MIGRATE_H */