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

126 lines
4.0 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 **);
/*
* Return values from addresss_space_operations.migratepage():
* - negative errno on page migration failure;
* - zero on page migration success;
*
* 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.
*/
#define MIGRATEPAGE_SUCCESS 0
#define MIGRATEPAGE_BALLOON_SUCCESS 1 /* special ret code for balloon page
* sucessful migration case.
*/
enum migrate_reason {
MR_COMPACTION,
MR_MEMORY_FAILURE,
MR_MEMORY_HOTPLUG,
MR_SYSCALL, /* also applies to cpusets */
MR_MEMPOLICY_MBIND,
MR_NUMA_MISPLACED,
MR_CMA
};
#ifdef CONFIG_MIGRATION
2009-01-06 14:39:16 -08:00
extern void putback_lru_pages(struct list_head *l);
2012-12-11 16:02:47 -08:00
extern void putback_movable_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,
2013-02-22 16:35:14 -08:00
unsigned long private, enum migrate_mode mode, int reason);
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);
extern int migrate_page_move_mapping(struct address_space *mapping,
struct page *newpage, struct page *page,
struct buffer_head *head, enum migrate_mode mode);
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) {}
2012-12-11 16:02:47 -08:00
static inline void putback_movable_pages(struct list_head *l) {}
static inline int migrate_pages(struct list_head *l, new_page_t x,
2013-02-22 16:35:14 -08:00
unsigned long private, enum migrate_mode mode, int reason)
{ 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 */
#ifdef CONFIG_NUMA_BALANCING
extern int migrate_misplaced_page(struct page *page,
struct vm_area_struct *vma, int node);
extern bool migrate_ratelimited(int node);
#else
static inline int migrate_misplaced_page(struct page *page,
struct vm_area_struct *vma, int node)
{
return -EAGAIN; /* can't migrate now */
}
static inline bool migrate_ratelimited(int node)
{
return false;
}
#endif /* CONFIG_NUMA_BALANCING */
#if defined(CONFIG_NUMA_BALANCING) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
extern int migrate_misplaced_transhuge_page(struct mm_struct *mm,
struct vm_area_struct *vma,
pmd_t *pmd, pmd_t entry,
unsigned long address,
struct page *page, int node);
#else
static inline int migrate_misplaced_transhuge_page(struct mm_struct *mm,
struct vm_area_struct *vma,
pmd_t *pmd, pmd_t entry,
unsigned long address,
struct page *page, int node)
{
return -EAGAIN;
}
#endif /* CONFIG_NUMA_BALANCING && CONFIG_TRANSPARENT_HUGEPAGE*/
2006-03-22 00:09:12 -08:00
#endif /* _LINUX_MIGRATE_H */