diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2008-10-22 11:00:23 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2008-10-21 19:00:23 -0400 |
commit | 67e67ceaac5bf55dbdceb704ff2d763d438b5373 (patch) | |
tree | 59523536661c93dce7a02557ca6ac5827a7bf75f /kernel/params.c | |
parent | 9b473de87209fa86eb421b23386693b461612f30 (diff) |
core_param() for genuinely core kernel parameters
There are a lot of one-liner uses of __setup() in the kernel: they're
cumbersome and not queryable (definitely not settable) via /sys. Yet
it's ugly to simplify them to module_param(), because by default that
inserts a prefix of the module name (usually filename).
So, introduce a "core_param". The parameter gets no prefix, but
appears in /sys/module/kernel/parameters/ (if non-zero perms arg). I
thought about using the name "core", but that's more common than
"kernel". And if you create a module called "kernel", you will die
a horrible death.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'kernel/params.c')
-rw-r--r-- | kernel/params.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kernel/params.c b/kernel/params.c index f27c992a4625..b077f1b045d3 100644 --- a/kernel/params.c +++ b/kernel/params.c | |||
@@ -637,14 +637,14 @@ static void __init param_sysfs_builtin(void) | |||
637 | 637 | ||
638 | dot = strchr(kp->name, '.'); | 638 | dot = strchr(kp->name, '.'); |
639 | if (!dot) { | 639 | if (!dot) { |
640 | DEBUGP("couldn't find period in first %d characters " | 640 | /* This happens for core_param() */ |
641 | "of %s\n", MODULE_NAME_LEN, kp->name); | 641 | strcpy(modname, "kernel"); |
642 | continue; | 642 | name_len = 0; |
643 | } else { | ||
644 | name_len = dot - kp->name + 1; | ||
645 | strlcpy(modname, kp->name, name_len); | ||
643 | } | 646 | } |
644 | name_len = dot - kp->name; | 647 | kernel_add_sysfs_param(modname, kp, name_len); |
645 | strncpy(modname, kp->name, name_len); | ||
646 | modname[name_len] = '\0'; | ||
647 | kernel_add_sysfs_param(modname, kp, name_len+1); | ||
648 | } | 648 | } |
649 | } | 649 | } |
650 | 650 | ||