summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNadav Amit <nadav.amit@gmail.com>2019-05-04 21:11:24 -0400
committerIngo Molnar <mingo@kernel.org>2019-05-05 14:32:46 -0400
commitcaa841360134f863987f2d4f77b8dc2fbb7596f8 (patch)
treefc3f7b45f92fc38599a509945ee8b6970eb2c3d8
parent3950746d9d8ef981c1cb842384e0e86e8d1aad76 (diff)
x86/mm: Initialize PGD cache during mm initialization
Poking-mm initialization might require to duplicate the PGD in early stage. Initialize the PGD cache earlier to prevent boot failures. Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Nadav Amit <namit@vmware.com> Cc: Andy Lutomirski <luto@kernel.org> Cc: Borislav Petkov <bp@alien8.de> Cc: Dave Hansen <dave.hansen@linux.intel.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Rick Edgecombe <rick.p.edgecombe@intel.com> Cc: Rik van Riel <riel@surriel.com> Cc: Stephen Rothwell <sfr@canb.auug.org.au> Cc: Thomas Gleixner <tglx@linutronix.de> Fixes: 4fc19708b165 ("x86/alternatives: Initialize temporary mm for patching") Link: http://lkml.kernel.org/r/20190505011124.39692-1-namit@vmware.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r--arch/x86/mm/pgtable.c10
-rw-r--r--include/asm-generic/pgtable.h2
-rw-r--r--init/main.c3
3 files changed, 11 insertions, 4 deletions
diff --git a/arch/x86/mm/pgtable.c b/arch/x86/mm/pgtable.c
index 7bd01709a091..c8177045b7d4 100644
--- a/arch/x86/mm/pgtable.c
+++ b/arch/x86/mm/pgtable.c
@@ -373,14 +373,14 @@ static void pgd_prepopulate_user_pmd(struct mm_struct *mm,
373 373
374static struct kmem_cache *pgd_cache; 374static struct kmem_cache *pgd_cache;
375 375
376static int __init pgd_cache_init(void) 376void __init pgd_cache_init(void)
377{ 377{
378 /* 378 /*
379 * When PAE kernel is running as a Xen domain, it does not use 379 * When PAE kernel is running as a Xen domain, it does not use
380 * shared kernel pmd. And this requires a whole page for pgd. 380 * shared kernel pmd. And this requires a whole page for pgd.
381 */ 381 */
382 if (!SHARED_KERNEL_PMD) 382 if (!SHARED_KERNEL_PMD)
383 return 0; 383 return;
384 384
385 /* 385 /*
386 * when PAE kernel is not running as a Xen domain, it uses 386 * when PAE kernel is not running as a Xen domain, it uses
@@ -390,9 +390,7 @@ static int __init pgd_cache_init(void)
390 */ 390 */
391 pgd_cache = kmem_cache_create("pgd_cache", PGD_SIZE, PGD_ALIGN, 391 pgd_cache = kmem_cache_create("pgd_cache", PGD_SIZE, PGD_ALIGN,
392 SLAB_PANIC, NULL); 392 SLAB_PANIC, NULL);
393 return 0;
394} 393}
395core_initcall(pgd_cache_init);
396 394
397static inline pgd_t *_pgd_alloc(void) 395static inline pgd_t *_pgd_alloc(void)
398{ 396{
@@ -420,6 +418,10 @@ static inline void _pgd_free(pgd_t *pgd)
420} 418}
421#else 419#else
422 420
421void __init pgd_cache_init(void)
422{
423}
424
423static inline pgd_t *_pgd_alloc(void) 425static inline pgd_t *_pgd_alloc(void)
424{ 426{
425 return (pgd_t *)__get_free_pages(PGALLOC_GFP, PGD_ALLOCATION_ORDER); 427 return (pgd_t *)__get_free_pages(PGALLOC_GFP, PGD_ALLOCATION_ORDER);
diff --git a/include/asm-generic/pgtable.h b/include/asm-generic/pgtable.h
index fa782fba51ee..75d9d68a6de7 100644
--- a/include/asm-generic/pgtable.h
+++ b/include/asm-generic/pgtable.h
@@ -1126,6 +1126,8 @@ int phys_mem_access_prot_allowed(struct file *file, unsigned long pfn,
1126static inline void init_espfix_bsp(void) { } 1126static inline void init_espfix_bsp(void) { }
1127#endif 1127#endif
1128 1128
1129extern void __init pgd_cache_init(void);
1130
1129#ifndef __HAVE_ARCH_PFN_MODIFY_ALLOWED 1131#ifndef __HAVE_ARCH_PFN_MODIFY_ALLOWED
1130static inline bool pfn_modify_allowed(unsigned long pfn, pgprot_t prot) 1132static inline bool pfn_modify_allowed(unsigned long pfn, pgprot_t prot)
1131{ 1133{
diff --git a/init/main.c b/init/main.c
index 95dd9406ee31..9dc2f3b4f753 100644
--- a/init/main.c
+++ b/init/main.c
@@ -506,6 +506,8 @@ void __init __weak mem_encrypt_init(void) { }
506 506
507void __init __weak poking_init(void) { } 507void __init __weak poking_init(void) { }
508 508
509void __init __weak pgd_cache_init(void) { }
510
509bool initcall_debug; 511bool initcall_debug;
510core_param(initcall_debug, initcall_debug, bool, 0644); 512core_param(initcall_debug, initcall_debug, bool, 0644);
511 513
@@ -537,6 +539,7 @@ static void __init mm_init(void)
537 init_espfix_bsp(); 539 init_espfix_bsp();
538 /* Should be run after espfix64 is set up. */ 540 /* Should be run after espfix64 is set up. */
539 pti_init(); 541 pti_init();
542 pgd_cache_init();
540} 543}
541 544
542void __init __weak arch_call_rest_init(void) 545void __init __weak arch_call_rest_init(void)