Files
linux-apfs/include/linux/migrate.h
T

68 lines
2.1 KiB
C
Raw Normal View History

2006-03-22 00:09:12 -08:00
#ifndef _LINUX_MIGRATE_H
#define _LINUX_MIGRATE_H
#include <linux/mm.h>
#include <linux/mempolicy.h>
#include <linux/migrate_mode.h>
2006-03-22 00:09:12 -08:00
typedef struct page *new_page_t(struct page *, unsigned long private, int **);
#ifdef CONFIG_MIGRATION
2009-01-06 14:39:16 -08:00
extern void putback_lru_pages(struct list_head *l);
extern int migrate_page(struct address_space *,
struct page *, struct page *, enum migrate_mode);
2009-12-14 17:59:33 -08:00
extern int migrate_pages(struct list_head *l, new_page_t x,
unsigned long private, bool offlining,
enum migrate_mode mode);
2012-07-31 16:42:06 -07:00
extern int migrate_huge_page(struct page *, new_page_t x,
unsigned long private, bool offlining,
enum migrate_mode mode);
extern int fail_migrate_page(struct address_space *,
struct page *, struct page *);
2006-03-22 00:09:12 -08:00
extern int migrate_prep(void);
2010-05-24 14:32:27 -07:00
extern int migrate_prep_local(void);
extern int migrate_vmas(struct mm_struct *mm,
const nodemask_t *from, const nodemask_t *to,
unsigned long flags);
2010-09-08 10:19:35 +09:00
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);
2006-03-22 00:09:12 -08:00
#else
2009-01-06 14:39:16 -08:00
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,
enum migrate_mode mode) { return -ENOSYS; }
2012-07-31 16:42:06 -07:00
static inline int migrate_huge_page(struct page *page, new_page_t x,
unsigned long private, bool offlining,
enum migrate_mode mode) { return -ENOSYS; }
2006-03-22 00:09:12 -08:00
static inline int migrate_prep(void) { return -ENOSYS; }
2010-05-24 14:32:27 -07:00
static inline int migrate_prep_local(void) { return -ENOSYS; }
2006-03-22 00:09:12 -08:00
static inline int migrate_vmas(struct mm_struct *mm,
const nodemask_t *from, const nodemask_t *to,
unsigned long flags)
{
return -ENOSYS;
}
2010-09-08 10:19:35 +09:00
static inline void migrate_page_copy(struct page *newpage,
struct page *page) {}
2010-09-30 11:54:51 +09:00
static inline int migrate_huge_page_move_mapping(struct address_space *mapping,
2010-09-08 10:19:35 +09:00
struct page *newpage, struct page *page)
{
return -ENOSYS;
}
2006-03-22 00:09:12 -08:00
/* 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 */