summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorDmitry Torokhov <dtor_core@ameritech.net>2004-03-02 14:32:43 -0500
committerDmitry Torokhov <dtor_core@ameritech.net>2004-03-02 14:32:43 -0500
commitdfd797720ab97f536696c5113945e434605756dc (patch)
tree5c388faf8cc445c14e6f7f06fa41f1cb36db5a80 /include/linux
parentba1889da3884de60f399ccb8e8b9782b51d0da00 (diff)
Introduce module_param_array_named to allow for module options with
name different form corresponding array variable. Allows using short (but descriptive) option names without hurting code readability. Modeled after module_param_named.
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/moduleparam.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/linux/moduleparam.h b/include/linux/moduleparam.h
index cbca00722b5c..e9d6a16d3fef 100644
--- a/include/linux/moduleparam.h
+++ b/include/linux/moduleparam.h
@@ -126,13 +126,16 @@ extern int param_get_invbool(char *buffer, struct kernel_param *kp);
#define param_check_invbool(name, p) __param_check(name, p, int)
/* Comma-separated array: num is set to number they actually specified. */
-#define module_param_array(name, type, num, perm) \
+#define module_param_array_named(name, array, type, num, perm) \
static struct kparam_array __param_arr_##name \
- = { ARRAY_SIZE(name), &num, param_set_##type, param_get_##type, \
- sizeof(name[0]), name }; \
+ = { ARRAY_SIZE(array), &num, param_set_##type, param_get_##type,\
+ sizeof(array[0]), array }; \
module_param_call(name, param_array_set, param_array_get, \
&__param_arr_##name, perm)
+#define module_param_array(name, type, num, perm) \
+ module_param_array_named(name, name, type, num, perm)
+
extern int param_array_set(const char *val, struct kernel_param *kp);
extern int param_array_get(char *buffer, struct kernel_param *kp);