Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d0ea3d7d authored by Rusty Russell's avatar Rusty Russell
Browse files

Make initcall_debug a core_param



This is the one I really wanted: now it effects module loading, it
makes sense to be able to flip it after boot.

Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
Acked-by: default avatarArjan van de Ven <arjan@linux.intel.com>
parent 67e67cea
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
@@ -697,13 +697,7 @@ asmlinkage void __init start_kernel(void)
}

static int initcall_debug;

static int __init initcall_debug_setup(char *str)
{
	initcall_debug = 1;
	return 1;
}
__setup("initcall_debug", initcall_debug_setup);
core_param(initcall_debug, initcall_debug, bool, 0644);

int do_one_initcall(initcall_t fn)
{