* [Qemu-devel] [PATCH] uhci: Fixed length handling for SETUP and OUT tokens
@ 2008-08-22 5:54 Max Krasnyansky
2008-08-22 9:00 ` Aurelien Jarno
0 siblings, 1 reply; 2+ messages in thread
From: Max Krasnyansky @ 2008-08-22 5:54 UTC (permalink / raw)
To: anthony, qemu-devel; +Cc: aurelien, kvm, Max Krasnyansky
Fixes regression reported agains Linux 2.6.18.
Looks like XP and newer Linux kernels are less sensitive
to length returned for control transfers.
Signed-off-by: Max Krasnyansky <maxk@kernel.org>
---
hw/usb-uhci.c | 19 ++++++++++---------
1 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/hw/usb-uhci.c b/hw/usb-uhci.c
index 0714520..86b4696 100644
--- a/hw/usb-uhci.c
+++ b/hw/usb-uhci.c
@@ -651,7 +651,7 @@ static int uhci_broadcast_packet(UHCIState *s, USBPacket *p)
dprintf("uhci: packet enter. pid %s addr 0x%02x ep %d len %d\n",
pid2str(p->pid), p->devaddr, p->devep, p->len);
- if (p->pid == USB_TOKEN_OUT)
+ if (p->pid == USB_TOKEN_OUT || p->pid == USB_TOKEN_SETUP)
dump_data(p->data, p->len);
ret = USB_RET_NODEV;
@@ -771,7 +771,7 @@ out:
static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td, uint32_t *int_mask)
{
UHCIAsync *async;
- int len = 0, max_len, ret = 0;
+ int len = 0, max_len;
uint8_t pid;
/* Is active ? */
@@ -814,12 +814,13 @@ static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td, uint32_t *in
case USB_TOKEN_OUT:
case USB_TOKEN_SETUP:
cpu_physical_memory_read(td->buffer, async->buffer, max_len);
- ret = uhci_broadcast_packet(s, &async->packet);
- len = max_len;
+ len = uhci_broadcast_packet(s, &async->packet);
+ if (len >= 0)
+ len = max_len;
break;
case USB_TOKEN_IN:
- ret = uhci_broadcast_packet(s, &async->packet);
+ len = uhci_broadcast_packet(s, &async->packet);
break;
default:
@@ -830,17 +831,17 @@ static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td, uint32_t *in
return -1;
}
- if (ret == USB_RET_ASYNC) {
+ if (len == USB_RET_ASYNC) {
uhci_async_link(s, async);
return 2;
}
- async->packet.len = ret;
+ async->packet.len = len;
done:
- ret = uhci_complete_td(s, td, async, int_mask);
+ len = uhci_complete_td(s, td, async, int_mask);
uhci_async_free(s, async);
- return ret;
+ return len;
}
static void uhci_async_complete(USBPacket *packet, void *opaque)
--
1.5.5.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] uhci: Fixed length handling for SETUP and OUT tokens
2008-08-22 5:54 [Qemu-devel] [PATCH] uhci: Fixed length handling for SETUP and OUT tokens Max Krasnyansky
@ 2008-08-22 9:00 ` Aurelien Jarno
0 siblings, 0 replies; 2+ messages in thread
From: Aurelien Jarno @ 2008-08-22 9:00 UTC (permalink / raw)
To: qemu-devel; +Cc: kvm, Max Krasnyansky
On Fri, Aug 22, 2008 at 05:54:31AM +0000, Max Krasnyansky wrote:
> Fixes regression reported agains Linux 2.6.18.
> Looks like XP and newer Linux kernels are less sensitive
> to length returned for control transfers.
>
> Signed-off-by: Max Krasnyansky <maxk@kernel.org>
Applied, thanks.
> ---
> hw/usb-uhci.c | 19 ++++++++++---------
> 1 files changed, 10 insertions(+), 9 deletions(-)
>
> diff --git a/hw/usb-uhci.c b/hw/usb-uhci.c
> index 0714520..86b4696 100644
> --- a/hw/usb-uhci.c
> +++ b/hw/usb-uhci.c
> @@ -651,7 +651,7 @@ static int uhci_broadcast_packet(UHCIState *s, USBPacket *p)
>
> dprintf("uhci: packet enter. pid %s addr 0x%02x ep %d len %d\n",
> pid2str(p->pid), p->devaddr, p->devep, p->len);
> - if (p->pid == USB_TOKEN_OUT)
> + if (p->pid == USB_TOKEN_OUT || p->pid == USB_TOKEN_SETUP)
> dump_data(p->data, p->len);
>
> ret = USB_RET_NODEV;
> @@ -771,7 +771,7 @@ out:
> static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td, uint32_t *int_mask)
> {
> UHCIAsync *async;
> - int len = 0, max_len, ret = 0;
> + int len = 0, max_len;
> uint8_t pid;
>
> /* Is active ? */
> @@ -814,12 +814,13 @@ static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td, uint32_t *in
> case USB_TOKEN_OUT:
> case USB_TOKEN_SETUP:
> cpu_physical_memory_read(td->buffer, async->buffer, max_len);
> - ret = uhci_broadcast_packet(s, &async->packet);
> - len = max_len;
> + len = uhci_broadcast_packet(s, &async->packet);
> + if (len >= 0)
> + len = max_len;
> break;
>
> case USB_TOKEN_IN:
> - ret = uhci_broadcast_packet(s, &async->packet);
> + len = uhci_broadcast_packet(s, &async->packet);
> break;
>
> default:
> @@ -830,17 +831,17 @@ static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td, uint32_t *in
> return -1;
> }
>
> - if (ret == USB_RET_ASYNC) {
> + if (len == USB_RET_ASYNC) {
> uhci_async_link(s, async);
> return 2;
> }
>
> - async->packet.len = ret;
> + async->packet.len = len;
>
> done:
> - ret = uhci_complete_td(s, td, async, int_mask);
> + len = uhci_complete_td(s, td, async, int_mask);
> uhci_async_free(s, async);
> - return ret;
> + return len;
> }
>
> static void uhci_async_complete(USBPacket *packet, void *opaque)
> --
> 1.5.5.1
>
>
>
>
--
.''`. Aurelien Jarno | GPG: 1024D/F1BCDB73
: :' : Debian developer | Electrical Engineer
`. `' aurel32@debian.org | aurelien@aurel32.net
`- people.debian.org/~aurel32 | www.aurel32.net
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-08-22 9:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-22 5:54 [Qemu-devel] [PATCH] uhci: Fixed length handling for SETUP and OUT tokens Max Krasnyansky
2008-08-22 9:00 ` Aurelien Jarno
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).