diff options
author | Li Zhong <zhong@linux.vnet.ibm.com> | 2016-09-28 18:22:38 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-09-28 19:19:02 -0400 |
commit | 231e97e2b8ec9a1556ced5d8a89cda03a480b179 (patch) | |
tree | 762b3c2cb8698d59ea3a4059b509895afb2f0fe6 | |
parent | e436fd61a8f62cb7a16310a42b95ab076ff72eff (diff) |
mem-hotplug: use nodes that contain memory as mask in new_node_page()
9bb627be47a5 ("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: 9bb627be47a5 ("mem-hotplug: don't clear the only node in new_node_page()")
Fixes: 394e31d2ceb4 ("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 <zhong@linux.vnet.ibm.com>
Suggested-by: David Rientjes <rientjes@google.com>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
Cc: Michal Hocko <mhocko@suse.cz>
Cc: John Allen <jallen@linux.vnet.ibm.com>
Cc: Xishi Qiu <qiuxishi@huawei.com>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Cc: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Cc: Tetsuo Handa <penguin-kernel@i-love.sakura.ne.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | mm/memory_hotplug.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c index b58906b6215c..9d29ba0f7192 100644 --- a/mm/memory_hotplug.c +++ b/mm/memory_hotplug.c | |||
@@ -1555,8 +1555,8 @@ static struct page *new_node_page(struct page *page, unsigned long private, | |||
1555 | { | 1555 | { |
1556 | gfp_t gfp_mask = GFP_USER | __GFP_MOVABLE; | 1556 | gfp_t gfp_mask = GFP_USER | __GFP_MOVABLE; |
1557 | int nid = page_to_nid(page); | 1557 | int nid = page_to_nid(page); |
1558 | nodemask_t nmask = node_online_map; | 1558 | nodemask_t nmask = node_states[N_MEMORY]; |
1559 | struct page *new_page; | 1559 | struct page *new_page = NULL; |
1560 | 1560 | ||
1561 | /* | 1561 | /* |
1562 | * TODO: allocate a destination hugepage from a nearest neighbor node, | 1562 | * 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, | |||
1567 | return alloc_huge_page_node(page_hstate(compound_head(page)), | 1567 | return alloc_huge_page_node(page_hstate(compound_head(page)), |
1568 | next_node_in(nid, nmask)); | 1568 | next_node_in(nid, nmask)); |
1569 | 1569 | ||
1570 | if (nid != next_node_in(nid, nmask)) | 1570 | node_clear(nid, nmask); |
1571 | node_clear(nid, nmask); | ||
1572 | 1571 | ||
1573 | if (PageHighMem(page) | 1572 | if (PageHighMem(page) |
1574 | || (zone_idx(page_zone(page)) == ZONE_MOVABLE)) | 1573 | || (zone_idx(page_zone(page)) == ZONE_MOVABLE)) |
1575 | gfp_mask |= __GFP_HIGHMEM; | 1574 | gfp_mask |= __GFP_HIGHMEM; |
1576 | 1575 | ||
1577 | new_page = __alloc_pages_nodemask(gfp_mask, 0, | 1576 | if (!nodes_empty(nmask)) |
1577 | new_page = __alloc_pages_nodemask(gfp_mask, 0, | ||
1578 | node_zonelist(nid, gfp_mask), &nmask); | 1578 | node_zonelist(nid, gfp_mask), &nmask); |
1579 | if (!new_page) | 1579 | if (!new_page) |
1580 | new_page = __alloc_pages(gfp_mask, 0, | 1580 | new_page = __alloc_pages(gfp_mask, 0, |