aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorBjørn Mork <bjorn@mork.no>2012-01-16 15:11:59 +0100
committerGreg Kroah-Hartman <gregkh@suse.de>2012-01-24 12:19:58 -0800
commit655e247daf52b202a6c2d0f8a06dd2051e756ce4 (patch)
tree9b2e12717ef616b99301b79396b44961d36b5ec3 /drivers/usb
parentUSB: cdc-wdm: call wake_up_all to allow driver to shutdown on device removal (diff)
downloadlinux-dev-655e247daf52b202a6c2d0f8a06dd2051e756ce4.tar.xz
linux-dev-655e247daf52b202a6c2d0f8a06dd2051e756ce4.zip
USB: cdc-wdm: better allocate a buffer that is at least as big as we tell the USB core
As it turns out, there was a mismatch between the allocated inbuf size (desc->bMaxPacketSize0, typically something like 64) and the length we specified in the URB (desc->wMaxCommand, typically something like 2048) Signed-off-by: Bjørn Mork <bjorn@mork.no> Cc: Oliver Neukum <oliver@neukum.org> Cc: stable <stable@vger.kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/class/cdc-wdm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/class/cdc-wdm.c b/drivers/usb/class/cdc-wdm.c
index 07aa67611b65..a940ad9d0d8f 100644
--- a/drivers/usb/class/cdc-wdm.c
+++ b/drivers/usb/class/cdc-wdm.c
@@ -723,7 +723,7 @@ next_desc:
goto err;
desc->inbuf = usb_alloc_coherent(interface_to_usbdev(intf),
- desc->bMaxPacketSize0,
+ desc->wMaxCommand,
GFP_KERNEL,
&desc->response->transfer_dma);
if (!desc->inbuf)