aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorYang Shi <yang.shi@linaro.org>2016-05-27 17:27:32 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2016-05-27 17:49:37 -0400
commitf65e91df25aa426289cbcb580ca3183e24979fb1 (patch)
tree65de5de39a825fb9618e31e2d219fe89069b6ba6 /mm
parentfe53ca54270a757f0a28ee6bf3a54d952b550ed0 (diff)
mm: use early_pfn_to_nid in register_page_bootmem_info_node
register_page_bootmem_info_node() is invoked in mem_init(), so it will be called before page_alloc_init_late() if DEFERRED_STRUCT_PAGE_INIT is enabled. But, pfn_to_nid() depends on memmap which won't be fully setup until page_alloc_init_late() is done, so replace pfn_to_nid() by early_pfn_to_nid(). Link: http://lkml.kernel.org/r/1464210007-30930-1-git-send-email-yang.shi@linaro.org Signed-off-by: Yang Shi <yang.shi@linaro.org> Cc: Mel Gorman <mgorman@techsingularity.net> Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/memory_hotplug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
index caf2a14c37ad..b8ee0806415f 100644
--- a/mm/memory_hotplug.c
+++ b/mm/memory_hotplug.c
@@ -300,7 +300,7 @@ void register_page_bootmem_info_node(struct pglist_data *pgdat)
300 * multiple nodes we check that this pfn does not already 300 * multiple nodes we check that this pfn does not already
301 * reside in some other nodes. 301 * reside in some other nodes.
302 */ 302 */
303 if (pfn_valid(pfn) && (pfn_to_nid(pfn) == node)) 303 if (pfn_valid(pfn) && (early_pfn_to_nid(pfn) == node))
304 register_page_bootmem_info_section(pfn); 304 register_page_bootmem_info_section(pfn);
305 } 305 }
306} 306}