nit: xpt_bus_deregister has to be called with the sim lock held.

MFC after:	1 month
This commit is contained in:
Matt Jacob 2010-03-30 20:39:57 +00:00
parent 1eadf156c2
commit f0b41ca4fc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=205932

View File

@ -1208,14 +1208,18 @@ mpt_cam_detach(struct mpt_softc *mpt)
if (mpt->sim != NULL) {
xpt_free_path(mpt->path);
MPT_LOCK(mpt);
xpt_bus_deregister(cam_sim_path(mpt->sim));
MPT_UNLOCK(mpt);
cam_sim_free(mpt->sim, TRUE);
mpt->sim = NULL;
}
if (mpt->phydisk_sim != NULL) {
xpt_free_path(mpt->phydisk_path);
MPT_LOCK(mpt);
xpt_bus_deregister(cam_sim_path(mpt->phydisk_sim));
MPT_UNLOCK(mpt);
cam_sim_free(mpt->phydisk_sim, TRUE);
mpt->phydisk_sim = NULL;
}