|
@@ -104,6 +104,25 @@ struct kparam_array
|
|
#define module_param(name, type, perm) \
|
|
#define module_param(name, type, perm) \
|
|
module_param_named(name, 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). */
|
|
/* Actually copy string: maxlen param is usually sizeof(string). */
|
|
#define module_param_string(name, string, len, perm) \
|
|
#define module_param_string(name, string, len, perm) \
|
|
static const struct kparam_string __param_string_##name \
|
|
static const struct kparam_string __param_string_##name \
|