Skip to content

Commit 231e97e

Browse files
Li Zhongtorvalds
authored andcommitted
mem-hotplug: use nodes that contain memory as mask in new_node_page()
9bb627b ("mem-hotplug: don't clear the only node in new_node_page()") prevents allocating from an empty nodemask, but as David points out, it is still wrong. As node_online_map may include memoryless nodes, only allocating from these nodes is meaningless. This patch uses node_states[N_MEMORY] mask to prevent the above case. Fixes: 9bb627b ("mem-hotplug: don't clear the only node in new_node_page()") Fixes: 394e31d ("mem-hotplug: alloc new page from a nearest neighbor node when mem-offline") Link: http://lkml.kernel.org/r/1474447117.28370.6.camel@TP420 Signed-off-by: Li Zhong <[email protected]> Suggested-by: David Rientjes <[email protected]> Acked-by: Vlastimil Babka <[email protected]> Cc: Michal Hocko <[email protected]> Cc: John Allen <[email protected]> Cc: Xishi Qiu <[email protected]> Cc: Joonsoo Kim <[email protected]> Cc: Naoya Horiguchi <[email protected]> Cc: Tetsuo Handa <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent e436fd6 commit 231e97e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

mm/memory_hotplug.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1555,8 +1555,8 @@ static struct page *new_node_page(struct page *page, unsigned long private,
15551555
{
15561556
gfp_t gfp_mask = GFP_USER | __GFP_MOVABLE;
15571557
int nid = page_to_nid(page);
1558-
nodemask_t nmask = node_online_map;
1559-
struct page *new_page;
1558+
nodemask_t nmask = node_states[N_MEMORY];
1559+
struct page *new_page = NULL;
15601560

15611561
/*
15621562
* TODO: allocate a destination hugepage from a nearest neighbor node,
@@ -1567,14 +1567,14 @@ static struct page *new_node_page(struct page *page, unsigned long private,
15671567
return alloc_huge_page_node(page_hstate(compound_head(page)),
15681568
next_node_in(nid, nmask));
15691569

1570-
if (nid != next_node_in(nid, nmask))
1571-
node_clear(nid, nmask);
1570+
node_clear(nid, nmask);
15721571

15731572
if (PageHighMem(page)
15741573
|| (zone_idx(page_zone(page)) == ZONE_MOVABLE))
15751574
gfp_mask |= __GFP_HIGHMEM;
15761575

1577-
new_page = __alloc_pages_nodemask(gfp_mask, 0,
1576+
if (!nodes_empty(nmask))
1577+
new_page = __alloc_pages_nodemask(gfp_mask, 0,
15781578
node_zonelist(nid, gfp_mask), &nmask);
15791579
if (!new_page)
15801580
new_page = __alloc_pages(gfp_mask, 0,

0 commit comments

Comments
 (0)