init: Fix initcall0 name as it is "pure" not "early"
authorSteven Rostedt (VMware) <rostedt@goodmis.org>
Thu, 22 Mar 2018 23:28:54 +0000 (19:28 -0400)
committerSteven Rostedt (VMware) <rostedt@goodmis.org>
Fri, 23 Mar 2018 15:15:21 +0000 (11:15 -0400)
The early_initcall() functions get assigned to __initcall_start[]. These are
called by do_pre_smp_initcalls(). The initcall_levels[] array starts with
__initcall0_start[], and initcall_levels[] are to match the
initcall_level_names[] array. The first name in that array is "early", but
that is not correct. As pure_initcall() functions get assigned to
__initcall0_start[] array.

Change the first name in initcall_level_names[] array to "pure".

Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
init/main.c

index 969eaf140ef0a5d356e2c9a085b5d2a86c215eba..0ebdd5f15be8db8ecd62efe86dc07491f24ee0bd 100644 (file)
@@ -874,7 +874,7 @@ static initcall_t *initcall_levels[] __initdata = {
 
 /* Keep these in sync with initcalls in include/linux/init.h */
 static char *initcall_level_names[] __initdata = {
-       "early",
+       "pure",
        "core",
        "postcore",
        "arch",