Lines Matching defs:module

5  * source module.
17 #include <linux/module.h>
56 const char *module;
78 "( 0 = off (default), 1 = module add/rm, 2 = >control summary, 3 = parsing, 4 = per-site changes)");
141 v3pr_info("%s: func=\"%s\" file=\"%s\" module=\"%s\" format=\"%.*s\" lineno=%u-%u class=%s\n",
145 query->module ?: "",
189 /* match against the module name */
190 if (query->module &&
191 !match_wildcard(query->module, dt->mod_name))
404 * module <module-name>
448 } else if (!strcmp(keyword, "module")) {
449 rc = check_set(&query->module, arg, "module");
467 if (!query->module && modname)
472 query->module = modname;
628 /* stub to later conditionally add "$module." prefix where not already done */
1138 "# filename:lineno [module]function flags format\n");
1211 v2pr_info("class[%d]: module:%s base:%d len:%d ty:%d\n", i,
1223 vpr_info("module:%s attached %d classes\n", dt->mod_name, ct);
1227 * Allocate a new ddebug_table for the given module
1234 v3pr_info("add-module: %s.%d sites\n", modname, di->num_descs);
1242 pr_err("error adding module: %s\n", modname);
1248 * member of struct module, which lives at least as long as
1265 vpr_info("%3u debug prints in module %s\n", di->num_descs, modname);
1269 /* helper for ddebug_dyndbg_(boot|module)_param_cb */
1287 return 0; /* query failure shouldn't stop module load */
1290 /* handle both dyndbg and $module.dyndbg params at boot */
1303 int ddebug_dyndbg_module_param_cb(char *param, char *val, const char *module)
1305 vpr_info("module: %s %s=\"%s\"\n", module, param, val);
1306 return ddebug_dyndbg_param_cb(param, val, module, -ENOENT);
1318 * Called in response to a module being unloaded. Removes
1319 * any ddebug_table's which point at the module.
1336 v2pr_info("removed module \"%s\"\n", mod_name);
1343 struct module *mod = data;
1421 pr_warn("Failed to register dynamic debug module notifier\n");