svn commit: r326825 - in stable/11/sys/cam: ata scsi

Alan Somers asomers at FreeBSD.org
Wed Dec 13 16:17:38 UTC 2017


Author: asomers
Date: Wed Dec 13 16:17:37 2017
New Revision: 326825
URL: https://svnweb.freebsd.org/changeset/base/326825

Log:
  MFC r326040:
  
  Quirk Seagate ST8000AS0003-2HH
  
  Like its predecessor ST8000AS0002, this is a drive-managed SMR drive, but
  doesn't declare that in its ATA identify data.
  
  Sponsored by:	Spectra Logic Corp

Modified:
  stable/11/sys/cam/ata/ata_da.c
  stable/11/sys/cam/scsi/scsi_da.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/cam/ata/ata_da.c
==============================================================================
--- stable/11/sys/cam/ata/ata_da.c	Wed Dec 13 16:14:38 2017	(r326824)
+++ stable/11/sys/cam/ata/ata_da.c	Wed Dec 13 16:17:37 2017	(r326825)
@@ -717,7 +717,7 @@ static struct ada_quirk_entry ada_quirk_table[] =
 		 * Drive Managed SATA hard drive.  This drive doesn't report
 		 * in firmware that it is a drive managed SMR drive.
 		 */
-		{ T_DIRECT, SIP_MEDIA_FIXED, "*", "ST8000AS0002*", "*" },
+		{ T_DIRECT, SIP_MEDIA_FIXED, "*", "ST8000AS000[23]*", "*" },
 		/*quirks*/ADA_Q_SMR_DM
 	},
 	{

Modified: stable/11/sys/cam/scsi/scsi_da.c
==============================================================================
--- stable/11/sys/cam/scsi/scsi_da.c	Wed Dec 13 16:14:38 2017	(r326824)
+++ stable/11/sys/cam/scsi/scsi_da.c	Wed Dec 13 16:17:37 2017	(r326825)
@@ -1306,7 +1306,7 @@ static struct da_quirk_entry da_quirk_table[] =
 		 * Drive Managed SATA hard drive.  This drive doesn't report
 		 * in firmware that it is a drive managed SMR drive.
 		 */
-		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST8000AS0002*", "*" },
+		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST8000AS000[23]*", "*" },
 		/*quirks*/DA_Q_SMR_DM
 	},
 	{


More information about the svn-src-all mailing list