mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] Regression in 2.6.13 in USB generic serial driver
@ 2005-10-14  1:42 Randall Nortman
  2005-10-14  1:59 ` Chris Wright
  0 siblings, 1 reply; 3+ messages in thread
From: Randall Nortman @ 2005-10-14  1:42 UTC (permalink / raw)
  To: linux-kernel

Kernel version 2.6.13 introduced a regression (vs. 2.6.12.6) in the
generic USB serial converter driver.  The regression manifests, as far
as I can tell, whenever you attempt to write to the device.  The
symptom is that the write never completes (write() returns 0, or
blocks).  I'm pretty sure this will happen with all hardware, but I
only have my hardware to test with (amd64 host interfacing to a
custom-built USB device based on an Atmel AT91SAM7X256 arm7tdmi chip's
built-in USB transceiver).

The patch (vs. vanilla 2.6.13.4) is rather straightforward:

===================================================================
diff -ru linux-2.6.13.4/drivers/usb/serial/generic.c linux-2.6.13.4-fixed/drivers/usb/serial/generic.c
--- linux-2.6.13.4/drivers/usb/serial/generic.c	2005-10-10 14:54:29.000000000 -0400
+++ linux-2.6.13.4-fixed/drivers/usb/serial/generic.c	2005-10-13 21:34:54.000000000 -0400
@@ -223,7 +223,7 @@
 	dbg("%s - port %d", __FUNCTION__, port->number);
 
 	if (serial->num_bulk_out) {
-		if (port->write_urb_busy)
+		if (!(port->write_urb_busy))
 			room = port->bulk_out_size;
 	}
 
===================================================================

Please let me know if I'm missing something.  Otherwise, do I need to
do anything in particular to get a maintainer to accept the patch?
(I'm a long-time user, first-time patcher, so forgive my ignorance
about procedures.)

-- 
Randall

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

end of thread, other threads:[~2005-10-14  4:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-10-14  1:42 [PATCH] Regression in 2.6.13 in USB generic serial driver Randall Nortman
2005-10-14  1:59 ` Chris Wright
2005-10-14  4:20   ` [PATCH] usbserial: Regression " Randall Nortman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome