]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/migrate.h
virtio_balloon: introduce migration primitives to balloon pages
[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
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 */
78bd5209 26
906e0be1 27#ifdef CONFIG_MIGRATION
64cdd548 28
e13861d8 29extern void putback_lru_pages(struct list_head *l);
2d1db3b1 30extern int migrate_page(struct address_space *,
a6bc32b8 31 struct page *, struct page *, enum migrate_mode);
62b61f61 32extern int migrate_pages(struct list_head *l, new_page_t x,
7f0f2496 33 unsigned long private, bool offlining,
a6bc32b8 34 enum migrate_mode mode);
189ebff2 35extern int migrate_huge_page(struct page *, new_page_t x,
7f0f2496 36 unsigned long private, bool offlining,
a6bc32b8 37 enum migrate_mode mode);
95a402c3 38
2d1db3b1
CL
39extern int fail_migrate_page(struct address_space *,
40 struct page *, struct page *);
b20a3503
CL
41
42extern int migrate_prep(void);
748446bb 43extern int migrate_prep_local(void);
7b2259b3
CL
44extern int migrate_vmas(struct mm_struct *mm,
45 const nodemask_t *from, const nodemask_t *to,
46 unsigned long flags);
290408d4
NH
47extern void migrate_page_copy(struct page *newpage, struct page *page);
48extern int migrate_huge_page_move_mapping(struct address_space *mapping,
49 struct page *newpage, struct page *page);
b20a3503 50#else
64cdd548 51
e13861d8 52static inline void putback_lru_pages(struct list_head *l) {}
95a402c3 53static inline int migrate_pages(struct list_head *l, new_page_t x,
7f0f2496 54 unsigned long private, bool offlining,
a6bc32b8 55 enum migrate_mode mode) { return -ENOSYS; }
189ebff2 56static inline int migrate_huge_page(struct page *page, new_page_t x,
7f0f2496 57 unsigned long private, bool offlining,
a6bc32b8 58 enum migrate_mode mode) { return -ENOSYS; }
9bf9e89c 59
b20a3503 60static inline int migrate_prep(void) { return -ENOSYS; }
748446bb 61static inline int migrate_prep_local(void) { return -ENOSYS; }
b20a3503 62
7b2259b3
CL
63static inline int migrate_vmas(struct mm_struct *mm,
64 const nodemask_t *from, const nodemask_t *to,
65 unsigned long flags)
66{
67 return -ENOSYS;
68}
69
290408d4
NH
70static inline void migrate_page_copy(struct page *newpage,
71 struct page *page) {}
72
6f39ce05 73static inline int migrate_huge_page_move_mapping(struct address_space *mapping,
290408d4
NH
74 struct page *newpage, struct page *page)
75{
76 return -ENOSYS;
77}
78
b20a3503
CL
79/* Possible settings for the migrate_page() method in address_operations */
80#define migrate_page NULL
81#define fail_migrate_page NULL
82
83#endif /* CONFIG_MIGRATION */
84#endif /* _LINUX_MIGRATE_H */