summaryrefslogtreecommitdiff
path: root/sys/dev/vscsi.c
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2010-01-09 23:15:08 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2010-01-09 23:15:08 +0000
commit966ea9e5a601fa2a77dd33a8791b3729ef5d0e93 (patch)
tree5056d93d81f39076841beadfe0cf8797db4499d2 /sys/dev/vscsi.c
parent494a613fb96d93824dbd66cfe2419b406a353168 (diff)
Zap all setting of ITSDONE in drivers that don't look at it. Nobody
else cares so it's just noise. Drivers that actually look at ITSDONE are unchanged. ok marco@ (for his files) dlg@ beck@
Diffstat (limited to 'sys/dev/vscsi.c')
-rw-r--r--sys/dev/vscsi.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/vscsi.c b/sys/dev/vscsi.c
index 2937475ae32..a6874058a60 100644
--- a/sys/dev/vscsi.c
+++ b/sys/dev/vscsi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vscsi.c,v 1.4 2009/11/09 17:53:39 nicm Exp $ */
+/* $OpenBSD: vscsi.c,v 1.5 2010/01/09 23:15:06 krw Exp $ */
/*
* Copyright (c) 2008 David Gwynne <dlg@openbsd.org>
@@ -213,7 +213,6 @@ vscsi_xs_stuffup(struct scsi_xfer *xs)
int s;
xs->error = XS_DRIVER_STUFFUP;
- xs->flags |= ITSDONE;
s = splbio();
scsi_done(xs);
splx(s);
@@ -430,7 +429,6 @@ vscsi_t2i(struct vscsi_softc *sc, struct vscsi_ioc_t2i *t2i)
polled = ISSET(xs->flags, SCSI_POLL);
- xs->flags |= ITSDONE;
s = splbio();
scsi_done(xs);
splx(s);