linux-usb.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb-storage: Add compatibility quirk flags for iODD 2531/2541
@ 2021-10-14  1:50 James Buren
  2021-10-14  2:01 ` braewoods
  0 siblings, 1 reply; 7+ messages in thread
From: James Buren @ 2021-10-14  1:50 UTC (permalink / raw)
  To: linux-usb; +Cc: James Buren

These drive enclosures have firmware bugs that make it impossible to mount
a new virtual ISO image after Linux ejects the old one if the device is
locked by Linux. Windows bypasses this problem by the fact that they do
not lock the device. Add a quirk to disable device locking for these
drive enclosures.

Signed-off-by: James Buren <braewoods+lkml@braewoods.net>
---
 drivers/usb/storage/unusual_devs.h | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h
index c6b3fcf90180..4267b13962e1 100644
--- a/drivers/usb/storage/unusual_devs.h
+++ b/drivers/usb/storage/unusual_devs.h
@@ -415,6 +415,16 @@ UNUSUAL_DEV(  0x04cb, 0x0100, 0x0000, 0x2210,
 		"FinePix 1400Zoom",
 		USB_SC_UFI, USB_PR_DEVICE, NULL, US_FL_FIX_INQUIRY | US_FL_SINGLE_LUN),
 
+/*
+ * Reported by James Buren <braewoods+lkml@braewoods.net>
+ * Virtual ISOs cannot be remounted if ejected while the device is locked
+ * Disable locking to mimic Windows behavior that bypasses the issue
+ */
+UNUSUAL_DEV(  0x04c5, 0x2028, 0x0001, 0x0001,
+		"iODD",
+		"2531/2541",
+		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE),
+
 /*
  * Reported by Ondrej Zary <linux@zary.sk>
  * The device reports one sector more and breaks when that sector is accessed
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] usb-storage: Add compatibility quirk flags for iODD 2531/2541
  2021-10-14  1:50 [PATCH] usb-storage: Add compatibility quirk flags for iODD 2531/2541 James Buren
@ 2021-10-14  2:01 ` braewoods
  0 siblings, 0 replies; 7+ messages in thread
From: braewoods @ 2021-10-14  2:01 UTC (permalink / raw)
  To: linux-usb

Please disregard this patch. I updated it in the next thread because it 
was out of order in this one.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] usb-storage: Add compatibility quirk flags for iODD 2531/2541
  2021-10-15  7:54     ` Greg KH
@ 2021-10-15 13:38       ` Alan Stern
  0 siblings, 0 replies; 7+ messages in thread
From: Alan Stern @ 2021-10-15 13:38 UTC (permalink / raw)
  To: Greg KH; +Cc: braewoods, linux-usb

On Fri, Oct 15, 2021 at 09:54:45AM +0200, Greg KH wrote:
> On Fri, Oct 15, 2021 at 01:29:20AM -0500, braewoods@braewoods.net wrote:
> > On 2021-10-13 21:20, Alan Stern wrote:
> > > In the future, you should always include a version number in the email
> > > Subject: line (for example, "[PATCH v2]") so that readers will know
> > > which patch is which.  And you should include, here just below the "---"
> > > line, a description of how this version differs from the previous
> > > version.  See the email archives for examples of multi-version patches.
> > > 
> > > Nevertheless, this looks okay.
> > > 
> > > Acked-by: Alan Stern <stern@rowland.harvard.edu>
> > 
> > Noted. I'll do that for future patches. On a side note, any idea how long it
> > normally takes to get a simple patch like this committed? I've had mixed
> > experiences with getting feedback on patches. Sometimes my patches just get
> > totally ignored.
> 
> Depends on the subsystem and the patch submitted.

Greg tends to be quite good at merging patches in a timely manner.  They 
generally are committed within a few weeks.

In this case, should the patch also be added to the -stable kernels?

Alan Stern

> Also always use scripts/get_maintainer.pl to properly copy the needed
> maintainers and mailing lists.  Sometimes patches get lost in the noise
> if the right people are not copied.
> 
> thanks,
> 
> greg k-h

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] usb-storage: Add compatibility quirk flags for iODD 2531/2541
  2021-10-15  6:29   ` braewoods
@ 2021-10-15  7:54     ` Greg KH
  2021-10-15 13:38       ` Alan Stern
  0 siblings, 1 reply; 7+ messages in thread
From: Greg KH @ 2021-10-15  7:54 UTC (permalink / raw)
  To: braewoods; +Cc: linux-usb

On Fri, Oct 15, 2021 at 01:29:20AM -0500, braewoods@braewoods.net wrote:
> On 2021-10-13 21:20, Alan Stern wrote:
> > In the future, you should always include a version number in the email
> > Subject: line (for example, "[PATCH v2]") so that readers will know
> > which patch is which.  And you should include, here just below the "---"
> > line, a description of how this version differs from the previous
> > version.  See the email archives for examples of multi-version patches.
> > 
> > Nevertheless, this looks okay.
> > 
> > Acked-by: Alan Stern <stern@rowland.harvard.edu>
> 
> Noted. I'll do that for future patches. On a side note, any idea how long it
> normally takes to get a simple patch like this committed? I've had mixed
> experiences with getting feedback on patches. Sometimes my patches just get
> totally ignored.

Depends on the subsystem and the patch submitted.

Also always use scripts/get_maintainer.pl to properly copy the needed
maintainers and mailing lists.  Sometimes patches get lost in the noise
if the right people are not copied.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] usb-storage: Add compatibility quirk flags for iODD 2531/2541
  2021-10-14  2:20 ` Alan Stern
