aboutsummaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2008-10-22 10:00:23 -0500
committerRusty Russell <rusty@rustcorp.com.au>2008-10-22 10:00:24 +1100
commitd0ea3d7d286aeda2a9216d76424abc285b87b7b4 (patch)
treeb0e12906ab0ec66e36e51bee78b5d199edb887c4 /init
parentcore_param() for genuinely core kernel parameters (diff)
downloadlinux-dev-d0ea3d7d286aeda2a9216d76424abc285b87b7b4.tar.xz
linux-dev-d0ea3d7d286aeda2a9216d76424abc285b87b7b4.zip
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: Rusty Russell <rusty@rustcorp.com.au> Acked-by: Arjan van de Ven <arjan@linux.intel.com>
Diffstat (limited to 'init')
-rw-r--r--init/main.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/init/main.c b/init/main.c
index 3e17a3bafe60..3d68aaaf6160 100644
--- a/init/main.c
+++ b/init/main.c
@@ -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)
{