Lines Matching defs:module
19 -b Apply blacklist to module names too
55 // Converts path name FILE to module name.
134 * if add - create module entry, add it to data base and return the same mod.
341 // Remove a module from the Linux Kernel. if !modules does auto remove.
350 // Insert module; simpler than insmod(1) because we already flattened the array
360 // Add module in probes list, if not loaded.
377 // Parse cmdline options suplied for module.
397 // Probes a single module and loads all its dependencies.
403 if (!FLAG(q)) error_msg("module %s not found in modules.dep", m->name);
421 perror_msg("can't unload module %s", m2->name);
446 // none of above is true insert the module.
454 perror_msg("can't load module %s (%s)", m2->name, fn);
465 struct module_s *module;
489 error_exit("no module found.");
525 while ((module = llist_popme(&TT.probes))) {
526 if (!module->rnames) {
527 if (FLAG(v)) puts("probing by module name");
531 if (!FLAG(b) || !(module->flags & MOD_BLACKLIST))
532 go_probe(module);
536 char *real = ((struct arg_list *)llist_pop(&module->rnames))->arg;
540 printf("probing alias %s by realname %s\n", module->name, real);
546 } while (module->rnames);