sys_move_pages: Do not fall back to other nodes If the user specified a node where we should move the page to then we really do not want any other node. Signed-off-by: Christoph Lameter Index: linux-2.6.18-rc3-mm2/mm/migrate.c =================================================================== --- linux-2.6.18-rc3-mm2.orig/mm/migrate.c 2006-08-08 09:15:29.352637207 -0700 +++ linux-2.6.18-rc3-mm2/mm/migrate.c 2006-08-08 09:25:41.388119893 -0700 @@ -745,7 +745,9 @@ static struct page *new_page_node(struct *result = &pm->status; - return alloc_pages_node(pm->node, GFP_HIGHUSER, 0); + return alloc_pages_node(pm->node, + GFP_HIGHUSER | __GFP_THISNODE | __GFP_NOWARN | __GFP_NORETRY, + 0); } /*