SCSI HBA drivers are supposed to get their SCSI CDBs from xs->cmd, not
authormatthew <matthew@openbsd.org>
Thu, 22 Jul 2010 04:40:41 +0000 (04:40 +0000)
committermatthew <matthew@openbsd.org>
Thu, 22 Jul 2010 04:40:41 +0000 (04:40 +0000)
xs->cmdstore.

ok krw@ a while back (contingent upon testing), and deraadt@ says this
has been in snapshots for weeks now.

sys/dev/ic/mfi.c

index 9d6359f..1235d9f 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: mfi.c,v 1.109 2010/07/01 03:20:38 matthew Exp $ */
+/* $OpenBSD: mfi.c,v 1.110 2010/07/22 04:40:41 matthew Exp $ */
 /*
  * Copyright (c) 2006 Marco Peereboom <marco@peereboom.us>
  *
@@ -946,7 +946,7 @@ mfi_scsi_ld(struct mfi_ccb *ccb, struct scsi_xfer *xs)
        pf->mpf_sense_addr_lo = htole32(ccb->ccb_psense);
 
        memset(pf->mpf_cdb, 0, 16);
-       memcpy(pf->mpf_cdb, &xs->cmdstore, xs->cmdlen);
+       memcpy(pf->mpf_cdb, xs->cmd, xs->cmdlen);
 
        ccb->ccb_done = mfi_scsi_xs_done;
        ccb->ccb_cookie = xs;