Remove some Giant unlocks I missed in r267290.

This commit is contained in:
John Baldwin 2014-06-12 11:21:18 +00:00
parent 46e89834dc
commit 896ae82d59

View file

@ -1358,19 +1358,16 @@ static int hpt_rescan_bus(void)
ldm_for_each_vbus(vbus, vbus_ext) {
if ((ccb = xpt_alloc_ccb()) == NULL)
{
mtx_unlock(&Giant);
return(ENOMEM);
}
if (xpt_create_path(&ccb->ccb_h.path, NULL, cam_sim_path(vbus_ext->sim),
CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD) != CAM_REQ_CMP)
{
xpt_free_ccb(ccb);
mtx_unlock(&Giant);
return(EIO);
}
xpt_rescan(ccb);
}
mtx_unlock(&Giant);
return(0);
}