This patch increases an arbitrary limit on the size of individual isochronous packets submitted via usbfs. The limit is still arbitrary, but it's now large enough to support the maximum packet size used by high-bandwidth isochronous transfers.
Signed-off-by: Micah Dowty <[EMAIL PROTECTED]> Index: linux-2.6.16.16/drivers/usb/core/devio.c =================================================================== --- linux-2.6.16.16.orig/drivers/usb/core/devio.c 2006-05-18 16:57:32.000000000 -0700 +++ linux-2.6.16.16/drivers/usb/core/devio.c 2006-05-18 16:57:35.000000000 -0700 @@ -986,7 +986,8 @@ return -EFAULT; } for (totlen = u = 0; u < uurb->number_of_packets; u++) { - if (isopkt[u].length > 1023) { + /* arbitrary limit, sufficient for USB 2.0 high-bandwidth iso */ + if (isopkt[u].length > 8192) { kfree(isopkt); return -EINVAL; } ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ linux-usb-devel@lists.sourceforge.net To unsubscribe, use the last form field at: https://lists.sourceforge.net/lists/listinfo/linux-usb-devel