blob: 48148e0cdbd179725de653eff14a229c26ad6153 [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>
5
Christoph Lameter742755a2006-06-23 02:03:55 -07006typedef struct page *new_page_t(struct page *, unsigned long private, int **);
Christoph Lameter95a402c2006-06-23 02:03:53 -07007
Christoph Lameterb20a3502006-03-22 00:09:12 -08008#ifdef CONFIG_MIGRATION
9extern int isolate_lru_page(struct page *p, struct list_head *pagelist);
10extern int putback_lru_pages(struct list_head *l);
Christoph Lameter2d1db3b2006-06-23 02:03:33 -070011extern int migrate_page(struct address_space *,
12 struct page *, struct page *);
Christoph Lameter95a402c2006-06-23 02:03:53 -070013extern int migrate_pages(struct list_head *l, new_page_t x, unsigned long);
14
Christoph Lameter2d1db3b2006-06-23 02:03:33 -070015extern int fail_migrate_page(struct address_space *,
16 struct page *, struct page *);
Christoph Lameterb20a3502006-03-22 00:09:12 -080017
18extern int migrate_prep(void);
Christoph Lameter7b2259b2006-06-25 05:46:48 -070019extern int migrate_vmas(struct mm_struct *mm,
20 const nodemask_t *from, const nodemask_t *to,
21 unsigned long flags);
Christoph Lameterb20a3502006-03-22 00:09:12 -080022#else
23
24static inline int isolate_lru_page(struct page *p, struct list_head *list)
25 { return -ENOSYS; }
26static inline int putback_lru_pages(struct list_head *l) { return 0; }
Christoph Lameter95a402c2006-06-23 02:03:53 -070027static inline int migrate_pages(struct list_head *l, new_page_t x,
28 unsigned long private) { return -ENOSYS; }
Christoph Lameterb20a3502006-03-22 00:09:12 -080029
Christoph Lameter9bf9e892006-03-31 02:29:56 -080030static inline int migrate_pages_to(struct list_head *pagelist,
31 struct vm_area_struct *vma, int dest) { return 0; }
32
Christoph Lameterb20a3502006-03-22 00:09:12 -080033static inline int migrate_prep(void) { return -ENOSYS; }
34
Christoph Lameter7b2259b2006-06-25 05:46:48 -070035static inline int migrate_vmas(struct mm_struct *mm,
36 const nodemask_t *from, const nodemask_t *to,
37 unsigned long flags)
38{
39 return -ENOSYS;
40}
41
Christoph Lameterb20a3502006-03-22 00:09:12 -080042/* Possible settings for the migrate_page() method in address_operations */
43#define migrate_page NULL
44#define fail_migrate_page NULL
45
46#endif /* CONFIG_MIGRATION */
47#endif /* _LINUX_MIGRATE_H */