]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/migrate.h
xfrm: fix policy unreferencing on larval drop
[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>
b20a3503 6
742755a1 7typedef struct page *new_page_t(struct page *, unsigned long private, int **);
95a402c3 8
906e0be1 9#ifdef CONFIG_MIGRATION
64cdd548
KM
10#define PAGE_MIGRATION 1
11
b20a3503 12extern int putback_lru_pages(struct list_head *l);
2d1db3b1
CL
13extern int migrate_page(struct address_space *,
14 struct page *, struct page *);
62b61f61
HD
15extern int migrate_pages(struct list_head *l, new_page_t x,
16 unsigned long private, int offlining);
95a402c3 17
2d1db3b1
CL
18extern int fail_migrate_page(struct address_space *,
19 struct page *, struct page *);
b20a3503
CL
20
21extern int migrate_prep(void);
7b2259b3
CL
22extern int migrate_vmas(struct mm_struct *mm,
23 const nodemask_t *from, const nodemask_t *to,
24 unsigned long flags);
b20a3503 25#else
64cdd548
KM
26#define PAGE_MIGRATION 0
27
b20a3503 28static inline int putback_lru_pages(struct list_head *l) { return 0; }
95a402c3 29static inline int migrate_pages(struct list_head *l, new_page_t x,
62b61f61 30 unsigned long private, int offlining) { return -ENOSYS; }
9bf9e89c 31
b20a3503
CL
32static inline int migrate_prep(void) { return -ENOSYS; }
33
7b2259b3
CL
34static inline int migrate_vmas(struct mm_struct *mm,
35 const nodemask_t *from, const nodemask_t *to,
36 unsigned long flags)
37{
38 return -ENOSYS;
39}
40
b20a3503
CL
41/* Possible settings for the migrate_page() method in address_operations */
42#define migrate_page NULL
43#define fail_migrate_page NULL
44
45#endif /* CONFIG_MIGRATION */
46#endif /* _LINUX_MIGRATE_H */