diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2014-04-03 17:48:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-03 19:21:07 -0400 |
commit | c96d6660dc65b0a90aea9834bfd8be1d5656da18 (patch) | |
tree | 7cc860d2d176138f10a5836a712e932f8187bacf | |
parent | d300d59ca179fd1de427cde2a96eb2871347491f (diff) |
kernel: audit/fix non-modular users of module_init in core code
Code that is obj-y (always built-in) or dependent on a bool Kconfig
(built-in or absent) can never be modular. So using module_init as an
alias for __initcall can be somewhat misleading.
Fix these up now, so that we can relocate module_init from init.h into
module.h in the future. If we don't do this, we'd have to add module.h
to obviously non-modular code, and that would be a worse thing.
The audit targets the following module_init users for change:
kernel/user.c obj-y
kernel/kexec.c bool KEXEC (one instance per arch)
kernel/profile.c bool PROFILING
kernel/hung_task.c bool DETECT_HUNG_TASK
kernel/sched/stats.c bool SCHEDSTATS
kernel/user_namespace.c bool USER_NS
Note that direct use of __initcall is discouraged, vs. one of the
priority categorized subgroups. As __initcall gets mapped onto
device_initcall, our use of subsys_initcall (which makes sense for these
files) will thus change this registration from level 6-device to level
4-subsys (i.e. slightly earlier). However no observable impact of that
difference has been observed during testing.
Also, two instances of missing ";" at EOL are fixed in kexec.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Eric Biederman <ebiederm@xmission.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | kernel/hung_task.c | 3 | ||||
-rw-r--r-- | kernel/kexec.c | 4 | ||||
-rw-r--r-- | kernel/profile.c | 2 | ||||
-rw-r--r-- | kernel/sched/stats.c | 2 | ||||
-rw-r--r-- | kernel/user.c | 3 | ||||
-rw-r--r-- | kernel/user_namespace.c | 2 |
6 files changed, 7 insertions, 9 deletions
diff --git a/kernel/hung_task.c b/kernel/hung_task.c index 0b9c169d577f..06bb1417b063 100644 --- a/kernel/hung_task.c +++ b/kernel/hung_task.c | |||
@@ -246,5 +246,4 @@ static int __init hung_task_init(void) | |||
246 | 246 | ||
247 | return 0; | 247 | return 0; |
248 | } | 248 | } |
249 | 249 | subsys_initcall(hung_task_init); | |
250 | module_init(hung_task_init); | ||
diff --git a/kernel/kexec.c b/kernel/kexec.c index 45601cf41bee..c0d261c7db7b 100644 --- a/kernel/kexec.c +++ b/kernel/kexec.c | |||
@@ -1235,7 +1235,7 @@ static int __init crash_notes_memory_init(void) | |||
1235 | } | 1235 | } |
1236 | return 0; | 1236 | return 0; |
1237 | } | 1237 | } |
1238 | module_init(crash_notes_memory_init) | 1238 | subsys_initcall(crash_notes_memory_init); |
1239 | 1239 | ||
1240 | 1240 | ||
1241 | /* | 1241 | /* |
@@ -1629,7 +1629,7 @@ static int __init crash_save_vmcoreinfo_init(void) | |||
1629 | return 0; | 1629 | return 0; |
1630 | } | 1630 | } |
1631 | 1631 | ||
1632 | module_init(crash_save_vmcoreinfo_init) | 1632 | subsys_initcall(crash_save_vmcoreinfo_init); |
1633 | 1633 | ||
1634 | /* | 1634 | /* |
1635 | * Move into place and start executing a preloaded standalone | 1635 | * Move into place and start executing a preloaded standalone |
diff --git a/kernel/profile.c b/kernel/profile.c index ebdd9c1a86b4..1b266dbe755a 100644 --- a/kernel/profile.c +++ b/kernel/profile.c | |||
@@ -604,5 +604,5 @@ int __ref create_proc_profile(void) /* false positive from hotcpu_notifier */ | |||
604 | hotcpu_notifier(profile_cpu_callback, 0); | 604 | hotcpu_notifier(profile_cpu_callback, 0); |
605 | return 0; | 605 | return 0; |
606 | } | 606 | } |
607 | module_init(create_proc_profile); | 607 | subsys_initcall(create_proc_profile); |
608 | #endif /* CONFIG_PROC_FS */ | 608 | #endif /* CONFIG_PROC_FS */ |
diff --git a/kernel/sched/stats.c b/kernel/sched/stats.c index da98af347e8b..a476bea17fbc 100644 --- a/kernel/sched/stats.c +++ b/kernel/sched/stats.c | |||
@@ -142,4 +142,4 @@ static int __init proc_schedstat_init(void) | |||
142 | proc_create("schedstat", 0, NULL, &proc_schedstat_operations); | 142 | proc_create("schedstat", 0, NULL, &proc_schedstat_operations); |
143 | return 0; | 143 | return 0; |
144 | } | 144 | } |
145 | module_init(proc_schedstat_init); | 145 | subsys_initcall(proc_schedstat_init); |
diff --git a/kernel/user.c b/kernel/user.c index c006131beb77..294fc6a94168 100644 --- a/kernel/user.c +++ b/kernel/user.c | |||
@@ -222,5 +222,4 @@ static int __init uid_cache_init(void) | |||
222 | 222 | ||
223 | return 0; | 223 | return 0; |
224 | } | 224 | } |
225 | 225 | subsys_initcall(uid_cache_init); | |
226 | module_init(uid_cache_init); | ||
diff --git a/kernel/user_namespace.c b/kernel/user_namespace.c index dd06439b9c84..0d8f6023fd8d 100644 --- a/kernel/user_namespace.c +++ b/kernel/user_namespace.c | |||
@@ -902,4 +902,4 @@ static __init int user_namespaces_init(void) | |||
902 | user_ns_cachep = KMEM_CACHE(user_namespace, SLAB_PANIC); | 902 | user_ns_cachep = KMEM_CACHE(user_namespace, SLAB_PANIC); |
903 | return 0; | 903 | return 0; |
904 | } | 904 | } |
905 | module_init(user_namespaces_init); | 905 | subsys_initcall(user_namespaces_init); |