[PATCH] page migration: handle freeing of pages in migrate_pages()
[safe/jmp/linux-2.6] / include / linux / migrate.h
1 #ifndef _LINUX_MIGRATE_H
2 #define _LINUX_MIGRATE_H
3
4 #include <linux/mm.h>
5
6 #ifdef CONFIG_MIGRATION
7 extern int isolate_lru_page(struct page *p, struct list_head *pagelist);
8 extern int putback_lru_pages(struct list_head *l);
9 extern int migrate_page(struct address_space *,
10                         struct page *, struct page *);
11 extern int migrate_pages(struct list_head *l, struct list_head *t);
12 extern int migrate_pages_to(struct list_head *pagelist,
13                         struct vm_area_struct *vma, int dest);
14 extern int fail_migrate_page(struct address_space *,
15                         struct page *, struct page *);
16
17 extern int migrate_prep(void);
18
19 #else
20
21 static inline int isolate_lru_page(struct page *p, struct list_head *list)
22                                         { return -ENOSYS; }
23 static inline int putback_lru_pages(struct list_head *l) { return 0; }
24 static inline int migrate_pages(struct list_head *l, struct list_head *t)
25                                         { return -ENOSYS; }
26
27 static inline int migrate_pages_to(struct list_head *pagelist,
28                         struct vm_area_struct *vma, int dest) { return 0; }
29
30 static inline int migrate_prep(void) { return -ENOSYS; }
31
32 /* Possible settings for the migrate_page() method in address_operations */
33 #define migrate_page NULL
34 #define fail_migrate_page NULL
35
36 #endif /* CONFIG_MIGRATION */
37 #endif /* _LINUX_MIGRATE_H */