[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 10/10] Revert "usb-hub: report status changes only o
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PATCH 10/10] Revert "usb-hub: report status changes only once" |
Date: |
Wed, 28 Aug 2013 14:43:06 +0200 |
This reverts commit a309ee6e0a256f690760abfba44fceaa52a7c2f3.
This isn't in line with the usb specification and adds regressions,
win7 fails to drive the usb hub for example.
Was added because it "solved" the issue of hubs interacting badly
with the xhci host controller. Now with the root cause being fixed
in xhci (commit <FIXME>) we can revert this one.
Cc: address@hidden
Signed-off-by: Gerd Hoffmann <address@hidden>
---
hw/usb/dev-hub.c | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/hw/usb/dev-hub.c b/hw/usb/dev-hub.c
index 54f63c0..58647b4 100644
--- a/hw/usb/dev-hub.c
+++ b/hw/usb/dev-hub.c
@@ -33,7 +33,6 @@ typedef struct USBHubPort {
USBPort port;
uint16_t wPortStatus;
uint16_t wPortChange;
- uint16_t wPortChange_reported;
} USBHubPort;
typedef struct USBHubState {
@@ -468,11 +467,8 @@ static void usb_hub_handle_data(USBDevice *dev, USBPacket
*p)
status = 0;
for(i = 0; i < NUM_PORTS; i++) {
port = &s->ports[i];
- if (port->wPortChange &&
- port->wPortChange_reported != port->wPortChange) {
+ if (port->wPortChange)
status |= (1 << (i + 1));
- }
- port->wPortChange_reported = port->wPortChange;
}
if (status != 0) {
trace_usb_hub_status_report(s->dev.addr, status);
--
1.8.3.1
- [Qemu-devel] [PATCH 00/10] usb: a bunch of bugfixes., Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 01/10] xhci: remove leftover debug printf, Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 02/10] xhci: add tracepoint for endpoint state changes, Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 04/10] xhci: fix endpoint interval calculation, Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 08/10] usb: parallelize usb3 streams, Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 06/10] xhci: reset port when disabling slot, Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 03/10] xhci: add port to slot_address tracepoint, Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 07/10] uas: add property for request logging, Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 05/10] xhci: emulate intr endpoint intervals correctly, Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 10/10] Revert "usb-hub: report status changes only once",
Gerd Hoffmann <=
- [Qemu-devel] [PATCH 09/10] usb-hub: add tracepoint for status reports, Gerd Hoffmann, 2013/08/28