Files
genode/repos/dde_linux/patches/legacy_usb_host_devio_sg.patch
Sebastian Sumpf 4a7a4cfac5 dde_linux: move linux.port to legacy_linux.port
This is prerequisite for the Linux update. All dependencies relying on
the 'linux' have been adjusted to use 'legacy_linux'.

Issue #5264
2024-08-27 15:33:31 +02:00

16 lines
610 B
Diff

USB devio splits large transaction into 16 KiB buffers in scatter-gather
lists. Unfortunately, this mechanism seems unreliable most certainly because
of issue #4809 "DDE Linux struct page object aliasing".
--- src/linux/drivers/usb/core/devio.c
+++ src/linux/drivers/usb/core/devio.c
@@ -53,7 +53,7 @@
#define USB_MAXBUS 64
#define USB_DEVICE_MAX (USB_MAXBUS * 128)
-#define USB_SG_SIZE 16384 /* split-size for large txs */
+#define USB_SG_SIZE (1024 * 1024) /* split-size for large txs */
/* Mutual exclusion for ps->list in resume vs. release and remove */
static DEFINE_MUTEX(usbfs_mutex);