summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2009-09-03 12:12:19 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2009-09-03 12:12:19 +0000
commit80099201416fa014ed0b1f7d111097630a299966 (patch)
tree6c56e07e0f218588c040a505f573a4509e7068f4 /sys
parenta3dfa103e2706257f6dd6acf8f97626012e97ff6 (diff)
call scsi_done before returning COMPLETE
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/ic/trm.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/sys/dev/ic/trm.c b/sys/dev/ic/trm.c
index f0bdea5c58a..cf7bd8e7357 100644
--- a/sys/dev/ic/trm.c
+++ b/sys/dev/ic/trm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: trm.c,v 1.12 2009/02/16 21:19:07 miod Exp $
+/* $OpenBSD: trm.c,v 1.13 2009/09/03 12:12:18 dlg Exp $
* ------------------------------------------------------------
* O.S : OpenBSD
* File Name : trm.c
@@ -354,12 +354,18 @@ trm_scsi_cmd(struct scsi_xfer *xs)
printf("%s: target=%d >= %d\n",
sc->sc_device.dv_xname, target, TRM_MAX_TARGETS);
xs->error = XS_DRIVER_STUFFUP;
+ intflag = splbio();
+ scsi_done(xs);
+ splx(intflag);
return COMPLETE;
}
if (lun >= TRM_MAX_LUNS) {
printf("%s: lun=%d >= %d\n",
sc->sc_device.dv_xname, lun, TRM_MAX_LUNS);
xs->error = XS_DRIVER_STUFFUP;
+ intflag = splbio();
+ scsi_done(xs);
+ splx(intflag);
return COMPLETE;
}
@@ -367,6 +373,9 @@ trm_scsi_cmd(struct scsi_xfer *xs)
if (pDCB == NULL) {
/* Removed as a result of INQUIRY proving no device present */
xs->error = XS_DRIVER_STUFFUP;
+ intflag = splbio();
+ scsi_done(xs);
+ splx(intflag);
return COMPLETE;
}
@@ -377,6 +386,9 @@ trm_scsi_cmd(struct scsi_xfer *xs)
#endif
trm_reset(sc);
xs->error = XS_NOERROR;
+ intflag = splbio();
+ scsi_done(xs);
+ splx(intflag);
return COMPLETE;
}
@@ -425,6 +437,7 @@ trm_scsi_cmd(struct scsi_xfer *xs)
* free SRB
*/
TAILQ_INSERT_HEAD(&sc->freeSRB, pSRB, link);
+ scsi_done(xs);
splx(intflag);
return COMPLETE;
}
@@ -474,6 +487,7 @@ trm_scsi_cmd(struct scsi_xfer *xs)
if (xs->timeout == 0)
trm_timeout(pSRB);
+ scsi_done(xs);
splx(intflag);
return COMPLETE;
}