diff options
| author | Jim Harris <jimharris@FreeBSD.org> | 2012-10-09 19:55:12 +0000 |
|---|---|---|
| committer | Jim Harris <jimharris@FreeBSD.org> | 2012-10-09 19:55:12 +0000 |
| commit | a9a4eb6845f588477fff495710a1d214a5b65b30 (patch) | |
| tree | f942989063a14226d54a4a33ceac668934823af3 /sys/dev/tws | |
| parent | 8c6b57f4f52fac8b0b77016e1b8f419cc6e4da42 (diff) | |
Notes
Diffstat (limited to 'sys/dev/tws')
| -rw-r--r-- | sys/dev/tws/tws_cam.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/tws/tws_cam.c b/sys/dev/tws/tws_cam.c index df78b99fa7a7..ad2cd615312b 100644 --- a/sys/dev/tws/tws_cam.c +++ b/sys/dev/tws/tws_cam.c @@ -529,10 +529,10 @@ tws_scsi_err_complete(struct tws_request *req, struct tws_command_header *hdr) if ( ccb->ccb_h.target_lun ) { TWS_TRACE_DEBUG(sc, "invalid lun error",0,0); - ccb->ccb_h.status |= CAM_LUN_INVALID; + ccb->ccb_h.status |= CAM_DEV_NOT_THERE; } else { TWS_TRACE_DEBUG(sc, "invalid target error",0,0); - ccb->ccb_h.status |= CAM_TID_INVALID; + ccb->ccb_h.status |= CAM_SEL_TIMEOUT; } } else { |
