diff options
author | Matthew Dempsky <matthew@cvs.openbsd.org> | 2010-07-01 03:01:38 +0000 |
---|---|---|
committer | Matthew Dempsky <matthew@cvs.openbsd.org> | 2010-07-01 03:01:38 +0000 |
commit | 8ab581762d142299e70da73f2aa0fc7197b7c85d (patch) | |
tree | 4eef3356e7b05a73bb576b343e43e93d09d73f94 /sys/scsi/mpath.c | |
parent | 71d255879679d07ca195b5f4fa1314bde5a1e27e (diff) |
Restore setting xs->bp; fixes ncr(4) on VAX.
ok miod@, krw@
Diffstat (limited to 'sys/scsi/mpath.c')
-rw-r--r-- | sys/scsi/mpath.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/scsi/mpath.c b/sys/scsi/mpath.c index b6968beb068..62bde10fa29 100644 --- a/sys/scsi/mpath.c +++ b/sys/scsi/mpath.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpath.c,v 1.16 2010/06/28 18:31:02 krw Exp $ */ +/* $OpenBSD: mpath.c,v 1.17 2010/07/01 03:01:37 matthew Exp $ */ /* * Copyright (c) 2009 David Gwynne <dlg@openbsd.org> @@ -163,6 +163,7 @@ mpath_cmd(struct scsi_xfer *xs) mxs->datalen = xs->datalen; mxs->retries = xs->retries; mxs->timeout = xs->timeout; + mxs->bp = xs->bp; mxs->cookie = xs; mxs->done = mpath_done; |