diff options
| author | Sean Bruno <sbruno@FreeBSD.org> | 2013-05-31 03:14:49 +0000 |
|---|---|---|
| committer | Sean Bruno <sbruno@FreeBSD.org> | 2013-05-31 03:14:49 +0000 |
| commit | f746997530069abe394a9d519a37c8179be3b1b5 (patch) | |
| tree | 8dca6687e49504e5941c0f799f9ebc4f67c8b417 /sys/dev/mfi | |
| parent | 22a722605d723aab89d510c7a77d6508fb995785 (diff) | |
Notes
Diffstat (limited to 'sys/dev/mfi')
| -rw-r--r-- | sys/dev/mfi/mfi_cam.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/mfi/mfi_cam.c b/sys/dev/mfi/mfi_cam.c index e66e8aae5e95..b6ceb57f2867 100644 --- a/sys/dev/mfi/mfi_cam.c +++ b/sys/dev/mfi/mfi_cam.c @@ -318,13 +318,16 @@ mfip_cam_rescan(struct mfi_softc *sc, uint32_t tid) } sim = camsc->sim; + mtx_lock(&sc->mfi_io_lock); if (xpt_create_path(&ccb->ccb_h.path, NULL, cam_sim_path(sim), tid, CAM_LUN_WILDCARD) != CAM_REQ_CMP) { xpt_free_ccb(ccb); + mtx_unlock(&sc->mfi_io_lock); device_printf(sc->mfi_dev, "Cannot create path for bus rescan.\n"); return; } + mtx_unlock(&sc->mfi_io_lock); xpt_rescan(ccb); |
