summaryrefslogtreecommitdiffstats
path: root/init/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'init/main.c')
-rw-r--r--init/main.c3
1 files changed, 3 insertions, 0 deletions
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)