diff options
author | Christoph Lameter <clameter@sgi.com> | 2006-01-08 01:00:55 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-08 20:12:42 -0800 |
commit | d498471133ff1f9586a06820beaeebc575fe2814 (patch) | |
tree | c7cde93441692e3b32d83dfbf85858ab2d85e481 /include/linux | |
parent | ee27497df36823f2793212cad0997c044eb0e1eb (diff) | |
download | linux-3.10-d498471133ff1f9586a06820beaeebc575fe2814.tar.gz linux-3.10-d498471133ff1f9586a06820beaeebc575fe2814.tar.bz2 linux-3.10-d498471133ff1f9586a06820beaeebc575fe2814.zip |
[PATCH] SwapMig: Extend parameters for migrate_pages()
Extend the parameters of migrate_pages() to allow the caller control over the
fate of successfully migrated or impossible to migrate pages.
Swap migration and direct migration will have the same interface after this
patch so that patches can be independently applied to the policy layer and the
core migration code.
Signed-off-by: Christoph Lameter <clameter@sgi.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')
-rw-r--r-- | include/linux/swap.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/swap.h b/include/linux/swap.h index eb591eaad1b..389d1c382e2 100644 --- a/include/linux/swap.h +++ b/include/linux/swap.h @@ -178,7 +178,8 @@ extern int vm_swappiness; #ifdef CONFIG_MIGRATION extern int isolate_lru_page(struct page *p); extern int putback_lru_pages(struct list_head *l); -extern int migrate_pages(struct list_head *l, struct list_head *t); +extern int migrate_pages(struct list_head *l, struct list_head *t, + struct list_head *moved, struct list_head *failed); #endif #ifdef CONFIG_MMU |