]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/migrate.h
mm: replace PAGE_MIGRATION with IS_ENABLED(CONFIG_MIGRATION)
[mirror_ubuntu-artful-kernel.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>
6536e312 6#include <linux/migrate_mode.h>
b20a3503 7
742755a1 8typedef struct page *new_page_t(struct page *, unsigned long private, int **);
95a402c3 9
906e0be1 10#ifdef CONFIG_MIGRATION
64cdd548 11
e13861d8 12extern void putback_lru_pages(struct list_head *l);
2d1db3b1 13extern int migrate_page(struct address_space *,
a6bc32b8 14 struct page *, struct page *, enum migrate_mode);
62b61f61 15extern int migrate_pages(struct list_head *l, new_page_t x,
7f0f2496 16 unsigned long private, bool offlining,
a6bc32b8 17 enum migrate_mode mode);
290408d4 18extern int migrate_huge_pages(struct list_head *l, new_page_t x,
7f0f2496 19 unsigned long private, bool offlining,
a6bc32b8 20 enum migrate_mode mode);
95a402c3 21
2d1db3b1
CL
22extern int fail_migrate_page(struct address_space *,
23 struct page *, struct page *);
b20a3503
CL
24
25extern int migrate_prep(void);
748446bb 26extern int migrate_prep_local(void);
7b2259b3
CL
27extern int migrate_vmas(struct mm_struct *mm,
28 const nodemask_t *from, const nodemask_t *to,
29 unsigned long flags);
290408d4
NH
30extern void migrate_page_copy(struct page *newpage, struct page *page);
31extern int migrate_huge_page_move_mapping(struct address_space *mapping,
32 struct page *newpage, struct page *page);
b20a3503 33#else
64cdd548 34
e13861d8 35static inline void putback_lru_pages(struct list_head *l) {}
95a402c3 36static inline int migrate_pages(struct list_head *l, new_page_t x,
7f0f2496 37 unsigned long private, bool offlining,
a6bc32b8 38 enum migrate_mode mode) { return -ENOSYS; }
290408d4 39static inline int migrate_huge_pages(struct list_head *l, new_page_t x,
7f0f2496 40 unsigned long private, bool offlining,
a6bc32b8 41 enum migrate_mode mode) { return -ENOSYS; }
9bf9e89c 42
b20a3503 43static inline int migrate_prep(void) { return -ENOSYS; }
748446bb 44static inline int migrate_prep_local(void) { return -ENOSYS; }
b20a3503 45
7b2259b3
CL
46static inline int migrate_vmas(struct mm_struct *mm,
47 const nodemask_t *from, const nodemask_t *to,
48 unsigned long flags)
49{
50 return -ENOSYS;
51}
52
290408d4
NH
53static inline void migrate_page_copy(struct page *newpage,
54 struct page *page) {}
55
6f39ce05 56static inline int migrate_huge_page_move_mapping(struct address_space *mapping,
290408d4
NH
57 struct page *newpage, struct page *page)
58{
59 return -ENOSYS;
60}
61
b20a3503
CL
62/* Possible settings for the migrate_page() method in address_operations */
63#define migrate_page NULL
64#define fail_migrate_page NULL
65
66#endif /* CONFIG_MIGRATION */
67#endif /* _LINUX_MIGRATE_H */