blob: 75e55dcdeb183bfc76c55fa8ffc05c930bbd49d1 [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 Lameter0dc952d2007-03-05 00:30:33 -08008/* Check if a vma is migratable */
9static inline int vma_migratable(struct vm_area_struct *vma)
10{
11 if (vma->vm_flags & (VM_IO|VM_HUGETLB|VM_PFNMAP|VM_RESERVED))
12 return 0;
13 return 1;
14}
15
Christoph Lameterb20a3502006-03-22 00:09:12 -080016#ifdef CONFIG_MIGRATION
17extern int isolate_lru_page(struct page *p, struct list_head *pagelist);
18extern int putback_lru_pages(struct list_head *l);
Christoph Lameter2d1db3b2006-06-23 02:03:33 -070019extern int migrate_page(struct address_space *,
20 struct page *, struct page *);
Christoph Lameter95a402c2006-06-23 02:03:53 -070021extern int migrate_pages(struct list_head *l, new_page_t x, unsigned long);
22
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);
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);
Christoph Lameterb20a3502006-03-22 00:09:12 -080030#else
31
32static inline int isolate_lru_page(struct page *p, struct list_head *list)
33 { return -ENOSYS; }
34static inline int putback_lru_pages(struct list_head *l) { return 0; }
Christoph Lameter95a402c2006-06-23 02:03:53 -070035static inline int migrate_pages(struct list_head *l, new_page_t x,
36 unsigned long private) { return -ENOSYS; }
Christoph Lameterb20a3502006-03-22 00:09:12 -080037
Christoph Lameter9bf9e892006-03-31 02:29:56 -080038static inline int migrate_pages_to(struct list_head *pagelist,
39 struct vm_area_struct *vma, int dest) { return 0; }
40
Christoph Lameterb20a3502006-03-22 00:09:12 -080041static inline int migrate_prep(void) { return -ENOSYS; }
42
Christoph Lameter7b2259b2006-06-25 05:46:48 -070043static inline int migrate_vmas(struct mm_struct *mm,
44 const nodemask_t *from, const nodemask_t *to,
45 unsigned long flags)
46{
47 return -ENOSYS;
48}
49
Christoph Lameterb20a3502006-03-22 00:09:12 -080050/* Possible settings for the migrate_page() method in address_operations */
51#define migrate_page NULL
52#define fail_migrate_page NULL
53
54#endif /* CONFIG_MIGRATION */
55#endif /* _LINUX_MIGRATE_H */