Lines Matching refs:mtp
354 fmd_modtopo_t *mtp; in fmd_module_unload() local
405 while ((mtp = fmd_list_next(&mp->mod_topolist)) != NULL) { in fmd_module_unload()
406 fmd_list_delete(&mp->mod_topolist, mtp); in fmd_module_unload()
407 fmd_topo_rele(mtp->mt_topo); in fmd_module_unload()
408 fmd_free(mtp, sizeof (fmd_modtopo_t)); in fmd_module_unload()
1384 fmd_modtopo_t *mtp; in fmd_module_topo_hold() local
1388 mtp = fmd_zalloc(sizeof (fmd_modtopo_t), FMD_SLEEP); in fmd_module_topo_hold()
1389 mtp->mt_topo = mp->mod_topo_current; in fmd_module_topo_hold()
1390 fmd_topo_addref(mtp->mt_topo); in fmd_module_topo_hold()
1391 fmd_list_prepend(&mp->mod_topolist, mtp); in fmd_module_topo_hold()
1393 return (mtp->mt_topo->ft_hdl); in fmd_module_topo_hold()
1399 fmd_modtopo_t *mtp; in fmd_module_topo_rele() local
1403 for (mtp = fmd_list_next(&mp->mod_topolist); mtp != NULL; in fmd_module_topo_rele()
1404 mtp = fmd_list_next(mtp)) { in fmd_module_topo_rele()
1405 if (mtp->mt_topo->ft_hdl == hdl) in fmd_module_topo_rele()
1409 if (mtp == NULL) in fmd_module_topo_rele()
1412 fmd_list_delete(&mp->mod_topolist, mtp); in fmd_module_topo_rele()
1413 fmd_topo_rele(mtp->mt_topo); in fmd_module_topo_rele()
1414 fmd_free(mtp, sizeof (fmd_modtopo_t)); in fmd_module_topo_rele()