migrate.h 2.1 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>
C
Christoph Lameter 已提交
6

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

9
#ifdef CONFIG_MIGRATION
10 11
#define PAGE_MIGRATION 1

12
extern void putback_lru_pages(struct list_head *l);
13
extern int migrate_page(struct address_space *,
14
			struct page *, struct page *, bool);
15
extern int migrate_pages(struct list_head *l, new_page_t x,
16
			unsigned long private, bool offlining,
17
			bool sync);
N
Naoya Horiguchi 已提交
18
extern int migrate_huge_pages(struct list_head *l, new_page_t x,
19
			unsigned long private, bool offlining,
20
			bool sync);
21

22 23
extern int fail_migrate_page(struct address_space *,
			struct page *, struct page *);
C
Christoph Lameter 已提交
24 25

extern int migrate_prep(void);
26
extern int migrate_prep_local(void);
27 28 29
extern int migrate_vmas(struct mm_struct *mm,
		const nodemask_t *from, const nodemask_t *to,
		unsigned long flags);
N
Naoya Horiguchi 已提交
30 31 32
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 已提交
33
#else
34 35
#define PAGE_MIGRATION 0

36
static inline void putback_lru_pages(struct list_head *l) {}
37
static inline int migrate_pages(struct list_head *l, new_page_t x,
38
		unsigned long private, bool offlining,
39
		bool sync) { return -ENOSYS; }
N
Naoya Horiguchi 已提交
40
static inline int migrate_huge_pages(struct list_head *l, new_page_t x,
41
		unsigned long private, bool offlining,
42
		bool sync) { return -ENOSYS; }
43

C
Christoph Lameter 已提交
44
static inline int migrate_prep(void) { return -ENOSYS; }
45
static inline int migrate_prep_local(void) { return -ENOSYS; }
C
Christoph Lameter 已提交
46

47 48 49 50 51 52 53
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 已提交
54 55 56
static inline void migrate_page_copy(struct page *newpage,
				     struct page *page) {}

57
static inline int migrate_huge_page_move_mapping(struct address_space *mapping,
N
Naoya Horiguchi 已提交
58 59 60 61 62
				  struct page *newpage, struct page *page)
{
	return -ENOSYS;
}

C
Christoph Lameter 已提交
63 64 65 66 67 68
/* 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 */