diff options
Diffstat (limited to 'include/linux/migrate.h')
| -rw-r--r-- | include/linux/migrate.h | 11 | 
1 files changed, 6 insertions, 5 deletions
diff --git a/include/linux/migrate.h b/include/linux/migrate.h index e39aeecfe9a..05ed2828a55 100644 --- a/include/linux/migrate.h +++ b/include/linux/migrate.h @@ -3,6 +3,7 @@  #include <linux/mm.h>  #include <linux/mempolicy.h> +#include <linux/migrate_mode.h>  typedef struct page *new_page_t(struct page *, unsigned long private, int **); @@ -11,13 +12,13 @@ typedef struct page *new_page_t(struct page *, unsigned long private, int **);  extern void putback_lru_pages(struct list_head *l);  extern int migrate_page(struct address_space *, -			struct page *, struct page *); +			struct page *, struct page *, enum migrate_mode);  extern int migrate_pages(struct list_head *l, new_page_t x,  			unsigned long private, bool offlining, -			bool sync); +			enum migrate_mode mode);  extern int migrate_huge_pages(struct list_head *l, new_page_t x,  			unsigned long private, bool offlining, -			bool sync); +			enum migrate_mode mode);  extern int fail_migrate_page(struct address_space *,  			struct page *, struct page *); @@ -36,10 +37,10 @@ extern int migrate_huge_page_move_mapping(struct address_space *mapping,  static inline void putback_lru_pages(struct list_head *l) {}  static inline int migrate_pages(struct list_head *l, new_page_t x,  		unsigned long private, bool offlining, -		bool sync) { return -ENOSYS; } +		enum migrate_mode mode) { return -ENOSYS; }  static inline int migrate_huge_pages(struct list_head *l, new_page_t x,  		unsigned long private, bool offlining, -		bool sync) { return -ENOSYS; } +		enum migrate_mode mode) { return -ENOSYS; }  static inline int migrate_prep(void) { return -ENOSYS; }  static inline int migrate_prep_local(void) { return -ENOSYS; }  |