diff options
author | Matthew Dempsky <matthew@cvs.openbsd.org> | 2010-06-27 03:34:30 +0000 |
---|---|---|
committer | Matthew Dempsky <matthew@cvs.openbsd.org> | 2010-06-27 03:34:30 +0000 |
commit | ea62cbbfebe57392b27274ce95e2d59b4f88ddc1 (patch) | |
tree | 0d880a468817725a9b8c77f05ad16f973558f694 /sys/scsi/mpath.c | |
parent | d9dbf15676a87645f76cc68576f597ffe08db835 (diff) |
"Believe it or not," nothing uses scsi_xfer's req_sense_length field
in any meaningful way, so just get rid of it.
ok krw@, dlg@
Diffstat (limited to 'sys/scsi/mpath.c')
-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 14390f624c3..bdd9eb9d5a7 100644 --- a/sys/scsi/mpath.c +++ b/sys/scsi/mpath.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpath.c,v 1.14 2010/05/20 00:55:18 krw Exp $ */ +/* $OpenBSD: mpath.c,v 1.15 2010/06/27 03:34:29 matthew Exp $ */ /* * Copyright (c) 2009 David Gwynne <dlg@openbsd.org> @@ -168,7 +168,6 @@ mpath_cmd(struct scsi_xfer *xs) mxs->datalen = xs->datalen; mxs->retries = xs->retries; mxs->timeout = xs->timeout; - mxs->req_sense_length = xs->req_sense_length; mxs->cookie = xs; mxs->done = mpath_done; |