linux-usb.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] USB: core: Fix regression in Hercules audio card
@ 2020-11-19 17:00 Alan Stern
  2020-11-20 15:36 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Alan Stern @ 2020-11-19 17:00 UTC (permalink / raw)
  To: Greg KH; +Cc: Alexander Chalikiopoulos, USB mailing list

Commit ecaaef6b50a7 ("USB: core: fix check for duplicate endpoints")
aimed to make the USB stack more reliable by detecting and skipping
over endpoints that are duplicated between interfaces.  This caused a
regression for a Hercules audio card (reported as Bugzilla #208357),
which contains such non-compliant duplications.  Although the
duplications are harmless, skipping the valid endpoints prevented the
device from working.

This patch fixes the regression by adding ENDPOINT_IGNORE quirks for
the Hercules card, telling the kernel to ignore the invalid duplicate
endpoints and thereby allowing the valid endpoints to be used as
intended.

Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Reported-by: Alexander Chalikiopoulos <bugzilla.kernel.org@mrtoasted.com>
Fixes: ecaaef6b50a7 ("USB: core: fix check for duplicate endpoints")
CC: <stable@vger.kernel.org>

---

Note: Back-porting this patch to kernels before 91c7eaa686c3 ("USB:
rename USB quirk to USB_QUIRK_ENDPOINT_IGNORE") will require changing
a few occurrences of "ignore" or "IGNORE" to "blacklist" or
"BLACKLIST".


[as1947]


 drivers/usb/core/quirks.c |    6 ++++++
 1 file changed, 6 insertions(+)

Index: usb-devel/drivers/usb/core/quirks.c
===================================================================
--- usb-devel.orig/drivers/usb/core/quirks.c
+++ usb-devel/drivers/usb/core/quirks.c
@@ -348,6 +348,10 @@ static const struct usb_device_id usb_qu
 	/* Guillemot Webcam Hercules Dualpix Exchange*/
 	{ USB_DEVICE(0x06f8, 0x3005), .driver_info = USB_QUIRK_RESET_RESUME },
 
+	/* Guillemot Hercules DJ Console audio card (BZ 208357) */
+	{ USB_DEVICE(0x06f8, 0xb000), .driver_info =
+			USB_QUIRK_ENDPOINT_IGNORE },
+
 	/* Midiman M-Audio Keystation 88es */
 	{ USB_DEVICE(0x0763, 0x0192), .driver_info = USB_QUIRK_RESET_RESUME },
 
@@ -521,6 +525,8 @@ static const struct usb_device_id usb_am
  * Matched for devices with USB_QUIRK_ENDPOINT_IGNORE.
  */
 static const struct usb_device_id usb_endpoint_ignore[] = {
+	{ USB_DEVICE_INTERFACE_NUMBER(0x06f8, 0xb000, 5), .driver_info = 0x01 },
+	{ USB_DEVICE_INTERFACE_NUMBER(0x06f8, 0xb000, 5), .driver_info = 0x81 },
 	{ USB_DEVICE_INTERFACE_NUMBER(0x0926, 0x0202, 1), .driver_info = 0x85 },
 	{ USB_DEVICE_INTERFACE_NUMBER(0x0926, 0x0208, 1), .driver_info = 0x85 },
 	{ }

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

* Re: [PATCH] USB: core: Fix regression in Hercules audio card
  2020-11-19 17:00 [PATCH] USB: core: Fix regression in Hercules audio card Alan Stern
@ 2020-11-20 15:36 ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2020-11-20 15:36 UTC (permalink / raw)
  To: Alan Stern; +Cc: Alexander Chalikiopoulos, USB mailing list

On Thu, Nov 19, 2020 at 12:00:40PM -0500, Alan Stern wrote:
> Commit ecaaef6b50a7 ("USB: core: fix check for duplicate endpoints")
> aimed to make the USB stack more reliable by detecting and skipping
> over endpoints that are duplicated between interfaces.  This caused a
> regression for a Hercules audio card (reported as Bugzilla #208357),
> which contains such non-compliant duplications.  Although the
> duplications are harmless, skipping the valid endpoints prevented the
> device from working.
> 
> This patch fixes the regression by adding ENDPOINT_IGNORE quirks for
> the Hercules card, telling the kernel to ignore the invalid duplicate
> endpoints and thereby allowing the valid endpoints to be used as
> intended.
> 
> Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
> Reported-by: Alexander Chalikiopoulos <bugzilla.kernel.org@mrtoasted.com>
> Fixes: ecaaef6b50a7 ("USB: core: fix check for duplicate endpoints")

Nit, this is:
	 3e4f8e21c4f2 ("USB: core: fix check for duplicate endpoints")
The id you listed here is the 4.9.209 backport id.

thanks,

greg k-h

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

end of thread, other threads:[~2020-11-20 15:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-19 17:00 [PATCH] USB: core: Fix regression in Hercules audio card Alan Stern
2020-11-20 15:36 ` Greg KH

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).