migrate.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #ifndef _LINUX_MIGRATE_H
  2. #define _LINUX_MIGRATE_H
  3. #include <linux/config.h>
  4. #include <linux/mm.h>
  5. #ifdef CONFIG_MIGRATION
  6. extern int isolate_lru_page(struct page *p, struct list_head *pagelist);
  7. extern int putback_lru_pages(struct list_head *l);
  8. extern int migrate_page(struct page *, struct page *);
  9. extern void migrate_page_copy(struct page *, struct page *);
  10. extern int migrate_page_remove_references(struct page *, struct page *, int);
  11. extern int migrate_pages(struct list_head *l, struct list_head *t,
  12. struct list_head *moved, struct list_head *failed);
  13. extern int migrate_pages_to(struct list_head *pagelist,
  14. struct vm_area_struct *vma, int dest);
  15. extern int fail_migrate_page(struct page *, struct page *);
  16. extern int migrate_prep(void);
  17. #else
  18. static inline int isolate_lru_page(struct page *p, struct list_head *list)
  19. { return -ENOSYS; }
  20. static inline int putback_lru_pages(struct list_head *l) { return 0; }
  21. static inline int migrate_pages(struct list_head *l, struct list_head *t,
  22. struct list_head *moved, struct list_head *failed) { return -ENOSYS; }
  23. static inline int migrate_pages_to(struct list_head *pagelist,
  24. struct vm_area_struct *vma, int dest) { return 0; }
  25. static inline int migrate_prep(void) { return -ENOSYS; }
  26. /* Possible settings for the migrate_page() method in address_operations */
  27. #define migrate_page NULL
  28. #define fail_migrate_page NULL
  29. #endif /* CONFIG_MIGRATION */
  30. #endif /* _LINUX_MIGRATE_H */