From: Hans de Goede Date: Mon, 3 Sep 2012 11:44:04 +0000 (+0200) Subject: usb-redir: Enable pipelining for bulk endpoints X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6c67446a427b50a706e628f810116353f5d128cf;p=qemu.git usb-redir: Enable pipelining for bulk endpoints Signed-off-by: Hans de Goede Signed-off-by: Gerd Hoffmann --- diff --git a/hw/usb/redirect.c b/hw/usb/redirect.c index 7fb0fb3de8..5301a69c4f 100644 --- a/hw/usb/redirect.c +++ b/hw/usb/redirect.c @@ -1197,6 +1197,9 @@ static void usbredir_ep_info(void *priv, usb_redir_cap_ep_info_max_packet_size)) { usb_ep->max_packet_size = ep_info->max_packet_size[i]; } + if (ep_info->type[i] == usb_redir_type_bulk) { + usb_ep->pipeline = true; + } } }