diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/fs.h | 6 | ||||
| -rw-r--r-- | include/linux/migrate.h | 23 |
2 files changed, 22 insertions, 7 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index b92b73d0b2b9..e694bd4434a4 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
| @@ -525,6 +525,7 @@ enum positive_aop_returns { | |||
| 525 | struct page; | 525 | struct page; |
| 526 | struct address_space; | 526 | struct address_space; |
| 527 | struct writeback_control; | 527 | struct writeback_control; |
| 528 | enum migrate_mode; | ||
| 528 | 529 | ||
| 529 | struct iov_iter { | 530 | struct iov_iter { |
| 530 | const struct iovec *iov; | 531 | const struct iovec *iov; |
| @@ -614,7 +615,7 @@ struct address_space_operations { | |||
| 614 | * is false, it must not block. | 615 | * is false, it must not block. |
| 615 | */ | 616 | */ |
| 616 | int (*migratepage) (struct address_space *, | 617 | int (*migratepage) (struct address_space *, |
| 617 | struct page *, struct page *, bool); | 618 | struct page *, struct page *, enum migrate_mode); |
| 618 | int (*launder_page) (struct page *); | 619 | int (*launder_page) (struct page *); |
| 619 | int (*is_partially_uptodate) (struct page *, read_descriptor_t *, | 620 | int (*is_partially_uptodate) (struct page *, read_descriptor_t *, |
| 620 | unsigned long); | 621 | unsigned long); |
| @@ -2540,7 +2541,8 @@ extern int generic_check_addressable(unsigned, u64); | |||
| 2540 | 2541 | ||
| 2541 | #ifdef CONFIG_MIGRATION | 2542 | #ifdef CONFIG_MIGRATION |
| 2542 | extern int buffer_migrate_page(struct address_space *, | 2543 | extern int buffer_migrate_page(struct address_space *, |
| 2543 | struct page *, struct page *, bool); | 2544 | struct page *, struct page *, |
| 2545 | enum migrate_mode); | ||
| 2544 | #else | 2546 | #else |
| 2545 | #define buffer_migrate_page NULL | 2547 | #define buffer_migrate_page NULL |
| 2546 | #endif | 2548 | #endif |
diff --git a/include/linux/migrate.h b/include/linux/migrate.h index 14e6d2a88475..eaf867412f7a 100644 --- a/include/linux/migrate.h +++ b/include/linux/migrate.h | |||
| @@ -6,18 +6,31 @@ | |||
| 6 | 6 | ||
| 7 | typedef struct page *new_page_t(struct page *, unsigned long private, int **); | 7 | typedef struct page *new_page_t(struct page *, unsigned long private, int **); |
| 8 | 8 | ||
| 9 | /* | ||
| 10 | * MIGRATE_ASYNC means never block | ||
| 11 | * MIGRATE_SYNC_LIGHT in the current implementation means to allow blocking | ||
| 12 | * on most operations but not ->writepage as the potential stall time | ||
| 13 | * is too significant | ||
| 14 | * MIGRATE_SYNC will block when migrating pages | ||
| 15 | */ | ||
| 16 | enum migrate_mode { | ||
| 17 | MIGRATE_ASYNC, | ||
| 18 | MIGRATE_SYNC_LIGHT, | ||
| 19 | MIGRATE_SYNC, | ||
| 20 | }; | ||
| 21 | |||
| 9 | #ifdef CONFIG_MIGRATION | 22 | #ifdef CONFIG_MIGRATION |
| 10 | #define PAGE_MIGRATION 1 | 23 | #define PAGE_MIGRATION 1 |
| 11 | 24 | ||
| 12 | extern void putback_lru_pages(struct list_head *l); | 25 | extern void putback_lru_pages(struct list_head *l); |
| 13 | extern int migrate_page(struct address_space *, | 26 | extern int migrate_page(struct address_space *, |
| 14 | struct page *, struct page *, bool); | 27 | struct page *, struct page *, enum migrate_mode); |
| 15 | extern int migrate_pages(struct list_head *l, new_page_t x, | 28 | extern int migrate_pages(struct list_head *l, new_page_t x, |
| 16 | unsigned long private, bool offlining, | 29 | unsigned long private, bool offlining, |
| 17 | bool sync); | 30 | enum migrate_mode mode); |
| 18 | extern int migrate_huge_pages(struct list_head *l, new_page_t x, | 31 | extern int migrate_huge_pages(struct list_head *l, new_page_t x, |
| 19 | unsigned long private, bool offlining, | 32 | unsigned long private, bool offlining, |
| 20 | bool sync); | 33 | enum migrate_mode mode); |
| 21 | 34 | ||
| 22 | extern int fail_migrate_page(struct address_space *, | 35 | extern int fail_migrate_page(struct address_space *, |
| 23 | struct page *, struct page *); | 36 | struct page *, struct page *); |
| @@ -36,10 +49,10 @@ extern int migrate_huge_page_move_mapping(struct address_space *mapping, | |||
| 36 | static inline void putback_lru_pages(struct list_head *l) {} | 49 | static inline void putback_lru_pages(struct list_head *l) {} |
| 37 | static inline int migrate_pages(struct list_head *l, new_page_t x, | 50 | static inline int migrate_pages(struct list_head *l, new_page_t x, |
| 38 | unsigned long private, bool offlining, | 51 | unsigned long private, bool offlining, |
| 39 | bool sync) { return -ENOSYS; } | 52 | enum migrate_mode mode) { return -ENOSYS; } |
| 40 | static inline int migrate_huge_pages(struct list_head *l, new_page_t x, | 53 | static inline int migrate_huge_pages(struct list_head *l, new_page_t x, |
| 41 | unsigned long private, bool offlining, | 54 | unsigned long private, bool offlining, |
| 42 | bool sync) { return -ENOSYS; } | 55 | enum migrate_mode mode) { return -ENOSYS; } |
| 43 | 56 | ||
| 44 | static inline int migrate_prep(void) { return -ENOSYS; } | 57 | static inline int migrate_prep(void) { return -ENOSYS; } |
| 45 | static inline int migrate_prep_local(void) { return -ENOSYS; } | 58 | static inline int migrate_prep_local(void) { return -ENOSYS; } |
