diff options
author | 2002-02-16 17:20:27 +0000 | |
---|---|---|
committer | 2002-02-16 17:20:27 +0000 | |
commit | 33d6a4dd55d7a2b9e428a286ef140aa973b90fba (patch) | |
tree | 2f078f534bdf702fb3087257fb92285abd081cde | |
parent | Add '#' to the list of escaped characters during vi/emacs filename completion. (diff) | |
download | wireguard-openbsd-33d6a4dd55d7a2b9e428a286ef140aa973b90fba.tar.xz wireguard-openbsd-33d6a4dd55d7a2b9e428a286ef140aa973b90fba.zip |
Disable tagged queueing for HP C3725S and IBM DCAS drives where
is is broken.
-rw-r--r-- | sys/scsi/scsiconf.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/scsi/scsiconf.c b/sys/scsi/scsiconf.c index e1a3891fc12..9e05bcceabc 100644 --- a/sys/scsi/scsiconf.c +++ b/sys/scsi/scsiconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scsiconf.c,v 1.63 2001/11/02 00:08:16 millert Exp $ */ +/* $OpenBSD: scsiconf.c,v 1.64 2002/02/16 17:20:27 millert Exp $ */ /* $NetBSD: scsiconf.c,v 1.57 1996/05/02 01:09:01 neil Exp $ */ /* @@ -546,6 +546,10 @@ struct scsi_quirk_inquiry_pattern scsi_quirk_patterns[] = { "MICROP", "4421-07", ""}, SDEV_NOTAGS}, {{T_DIRECT, T_FIXED, "SEAGATE", "ST150176LW", "0002"}, SDEV_NOTAGS}, + {{T_DIRECT, T_FIXED, + "HP", "C3725S", ""}, SDEV_NOTAGS}, + {{T_DIRECT, T_FIXED, + "IBM", "DCAS", ""}, SDEV_NOTAGS}, /* XXX: QIC-36 tape behind Emulex adapter. Very broken. */ {{T_SEQUENTIAL, T_REMOV, |