summaryrefslogtreecommitdiff
path: root/sys/arch/vax
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2010-01-10 00:40:26 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2010-01-10 00:40:26 +0000
commit6c9d120e69347916e938b171bd7ce94ee85ad257 (patch)
tree2d2fee8948676c7e4b09c60a30e675b724a4acc9 /sys/arch/vax
parent11f7362a3bdd215142b66c71001c8984508cd771 (diff)
A couple of missed ITSDONE setting before scsi_done().
seagate/trm/aha1742 were the only drivers paranoid enough to check ITSDONE on getting the xs to execute. And optimistic enough to think simply restting the flag would be a good thing. Have them chill out like everyone else, reducing ITSDONE noise some more.
Diffstat (limited to 'sys/arch/vax')
-rw-r--r--sys/arch/vax/dec/sii.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/vax/dec/sii.c b/sys/arch/vax/dec/sii.c
index 22df76a88a1..b48348bf190 100644
--- a/sys/arch/vax/dec/sii.c
+++ b/sys/arch/vax/dec/sii.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sii.c,v 1.6 2010/01/10 00:10:23 krw Exp $ */
+/* $OpenBSD: sii.c,v 1.7 2010/01/10 00:40:25 krw Exp $ */
/* $NetBSD: sii.c,v 1.42 2000/06/02 20:20:29 mhitch Exp $ */
/*
* Copyright (c) 2008 Miodrag Vallat.
@@ -1701,7 +1701,6 @@ sii_CmdDone(sc, target, error)
xs->status = sc->sc_st[target].statusByte;
xs->error = error;
xs->resid = sc->sc_st[target].buflen;
- xs->flags |= ITSDONE;
scsi_done(xs);
}