Here's a patch from Tony Luck that fixes a problem with the UHCI
debugging code on architectures with big page sizes. We end up
allocating more than kmalloc allows.

Please apply. Thanks!

JE

===== drivers/usb/host/uhci-debug.c 1.5 vs edited =====
--- 1.5/drivers/usb/host/uhci-debug.c   Mon Dec 30 20:26:13 2002
+++ edited/drivers/usb/host/uhci-debug.c        Thu Jun 19 11:53:29 2003
@@ -513,7 +513,7 @@
 }
 
 #ifdef CONFIG_PROC_FS
-#define MAX_OUTPUT     (PAGE_SIZE * 16)
+#define MAX_OUTPUT     (64 * 1024)
 
 static struct proc_dir_entry *uhci_proc_root = NULL;
 


-------------------------------------------------------
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
_______________________________________________
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to