diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2010-01-03 01:36:41 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2010-01-03 01:36:41 +0000 |
commit | 188344b48aa0d01ce64bf34acc28f63bd4b5926f (patch) | |
tree | 180bb39a42f727e4449a24d3c63428e6999ebaaa /sys/scsi | |
parent | e2ecc6e802348baa3d77118a47d9b223539443c7 (diff) |
scsi_done sets ITSDONE, we dont have to do it.
Diffstat (limited to 'sys/scsi')
-rw-r--r-- | sys/scsi/mpath.c | 3 |
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); |