Module Name:    src
Committed By:   tsutsui
Date:           Sat Mar 18 08:05:40 UTC 2017

Modified Files:
        src/sys/dev/scsipi: scsiconf.c

Log Message:
Add NOLUNS quirk for SEAGATE ST39236LC disk drives.

Found on "SCSI drive conservation activity" for poor Tier-II machines.


To generate a diff of this commit:
cvs rdiff -u -r1.278 -r1.279 src/sys/dev/scsipi/scsiconf.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/scsipi/scsiconf.c
diff -u src/sys/dev/scsipi/scsiconf.c:1.278 src/sys/dev/scsipi/scsiconf.c:1.279
--- src/sys/dev/scsipi/scsiconf.c:1.278	Thu Dec  1 15:39:02 2016
+++ src/sys/dev/scsipi/scsiconf.c	Sat Mar 18 08:05:40 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: scsiconf.c,v 1.278 2016/12/01 15:39:02 mlelstv Exp $	*/
+/*	$NetBSD: scsiconf.c,v 1.279 2017/03/18 08:05:40 tsutsui 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.278 2016/12/01 15:39:02 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: scsiconf.c,v 1.279 2017/03/18 08:05:40 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -698,6 +698,8 @@ static const struct scsi_quirk_inquiry_p
 	{{T_DIRECT, T_FIXED,
 	 "SEAGATE ", "ST318404LC      ", ""},     PQUIRK_NOLUNS},
 	{{T_DIRECT, T_FIXED,
+	 "SEAGATE ", "ST39236LC       ", ""},     PQUIRK_NOLUNS},
+	{{T_DIRECT, T_FIXED,
 	 "SEAGATE ", "ST15150N        ", ""},     PQUIRK_NOTAG},
 	{{T_DIRECT, T_FIXED,
 	 "SEAGATE ", "ST19171",          ""},     PQUIRK_NOMODESENSE},

Reply via email to