blob: c3eb102a9cc81d8ed97f11deb9584aa71830b1c5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_MODULE_PARAMS_H
2#define _LINUX_MODULE_PARAMS_H
3/* (C) Copyright 2001, 2002 Rusty Russell IBM Corporation */
4#include <linux/init.h>
5#include <linux/stringify.h>
6#include <linux/kernel.h>
7
8/* You can override this manually, but generally this should match the
9 module name. */
10#ifdef MODULE
11#define MODULE_PARAM_PREFIX /* empty */
12#else
Sam Ravnborg367cb702006-01-06 21:17:50 +010013#define MODULE_PARAM_PREFIX KBUILD_MODNAME "."
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#endif
15
Rusty Russell730b69d2008-10-22 10:00:22 -050016/* Chosen so that structs with an unsigned long line up. */
17#define MAX_PARAM_PREFIX_LEN (64 - sizeof(unsigned long))
18
Linus Walleijb75be422011-01-05 13:27:04 +010019#ifdef MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#define __MODULE_INFO(tag, name, info) \
Rusty Russell34182ee2012-11-22 12:30:25 +103021static const char __UNIQUE_ID(name)[] \
Jan Beulichb6472772010-10-26 14:22:26 -070022 __used __attribute__((section(".modinfo"), unused, aligned(1))) \
23 = __stringify(tag) "=" info
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#else /* !MODULE */
Linus Walleijb75be422011-01-05 13:27:04 +010025/* This struct is here for syntactic coherency, it is not used */
26#define __MODULE_INFO(tag, name, info) \
Rusty Russell34182ee2012-11-22 12:30:25 +103027 struct __UNIQUE_ID(name) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#endif
29#define __MODULE_PARM_TYPE(name, _type) \
30 __MODULE_INFO(parmtype, name##type, #name ":" _type)
31
Paul Gortmaker639938e2011-08-30 11:24:44 -040032/* One for each parameter, describing how to use it. Some files do
33 multiple of these per line, so can't just use MODULE_INFO. */
34#define MODULE_PARM_DESC(_parm, desc) \
35 __MODULE_INFO(parm, _parm, #_parm ":" desc)
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037struct kernel_param;
38
Steven Rostedtab013c52013-08-20 15:33:19 +093039/*
40 * Flags available for kernel_param_ops
41 *
42 * NOARG - the parameter allows for no argument (foo instead of foo=1)
43 */
44enum {
45 KERNEL_PARAM_FL_NOARG = (1 << 0)
46};
47
Rusty Russell9bbb9e52010-08-11 23:04:12 -060048struct kernel_param_ops {
Steven Rostedtab013c52013-08-20 15:33:19 +093049 /* How the ops should behave */
50 unsigned int flags;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060051 /* Returns 0, or -errno. arg is in kp->arg. */
52 int (*set)(const char *val, const struct kernel_param *kp);
53 /* Returns length written or -errno. Buffer is 4k (ie. be short!) */
54 int (*get)(char *buffer, const struct kernel_param *kp);
Rusty Russelle6df34a2010-08-11 23:04:17 -060055 /* Optional function to free kp->arg when module unloaded. */
56 void (*free)(void *arg);
Rusty Russell9bbb9e52010-08-11 23:04:12 -060057};
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59struct kernel_param {
60 const char *name;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060061 const struct kernel_param_ops *ops;
Rusty Russell45fcc702009-06-12 21:46:56 -060062 u16 perm;
Pawel Moll026cee02012-03-26 12:50:51 +103063 s16 level;
Jan Beulich22e48ea2007-10-16 23:29:34 -070064 union {
65 void *arg;
66 const struct kparam_string *str;
67 const struct kparam_array *arr;
68 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070069};
70
71/* Special one for strings we want to copy into */
72struct kparam_string {
73 unsigned int maxlen;
74 char *string;
75};
76
77/* Special one for arrays */
78struct kparam_array
79{
80 unsigned int max;
Richard Kennedyc5be0b22011-05-19 16:55:25 -060081 unsigned int elemsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 unsigned int *num;
Rusty Russell9bbb9e52010-08-11 23:04:12 -060083 const struct kernel_param_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 void *elem;
85};
86
Rusty Russell546970b2010-08-11 23:04:20 -060087/**
88 * module_param - typesafe helper for a module/cmdline parameter
89 * @value: the variable to alter, and exposed parameter name.
90 * @type: the type of the parameter
91 * @perm: visibility in sysfs.
92 *
93 * @value becomes the module parameter, or (prefixed by KBUILD_MODNAME and a
94 * ".") the kernel commandline parameter. Note that - is changed to _, so
95 * the user can use "foo-bar=1" even for variable "foo_bar".
96 *
97 * @perm is 0 if the the variable is not to appear in sysfs, or 0444
98 * for world-readable, 0644 for root-writable, etc. Note that if it
99 * is writable, you may need to use kparam_block_sysfs_write() around
100 * accesses (esp. charp, which can be kfreed when it changes).
101 *
102 * The @type is simply pasted to refer to a param_ops_##type and a
103 * param_check_##type: for convenience many standard types are provided but
104 * you can create your own by defining those variables.
105 *
106 * Standard types are:
107 * byte, short, ushort, int, uint, long, ulong
108 * charp: a character pointer
109 * bool: a bool, values 0/1, y/n, Y/N.
110 * invbool: the above, only sense-reversed (N = true).
111 */
112#define module_param(name, type, perm) \
113 module_param_named(name, name, type, perm)
114
115/**
116 * module_param_named - typesafe helper for a renamed module/cmdline parameter
117 * @name: a valid C identifier which is the parameter name.
118 * @value: the actual lvalue to alter.
119 * @type: the type of the parameter
120 * @perm: visibility in sysfs.
121 *
122 * Usually it's a good idea to have variable names and user-exposed names the
123 * same, but that's harder if the variable must be non-static or is inside a
124 * structure. This allows exposure under a different name.
125 */
126#define module_param_named(name, value, type, perm) \
127 param_check_##type(name, &(value)); \
128 module_param_cb(name, &param_ops_##type, &value, perm); \
129 __MODULE_PARM_TYPE(name, #type)
130
131/**
132 * module_param_cb - general callback for a module/cmdline parameter
133 * @name: a valid C identifier which is the parameter name.
134 * @ops: the set & get operations for this parameter.
135 * @perm: visibility in sysfs.
136 *
137 * The ops can have NULL set or get functions.
138 */
139#define module_param_cb(name, ops, arg, perm) \
Rusty Russellae82fdb2012-06-08 14:58:13 +0930140 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, -1)
Pawel Moll026cee02012-03-26 12:50:51 +1030141
142/**
143 * <level>_param_cb - general callback for a module/cmdline parameter
144 * to be evaluated before certain initcall level
145 * @name: a valid C identifier which is the parameter name.
146 * @ops: the set & get operations for this parameter.
147 * @perm: visibility in sysfs.
148 *
149 * The ops can have NULL set or get functions.
150 */
151#define __level_param_cb(name, ops, arg, perm, level) \
152 __module_param_call(MODULE_PARAM_PREFIX, name, ops, arg, perm, level)
153
154#define core_param_cb(name, ops, arg, perm) \
155 __level_param_cb(name, ops, arg, perm, 1)
156
157#define postcore_param_cb(name, ops, arg, perm) \
158 __level_param_cb(name, ops, arg, perm, 2)
159
160#define arch_param_cb(name, ops, arg, perm) \
161 __level_param_cb(name, ops, arg, perm, 3)
162
163#define subsys_param_cb(name, ops, arg, perm) \
164 __level_param_cb(name, ops, arg, perm, 4)
165
166#define fs_param_cb(name, ops, arg, perm) \
167 __level_param_cb(name, ops, arg, perm, 5)
168
169#define device_param_cb(name, ops, arg, perm) \
170 __level_param_cb(name, ops, arg, perm, 6)
171
172#define late_param_cb(name, ops, arg, perm) \
173 __level_param_cb(name, ops, arg, perm, 7)
Rusty Russell546970b2010-08-11 23:04:20 -0600174
Ivan Kokshaysky91d35dd2008-02-13 15:03:26 -0800175/* On alpha, ia64 and ppc64 relocations to global data cannot go into
176 read-only sections (which is part of respective UNIX ABI on these
177 platforms). So 'const' makes no sense and even causes compile failures
178 with some compilers. */
179#if defined(CONFIG_ALPHA) || defined(CONFIG_IA64) || defined(CONFIG_PPC64)
180#define __moduleparam_const
181#else
182#define __moduleparam_const const
183#endif
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/* This is the fundamental function for registering boot/module
Rusty Russell546970b2010-08-11 23:04:20 -0600186 parameters. */
Pawel Moll026cee02012-03-26 12:50:51 +1030187#define __module_param_call(prefix, name, ops, arg, perm, level) \
Alexey Dobriyan9774a1f2006-12-06 20:36:56 -0800188 /* Default value instead of permissions? */ \
189 static int __param_perm_check_##name __attribute__((unused)) = \
Rusty Russell730b69d2008-10-22 10:00:22 -0500190 BUILD_BUG_ON_ZERO((perm) < 0 || (perm) > 0777 || ((perm) & 2)) \
191 + BUILD_BUG_ON_ZERO(sizeof(""prefix) > MAX_PARAM_PREFIX_LEN); \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700192 static const char __param_str_##name[] = prefix #name; \
Ivan Kokshaysky91d35dd2008-02-13 15:03:26 -0800193 static struct kernel_param __moduleparam_const __param_##name \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +0100194 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) \
Pawel Moll026cee02012-03-26 12:50:51 +1030196 = { __param_str_##name, ops, perm, level, { arg } }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600198/* Obsolete - use module_param_cb() */
199#define module_param_call(name, set, get, arg, perm) \
200 static struct kernel_param_ops __param_ops_##name = \
Steven Rostedtab013c52013-08-20 15:33:19 +0930201 { 0, (void *)set, (void *)get }; \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600202 __module_param_call(MODULE_PARAM_PREFIX, \
203 name, &__param_ops_##name, arg, \
Rusty Russellae82fdb2012-06-08 14:58:13 +0930204 (perm) + sizeof(__check_old_set_param(set))*0, -1)
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600205
206/* We don't get oldget: it's often a new-style param_get_uint, etc. */
207static inline int
208__check_old_set_param(int (*oldset)(const char *, struct kernel_param *))
209{
210 return 0;
211}
212
Rusty Russell907b29e2010-08-11 23:04:19 -0600213/**
214 * kparam_block_sysfs_write - make sure a parameter isn't written via sysfs.
215 * @name: the name of the parameter
216 *
217 * There's no point blocking write on a paramter that isn't writable via sysfs!
218 */
219#define kparam_block_sysfs_write(name) \
220 do { \
221 BUG_ON(!(__param_##name.perm & 0222)); \
222 __kernel_param_lock(); \
223 } while (0)
224
225/**
226 * kparam_unblock_sysfs_write - allows sysfs to write to a parameter again.
227 * @name: the name of the parameter
228 */
229#define kparam_unblock_sysfs_write(name) \
230 do { \
231 BUG_ON(!(__param_##name.perm & 0222)); \
232 __kernel_param_unlock(); \
233 } while (0)
234
235/**
236 * kparam_block_sysfs_read - make sure a parameter isn't read via sysfs.
237 * @name: the name of the parameter
238 *
239 * This also blocks sysfs writes.
240 */
241#define kparam_block_sysfs_read(name) \
242 do { \
243 BUG_ON(!(__param_##name.perm & 0444)); \
244 __kernel_param_lock(); \
245 } while (0)
246
247/**
248 * kparam_unblock_sysfs_read - allows sysfs to read a parameter again.
249 * @name: the name of the parameter
250 */
251#define kparam_unblock_sysfs_read(name) \
252 do { \
253 BUG_ON(!(__param_##name.perm & 0444)); \
254 __kernel_param_unlock(); \
255 } while (0)
256
257#ifdef CONFIG_SYSFS
258extern void __kernel_param_lock(void);
259extern void __kernel_param_unlock(void);
260#else
261static inline void __kernel_param_lock(void)
262{
263}
264static inline void __kernel_param_unlock(void)
265{
266}
267#endif
268
Rusty Russell67e67ce2008-10-22 10:00:23 -0500269#ifndef MODULE
270/**
271 * core_param - define a historical core kernel parameter.
272 * @name: the name of the cmdline and sysfs parameter (often the same as var)
273 * @var: the variable
Rusty Russell546970b2010-08-11 23:04:20 -0600274 * @type: the type of the parameter
Rusty Russell67e67ce2008-10-22 10:00:23 -0500275 * @perm: visibility in sysfs
276 *
277 * core_param is just like module_param(), but cannot be modular and
278 * doesn't add a prefix (such as "printk."). This is for compatibility
279 * with __setup(), and it makes sense as truly core parameters aren't
280 * tied to the particular file they're in.
281 */
282#define core_param(name, var, type, perm) \
283 param_check_##type(name, &(var)); \
Rusty Russellae82fdb2012-06-08 14:58:13 +0930284 __module_param_call("", name, &param_ops_##type, &var, perm, -1)
Rusty Russell67e67ce2008-10-22 10:00:23 -0500285#endif /* !MODULE */
286
Rusty Russell546970b2010-08-11 23:04:20 -0600287/**
288 * module_param_string - a char array parameter
289 * @name: the name of the parameter
290 * @string: the string variable
291 * @len: the maximum length of the string, incl. terminator
292 * @perm: visibility in sysfs.
293 *
294 * This actually copies the string when it's set (unlike type charp).
295 * @len is usually just sizeof(string).
296 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297#define module_param_string(name, string, len, perm) \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700298 static const struct kparam_string __param_string_##name \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 = { len, string }; \
Rusty Russellfddd5202009-06-12 21:46:57 -0600300 __module_param_call(MODULE_PARAM_PREFIX, name, \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600301 &param_ops_string, \
Rusty Russellae82fdb2012-06-08 14:58:13 +0930302 .str = &__param_string_##name, perm, -1); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 __MODULE_PARM_TYPE(name, "string")
304
Michal Schmidtb1e4d202011-10-10 00:03:37 +0200305/**
306 * parameq - checks if two parameter names match
307 * @name1: parameter name 1
308 * @name2: parameter name 2
309 *
310 * Returns true if the two parameter names are equal.
311 * Dashes (-) are considered equal to underscores (_).
312 */
313extern bool parameq(const char *name1, const char *name2);
314
315/**
316 * parameqn - checks if two parameter names match
317 * @name1: parameter name 1
318 * @name2: parameter name 2
319 * @n: the length to compare
320 *
321 * Similar to parameq(), except it compares @n characters.
322 */
323extern bool parameqn(const char *name1, const char *name2, size_t n);
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325/* Called on module insert or kernel boot */
326extern int parse_args(const char *name,
327 char *args,
Rusty Russell914dcaa2010-08-11 23:04:18 -0600328 const struct kernel_param *params,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 unsigned num,
Pawel Moll026cee02012-03-26 12:50:51 +1030330 s16 level_min,
331 s16 level_max,
Jim Cromie9fb48c72012-04-27 14:30:34 -0600332 int (*unknown)(char *param, char *val,
333 const char *doing));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Rusty Russelle180a6b2009-03-31 13:05:29 -0600335/* Called by module remove. */
336#ifdef CONFIG_SYSFS
337extern void destroy_params(const struct kernel_param *params, unsigned num);
338#else
339static inline void destroy_params(const struct kernel_param *params,
340 unsigned num)
341{
342}
343#endif /* !CONFIG_SYSFS */
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345/* All the helper functions */
346/* The macros to do compile-time type checking stolen from Jakub
347 Jelinek, who IIRC came up with this idea for the 2.4 module init code. */
348#define __param_check(name, p, type) \
349 static inline type *__check_##name(void) { return(p); }
350
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600351extern struct kernel_param_ops param_ops_byte;
352extern int param_set_byte(const char *val, const struct kernel_param *kp);
353extern int param_get_byte(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354#define param_check_byte(name, p) __param_check(name, p, unsigned char)
355
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600356extern struct kernel_param_ops param_ops_short;
357extern int param_set_short(const char *val, const struct kernel_param *kp);
358extern int param_get_short(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359#define param_check_short(name, p) __param_check(name, p, short)
360
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600361extern struct kernel_param_ops param_ops_ushort;
362extern int param_set_ushort(const char *val, const struct kernel_param *kp);
363extern int param_get_ushort(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364#define param_check_ushort(name, p) __param_check(name, p, unsigned short)
365
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600366extern struct kernel_param_ops param_ops_int;
367extern int param_set_int(const char *val, const struct kernel_param *kp);
368extern int param_get_int(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369#define param_check_int(name, p) __param_check(name, p, int)
370
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600371extern struct kernel_param_ops param_ops_uint;
372extern int param_set_uint(const char *val, const struct kernel_param *kp);
373extern int param_get_uint(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374#define param_check_uint(name, p) __param_check(name, p, unsigned int)
375
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600376extern struct kernel_param_ops param_ops_long;
377extern int param_set_long(const char *val, const struct kernel_param *kp);
378extern int param_get_long(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379#define param_check_long(name, p) __param_check(name, p, long)
380
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600381extern struct kernel_param_ops param_ops_ulong;
382extern int param_set_ulong(const char *val, const struct kernel_param *kp);
383extern int param_get_ulong(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384#define param_check_ulong(name, p) __param_check(name, p, unsigned long)
385
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600386extern struct kernel_param_ops param_ops_charp;
387extern int param_set_charp(const char *val, const struct kernel_param *kp);
388extern int param_get_charp(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389#define param_check_charp(name, p) __param_check(name, p, char *)
390
Rusty Russell72db3952012-01-13 09:32:28 +1030391/* We used to allow int as well as bool. We're taking that away! */
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600392extern struct kernel_param_ops param_ops_bool;
393extern int param_set_bool(const char *val, const struct kernel_param *kp);
394extern int param_get_bool(char *buffer, const struct kernel_param *kp);
Rusty Russell72db3952012-01-13 09:32:28 +1030395#define param_check_bool(name, p) __param_check(name, p, bool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600397extern struct kernel_param_ops param_ops_invbool;
398extern int param_set_invbool(const char *val, const struct kernel_param *kp);
399extern int param_get_invbool(char *buffer, const struct kernel_param *kp);
Rusty Russell9a71af22009-06-12 21:46:53 -0600400#define param_check_invbool(name, p) __param_check(name, p, bool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Rusty Russell69116f22012-01-13 09:32:17 +1030402/* An int, which can only be set like a bool (though it shows as an int). */
403extern struct kernel_param_ops param_ops_bint;
404extern int param_set_bint(const char *val, const struct kernel_param *kp);
405#define param_get_bint param_get_int
406#define param_check_bint param_check_int
407
Rusty Russell546970b2010-08-11 23:04:20 -0600408/**
409 * module_param_array - a parameter which is an array of some type
410 * @name: the name of the array variable
411 * @type: the type, as per module_param()
412 * @nump: optional pointer filled in with the number written
413 * @perm: visibility in sysfs
414 *
415 * Input and output are as comma-separated values. Commas inside values
416 * don't work properly (eg. an array of charp).
417 *
418 * ARRAY_SIZE(@name) is used to determine the number of elements in the
419 * array, so the definition must be visible.
420 */
421#define module_param_array(name, type, nump, perm) \
422 module_param_array_named(name, name, type, nump, perm)
423
424/**
425 * module_param_array_named - renamed parameter which is an array of some type
426 * @name: a valid C identifier which is the parameter name
427 * @array: the name of the array variable
428 * @type: the type, as per module_param()
429 * @nump: optional pointer filled in with the number written
430 * @perm: visibility in sysfs
431 *
432 * This exposes a different name than the actual variable name. See
433 * module_param_named() for why this might be necessary.
434 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435#define module_param_array_named(name, array, type, nump, perm) \
Rusty Russellbafeafe2012-01-13 09:32:16 +1030436 param_check_##type(name, &(array)[0]); \
Jan Beulich22e48ea2007-10-16 23:29:34 -0700437 static const struct kparam_array __param_arr_##name \
Richard Kennedyc5be0b22011-05-19 16:55:25 -0600438 = { .max = ARRAY_SIZE(array), .num = nump, \
439 .ops = &param_ops_##type, \
440 .elemsize = sizeof(array[0]), .elem = array }; \
Rusty Russellfddd5202009-06-12 21:46:57 -0600441 __module_param_call(MODULE_PARAM_PREFIX, name, \
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600442 &param_array_ops, \
Rusty Russellfddd5202009-06-12 21:46:57 -0600443 .arr = &__param_arr_##name, \
Rusty Russellae82fdb2012-06-08 14:58:13 +0930444 perm, -1); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 __MODULE_PARM_TYPE(name, "array of " #type)
446
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600447extern struct kernel_param_ops param_array_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600449extern struct kernel_param_ops param_ops_string;
450extern int param_set_copystring(const char *val, const struct kernel_param *);
451extern int param_get_string(char *buffer, const struct kernel_param *kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Jean Delvareb634d132013-07-02 15:35:11 +0930453/* for exporting parameters in /sys/module/.../parameters */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455struct module;
456
Randy Dunlapef665c12007-02-13 15:19:06 -0800457#if defined(CONFIG_SYSFS) && defined(CONFIG_MODULES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458extern int module_param_sysfs_setup(struct module *mod,
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600459 const struct kernel_param *kparam,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 unsigned int num_params);
461
462extern void module_param_sysfs_remove(struct module *mod);
Randy Dunlapef665c12007-02-13 15:19:06 -0800463#else
464static inline int module_param_sysfs_setup(struct module *mod,
Rusty Russell9bbb9e52010-08-11 23:04:12 -0600465 const struct kernel_param *kparam,
Randy Dunlapef665c12007-02-13 15:19:06 -0800466 unsigned int num_params)
467{
468 return 0;
469}
470
471static inline void module_param_sysfs_remove(struct module *mod)
472{ }
473#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475#endif /* _LINUX_MODULE_PARAMS_H */