diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2006-05-31 03:16:17 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2006-05-31 03:16:17 +0000 |
commit | 4efb916c2227091b9bdd87d8d5abc6720e52da33 (patch) | |
tree | b6ff8867d2f5d235901ab364aabdfe813a53da3f /sys | |
parent | 90ba8e48de95ab37476b630585a7166c10c691d9 (diff) |
we dont do domain validation on real scsi controllers (as opposed to sas
and fc controllers), so mpi will be slower than mpt for io on those hbas.
for now.
ifdef the scsi stuff out till we make it go fast, and so we can enable mpi
everywhere.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/mpi_pci.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/mpi_pci.c b/sys/dev/pci/mpi_pci.c index d51dd2fcd0d..0c9aace36e9 100644 --- a/sys/dev/pci/mpi_pci.c +++ b/sys/dev/pci/mpi_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpi_pci.c,v 1.2 2006/05/29 21:16:06 dlg Exp $ */ +/* $OpenBSD: mpi_pci.c,v 1.3 2006/05/31 03:16:16 dlg Exp $ */ /* * Copyright (c) 2005 David Gwynne <dlg@openbsd.org> @@ -59,7 +59,9 @@ struct cfattach mpi_pci_ca = { #define MPP_DUAL 0x01 /* Dual port adapter */ static const struct pci_matchid mpi_devices[] = { +#ifdef notyet { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1030 }, +#endif { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC909 }, { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC909A }, { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC919 }, @@ -68,7 +70,6 @@ static const struct pci_matchid mpi_devices[] = { { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC929_1 }, { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1064 }, { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1068 } - }; int |