summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2010-01-03 01:36:41 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2010-01-03 01:36:41 +0000
commit188344b48aa0d01ce64bf34acc28f63bd4b5926f (patch)
tree180bb39a42f727e4449a24d3c63428e6999ebaaa /sys
parente2ecc6e802348baa3d77118a47d9b223539443c7 (diff)
scsi_done sets ITSDONE, we dont have to do it.
Diffstat (limited to 'sys')
-rw-r--r--sys/scsi/mpath.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/scsi/mpath.c b/sys/scsi/mpath.c
index 342763ed552..25b796760dd 100644
--- a/sys/scsi/mpath.c
+++ b/sys/scsi/mpath.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mpath.c,v 1.11 2009/12/01 01:40:02 dlg Exp $ */
+/* $OpenBSD: mpath.c,v 1.12 2010/01/03 01:36:40 dlg Exp $ */
/*
* Copyright (c) 2009 David Gwynne <dlg@openbsd.org>
@@ -129,7 +129,6 @@ mpath_xs_stuffup(struct scsi_xfer *xs)
int s;
xs->error = XS_DRIVER_STUFFUP;
- xs->flags |= ITSDONE;
s = splbio();
scsi_done(xs);
splx(s);