* Fwd: [PATCH] tiglusb timeouts
@ 2002-11-26 20:39 Romain Lievin
2002-11-26 22:19 ` Greg KH
2002-11-26 23:29 ` Greg KH
0 siblings, 2 replies; 3+ messages in thread
From: Romain Lievin @ 2002-11-26 20:39 UTC (permalink / raw)
To: Linux Kernel; +Cc: Greg Kroah, Randy Dunlap
Hi,
this patch fixes some troubles in the tiglusb driver.
Patch is against 2.5.49. Please apply.
Thanks, Romain.
> From: "Randy.Dunlap" <randy.dunlap@verizon.net>
> To: linux-usb-devel@lists.sf.net, roms@lpg.ticalc.org,
> jb@technologeek.org
> Subject: [PATCH] tiglusb timeouts
>
> Hi,
>
> Here's a patch for you to consider and apply...
> It addresses the timeout parameter in the tiglusb driver.
>
> 1. timeout could be 0, causing a divide-by-zero.
> The patch prevents this.
>
> 2. The timeout value to usb_bulk_msg() could be rounded
> down to cause a divide-by-zero if timeout was < 10, e.g. 9,
> in:
> result = usb_bulk_msg (s->dev, pipe, buffer, bytes_to_read,
> &bytes_read, HZ / (timeout / 10));
> 9 / 10 == 0 => divide-by-zero !!
>
> 3. The timeout value above doesn't do very well on converting
> timeout to tenths of seconds. Even for the default timeout
> value of 15 (1.5 seconds), it becomes:
> HZ / (15 / 10) == HZ / 1 == HZ, or 1 second.
> The patch corrects this formula to use:
> (HZ * 10) / timeout
>
> Patch is against 2.5.49. Please apply.
>
> Thanks,
> ~Randy
============================[ cut here ]========================
--- ./drivers/usb/misc/tiglusb.c%times Fri Nov 22 13:40:13 2002
+++ ./drivers/usb/misc/tiglusb.c Mon Nov 25 20:03:52 2002
@@ -185,7 +185,7 @@
pipe = usb_rcvbulkpipe (s->dev, 1);
result = usb_bulk_msg (s->dev, pipe, buffer, bytes_to_read,
- &bytes_read, HZ / (timeout / 10));
+ &bytes_read, HZ * 10 / timeout);
if (result == -ETIMEDOUT) { /* NAK */
ret = result;
if (!bytes_read) {
@@ -242,7 +242,7 @@
pipe = usb_sndbulkpipe (s->dev, 2);
result = usb_bulk_msg (s->dev, pipe, buffer, bytes_to_write,
- &bytes_written, HZ / (timeout / 10));
+ &bytes_written, HZ * 10 / timeout);
if (result == -ETIMEDOUT) { /* NAK */
warn ("tiglusb_write, NAK received.");
@@ -453,6 +453,8 @@
if (ints[0] > 0) {
timeout = ints[1];
}
+ if (!timeout)
+ timeout = TIMAXTIME;
return 1;
}
@@ -494,6 +496,9 @@
info (DRIVER_DESC ", " DRIVER_VERSION);
+ if (!timeout)
+ timeout = TIMAXTIME;
+
return 0;
}
@@ -516,6 +521,6 @@
MODULE_LICENSE (DRIVER_LICENSE);
MODULE_PARM (timeout, "i");
-MODULE_PARM_DESC (timeout, "Timeout (default=1.5 seconds)");
+MODULE_PARM_DESC (timeout, "Timeout in tenths of seconds (default=1.5 seconds)");
/* --------------------------------------------------------------------- */
============================[ cut here ]========================
--
Romain Lievin, aka 'roms' <roms@lpg.ticalc.org>
Web site <http://lpg.ticalc.org/prj_tilp>
"Linux, y'a moins bien mais c'est plus cher !"
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Fwd: [PATCH] tiglusb timeouts
2002-11-26 20:39 Fwd: [PATCH] tiglusb timeouts Romain Lievin
@ 2002-11-26 22:19 ` Greg KH
2002-11-26 23:29 ` Greg KH
1 sibling, 0 replies; 3+ messages in thread
From: Greg KH @ 2002-11-26 22:19 UTC (permalink / raw)
To: Romain Lievin; +Cc: Linux Kernel, Randy Dunlap
On Tue, Nov 26, 2002 at 09:39:18PM +0100, Romain Lievin wrote:
> Hi,
>
> this patch fixes some troubles in the tiglusb driver.
>
> Patch is against 2.5.49. Please apply.
Applied, thanks.
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Fwd: [PATCH] tiglusb timeouts
2002-11-26 20:39 Fwd: [PATCH] tiglusb timeouts Romain Lievin
2002-11-26 22:19 ` Greg KH
@ 2002-11-26 23:29 ` Greg KH
1 sibling, 0 replies; 3+ messages in thread
From: Greg KH @ 2002-11-26 23:29 UTC (permalink / raw)
To: Romain Lievin; +Cc: Linux Kernel, Randy Dunlap
On Tue, Nov 26, 2002 at 09:39:18PM +0100, Romain Lievin wrote:
> Hi,
>
> this patch fixes some troubles in the tiglusb driver.
>
> Patch is against 2.5.49. Please apply.
I also applied it to my 2.4 tree, as it applied there too.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2002-11-26 23:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-11-26 20:39 Fwd: [PATCH] tiglusb timeouts Romain Lievin
2002-11-26 22:19 ` Greg KH
2002-11-26 23:29 ` Greg KH
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.