diff options
author | Christoph Lameter <clameter@sgi.com> | 2006-06-23 05:03:52 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-23 10:42:53 -0400 |
commit | aaa994b300a172afafab47938804836b923e5ef7 (patch) | |
tree | ccc1acf72e9d1dfbd25fa5f8e067a195f93b0319 /include/linux/migrate.h | |
parent | e24f0b8f76cc3dd96f36f5b6a9f020f6c3fce198 (diff) |
[PATCH] page migration: handle freeing of pages in migrate_pages()
Do not leave pages on the lists passed to migrate_pages(). Seems that we will
not need any postprocessing of pages. This will simplify the handling of
pages by the callers of migrate_pages().
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Cc: Hugh Dickins <hugh@veritas.com>
Cc: Jes Sorensen <jes@trained-monkey.org>
Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Lee Schermerhorn <lee.schermerhorn@hp.com>
Cc: Andi Kleen <ak@muc.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/migrate.h')
-rw-r--r-- | include/linux/migrate.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/linux/migrate.h b/include/linux/migrate.h index 287c47b5e5df..83af25949fa9 100644 --- a/include/linux/migrate.h +++ b/include/linux/migrate.h | |||
@@ -8,8 +8,7 @@ extern int isolate_lru_page(struct page *p, struct list_head *pagelist); | |||
8 | extern int putback_lru_pages(struct list_head *l); | 8 | extern int putback_lru_pages(struct list_head *l); |
9 | extern int migrate_page(struct address_space *, | 9 | extern int migrate_page(struct address_space *, |
10 | struct page *, struct page *); | 10 | struct page *, struct page *); |
11 | extern int migrate_pages(struct list_head *l, struct list_head *t, | 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, | 12 | extern int migrate_pages_to(struct list_head *pagelist, |
14 | struct vm_area_struct *vma, int dest); | 13 | struct vm_area_struct *vma, int dest); |
15 | extern int fail_migrate_page(struct address_space *, | 14 | extern int fail_migrate_page(struct address_space *, |
@@ -22,8 +21,8 @@ extern int migrate_prep(void); | |||
22 | static inline int isolate_lru_page(struct page *p, struct list_head *list) | 21 | static inline int isolate_lru_page(struct page *p, struct list_head *list) |
23 | { return -ENOSYS; } | 22 | { return -ENOSYS; } |
24 | static inline int putback_lru_pages(struct list_head *l) { return 0; } | 23 | static inline int putback_lru_pages(struct list_head *l) { return 0; } |
25 | static inline int migrate_pages(struct list_head *l, struct list_head *t, | 24 | static inline int migrate_pages(struct list_head *l, struct list_head *t) |
26 | struct list_head *moved, struct list_head *failed) { return -ENOSYS; } | 25 | { return -ENOSYS; } |
27 | 26 | ||
28 | static inline int migrate_pages_to(struct list_head *pagelist, | 27 | static inline int migrate_pages_to(struct list_head *pagelist, |
29 | struct vm_area_struct *vma, int dest) { return 0; } | 28 | struct vm_area_struct *vma, int dest) { return 0; } |