aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorAndre Herms <andre.herms@tec-venture.de>2009-11-19 12:14:49 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2009-12-11 14:55:25 -0500
commitec412b92dbe3ea839716853eea058d1bcc5e6ca4 (patch)
tree1a06573fea556fb6b45132b4130306b741bf3fce /drivers/usb
parent7723de7e19b744144975a09c81777ec0f14ac5b3 (diff)
USB: usbtmc: repeat usb_bulk_msg until whole message is transfered
usb_bulk_msg() transfers only bytes up to the maximum packet size. It must be repeated by the usbtmc driver until all bytes of a TMC message are transfered. Without this patch, ETIMEDOUT is reported when writing TMC messages larger than the maximum USB bulk size and the transfer remains incomplete. The user will notice that the device hangs and must be reset by either closing the application or pulling the plug. Signed-off-by: Andre Herms <andre.herms@tec-venture.de> Cc: stable <stable@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/class/usbtmc.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/drivers/usb/class/usbtmc.c b/drivers/usb/class/usbtmc.c
index 65965587c81..619cc997520 100644
--- a/drivers/usb/class/usbtmc.c
+++ b/drivers/usb/class/usbtmc.c
@@ -562,10 +562,16 @@ static ssize_t usbtmc_write(struct file *filp, const char __user *buf,
562 n_bytes = roundup(12 + this_part, 4); 562 n_bytes = roundup(12 + this_part, 4);
563 memset(buffer + 12 + this_part, 0, n_bytes - (12 + this_part)); 563 memset(buffer + 12 + this_part, 0, n_bytes - (12 + this_part));
564 564
565 retval = usb_bulk_msg(data->usb_dev, 565 do {
566 usb_sndbulkpipe(data->usb_dev, 566 retval = usb_bulk_msg(data->usb_dev,
567 data->bulk_out), 567 usb_sndbulkpipe(data->usb_dev,
568 buffer, n_bytes, &actual, USBTMC_TIMEOUT); 568 data->bulk_out),
569 buffer, n_bytes,
570 &actual, USBTMC_TIMEOUT);
571 if (retval != 0)
572 break;
573 n_bytes -= actual;
574 } while (n_bytes);
569 575
570 data->bTag_last_write = data->bTag; 576 data->bTag_last_write = data->bTag;
571 data->bTag++; 577 data->bTag++;