@ 2021-10-15  6:29   ` braewoods
  2021-10-15  7:54     ` Greg KH
  0 siblings, 1 reply; 7+ messages in thread
From: braewoods @ 2021-10-15  6:29 UTC (permalink / raw)
  To: linux-usb

On 2021-10-13 21:20, Alan Stern wrote:
> In the future, you should always include a version number in the email
> Subject: line (for example, "[PATCH v2]") so that readers will know
> which patch is which.  And you should include, here just below the 
> "---"
> line, a description of how this version differs from the previous
> version.  See the email archives for examples of multi-version patches.
> 
> Nevertheless, this looks okay.
> 
> Acked-by: Alan Stern <stern@rowland.harvard.edu>

Noted. I'll do that for future patches. On a side note, any idea how 
long it normally takes to get a simple patch like this committed? I've 
had mixed experiences with getting feedback on patches. Sometimes my 
patches just get totally ignored.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] usb-storage: Add compatibility quirk flags for iODD 2531/2541
  2021-10-14  1:55 James Buren
@ 2021-10-14  2:20 ` Alan Stern
  2021-10-15  6:29   ` braewoods
  0 siblings, 1 reply; 7+ messages in thread
From: Alan Stern @ 2021-10-14  2:20 UTC (permalink / raw)
  To: James Buren; +Cc: linux-usb

On Wed, Oct 13, 2021 at 08:55:04PM -0500, James Buren wrote:
> These drive enclosures have firmware bugs that make it impossible to mount
> a new virtual ISO image after Linux ejects the old one if the device is
> locked by Linux. Windows bypasses this problem by the fact that they do
> not lock the device. Add a quirk to disable device locking for these
> drive enclosures.
> 
> Signed-off-by: James Buren <braewoods+lkml@braewoods.net>
> ---

In the future, you should always include a version number in the email 
Subject: line (for example, "[PATCH v2]") so that readers will know 
which patch is which.  And you should include, here just below the "---" 
line, a description of how this version differs from the previous 
version.  See the email archives for examples of multi-version patches.

Nevertheless, this looks okay.

Acked-by: Alan Stern <stern@rowland.harvard.edu>

>  drivers/usb/storage/unusual_devs.h | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 
> diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h
> index c6b3fcf90180..29191d33c0e3 100644
> --- a/drivers/usb/storage/unusual_devs.h
> +++ b/drivers/usb/storage/unusual_devs.h
> @@ -406,6 +406,16 @@ UNUSUAL_DEV(  0x04b8, 0x0602, 0x0110, 0x0110,
>  		"785EPX Storage",
>  		USB_SC_SCSI, USB_PR_BULK, NULL, US_FL_SINGLE_LUN),
>  
> +/*
> + * Reported by James Buren <braewoods+lkml@braewoods.net>
> + * Virtual ISOs cannot be remounted if ejected while the device is locked
> + * Disable locking to mimic Windows behavior that bypasses the issue
> + */
> +UNUSUAL_DEV(  0x04c5, 0x2028, 0x0001, 0x0001,
> +		"iODD",
> +		"2531/2541",
> +		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE),
> +
>  /*
>   * Not sure who reported this originally but
>   * Pavel Machek <pavel@ucw.cz> reported that the extra US_FL_SINGLE_LUN
> -- 
> 2.25.1

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH] usb-storage: Add compatibility quirk flags for iODD 2531/2541
@ 2021-10-14  1:55 James Buren
  2021-10-14  2:20 ` Alan Stern
  0 siblings, 1 reply; 7+ messages in thread
From: James Buren @ 2021-10-14  1:55 UTC (permalink / raw)
  To: linux-usb; +Cc: James Buren

These drive enclosures have firmware bugs that make it impossible to mount
a new virtual ISO image after Linux ejects the old one if the device is
locked by Linux. Windows bypasses this problem by the fact that they do
not lock the device. Add a quirk to disable device locking for these
drive enclosures.

Signed-off-by: James Buren <braewoods+lkml@braewoods.net>
---
 drivers/usb/storage/unusual_devs.h | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h
index c6b3fcf90180..29191d33c0e3 100644
--- a/drivers/usb/storage/unusual_devs.h
+++ b/drivers/usb/storage/unusual_devs.h
@@ -406,6 +406,16 @@ UNUSUAL_DEV(  0x04b8, 0x0602, 0x0110, 0x0110,
 		"785EPX Storage",
 		USB_SC_SCSI, USB_PR_BULK, NULL, US_FL_SINGLE_LUN),
 
+/*
+ * Reported by James Buren <braewoods+lkml@braewoods.net>
+ * Virtual ISOs cannot be remounted if ejected while the device is locked
+ * Disable locking to mimic Windows behavior that bypasses the issue
+ */
+UNUSUAL_DEV(  0x04c5, 0x2028, 0x0001, 0x0001,
+		"iODD",
+		"2531/2541",
+		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE),
+
 /*
  * Not sure who reported this originally but
  * Pavel Machek <pavel@ucw.cz> reported that the extra US_FL_SINGLE_LUN
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-10-15 13:39 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-14  1:50 [PATCH] usb-storage: Add compatibility quirk flags for iODD 2531/2541 James Buren
2021-10-14  2:01 ` braewoods
2021-10-14  1:55 James Buren
2021-10-14  2:20 ` Alan Stern
2021-10-15  6:29   ` braewoods
2021-10-15  7:54     ` Greg KH
2021-10-15 13:38       ` Alan Stern

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).