aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/moduleparam.h (follow)
AgeCommit message (Expand)AuthorFilesLines
2017-11-15Merge tag 'modules-for-v4.15' of git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linuxLinus Torvalds1-12/+4
2017-11-02License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGreg Kroah-Hartman1-0/+1
2017-10-31module: Do not paper over type mismatches in module_param_call()Kees Cook1-2/+2
2017-10-31module: Prepare to convert all module_param_call() prototypesKees Cook1-10/+2
2017-07-02moduleparam: fix doc: hwparam_irq configures an IRQSylvain 'ythier' Hitier1-1/+1
2017-04-04Annotate module params that specify hardware parameters (eg. ioport)David Howells1-1/+64
2015-11-06module: export param_free_charp()Dan Streetman1-0/+1
2015-07-01Merge tag 'modules-next-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linuxLinus Torvalds1-68/+31
2015-06-23module: add per-module param_lockDan Streetman1-52/+9
2015-06-23module: make perm constDan Streetman1-1/+1
2015-05-28kernel/params.c: generalize bool_enable_onlyLuis R. Rodriguez1-0/+6
2015-05-28kernel/params: constify struct kernel_param_ops usesLuis R. Rodriguez1-15/+15
2015-05-20module: add core_param_unsafeDmitry Torokhov1-0/+9
2015-05-20module: add extra argument for parse_params() callbackLuis R. Rodriguez1-1/+2
2014-10-14kernel/param: consolidate __{start,stop}___param[] in <linux/moduleparam.h>Geert Uytterhoeven1-0/+2
2014-09-11moduleparam: Resolve missing-field-initializer warningMark Rustad1-1/+1
2014-08-27param: check for tainting before calling set op.Rusty Russell1-16/+0
2014-08-27module: add module_param_unsafe and module_param_named_unsafeJani Nikula1-0/+18
2014-08-27module: make it possible to have unsafe, tainting module paramsJani Nikula1-9/+35
2014-08-27module: rename KERNEL_PARAM_FL_NOARG to avoid confusionJani Nikula1-1/+1
2014-07-17Add module param type 'ullong'Hannes Reinecke1-0/+5
2014-04-28param: hand arguments after -- straight to initRusty Russell1-1/+1
2014-03-24VERIFY_OCTAL_PERMISSIONS: stricter checking for sysfs perms.Rusty Russell1-5/+3
2014-03-17module: LLVMLinux: Remove unused function warning from __param_check macroMark Charlebois1-1/+1
2013-08-20module: Add flag to allow mod params to have no argumentsSteven Rostedt1-1/+12
2013-07-02There is no /sys/parametersJean Delvare1-1/+1
2012-12-14moduleparam: use __UNIQUE_ID()Rusty Russell1-4/+2
2012-06-08module_param: stop double-calling parameters.Rusty Russell1-5/+5
2012-04-30params: add 3rd arg to option handler callback signatureJim Cromie1-1/+2
2012-03-26params: <level>_initcall-like kernel parametersPawel Moll1-8/+43
2012-03-26module_param: remove support for bool parameters which are really int.Rusty Russell1-13/+6
2012-01-13module_param: check that bool parameters really are bool.Rusty Russell1-8/+2
2012-01-13module_param: avoid bool abuse, add bint for special cases.Rusty Russell1-0/+6
2012-01-13module_param: check type correctness for module_param_arrayRusty Russell1-0/+1
2011-10-31module.h: relocate MODULE_PARM_DESC into moduleparam.hPaul Gortmaker1-0/+5
2011-10-26params: make dashes and underscores in parameter names truly equalMichal Schmidt1-0/+20
2011-05-19module: reorder kparam_array to remove alignment padding on 64 bit buildsRichard Kennedy1-3/+4
2011-01-24param: add null statement to compiled-in module paramsLinus Walleij1-2/+4
2010-10-26modules: no need to align .modinfo stringsJan Beulich1-2/+2
2010-08-11param: don't deref arg in __same_type() checksRusty Russell1-5/+5
2010-08-11param: add kerneldoc to moduleparam.hRusty Russell1-26/+95
2010-08-11param: locking for kernel parametersRusty Russell1-0/+56
2010-08-11param: make param sections const.Rusty Russell1-1/+1
2010-08-11param: add a free hook to kernel_param_ops.Rusty Russell1-0/+2
2010-08-11param: use ops in struct kernel_param, rather than get and set fns directlyRusty Russell1-48/+75
2009-10-29param: fix lots of bugs with writing charp params from sysfs, by leaking mem.Rusty Russell1-1/+0
2009-06-12module_param: allow 'bool' module_params to be bool, not just int.Rusty Russell1-9/+23
2009-06-12module_param: split perm field into flags and permRusty Russell1-2/+6
2009-06-12module_param: invbool should take a 'bool', not an 'int'Rusty Russell1-1/+1
2009-03-31param: fix charp parameters set via sysfsRusty Russell1-0/+10