Changeset 17080
- Timestamp:
- 05/16/11 23:08:40 (2 years ago)
- Location:
- src/linux/laguna/linux-2.6.31.14/drivers/usb
- Files:
-
- 2 edited
-
core/hub.c (modified) (1 diff)
-
storage/scsiglue.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/linux/laguna/linux-2.6.31.14/drivers/usb/core/hub.c
r14877 r17080 26 26 #include <asm/uaccess.h> 27 27 #include <asm/byteorder.h> 28 28 #include <asm/io.h> 29 #include <linux/usb/ehci_def.h> 29 30 #include "usb.h" 30 31 #include "hcd.h" -
src/linux/laguna/linux-2.6.31.14/drivers/usb/storage/scsiglue.c
r14877 r17080 541 541 .sg_tablesize = SG_ALL, 542 542 543 /* limit the total size of a transfer to 120 KB */ 544 .max_sectors = 240, 543 /* limit the total size of a transfer to 1024 KB */ 544 #ifdef CONFIG_USB_XHCI_HCD 545 .max_sectors = 240, // larger than 240 will cause USB 3.0 fail 546 #else 547 .max_sectors = 1024, //Jacky-20100917. when value >= 1024, the USB Bulk performance gets no more improve 548 #endif 545 549 546 550 /* merge commands... this seems to help performance, but
Note: See TracChangeset
for help on using the changeset viewer.
