Home | History | Annotate | Download | only in pending

Lines Matching defs:module

14     usage: modprobe [-alrqvsDb] MODULE [symbol=value][...]
19 -l List (MODULE is a pattern)
20 -r Remove MODULE (stacks) or do autoclean
25 -b Apply blacklist to module names too
64 // Converts path name FILE to module name.
143 * if add - create module entry, add it to data base and return the same mod.
350 // Remove a module from the Linux Kernel. if !modules does auto remove.
365 // Insert module same as insmod implementation.
386 // Add module in probes list, if not loaded.
403 // Parse cmdline options suplied for module.
423 // Probes a single module and loads all its dependencies.
430 error_msg("module %s not found in modules.dep", m->name);
448 perror_msg("can't unload module %s", m2->name);
471 // none of above is true insert the module.
477 perror_msg("can't load module %s (%s)", m2->name, fn);
490 struct module_s *module;
513 if (depmode_read_entry(toys.optargs[0])) error_exit("no module found.");
543 while ((module = llist_popme(&TT.probes))) {
544 if (!module->rnames) {
545 TT.dbg("probing by module name\n");
549 if (!(flags & FLAG_b) || !(module->flags & MOD_BLACKLIST))
550 go_probe(module);
554 char *real = ((struct arg_list*)llist_pop(&module->rnames))->arg;
557 TT.dbg("probing alias %s by realname %s\n", module->name, real);
563 } while (module->rnames);