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