Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 117080
b: refs/heads/master
c: 67e67ce
h: refs/heads/master
v: v3
  • Loading branch information
Rusty Russell committed Oct 21, 2008
1 parent ff96003 commit 1411c5d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9b473de87209fa86eb421b23386693b461612f30
refs/heads/master: 67e67ceaac5bf55dbdceb704ff2d763d438b5373
19 changes: 19 additions & 0 deletions trunk/include/linux/moduleparam.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,25 @@ struct kparam_array
#define module_param(name, type, perm) \
module_param_named(name, name, type, perm)

#ifndef MODULE
/**
* core_param - define a historical core kernel parameter.
* @name: the name of the cmdline and sysfs parameter (often the same as var)
* @var: the variable
* @type: the type (for param_set_##type and param_get_##type)
* @perm: visibility in sysfs
*
* core_param is just like module_param(), but cannot be modular and
* doesn't add a prefix (such as "printk."). This is for compatibility
* with __setup(), and it makes sense as truly core parameters aren't
* tied to the particular file they're in.
*/
#define core_param(name, var, type, perm) \
param_check_##type(name, &(var)); \
__module_param_call("", name, param_set_##type, param_get_##type, \
&var, perm)
#endif /* !MODULE */

/* Actually copy string: maxlen param is usually sizeof(string). */
#define module_param_string(name, string, len, perm) \
static const struct kparam_string __param_string_##name \
Expand Down
14 changes: 7 additions & 7 deletions trunk/kernel/params.c
Original file line number Diff line number Diff line change
Expand Up @@ -637,14 +637,14 @@ static void __init param_sysfs_builtin(void)

dot = strchr(kp->name, '.');
if (!dot) {
DEBUGP("couldn't find period in first %d characters "
"of %s\n", MODULE_NAME_LEN, kp->name);
continue;
/* This happens for core_param() */
strcpy(modname, "kernel");
name_len = 0;
} else {
name_len = dot - kp->name + 1;
strlcpy(modname, kp->name, name_len);
}
name_len = dot - kp->name;
strncpy(modname, kp->name, name_len);
modname[name_len] = '\0';
kernel_add_sysfs_param(modname, kp, name_len+1);
kernel_add_sysfs_param(modname, kp, name_len);
}
}

Expand Down

0 comments on commit 1411c5d

Please sign in to comment.