mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	mm, mempolicy: migrate_to_node should only migrate to node
migrate_to_node() is intended to migrate a page from one source node to a target node. Today, migrate_to_node() could end up migrating to any node, not only the target node. This is because the page migration allocator, new_node_page() does not pass __GFP_THISNODE to alloc_pages_exact_node(). This causes the target node to be preferred but allows fallback to any other node in order of affinity. Prevent this by allocating with __GFP_THISNODE. If memory is not available, -ENOMEM will be returned as appropriate. Signed-off-by: David Rientjes <rientjes@google.com> Reviewed-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> Cc: Mel Gorman <mel@csn.ul.ie> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
		
							parent
							
								
									3cb29d1117
								
							
						
					
					
						commit
						b360edb43f
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -945,7 +945,8 @@ static struct page *new_node_page(struct page *page, unsigned long node, int **x
 | 
			
		|||
		return alloc_huge_page_node(page_hstate(compound_head(page)),
 | 
			
		||||
					node);
 | 
			
		||||
	else
 | 
			
		||||
		return alloc_pages_exact_node(node, GFP_HIGHUSER_MOVABLE, 0);
 | 
			
		||||
		return alloc_pages_exact_node(node, GFP_HIGHUSER_MOVABLE |
 | 
			
		||||
						    __GFP_THISNODE, 0);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue