mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-26 02:25:00 -05:00
init/main.c: mark do_one_initcall* as __init_or_module
Andrew Morton suggested that the do_one_initcall and do_one_initcall_debug functions can be marked __init_or_module such that they can be discarded for the CONFIG_MODULES=N case. Signed-off-by: Kevin Winchester <kjwinchester@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
22c5c03b42
commit
e446127134
1 changed files with 2 additions and 2 deletions
|
@ -721,7 +721,7 @@ core_param(initcall_debug, initcall_debug, bool, 0644);
|
|||
|
||||
static char msgbuf[64];
|
||||
|
||||
static int do_one_initcall_debug(initcall_t fn)
|
||||
static int __init_or_module do_one_initcall_debug(initcall_t fn)
|
||||
{
|
||||
ktime_t calltime, delta, rettime;
|
||||
unsigned long long duration;
|
||||
|
@ -739,7 +739,7 @@ static int do_one_initcall_debug(initcall_t fn)
|
|||
return ret;
|
||||
}
|
||||
|
||||
int do_one_initcall(initcall_t fn)
|
||||
int __init_or_module do_one_initcall(initcall_t fn)
|
||||
{
|
||||
int count = preempt_count();
|
||||
int ret;
|
||||
|
|
Loading…
Add table
Reference in a new issue