[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL] usb patch queue
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PULL] usb patch queue |
Date: |
Fri, 2 Sep 2011 11:56:29 +0200 |
Hi,
This is the current use patch queue with the following changes:
* musb improvements (qdev windup)
* fix ehci emulation for FreeBSD guests.
* a bunch if usb-host fixes.
* misc minir tweaks.
please pull,
Gerd
Gerd Hoffmann (15):
usb-host: start tracing support
usb-host: reapurb error report fix
usb-host: fix halted endpoints
usb-host: limit open retries
usb-host: fix configuration tracking.
usb-host: claim port
usb-host: endpoint table fixup
usb-ehci: handle siTDs
usb-host: constify port
usb-host: parse port in /proc/bus/usb/devices scan
usb: fix use after free
usb-ccid: switch to USBDesc*
usb-ccid: remote wakeup support
usb: claim port at device initialization time.
usb-host: tag as unmigratable
Juha Riihimäki (1):
usb-musb: Add reset function
Peter Maydell (2):
usb: Remove leading underscores from __musb_irq_max
usb-musb: Take a DeviceState* in init function
hw/tusb6010.c | 11 +-
hw/usb-bus.c | 110 ++++++++------
hw/usb-ccid.c | 248 +++++++++++---------------------
hw/usb-desc.h | 2 +-
hw/usb-ehci.c | 65 +++++++--
hw/usb-hub.c | 12 +--
hw/usb-musb.c | 26 +++-
hw/usb-ohci.c | 4 +-
hw/usb-uhci.c | 11 +-
hw/usb.c | 37 +++---
hw/usb.h | 11 +-
trace-events | 32 ++++
usb-linux.c | 448 ++++++++++++++++++++++++++++++++++-----------------------
13 files changed, 561 insertions(+), 456 deletions(-)
The following changes since commit 625f9e1f54cd78ee98ac22030da527c9a1cc9d2b:
Merge remote-tracking branch 'stefanha/trivial-patches' into staging
(2011-09-01 13:57:19 -0500)
are available in the git repository at:
git://git.kraxel.org/qemu usb.25
Gerd Hoffmann (15):
usb-host: start tracing support
usb-host: reapurb error report fix
usb-host: fix halted endpoints
usb-host: limit open retries
usb-host: fix configuration tracking.
usb-host: claim port
usb-host: endpoint table fixup
usb-ehci: handle siTDs
usb-host: constify port
usb-host: parse port in /proc/bus/usb/devices scan
usb: fix use after free
usb-ccid: switch to USBDesc*
usb-ccid: remote wakeup support
usb: claim port at device initialization time.
usb-host: tag as unmigratable
Juha Riihimäki (1):
usb-musb: Add reset function
Peter Maydell (2):
usb: Remove leading underscores from __musb_irq_max
usb-musb: Take a DeviceState* in init function
hw/tusb6010.c | 11 +-
hw/usb-bus.c | 110 ++++++++------
hw/usb-ccid.c | 248 +++++++++++---------------------
hw/usb-desc.h | 2 +-
hw/usb-ehci.c | 65 +++++++--
hw/usb-hub.c | 12 +--
hw/usb-musb.c | 26 +++-
hw/usb-ohci.c | 4 +-
hw/usb-uhci.c | 11 +-
hw/usb.c | 37 +++---
hw/usb.h | 11 +-
trace-events | 32 ++++
usb-linux.c | 448 ++++++++++++++++++++++++++++++++++-----------------------
13 files changed, 561 insertions(+), 456 deletions(-)
- [Qemu-devel] [PULL] usb patch queue,
Gerd Hoffmann <=
- [Qemu-devel] [PATCH 03/18] usb-host: fix halted endpoints, Gerd Hoffmann, 2011/09/02
- [Qemu-devel] [PATCH 02/18] usb-host: reapurb error report fix, Gerd Hoffmann, 2011/09/02
- [Qemu-devel] [PATCH 04/18] usb-host: limit open retries, Gerd Hoffmann, 2011/09/02
- [Qemu-devel] [PATCH 01/18] usb-host: start tracing support, Gerd Hoffmann, 2011/09/02
- [Qemu-devel] [PATCH 11/18] usb: fix use after free, Gerd Hoffmann, 2011/09/02
- [Qemu-devel] [PATCH 13/18] usb-ccid: remote wakeup support, Gerd Hoffmann, 2011/09/02
- [Qemu-devel] [PATCH 10/18] usb-host: parse port in /proc/bus/usb/devices scan, Gerd Hoffmann, 2011/09/02
- [Qemu-devel] [PATCH 09/18] usb-host: constify port, Gerd Hoffmann, 2011/09/02
- [Qemu-devel] [PATCH 05/18] usb-host: fix configuration tracking., Gerd Hoffmann, 2011/09/02
- [Qemu-devel] [PATCH 06/18] usb-host: claim port, Gerd Hoffmann, 2011/09/02