blob: 7f085c97c799dac22dadaf9844ae31424e14816d [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
Christoph Lameterb20a3502006-03-22 00:09:12 -080012extern int 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,
16 unsigned long private, int offlining);
Christoph Lameter95a402c2006-06-23 02:03:53 -070017
Christoph Lameter2d1db3b2006-06-23 02:03:33 -070018extern int fail_migrate_page(struct address_space *,
19 struct page *, struct page *);
Christoph Lameterb20a3502006-03-22 00:09:12 -080020
21extern int migrate_prep(void);
Christoph Lameter7b2259b2006-06-25 05:46:48 -070022extern int migrate_vmas(struct mm_struct *mm,
23 const nodemask_t *from, const nodemask_t *to,
24 unsigned long flags);
Christoph Lameterb20a3502006-03-22 00:09:12 -080025#else
KOSAKI Motohiro64cdd542009-01-06 14:39:16 -080026#define PAGE_MIGRATION 0
27
Christoph Lameterb20a3502006-03-22 00:09:12 -080028static inline int putback_lru_pages(struct list_head *l) { return 0; }
Christoph Lameter95a402c2006-06-23 02:03:53 -070029static inline int migrate_pages(struct list_head *l, new_page_t x,
Hugh Dickins62b61f62009-12-14 17:59:33 -080030 unsigned long private, int offlining) { return -ENOSYS; }
Christoph Lameter9bf9e892006-03-31 02:29:56 -080031
Christoph Lameterb20a3502006-03-22 00:09:12 -080032static inline int migrate_prep(void) { return -ENOSYS; }
33
Christoph Lameter7b2259b2006-06-25 05:46:48 -070034static inline int migrate_vmas(struct mm_struct *mm,
35 const nodemask_t *from, const nodemask_t *to,
36 unsigned long flags)
37{
38 return -ENOSYS;
39}
40
Christoph Lameterb20a3502006-03-22 00:09:12 -080041/* Possible settings for the migrate_page() method in address_operations */
42#define migrate_page NULL
43#define fail_migrate_page NULL
44
45#endif /* CONFIG_MIGRATION */
46#endif /* _LINUX_MIGRATE_H */