Hi,
I discover that my modem produce lot's of crc error in iso mode.
Could some people try this patch and saw if there have also -84(-EILSEQ)
error ?
http://www.ibiblio.org/peanut/Kernel-2.6.6/usb/error-codes.txt said
"Error codes like -EPROTO, -EILSEQ and -EOVERFLOW normally indicate
hardware problems such as bad devices (including firmware) or cables."
Mathieu
Index: Pipes.c
===================================================================
RCS file: /cvs/eagleusb/eagleusb/driver/Pipes.c,v
retrieving revision 1.7
diff -u -r1.7 Pipes.c
--- Pipes.c 17 Oct 2004 20:35:55 -0000 1.7
+++ Pipes.c 19 Jan 2005 22:02:10 -0000
@@ -532,6 +532,8 @@
goto byebye;
}
+ if (urb->status)
+ printk("eagle urb error : 0x%p %d\n", urb, urb->status);
if (
( urb->status == -ENOENT ) ||
( urb->status == -ECONNRESET ) ||
@@ -720,8 +722,6 @@
dev_kfree_skb( skb );
goto byebye;
}
-
-
/*
* Drop encapsulation if needed
*/