mm/migrate: remove putback_lru_pages, fix comment on putback_movable_pages
[deliverable/linux.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
78bd5209
RA
10/*
11 * Return values from addresss_space_operations.migratepage():
12 * - negative errno on page migration failure;
13 * - zero on page migration success;
18468d93
RA
14 *
15 * The balloon page migration introduces this special case where a 'distinct'
16 * return code is used to flag a successful page migration to unmap_and_move().
17 * This approach is necessary because page migration can race against balloon
18 * deflation procedure, and for such case we could introduce a nasty page leak
19 * if a successfully migrated balloon page gets released concurrently with
20 * migration's unmap_and_move() wrap-up steps.
78bd5209
RA
21 */
22#define MIGRATEPAGE_SUCCESS 0
18468d93
RA
23#define MIGRATEPAGE_BALLOON_SUCCESS 1 /* special ret code for balloon page
24 * sucessful migration case.
25 */
7b2a2d4a
MG
26enum migrate_reason {
27 MR_COMPACTION,
28 MR_MEMORY_FAILURE,
29 MR_MEMORY_HOTPLUG,
30 MR_SYSCALL, /* also applies to cpusets */
31 MR_MEMPOLICY_MBIND,
7039e1db 32 MR_NUMA_MISPLACED,
7b2a2d4a
MG
33 MR_CMA
34};
78bd5209 35
906e0be1 36#ifdef CONFIG_MIGRATION
64cdd548 37
5733c7d1 38extern void putback_movable_pages(struct list_head *l);
2d1db3b1 39extern int migrate_page(struct address_space *,
a6bc32b8 40 struct page *, struct page *, enum migrate_mode);
62b61f61 41extern int migrate_pages(struct list_head *l, new_page_t x,
9c620e2b 42 unsigned long private, enum migrate_mode mode, int reason);
95a402c3 43
2d1db3b1
CL
44extern int fail_migrate_page(struct address_space *,
45 struct page *, struct page *);
b20a3503
CL
46
47extern int migrate_prep(void);
748446bb 48extern int migrate_prep_local(void);
7b2259b3
CL
49extern int migrate_vmas(struct mm_struct *mm,
50 const nodemask_t *from, const nodemask_t *to,
51 unsigned long flags);
290408d4
NH
52extern void migrate_page_copy(struct page *newpage, struct page *page);
53extern int migrate_huge_page_move_mapping(struct address_space *mapping,
54 struct page *newpage, struct page *page);
36bc08cc
GZ
55extern int migrate_page_move_mapping(struct address_space *mapping,
56 struct page *newpage, struct page *page,
8e321fef
BL
57 struct buffer_head *head, enum migrate_mode mode,
58 int extra_count);
b20a3503 59#else
64cdd548 60
5733c7d1 61static inline void putback_movable_pages(struct list_head *l) {}
95a402c3 62static inline int migrate_pages(struct list_head *l, new_page_t x,
9c620e2b
HD
63 unsigned long private, enum migrate_mode mode, int reason)
64 { return -ENOSYS; }
9bf9e89c 65
b20a3503 66static inline int migrate_prep(void) { return -ENOSYS; }
748446bb 67static inline int migrate_prep_local(void) { return -ENOSYS; }
b20a3503 68
7b2259b3
CL
69static inline int migrate_vmas(struct mm_struct *mm,
70 const nodemask_t *from, const nodemask_t *to,
71 unsigned long flags)
72{
73 return -ENOSYS;
74}
75
290408d4
NH
76static inline void migrate_page_copy(struct page *newpage,
77 struct page *page) {}
78
6f39ce05 79static inline int migrate_huge_page_move_mapping(struct address_space *mapping,
290408d4
NH
80 struct page *newpage, struct page *page)
81{
82 return -ENOSYS;
83}
84
b20a3503
CL
85/* Possible settings for the migrate_page() method in address_operations */
86#define migrate_page NULL
87#define fail_migrate_page NULL
88
89#endif /* CONFIG_MIGRATION */
7039e1db
PZ
90
91#ifdef CONFIG_NUMA_BALANCING
de466bd6
MG
92extern bool pmd_trans_migrating(pmd_t pmd);
93extern void wait_migrate_huge_page(struct anon_vma *anon_vma, pmd_t *pmd);
1bc115d8
MG
94extern int migrate_misplaced_page(struct page *page,
95 struct vm_area_struct *vma, int node);
e14808b4 96extern bool migrate_ratelimited(int node);
7039e1db 97#else
de466bd6
MG
98static inline bool pmd_trans_migrating(pmd_t pmd)
99{
100 return false;
101}
102static inline void wait_migrate_huge_page(struct anon_vma *anon_vma, pmd_t *pmd)
103{
104}
1bc115d8
MG
105static inline int migrate_misplaced_page(struct page *page,
106 struct vm_area_struct *vma, int node)
7039e1db
PZ
107{
108 return -EAGAIN; /* can't migrate now */
109}
e14808b4
MG
110static inline bool migrate_ratelimited(int node)
111{
112 return false;
113}
220018d3 114#endif /* CONFIG_NUMA_BALANCING */
b32967ff 115
220018d3
MG
116#if defined(CONFIG_NUMA_BALANCING) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
117extern int migrate_misplaced_transhuge_page(struct mm_struct *mm,
118 struct vm_area_struct *vma,
119 pmd_t *pmd, pmd_t entry,
120 unsigned long address,
121 struct page *page, int node);
122#else
b32967ff
MG
123static inline int migrate_misplaced_transhuge_page(struct mm_struct *mm,
124 struct vm_area_struct *vma,
125 pmd_t *pmd, pmd_t entry,
126 unsigned long address,
127 struct page *page, int node)
128{
129 return -EAGAIN;
130}
220018d3 131#endif /* CONFIG_NUMA_BALANCING && CONFIG_TRANSPARENT_HUGEPAGE*/
7039e1db 132
b20a3503 133#endif /* _LINUX_MIGRATE_H */
This page took 0.938368 seconds and 5 git commands to generate.