svn commit: r307162 - stable/10/sys/cam/scsi

Sepherosa Ziehau sephe at FreeBSD.org
Thu Oct 13 01:58:51 UTC 2016


Author: sephe
Date: Thu Oct 13 01:58:49 2016
New Revision: 307162
URL: https://svnweb.freebsd.org/changeset/base/307162

Log:
  MFC 303944
  
      cam/da: Add quirk for I-O Data USB Flash Disk
  
      PR:             211716
      Submitted by:   Jun Su <junsu microsoft com>
      Reported by:    Jun Su <junsu microsoft com>
      Sponsored by:   Microsoft

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

Modified: stable/10/sys/cam/scsi/scsi_da.c
==============================================================================
--- stable/10/sys/cam/scsi/scsi_da.c	Thu Oct 13 01:51:49 2016	(r307161)
+++ stable/10/sys/cam/scsi/scsi_da.c	Thu Oct 13 01:58:49 2016	(r307162)
@@ -713,6 +713,14 @@ static struct da_quirk_entry da_quirk_ta
 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "JetFlash", "Transcend*",
 		 "*"}, /*quirks*/ DA_Q_NO_RC16
 	},
+	{
+		/*
+		 * I-O Data USB Flash Disk
+		 * PR: usb/211716
+		 */
+		{T_DIRECT, SIP_MEDIA_REMOVABLE, "I-O DATA", "USB Flash Disk*",
+		 "*"}, /*quirks*/ DA_Q_NO_RC16
+	},
 	/* ATA/SATA devices over SAS/USB/... */
 	{
 		/* Hitachi Advanced Format (4k) drives */


More information about the svn-src-all mailing list