Lines Matching full:module
29 its configuration, reject loading the module or warn about a missing import.
54 and kernel/module/main.c make use the namespace at build time or module load
92 load the module. The module code is required to use the macro MODULE_IMPORT_NS
93 for the namespaces it uses symbols from. E.g. a module using the
99 This will create a ``modinfo`` tag in the module for each imported namespace.
100 This has the side effect, that the imported namespaces of a module can be
109 It is advisable to add the MODULE_IMPORT_NS() statement close to other module
116 At module loading time (e.g. ``insmod``), the kernel will check each symbol
117 referenced from the module for its availability and whether the namespace it
118 might be exported to has been imported by the module. The default behaviour of
129 modpost will emit a warning if a module uses a symbol from a namespace
132 (along with other module meta data). To make the life of module authors (and
138 A typical scenario for module authors would be::
155 You can also run nsdeps for external module builds. A typical usage is::