Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/scsipi Add a quirks entry for Seagate SX173404LC dri...



details:   https://anonhg.NetBSD.org/src/rev/6045f3db3865
branches:  trunk
changeset: 763750:6045f3db3865
user:      macallan <macallan%NetBSD.org@localhost>
date:      Sat Apr 02 20:52:10 2011 +0000

description:
Add a quirks entry for Seagate SX173404LC drives, now they will work at higher
speeds than 8bit/async
While there, also disable sync for ZIP drives - at least some of them will
pretend to support sync and then act up.

diffstat:

 sys/dev/scsipi/scsiconf.c |  8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diffs (31 lines):

diff -r 43029575db51 -r 6045f3db3865 sys/dev/scsipi/scsiconf.c
--- a/sys/dev/scsipi/scsiconf.c Sat Apr 02 16:49:49 2011 +0000
+++ b/sys/dev/scsipi/scsiconf.c Sat Apr 02 20:52:10 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: scsiconf.c,v 1.258 2010/06/07 01:41:39 pgoyette Exp $  */
+/*     $NetBSD: scsiconf.c,v 1.259 2011/04/02 20:52:10 macallan Exp $  */
 
 /*-
  * Copyright (c) 1998, 1999, 2004 The NetBSD Foundation, Inc.
@@ -48,7 +48,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: scsiconf.c,v 1.258 2010/06/07 01:41:39 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: scsiconf.c,v 1.259 2011/04/02 20:52:10 macallan Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -604,9 +604,11 @@
         "FUJITSU ", "M2624S-512      ", ""},     PQUIRK_CAP_SYNC},
        {{T_DIRECT, T_FIXED,
         "SEAGATE ", "SX336704LC"   , ""}, PQUIRK_CAP_SYNC | PQUIRK_CAP_WIDE16},
+       {{T_DIRECT, T_FIXED,
+        "SEAGATE ", "SX173404LC",       ""},     PQUIRK_CAP_SYNC | PQUIRK_CAP_WIDE16},
 
        {{T_DIRECT, T_REMOV,
-        "IOMEGA", "ZIP 100",            "J.03"}, PQUIRK_NOLUNS},
+        "IOMEGA", "ZIP 100",            "J.03"}, PQUIRK_NOLUNS|PQUIRK_NOSYNC},
        {{T_DIRECT, T_REMOV,
         "INSITE", "I325VM",             ""},     PQUIRK_NOLUNS},
 



Home | Main Index | Thread Index | Old Index