migrate.h 3.0 KB
Newer Older
C
Christoph Lameter 已提交
1 2 3 4
#ifndef _LINUX_MIGRATE_H
#define _LINUX_MIGRATE_H

#include <linux/mm.h>
5
#include <linux/mempolicy.h>
6
#include <linux/migrate_mode.h>
C
Christoph Lameter 已提交
7

8
typedef struct page *new_page_t(struct page *, unsigned long private, int **);
9

10 11 12 13
/*
 * Return values from addresss_space_operations.migratepage():
 * - negative errno on page migration failure;
 * - zero on page migration success;
14 15 16 17 18 19 20
 *
 * The balloon page migration introduces this special case where a 'distinct'
 * return code is used to flag a successful page migration to unmap_and_move().
 * This approach is necessary because page migration can race against balloon
 * deflation procedure, and for such case we could introduce a nasty page leak
 * if a successfully migrated balloon page gets released concurrently with
 * migration's unmap_and_move() wrap-up steps.
21 22
 */
#define MIGRATEPAGE_SUCCESS		0
23 24 25
#define MIGRATEPAGE_BALLOON_SUCCESS	1 /* special ret code for balloon page
					   * sucessful migration case.
					   */
26

27
#ifdef CONFIG_MIGRATION
28

29
extern void putback_lru_pages(struct list_head *l);
30
extern void putback_movable_pages(struct list_head *l);
31
extern int migrate_page(struct address_space *,
32
			struct page *, struct page *, enum migrate_mode);
33
extern int migrate_pages(struct list_head *l, new_page_t x,
34
			unsigned long private, bool offlining,
35
			enum migrate_mode mode);
36
extern int migrate_huge_page(struct page *, new_page_t x,
37
			unsigned long private, bool offlining,
38
			enum migrate_mode mode);
39

40 41
extern int fail_migrate_page(struct address_space *,
			struct page *, struct page *);
C
Christoph Lameter 已提交
42 43

extern int migrate_prep(void);
44
extern int migrate_prep_local(void);
45 46 47
extern int migrate_vmas(struct mm_struct *mm,
		const nodemask_t *from, const nodemask_t *to,
		unsigned long flags);
N
Naoya Horiguchi 已提交
48 49 50
extern void migrate_page_copy(struct page *newpage, struct page *page);
extern int migrate_huge_page_move_mapping(struct address_space *mapping,
				  struct page *newpage, struct page *page);
C
Christoph Lameter 已提交
51
#else
52

53
static inline void putback_lru_pages(struct list_head *l) {}
54
static inline void putback_movable_pages(struct list_head *l) {}
55
static inline int migrate_pages(struct list_head *l, new_page_t x,
56
		unsigned long private, bool offlining,
57
		enum migrate_mode mode) { return -ENOSYS; }
58
static inline int migrate_huge_page(struct page *page, new_page_t x,
59
		unsigned long private, bool offlining,
60
		enum migrate_mode mode) { return -ENOSYS; }
61

C
Christoph Lameter 已提交
62
static inline int migrate_prep(void) { return -ENOSYS; }
63
static inline int migrate_prep_local(void) { return -ENOSYS; }
C
Christoph Lameter 已提交
64

65 66 67 68 69 70 71
static inline int migrate_vmas(struct mm_struct *mm,
		const nodemask_t *from, const nodemask_t *to,
		unsigned long flags)
{
	return -ENOSYS;
}

N
Naoya Horiguchi 已提交
72 73 74
static inline void migrate_page_copy(struct page *newpage,
				     struct page *page) {}

75
static inline int migrate_huge_page_move_mapping(struct address_space *mapping,
N
Naoya Horiguchi 已提交
76 77 78 79 80
				  struct page *newpage, struct page *page)
{
	return -ENOSYS;
}

C
Christoph Lameter 已提交
81 82 83 84 85 86
/* Possible settings for the migrate_page() method in address_operations */
#define migrate_page NULL
#define fail_migrate_page NULL

#endif /* CONFIG_MIGRATION */
#endif /* _LINUX_MIGRATE_H */