95ef27cf8e82e95c8f5a1e6adf4cad82589b6865
[safe/jmp/linux-2.6] / kernel / params.c
1 /* Helpers for initial module or kernel cmdline parsing
2    Copyright (C) 2001 Rusty Russell.
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17 */
18 #include <linux/moduleparam.h>
19 #include <linux/kernel.h>
20 #include <linux/string.h>
21 #include <linux/errno.h>
22 #include <linux/module.h>
23 #include <linux/device.h>
24 #include <linux/err.h>
25 #include <linux/slab.h>
26 #include <linux/ctype.h>
27
28 #if 0
29 #define DEBUGP printk
30 #else
31 #define DEBUGP(fmt, a...)
32 #endif
33
34 static inline char dash2underscore(char c)
35 {
36         if (c == '-')
37                 return '_';
38         return c;
39 }
40
41 static inline int parameq(const char *input, const char *paramname)
42 {
43         unsigned int i;
44         for (i = 0; dash2underscore(input[i]) == paramname[i]; i++)
45                 if (input[i] == '\0')
46                         return 1;
47         return 0;
48 }
49
50 static int parse_one(char *param,
51                      char *val,
52                      struct kernel_param *params, 
53                      unsigned num_params,
54                      int (*handle_unknown)(char *param, char *val))
55 {
56         unsigned int i;
57
58         /* Find parameter */
59         for (i = 0; i < num_params; i++) {
60                 if (parameq(param, params[i].name)) {
61                         DEBUGP("They are equal!  Calling %p\n",
62                                params[i].set);
63                         return params[i].set(val, &params[i]);
64                 }
65         }
66
67         if (handle_unknown) {
68                 DEBUGP("Unknown argument: calling %p\n", handle_unknown);
69                 return handle_unknown(param, val);
70         }
71
72         DEBUGP("Unknown argument `%s'\n", param);
73         return -ENOENT;
74 }
75
76 /* You can use " around spaces, but can't escape ". */
77 /* Hyphens and underscores equivalent in parameter names. */
78 static char *next_arg(char *args, char **param, char **val)
79 {
80         unsigned int i, equals = 0;
81         int in_quote = 0, quoted = 0;
82         char *next;
83
84         if (*args == '"') {
85                 args++;
86                 in_quote = 1;
87                 quoted = 1;
88         }
89
90         for (i = 0; args[i]; i++) {
91                 if (isspace(args[i]) && !in_quote)
92                         break;
93                 if (equals == 0) {
94                         if (args[i] == '=')
95                                 equals = i;
96                 }
97                 if (args[i] == '"')
98                         in_quote = !in_quote;
99         }
100
101         *param = args;
102         if (!equals)
103                 *val = NULL;
104         else {
105                 args[equals] = '\0';
106                 *val = args + equals + 1;
107
108                 /* Don't include quotes in value. */
109                 if (**val == '"') {
110                         (*val)++;
111                         if (args[i-1] == '"')
112                                 args[i-1] = '\0';
113                 }
114                 if (quoted && args[i-1] == '"')
115                         args[i-1] = '\0';
116         }
117
118         if (args[i]) {
119                 args[i] = '\0';
120                 next = args + i + 1;
121         } else
122                 next = args + i;
123
124         /* Chew up trailing spaces. */
125         while (isspace(*next))
126                 next++;
127         return next;
128 }
129
130 /* Args looks like "foo=bar,bar2 baz=fuz wiz". */
131 int parse_args(const char *name,
132                char *args,
133                struct kernel_param *params,
134                unsigned num,
135                int (*unknown)(char *param, char *val))
136 {
137         char *param, *val;
138
139         DEBUGP("Parsing ARGS: %s\n", args);
140
141         /* Chew leading spaces */
142         while (isspace(*args))
143                 args++;
144
145         while (*args) {
146                 int ret;
147                 int irq_was_disabled;
148
149                 args = next_arg(args, &param, &val);
150                 irq_was_disabled = irqs_disabled();
151                 ret = parse_one(param, val, params, num, unknown);
152                 if (irq_was_disabled && !irqs_disabled()) {
153                         printk(KERN_WARNING "parse_args(): option '%s' enabled "
154                                         "irq's!\n", param);
155                 }
156                 switch (ret) {
157                 case -ENOENT:
158                         printk(KERN_ERR "%s: Unknown parameter `%s'\n",
159                                name, param);
160                         return ret;
161                 case -ENOSPC:
162                         printk(KERN_ERR
163                                "%s: `%s' too large for parameter `%s'\n",
164                                name, val ?: "", param);
165                         return ret;
166                 case 0:
167                         break;
168                 default:
169                         printk(KERN_ERR
170                                "%s: `%s' invalid for parameter `%s'\n",
171                                name, val ?: "", param);
172                         return ret;
173                 }
174         }
175
176         /* All parsed OK. */
177         return 0;
178 }
179
180 /* Lazy bastard, eh? */
181 #define STANDARD_PARAM_DEF(name, type, format, tmptype, strtolfn)       \
182         int param_set_##name(const char *val, struct kernel_param *kp)  \
183         {                                                               \
184                 tmptype l;                                              \
185                 int ret;                                                \
186                                                                         \
187                 if (!val) return -EINVAL;                               \
188                 ret = strtolfn(val, 0, &l);                             \
189                 if (ret == -EINVAL || ((type)l != l))                   \
190                         return -EINVAL;                                 \
191                 *((type *)kp->arg) = l;                                 \
192                 return 0;                                               \
193         }                                                               \
194         int param_get_##name(char *buffer, struct kernel_param *kp)     \
195         {                                                               \
196                 return sprintf(buffer, format, *((type *)kp->arg));     \
197         }
198
199 STANDARD_PARAM_DEF(byte, unsigned char, "%c", unsigned long, strict_strtoul);
200 STANDARD_PARAM_DEF(short, short, "%hi", long, strict_strtol);
201 STANDARD_PARAM_DEF(ushort, unsigned short, "%hu", unsigned long, strict_strtoul);
202 STANDARD_PARAM_DEF(int, int, "%i", long, strict_strtol);
203 STANDARD_PARAM_DEF(uint, unsigned int, "%u", unsigned long, strict_strtoul);
204 STANDARD_PARAM_DEF(long, long, "%li", long, strict_strtol);
205 STANDARD_PARAM_DEF(ulong, unsigned long, "%lu", unsigned long, strict_strtoul);
206
207 int param_set_charp(const char *val, struct kernel_param *kp)
208 {
209         if (!val) {
210                 printk(KERN_ERR "%s: string parameter expected\n",
211                        kp->name);
212                 return -EINVAL;
213         }
214
215         if (strlen(val) > 1024) {
216                 printk(KERN_ERR "%s: string parameter too long\n",
217                        kp->name);
218                 return -ENOSPC;
219         }
220
221         /* This is a hack.  We can't need to strdup in early boot, and we
222          * don't need to; this mangled commandline is preserved. */
223         if (slab_is_available()) {
224                 *(char **)kp->arg = kstrdup(val, GFP_KERNEL);
225                 if (!kp->arg)
226                         return -ENOMEM;
227         } else
228                 *(const char **)kp->arg = val;
229
230         return 0;
231 }
232
233 int param_get_charp(char *buffer, struct kernel_param *kp)
234 {
235         return sprintf(buffer, "%s", *((char **)kp->arg));
236 }
237
238 /* Actually could be a bool or an int, for historical reasons. */
239 int param_set_bool(const char *val, struct kernel_param *kp)
240 {
241         bool v;
242
243         /* No equals means "set"... */
244         if (!val) val = "1";
245
246         /* One of =[yYnN01] */
247         switch (val[0]) {
248         case 'y': case 'Y': case '1':
249                 v = true;
250                 break;
251         case 'n': case 'N': case '0':
252                 v = false;
253                 break;
254         default:
255                 return -EINVAL;
256         }
257
258         if (kp->flags & KPARAM_ISBOOL)
259                 *(bool *)kp->arg = v;
260         else
261                 *(int *)kp->arg = v;
262         return 0;
263 }
264
265 int param_get_bool(char *buffer, struct kernel_param *kp)
266 {
267         bool val;
268         if (kp->flags & KPARAM_ISBOOL)
269                 val = *(bool *)kp->arg;
270         else
271                 val = *(int *)kp->arg;
272
273         /* Y and N chosen as being relatively non-coder friendly */
274         return sprintf(buffer, "%c", val ? 'Y' : 'N');
275 }
276
277 /* This one must be bool. */
278 int param_set_invbool(const char *val, struct kernel_param *kp)
279 {
280         int ret;
281         bool boolval;
282         struct kernel_param dummy;
283
284         dummy.arg = &boolval;
285         dummy.flags = KPARAM_ISBOOL;
286         ret = param_set_bool(val, &dummy);
287         if (ret == 0)
288                 *(bool *)kp->arg = !boolval;
289         return ret;
290 }
291
292 int param_get_invbool(char *buffer, struct kernel_param *kp)
293 {
294         return sprintf(buffer, "%c", (*(bool *)kp->arg) ? 'N' : 'Y');
295 }
296
297 /* We break the rule and mangle the string. */
298 static int param_array(const char *name,
299                        const char *val,
300                        unsigned int min, unsigned int max,
301                        void *elem, int elemsize,
302                        int (*set)(const char *, struct kernel_param *kp),
303                        unsigned int *num)
304 {
305         int ret;
306         struct kernel_param kp;
307         char save;
308
309         /* Get the name right for errors. */
310         kp.name = name;
311         kp.arg = elem;
312
313         /* No equals sign? */
314         if (!val) {
315                 printk(KERN_ERR "%s: expects arguments\n", name);
316                 return -EINVAL;
317         }
318
319         *num = 0;
320         /* We expect a comma-separated list of values. */
321         do {
322                 int len;
323
324                 if (*num == max) {
325                         printk(KERN_ERR "%s: can only take %i arguments\n",
326                                name, max);
327                         return -EINVAL;
328                 }
329                 len = strcspn(val, ",");
330
331                 /* nul-terminate and parse */
332                 save = val[len];
333                 ((char *)val)[len] = '\0';
334                 ret = set(val, &kp);
335
336                 if (ret != 0)
337                         return ret;
338                 kp.arg += elemsize;
339                 val += len+1;
340                 (*num)++;
341         } while (save == ',');
342
343         if (*num < min) {
344                 printk(KERN_ERR "%s: needs at least %i arguments\n",
345                        name, min);
346                 return -EINVAL;
347         }
348         return 0;
349 }
350
351 int param_array_set(const char *val, struct kernel_param *kp)
352 {
353         const struct kparam_array *arr = kp->arr;
354         unsigned int temp_num;
355
356         return param_array(kp->name, val, 1, arr->max, arr->elem,
357                            arr->elemsize, arr->set, arr->num ?: &temp_num);
358 }
359
360 int param_array_get(char *buffer, struct kernel_param *kp)
361 {
362         int i, off, ret;
363         const struct kparam_array *arr = kp->arr;
364         struct kernel_param p;
365
366         p = *kp;
367         for (i = off = 0; i < (arr->num ? *arr->num : arr->max); i++) {
368                 if (i)
369                         buffer[off++] = ',';
370                 p.arg = arr->elem + arr->elemsize * i;
371                 ret = arr->get(buffer + off, &p);
372                 if (ret < 0)
373                         return ret;
374                 off += ret;
375         }
376         buffer[off] = '\0';
377         return off;
378 }
379
380 int param_set_copystring(const char *val, struct kernel_param *kp)
381 {
382         const struct kparam_string *kps = kp->str;
383
384         if (!val) {
385                 printk(KERN_ERR "%s: missing param set value\n", kp->name);
386                 return -EINVAL;
387         }
388         if (strlen(val)+1 > kps->maxlen) {
389                 printk(KERN_ERR "%s: string doesn't fit in %u chars.\n",
390                        kp->name, kps->maxlen-1);
391                 return -ENOSPC;
392         }
393         strcpy(kps->string, val);
394         return 0;
395 }
396
397 int param_get_string(char *buffer, struct kernel_param *kp)
398 {
399         const struct kparam_string *kps = kp->str;
400         return strlcpy(buffer, kps->string, kps->maxlen);
401 }
402
403 /* sysfs output in /sys/modules/XYZ/parameters/ */
404 #define to_module_attr(n) container_of(n, struct module_attribute, attr);
405 #define to_module_kobject(n) container_of(n, struct module_kobject, kobj);
406
407 extern struct kernel_param __start___param[], __stop___param[];
408
409 struct param_attribute
410 {
411         struct module_attribute mattr;
412         struct kernel_param *param;
413 };
414
415 struct module_param_attrs
416 {
417         unsigned int num;
418         struct attribute_group grp;
419         struct param_attribute attrs[0];
420 };
421
422 #ifdef CONFIG_SYSFS
423 #define to_param_attr(n) container_of(n, struct param_attribute, mattr);
424
425 static ssize_t param_attr_show(struct module_attribute *mattr,
426                                struct module *mod, char *buf)
427 {
428         int count;
429         struct param_attribute *attribute = to_param_attr(mattr);
430
431         if (!attribute->param->get)
432                 return -EPERM;
433
434         count = attribute->param->get(buf, attribute->param);
435         if (count > 0) {
436                 strcat(buf, "\n");
437                 ++count;
438         }
439         return count;
440 }
441
442 /* sysfs always hands a nul-terminated string in buf.  We rely on that. */
443 static ssize_t param_attr_store(struct module_attribute *mattr,
444                                 struct module *owner,
445                                 const char *buf, size_t len)
446 {
447         int err;
448         struct param_attribute *attribute = to_param_attr(mattr);
449
450         if (!attribute->param->set)
451                 return -EPERM;
452
453         err = attribute->param->set(buf, attribute->param);
454         if (!err)
455                 return len;
456         return err;
457 }
458 #endif
459
460 #ifdef CONFIG_MODULES
461 #define __modinit
462 #else
463 #define __modinit __init
464 #endif
465
466 #ifdef CONFIG_SYSFS
467 /*
468  * add_sysfs_param - add a parameter to sysfs
469  * @mk: struct module_kobject
470  * @kparam: the actual parameter definition to add to sysfs
471  * @name: name of parameter
472  *
473  * Create a kobject if for a (per-module) parameter if mp NULL, and
474  * create file in sysfs.  Returns an error on out of memory.  Always cleans up
475  * if there's an error.
476  */
477 static __modinit int add_sysfs_param(struct module_kobject *mk,
478                                      struct kernel_param *kp,
479                                      const char *name)
480 {
481         struct module_param_attrs *new;
482         struct attribute **attrs;
483         int err, num;
484
485         /* We don't bother calling this with invisible parameters. */
486         BUG_ON(!kp->perm);
487
488         if (!mk->mp) {
489                 num = 0;
490                 attrs = NULL;
491         } else {
492                 num = mk->mp->num;
493                 attrs = mk->mp->grp.attrs;
494         }
495
496         /* Enlarge. */
497         new = krealloc(mk->mp,
498                        sizeof(*mk->mp) + sizeof(mk->mp->attrs[0]) * (num+1),
499                        GFP_KERNEL);
500         if (!new) {
501                 kfree(mk->mp);
502                 err = -ENOMEM;
503                 goto fail;
504         }
505         attrs = krealloc(attrs, sizeof(new->grp.attrs[0])*(num+2), GFP_KERNEL);
506         if (!attrs) {
507                 err = -ENOMEM;
508                 goto fail_free_new;
509         }
510
511         /* Sysfs wants everything zeroed. */
512         memset(new, 0, sizeof(*new));
513         memset(&new->attrs[num], 0, sizeof(new->attrs[num]));
514         memset(&attrs[num], 0, sizeof(attrs[num]));
515         new->grp.name = "parameters";
516         new->grp.attrs = attrs;
517
518         /* Tack new one on the end. */
519         new->attrs[num].param = kp;
520         new->attrs[num].mattr.show = param_attr_show;
521         new->attrs[num].mattr.store = param_attr_store;
522         new->attrs[num].mattr.attr.name = (char *)name;
523         new->attrs[num].mattr.attr.mode = kp->perm;
524         new->num = num+1;
525
526         /* Fix up all the pointers, since krealloc can move us */
527         for (num = 0; num < new->num; num++)
528                 new->grp.attrs[num] = &new->attrs[num].mattr.attr;
529         new->grp.attrs[num] = NULL;
530
531         mk->mp = new;
532         return 0;
533
534 fail_free_new:
535         kfree(new);
536 fail:
537         mk->mp = NULL;
538         return err;
539 }
540
541 #ifdef CONFIG_MODULES
542 static void free_module_param_attrs(struct module_kobject *mk)
543 {
544         kfree(mk->mp->grp.attrs);
545         kfree(mk->mp);
546         mk->mp = NULL;
547 }
548
549 /*
550  * module_param_sysfs_setup - setup sysfs support for one module
551  * @mod: module
552  * @kparam: module parameters (array)
553  * @num_params: number of module parameters
554  *
555  * Adds sysfs entries for module parameters under
556  * /sys/module/[mod->name]/parameters/
557  */
558 int module_param_sysfs_setup(struct module *mod,
559                              struct kernel_param *kparam,
560                              unsigned int num_params)
561 {
562         int i, err;
563         bool params = false;
564
565         for (i = 0; i < num_params; i++) {
566                 if (kparam[i].perm == 0)
567                         continue;
568                 err = add_sysfs_param(&mod->mkobj, &kparam[i], kparam[i].name);
569                 if (err)
570                         return err;
571                 params = true;
572         }
573
574         if (!params)
575                 return 0;
576
577         /* Create the param group. */
578         err = sysfs_create_group(&mod->mkobj.kobj, &mod->mkobj.mp->grp);
579         if (err)
580                 free_module_param_attrs(&mod->mkobj);
581         return err;
582 }
583
584 /*
585  * module_param_sysfs_remove - remove sysfs support for one module
586  * @mod: module
587  *
588  * Remove sysfs entries for module parameters and the corresponding
589  * kobject.
590  */
591 void module_param_sysfs_remove(struct module *mod)
592 {
593         if (mod->mkobj.mp) {
594                 sysfs_remove_group(&mod->mkobj.kobj, &mod->mkobj.mp->grp);
595                 /* We are positive that no one is using any param
596                  * attrs at this point.  Deallocate immediately. */
597                 free_module_param_attrs(&mod->mkobj);
598         }
599 }
600 #endif
601
602 void destroy_params(const struct kernel_param *params, unsigned num)
603 {
604         /* FIXME: This should free kmalloced charp parameters.  It doesn't. */
605 }
606
607 static void __init kernel_add_sysfs_param(const char *name,
608                                           struct kernel_param *kparam,
609                                           unsigned int name_skip)
610 {
611         struct module_kobject *mk;
612         struct kobject *kobj;
613         int err;
614
615         kobj = kset_find_obj(module_kset, name);
616         if (kobj) {
617                 /* We already have one.  Remove params so we can add more. */
618                 mk = to_module_kobject(kobj);
619                 /* We need to remove it before adding parameters. */
620                 sysfs_remove_group(&mk->kobj, &mk->mp->grp);
621         } else {
622                 mk = kzalloc(sizeof(struct module_kobject), GFP_KERNEL);
623                 BUG_ON(!mk);
624
625                 mk->mod = THIS_MODULE;
626                 mk->kobj.kset = module_kset;
627                 err = kobject_init_and_add(&mk->kobj, &module_ktype, NULL,
628                                            "%s", name);
629                 if (err) {
630                         kobject_put(&mk->kobj);
631                         printk(KERN_ERR "Module '%s' failed add to sysfs, "
632                                "error number %d\n", name, err);
633                         printk(KERN_ERR "The system will be unstable now.\n");
634                         return;
635                 }
636                 /* So that exit path is even. */
637                 kobject_get(&mk->kobj);
638         }
639
640         /* These should not fail at boot. */
641         err = add_sysfs_param(mk, kparam, kparam->name + name_skip);
642         BUG_ON(err);
643         err = sysfs_create_group(&mk->kobj, &mk->mp->grp);
644         BUG_ON(err);
645         kobject_uevent(&mk->kobj, KOBJ_ADD);
646         kobject_put(&mk->kobj);
647 }
648
649 /*
650  * param_sysfs_builtin - add contents in /sys/parameters for built-in modules
651  *
652  * Add module_parameters to sysfs for "modules" built into the kernel.
653  *
654  * The "module" name (KBUILD_MODNAME) is stored before a dot, the
655  * "parameter" name is stored behind a dot in kernel_param->name. So,
656  * extract the "module" name for all built-in kernel_param-eters,
657  * and for all who have the same, call kernel_add_sysfs_param.
658  */
659 static void __init param_sysfs_builtin(void)
660 {
661         struct kernel_param *kp;
662         unsigned int name_len;
663         char modname[MODULE_NAME_LEN];
664
665         for (kp = __start___param; kp < __stop___param; kp++) {
666                 char *dot;
667
668                 if (kp->perm == 0)
669                         continue;
670
671                 dot = strchr(kp->name, '.');
672                 if (!dot) {
673                         /* This happens for core_param() */
674                         strcpy(modname, "kernel");
675                         name_len = 0;
676                 } else {
677                         name_len = dot - kp->name + 1;
678                         strlcpy(modname, kp->name, name_len);
679                 }
680                 kernel_add_sysfs_param(modname, kp, name_len);
681         }
682 }
683
684
685 /* module-related sysfs stuff */
686
687 static ssize_t module_attr_show(struct kobject *kobj,
688                                 struct attribute *attr,
689                                 char *buf)
690 {
691         struct module_attribute *attribute;
692         struct module_kobject *mk;
693         int ret;
694
695         attribute = to_module_attr(attr);
696         mk = to_module_kobject(kobj);
697
698         if (!attribute->show)
699                 return -EIO;
700
701         ret = attribute->show(attribute, mk->mod, buf);
702
703         return ret;
704 }
705
706 static ssize_t module_attr_store(struct kobject *kobj,
707                                 struct attribute *attr,
708                                 const char *buf, size_t len)
709 {
710         struct module_attribute *attribute;
711         struct module_kobject *mk;
712         int ret;
713
714         attribute = to_module_attr(attr);
715         mk = to_module_kobject(kobj);
716
717         if (!attribute->store)
718                 return -EIO;
719
720         ret = attribute->store(attribute, mk->mod, buf, len);
721
722         return ret;
723 }
724
725 static struct sysfs_ops module_sysfs_ops = {
726         .show = module_attr_show,
727         .store = module_attr_store,
728 };
729
730 static int uevent_filter(struct kset *kset, struct kobject *kobj)
731 {
732         struct kobj_type *ktype = get_ktype(kobj);
733
734         if (ktype == &module_ktype)
735                 return 1;
736         return 0;
737 }
738
739 static struct kset_uevent_ops module_uevent_ops = {
740         .filter = uevent_filter,
741 };
742
743 struct kset *module_kset;
744 int module_sysfs_initialized;
745
746 struct kobj_type module_ktype = {
747         .sysfs_ops =    &module_sysfs_ops,
748 };
749
750 /*
751  * param_sysfs_init - wrapper for built-in params support
752  */
753 static int __init param_sysfs_init(void)
754 {
755         module_kset = kset_create_and_add("module", &module_uevent_ops, NULL);
756         if (!module_kset) {
757                 printk(KERN_WARNING "%s (%d): error creating kset\n",
758                         __FILE__, __LINE__);
759                 return -ENOMEM;
760         }
761         module_sysfs_initialized = 1;
762
763         param_sysfs_builtin();
764
765         return 0;
766 }
767 subsys_initcall(param_sysfs_init);
768
769 #endif /* CONFIG_SYSFS */
770
771 EXPORT_SYMBOL(param_set_byte);
772 EXPORT_SYMBOL(param_get_byte);
773 EXPORT_SYMBOL(param_set_short);
774 EXPORT_SYMBOL(param_get_short);
775 EXPORT_SYMBOL(param_set_ushort);
776 EXPORT_SYMBOL(param_get_ushort);
777 EXPORT_SYMBOL(param_set_int);
778 EXPORT_SYMBOL(param_get_int);
779 EXPORT_SYMBOL(param_set_uint);
780 EXPORT_SYMBOL(param_get_uint);
781 EXPORT_SYMBOL(param_set_long);
782 EXPORT_SYMBOL(param_get_long);
783 EXPORT_SYMBOL(param_set_ulong);
784 EXPORT_SYMBOL(param_get_ulong);
785 EXPORT_SYMBOL(param_set_charp);
786 EXPORT_SYMBOL(param_get_charp);
787 EXPORT_SYMBOL(param_set_bool);
788 EXPORT_SYMBOL(param_get_bool);
789 EXPORT_SYMBOL(param_set_invbool);
790 EXPORT_SYMBOL(param_get_invbool);
791 EXPORT_SYMBOL(param_array_set);
792 EXPORT_SYMBOL(param_array_get);
793 EXPORT_SYMBOL(param_set_copystring);
794 EXPORT_SYMBOL(param_get_string);