svn commit: r190263 - head/sys/dev/usb/storage

Warner Losh imp at FreeBSD.org
Sun Mar 22 06:17:47 PDT 2009


Author: imp
Date: Sun Mar 22 13:17:46 2009
New Revision: 190263
URL: http://svn.freebsd.org/changeset/base/190263

Log:
  NO_INQUIRY is wrong for this device.  Alternatively, if it is right,
  it is right for only a tiny fraction of these devices and this
  wild-card entry is too broad.
  
  # I run a kernel without this entry at all without ill effects...

Modified:
  head/sys/dev/usb/storage/umass.c

Modified: head/sys/dev/usb/storage/umass.c
==============================================================================
--- head/sys/dev/usb/storage/umass.c	Sun Mar 22 11:07:13 2009	(r190262)
+++ head/sys/dev/usb/storage/umass.c	Sun Mar 22 13:17:46 2009	(r190263)
@@ -610,7 +610,7 @@ static const struct umass_devdescr umass
 	},
 	{USB_VENDOR_MYSON, USB_PRODUCT_MYSON_HEDEN, RID_WILDCARD,
 		UMASS_PROTO_SCSI | UMASS_PROTO_BBB,
-		NO_INQUIRY | IGNORE_RESIDUE | NO_SYNCHRONIZE_CACHE
+		IGNORE_RESIDUE | NO_SYNCHRONIZE_CACHE
 	},
 	{USB_VENDOR_MYSON, USB_PRODUCT_MYSON_STARREADER, RID_WILDCARD,
 		UMASS_PROTO_SCSI | UMASS_PROTO_BBB,


More information about the svn-src-head mailing list