[PATCH] USB: fix USB key generates ioctl_internal_command errors issue

On Wed, Nov 16, 2005 at 06:34:24PM -0800, Pete Zaitcev wrote:
>On Wed, 16 Nov 2005 23:52:32 +0100, David H�rdeman <david@2gen.com> wrote:
>> usb-storage: waiting for device to settle before scanning
>> Vendor: I0MEGA Model: UMni1GB*IOM2K4 Rev: 1.01
>> Type: Direct-Access ANSI SCSI revision: 02
>> SCSI device sda: 2048000 512-byte hdwr sectors (1049 MB)
>> sda: Write Protect is off
>> sda: Mode Sense: 00 00 00 00
>> sda: assuming drive cache: write through
>> ioctl_internal_command: <8 0 0 0> return code = 8000002
>> : Current: sense key=0x0
>> ASC=0x0 ASCQ=0x0
>> SCSI device sda: 2048000 512-byte hdwr sectors (1049 MB)
>
>I think it's harmless. I saw things like that, and initially I plugged
>them with workarounds like this:

Thanks for the pointer, and yes, it is harmless, but it floods the
console with the messages which hides other (potentially important)
messages...following your example I've made a patch which fixes the
problem.

Signed-off-by: David H�rdeman <david@2gen.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by David H�rdeman and committed by Linus Torvalds 63dc3ff3 21b1861f

+9
+9
drivers/usb/storage/unusual_devs.h
··· 1118 US_SC_DEVICE, US_PR_DEVICE, NULL, 1119 US_FL_GO_SLOW ), 1120 1121 #ifdef CONFIG_USB_STORAGE_SDDR55 1122 UNUSUAL_DEV( 0x55aa, 0xa103, 0x0000, 0x9999, 1123 "Sandisk",
··· 1118 US_SC_DEVICE, US_PR_DEVICE, NULL, 1119 US_FL_GO_SLOW ), 1120 1121 + /* 1122 + * David H�rdeman <david@2gen.com> 1123 + * The key makes the SCSI stack print confusing (but harmless) messages 1124 + */ 1125 + UNUSUAL_DEV( 0x4146, 0xba01, 0x0100, 0x0100, 1126 + "Iomega", 1127 + "Micro Mini 1GB", 1128 + US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ), 1129 + 1130 #ifdef CONFIG_USB_STORAGE_SDDR55 1131 UNUSUAL_DEV( 0x55aa, 0xa103, 0x0000, 0x9999, 1132 "Sandisk",