aboutsummaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
authorYang Shi <yang.shi@linaro.org>2016-05-27 17:27:30 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2016-05-27 17:49:37 -0400
commitfe53ca54270a757f0a28ee6bf3a54d952b550ed0 (patch)
treef124113d718b8fc04880cfabe47efcec734b1f4d /init
parentf871f191357ebadb6ad7e8ecf6e8f40b694eea00 (diff)
mm: use early_pfn_to_nid in page_ext_init
page_ext_init() checks suitable pages with pfn_to_nid(), but pfn_to_nid() depends on memmap which will not be setup fully until page_alloc_init_late() is done. Use early_pfn_to_nid() instead of pfn_to_nid() so that page extension could be still used early even though CONFIG_ DEFERRED_STRUCT_PAGE_INIT is enabled and catch early page allocation call sites. Suggested by Joonsoo Kim [1], this fix basically undoes the change introduced by commit b8f1a75d61d840 ("mm: call page_ext_init() after all struct pages are initialized") and fixes the same problem with a better approach. [1] http://lkml.kernel.org/r/CAAmzW4OUmyPwQjvd7QUfc6W1Aic__TyAuH80MLRZNMxKy0-wPQ@mail.gmail.com Link: http://lkml.kernel.org/r/1464198689-23458-1-git-send-email-yang.shi@linaro.org Signed-off-by: Yang Shi <yang.shi@linaro.org> Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com> Cc: Mel Gorman <mgorman@techsingularity.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'init')
-rw-r--r--init/main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/init/main.c b/init/main.c
index bc0f9e0bcf22..4c17fda5c2ff 100644
--- a/init/main.c
+++ b/init/main.c
@@ -607,6 +607,7 @@ asmlinkage __visible void __init start_kernel(void)
607 initrd_start = 0; 607 initrd_start = 0;
608 } 608 }
609#endif 609#endif
610 page_ext_init();
610 debug_objects_mem_init(); 611 debug_objects_mem_init();
611 kmemleak_init(); 612 kmemleak_init();
612 setup_per_cpu_pageset(); 613 setup_per_cpu_pageset();
@@ -1003,8 +1004,6 @@ static noinline void __init kernel_init_freeable(void)
1003 sched_init_smp(); 1004 sched_init_smp();
1004 1005
1005 page_alloc_init_late(); 1006 page_alloc_init_late();
1006 /* Initialize page ext after all struct pages are initializaed */
1007 page_ext_init();
1008 1007
1009 do_basic_setup(); 1008 do_basic_setup();
1010 1009