]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/migrate.h
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
[net-next-2.6.git] / include / linux / migrate.h
CommitLineData
b20a3503
CL
1#ifndef _LINUX_MIGRATE_H
2#define _LINUX_MIGRATE_H
3
b20a3503 4#include <linux/mm.h>
906e0be1 5#include <linux/mempolicy.h>
b20a3503 6
742755a1 7typedef struct page *new_page_t(struct page *, unsigned long private, int **);
95a402c3 8
906e0be1 9#ifdef CONFIG_MIGRATION
64cdd548
KM
10#define PAGE_MIGRATION 1
11
e13861d8 12extern void putback_lru_pages(struct list_head *l);
2d1db3b1
CL
13extern int migrate_page(struct address_space *,
14 struct page *, struct page *);
62b61f61
HD
15extern int migrate_pages(struct list_head *l, new_page_t x,
16 unsigned long private, int offlining);
95a402c3 17
2d1db3b1
CL
18extern int fail_migrate_page(struct address_space *,
19 struct page *, struct page *);
b20a3503
CL
20
21extern int migrate_prep(void);
748446bb 22extern int migrate_prep_local(void);
7b2259b3
CL
23extern int migrate_vmas(struct mm_struct *mm,
24 const nodemask_t *from, const nodemask_t *to,
25 unsigned long flags);
b20a3503 26#else
64cdd548
KM
27#define PAGE_MIGRATION 0
28
e13861d8 29static inline void putback_lru_pages(struct list_head *l) {}
95a402c3 30static inline int migrate_pages(struct list_head *l, new_page_t x,
62b61f61 31 unsigned long private, int offlining) { return -ENOSYS; }
9bf9e89c 32
b20a3503 33static inline int migrate_prep(void) { return -ENOSYS; }
748446bb 34static inline int migrate_prep_local(void) { return -ENOSYS; }
b20a3503 35
7b2259b3
CL
36static inline int migrate_vmas(struct mm_struct *mm,
37 const nodemask_t *from, const nodemask_t *to,
38 unsigned long flags)
39{
40 return -ENOSYS;
41}
42
b20a3503
CL
43/* Possible settings for the migrate_page() method in address_operations */
44#define migrate_page NULL
45#define fail_migrate_page NULL
46
47#endif /* CONFIG_MIGRATION */
48#endif /* _LINUX_MIGRATE_H */