Open Source
linxkern.txt
Associated article: Loadable Modules & the Linux 2.6 Kernel
Tags: Open Source
Published source code accompanying the article by Daniele Paolo Scarpazza, in which he examines how the Linux Kernel 2.6 introduces significant changes with respect to 2.4, and modules written for kernel 2.4 might not work anymore. Also see LINXKERN.ZIP.
Loadable Modules & the Linux 2.6 Kernel
by Daniele Paolo Scarpazza
Example 1:
module_param(my_integer_parameter, int, S_IRUSR | S_IWUSR );
MODULE_PARM_DESC(my_integer_parameter, "An integer parameter");
module_param(my_string_parameter, charp, S_IRUSR |
...


