> Where can I find a list of kernel functions and variables
> available to an installable module ?
find /usr/src/linux/ -type f -name \*.[ch] | xargs grep EXPORT_SYMBOL
or "cat /proc/ksyms" to get the ones available in the running kernel.
Note that this varies with the modules that are currently loaded.
Kai
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/