Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/ata Attempt to complete the WD_QUIRK_SPLIT_MOD15_WRI...



details:   https://anonhg.NetBSD.org/src/rev/dc127835b857
branches:  trunk
changeset: 770639:dc127835b857
user:      jakllsch <jakllsch%NetBSD.org@localhost>
date:      Thu Oct 27 13:07:37 2011 +0000

description:
Attempt to complete the WD_QUIRK_SPLIT_MOD15_WRITE list.
Per Seagate Publication number 100221381, Rev. B, the ST360015AS
is the only other drive in the Seagate Barracuda Serial ATA V
family that was not already listed.

Also, correct spelling of "globing".

diffstat:

 sys/dev/ata/wd.c |  13 ++++++++++---
 1 files changed, 10 insertions(+), 3 deletions(-)

diffs (46 lines):

diff -r 8a5af7bd0bcb -r dc127835b857 sys/dev/ata/wd.c
--- a/sys/dev/ata/wd.c  Thu Oct 27 12:50:06 2011 +0000
+++ b/sys/dev/ata/wd.c  Thu Oct 27 13:07:37 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: wd.c,v 1.388 2011/10/05 03:40:18 jakllsch Exp $ */
+/*     $NetBSD: wd.c,v 1.389 2011/10/27 13:07:37 jakllsch Exp $ */
 
 /*
  * Copyright (c) 1998, 2001 Manuel Bouyer.  All rights reserved.
@@ -54,7 +54,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: wd.c,v 1.388 2011/10/05 03:40:18 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: wd.c,v 1.389 2011/10/27 13:07:37 jakllsch Exp $");
 
 #include "opt_ata.h"
 
@@ -199,7 +199,7 @@
 
 /*
  * Quirk table for IDE drives.  Put more-specific matches first, since
- * a simple globbing routine is used for matching.
+ * a simple globing routine is used for matching.
  */
 static const struct wd_quirk {
        const char *wdq_match;          /* inquiry pattern to match */
@@ -216,11 +216,18 @@
         * XXX more model numbers.  If you have trouble with such transfers
         * XXX (8K is the most common) on Seagate S-ATA drives, please
         * XXX notify thorpej%NetBSD.org@localhost.
+        *
+        * The ST360015AS has not yet been confirmed to have this
+        * issue, however, it is the only other drive in the
+        * Seagate Barracuda Serial ATA V family.
+        *
         */
        { "ST3120023AS",
          WD_QUIRK_SPLIT_MOD15_WRITE },
        { "ST380023AS",
          WD_QUIRK_SPLIT_MOD15_WRITE },
+       { "ST360015AS", 
+         WD_QUIRK_SPLIT_MOD15_WRITE },
        { NULL,
          0 }
 };



Home | Main Index | Thread Index | Old Index