Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Mar 2009 13:17:46 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r190263 - head/sys/dev/usb/storage
Message-ID:  <200903221317.n2MDHk6G069498@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200903221317.n2MDHk6G069498>