Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 1 | #ifndef _LINUX_MIGRATE_H |
| 2 | #define _LINUX_MIGRATE_H |
| 3 | |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 4 | #include <linux/mm.h> |
Christoph Lameter | 906e0be | 2007-05-06 14:50:20 -0700 | [diff] [blame] | 5 | #include <linux/mempolicy.h> |
| 6 | #include <linux/pagemap.h> |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 7 | |
Christoph Lameter | 742755a | 2006-06-23 02:03:55 -0700 | [diff] [blame] | 8 | typedef struct page *new_page_t(struct page *, unsigned long private, int **); |
Christoph Lameter | 95a402c | 2006-06-23 02:03:53 -0700 | [diff] [blame] | 9 | |
Christoph Lameter | 906e0be | 2007-05-06 14:50:20 -0700 | [diff] [blame] | 10 | #ifdef CONFIG_MIGRATION |
Christoph Lameter | 0dc952d | 2007-03-05 00:30:33 -0800 | [diff] [blame] | 11 | /* Check if a vma is migratable */ |
| 12 | static inline int vma_migratable(struct vm_area_struct *vma) |
| 13 | { |
| 14 | if (vma->vm_flags & (VM_IO|VM_HUGETLB|VM_PFNMAP|VM_RESERVED)) |
| 15 | return 0; |
Christoph Lameter | 906e0be | 2007-05-06 14:50:20 -0700 | [diff] [blame] | 16 | /* |
| 17 | * Migration allocates pages in the highest zone. If we cannot |
| 18 | * do so then migration (at least from node to node) is not |
| 19 | * possible. |
| 20 | */ |
| 21 | if (vma->vm_file && |
| 22 | gfp_zone(mapping_gfp_mask(vma->vm_file->f_mapping)) |
| 23 | < policy_zone) |
| 24 | return 0; |
Christoph Lameter | 0dc952d | 2007-03-05 00:30:33 -0800 | [diff] [blame] | 25 | return 1; |
| 26 | } |
| 27 | |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 28 | extern int isolate_lru_page(struct page *p, struct list_head *pagelist); |
| 29 | extern int putback_lru_pages(struct list_head *l); |
Christoph Lameter | 2d1db3b | 2006-06-23 02:03:33 -0700 | [diff] [blame] | 30 | extern int migrate_page(struct address_space *, |
| 31 | struct page *, struct page *); |
Christoph Lameter | 95a402c | 2006-06-23 02:03:53 -0700 | [diff] [blame] | 32 | extern int migrate_pages(struct list_head *l, new_page_t x, unsigned long); |
| 33 | |
Christoph Lameter | 2d1db3b | 2006-06-23 02:03:33 -0700 | [diff] [blame] | 34 | extern int fail_migrate_page(struct address_space *, |
| 35 | struct page *, struct page *); |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 36 | |
| 37 | extern int migrate_prep(void); |
Christoph Lameter | 7b2259b | 2006-06-25 05:46:48 -0700 | [diff] [blame] | 38 | extern int migrate_vmas(struct mm_struct *mm, |
| 39 | const nodemask_t *from, const nodemask_t *to, |
| 40 | unsigned long flags); |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 41 | #else |
Christoph Lameter | 906e0be | 2007-05-06 14:50:20 -0700 | [diff] [blame] | 42 | static inline int vma_migratable(struct vm_area_struct *vma) |
| 43 | { return 0; } |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 44 | |
| 45 | static inline int isolate_lru_page(struct page *p, struct list_head *list) |
| 46 | { return -ENOSYS; } |
| 47 | static inline int putback_lru_pages(struct list_head *l) { return 0; } |
Christoph Lameter | 95a402c | 2006-06-23 02:03:53 -0700 | [diff] [blame] | 48 | static inline int migrate_pages(struct list_head *l, new_page_t x, |
| 49 | unsigned long private) { return -ENOSYS; } |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 50 | |
Christoph Lameter | 9bf9e89 | 2006-03-31 02:29:56 -0800 | [diff] [blame] | 51 | static inline int migrate_pages_to(struct list_head *pagelist, |
| 52 | struct vm_area_struct *vma, int dest) { return 0; } |
| 53 | |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 54 | static inline int migrate_prep(void) { return -ENOSYS; } |
| 55 | |
Christoph Lameter | 7b2259b | 2006-06-25 05:46:48 -0700 | [diff] [blame] | 56 | static inline int migrate_vmas(struct mm_struct *mm, |
| 57 | const nodemask_t *from, const nodemask_t *to, |
| 58 | unsigned long flags) |
| 59 | { |
| 60 | return -ENOSYS; |
| 61 | } |
| 62 | |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 63 | /* Possible settings for the migrate_page() method in address_operations */ |
| 64 | #define migrate_page NULL |
| 65 | #define fail_migrate_page NULL |
| 66 | |
| 67 | #endif /* CONFIG_MIGRATION */ |
| 68 | #endif /* _LINUX_MIGRATE_H */ |