Lines Matching refs:module
52 typedef struct module *module_t;
121 #define MODULE_DEPEND(module, mdepend, vmin, vpref, vmax) \ argument
122 static struct mod_depend _##module##_depend_on_##mdepend \
128 MODULE_METADATA(_md_##module##_on_##mdepend, MDT_DEPEND, \
129 &_##module##_depend_on_##mdepend, #mdepend)
146 SYSINIT(name##module, sub, order, module_register_init, &data); \
167 #define MODULE_VERSION_CONCAT(module, version) _##module##_version argument
168 #define MODULE_VERSION(module, version) \ argument
169 static struct mod_version MODULE_VERSION_CONCAT(module, version)\
173 MODULE_METADATA(MODULE_VERSION_CONCAT(module, version), MDT_VERSION,\
174 &MODULE_VERSION_CONCAT(module, version), __XSTRING(module))