If you're using “-device usb-storage” in QEMU (a QEMU VVFAT drive) but find the data transfer speed too slow, you can try adding a USB controller (-device pci-ohci).
All you need to do is connect the usb-storage device to the pci-ohci controller.
The drive may take a moment to appear in the system (in my case, it needs to be properly recognized), but the data transfer speeds alone should make it worth it.
Here is my sample command line:
-device pci-ohci -drive file=fat:rw:/tmp/qemu,id=ufat,format=raw,if=none -device usb-storage,bus=usb-bus.2,port=2,drive=ufat
QEMU VVFAT (uhci)

QEMU VVFAT (ohci)

This thread was started after reading @sailor's articles about Peg2 and suggestions regarding USB (they're in Czech, but they can easily be translated for anyone interested)
https://www.amigaportal.cz/node/175129https://www.amigaportal.cz/node/175309Thank you, @sailor
