]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
x86/mm: Initialize text poking earlier
authorPeter Zijlstra <peterz@infradead.org>
Tue, 25 Oct 2022 19:38:25 +0000 (21:38 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 8 Aug 2023 17:56:36 +0000 (19:56 +0200)
commit 5b93a83649c7cba3a15eb7e8959b250841acb1b1 upstream.

Move poking_init() up a bunch; specifically move it right after
mm_init() which is right before ftrace_init().

This will allow simplifying ftrace text poking which currently has
a bunch of exceptions for early boot.

Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20221025201057.881703081@infradead.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
init/main.c

index 9651440ec0cce97d74573028a867440f948f1dfa..1db844b388103f9e35166e58167dd954df15d395 100644 (file)
@@ -624,7 +624,7 @@ asmlinkage __visible void __init start_kernel(void)
        sort_main_extable();
        trap_init();
        mm_init();
-
+       poking_init();
        ftrace_init();
 
        /* trace_printk can be enabled here */
@@ -763,8 +763,6 @@ asmlinkage __visible void __init start_kernel(void)
        taskstats_init_early();
        delayacct_init();
 
-       poking_init();
-
        acpi_subsystem_init();
        arch_post_acpi_subsys_init();
        sfi_init_late();