Searched defs:on_mod (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/uts/common/os/
H A Dmodctl.c4237 * Record that module "dep" is dependent on module "on_mod."
4240 mod_make_requisite(struct modctl *dependent, struct modctl *on_mod) argument
4246 ASSERT(dependent->mod_busy && on_mod->mod_busy);
4250 * Search dependent's requisite list to see if on_mod is recorded.
4255 if (mlp->modl_modp->mod_id >= on_mod->mod_id)
4259 if ((mlp == NULL) || (mlp->modl_modp->mod_id != on_mod->mod_id)) {
4261 new->modl_modp = on_mod;
4269 * unloaded. "on_mod"'s mod_ref count decremented in
4271 * unload is complete. "on_mod" must be loaded, but may not
4274 on_mod
4372 struct modctl *on_mod; local
[all...]

Completed in 53 milliseconds