This is a note to let you know that I've just added the patch titled x86/mm: Initialize text poking earlier to the 5.15-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: x86-mm-initialize-text-poking-earlier.patch and it can be found in the queue-5.15 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 5b93a83649c7cba3a15eb7e8959b250841acb1b1 Mon Sep 17 00:00:00 2001 From: Peter Zijlstra <peterz@xxxxxxxxxxxxx> Date: Tue, 25 Oct 2022 21:38:25 +0200 Subject: x86/mm: Initialize text poking earlier From: Peter Zijlstra <peterz@xxxxxxxxxxxxx> 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@xxxxxxxxxxxxx> Link: https://lkml.kernel.org/r/20221025201057.881703081@xxxxxxxxxxxxx Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- init/main.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) --- a/init/main.c +++ b/init/main.c @@ -988,7 +988,7 @@ asmlinkage __visible void __init __no_sa sort_main_extable(); trap_init(); mm_init(); - + poking_init(); ftrace_init(); /* trace_printk can be enabled here */ @@ -1125,8 +1125,6 @@ asmlinkage __visible void __init __no_sa taskstats_init_early(); delayacct_init(); - poking_init(); - acpi_subsystem_init(); arch_post_acpi_subsys_init(); kcsan_init(); Patches currently in stable-queue which might be from peterz@xxxxxxxxxxxxx are queue-5.15/x86-mm-fix-poking_init-for-xen-pv-guests.patch queue-5.15/x86-mm-use-mm_alloc-in-poking_init.patch queue-5.15/mm-move-mm_cachep-initialization-to-mm_init.patch queue-5.15/x86-mm-initialize-text-poking-earlier.patch