qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/26] usb patch queue
@ 2014-09-23 12:13 Gerd Hoffmann
  2014-09-23 12:13 ` [Qemu-devel] [PULL 01/26] usb-storage: Fix how legacy init handles option ID clash Gerd Hoffmann
                   ` (26 more replies)
  0 siblings, 27 replies; 28+ messages in thread
From: Gerd Hoffmann @ 2014-09-23 12:13 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Here comes the usb patch queue, a bit larger this time.  The big chunk
of it is the refactoring to use realise for usb device initialization.
There are also the usual bugfixes, host adapter hotplug support and
tracing bits for ohci.

please pull,
  Gerd

The following changes since commit 07e2863d0271ac6c05206d8ce9e4f4c39b25d3ea:

  exec.c: fix setting 1-byte-long watchpoints (2014-09-19 17:42:16 +0100)

are available in the git repository at:

  git://git.kraxel.org/qemu tags/pull-usb-20140923-1

for you to fetch changes up to ec56214f6f23c1e2f78de6afa6835acc35fc03ed:

  usb: tag standalone ehci as hotpluggable (2014-09-23 12:51:08 +0200)

----------------------------------------------------------------
usb: enable hotplug, switch to realize, ohci tracing, misc fixes.

----------------------------------------------------------------
Alexey Kardashevskiy (1):
      ohci: Convert fprint/DPRINTF/print to traces

Gerd Hoffmann (3):
      usb: tag xhci as hotpluggable
      usb: tag standalone uhci as hotpluggable
      usb: tag standalone ehci as hotpluggable

Gonglei (21):
      usb-storage: fix possible memory leak and missing error message
      usb-bus: convert USBDeviceClass init to realize
      usb-net: convert init to realize
      libusb: convert init to realize
      libusb: using error_report instead of fprintf
      usb-hub: convert init to realize
      dev-storage: convert init to realize
      dev-storage: usring error_report instead of fprintf/printf
      dev-uas: convert init to realize
      dev-uas: using error_report instead of fprintf
      dev-bluetooth: convert init to realize
      dev-serial: convert init to realize
      usb-ccid: convert init to realize
      dev-hid: convert init to realize
      dev-wacom: convert init to realize
      usb-audio: convert init to realize
      usb-redir: convert init to realize
      usb-mtp: convert init to realize
      usb-bus: remove "init" from USBDeviceClass struct
      usb-bus: introduce a wrapper function to check speed
      usb-serial: only check speed once at realize time

Markus Armbruster (1):
      usb-storage: Fix how legacy init handles option ID clash

 hw/usb/bus.c                  |  91 +++++++++--------
 hw/usb/dev-audio.c            |   5 +-
 hw/usb/dev-bluetooth.c        |   6 +-
 hw/usb/dev-hid.c              |  27 +++--
 hw/usb/dev-hub.c              |   9 +-
 hw/usb/dev-mtp.c              |   5 +-
 hw/usb/dev-network.c          |   9 +-
 hw/usb/dev-serial.c           |  24 +++--
 hw/usb/dev-smartcard-reader.c |   5 +-
 hw/usb/dev-storage.c          |  48 ++++-----
 hw/usb/dev-uas.c              |  17 ++--
 hw/usb/dev-wacom.c            |   5 +-
 hw/usb/hcd-ehci-pci.c         |  12 ++-
 hw/usb/hcd-ehci.c             |   8 +-
 hw/usb/hcd-ehci.h             |   1 +
 hw/usb/hcd-ohci.c             | 222 +++++++++++++++++++-----------------------
 hw/usb/hcd-uhci.c             |  16 ++-
 hw/usb/hcd-xhci.c             |   1 -
 hw/usb/host-libusb.c          |  33 ++++---
 hw/usb/redirect.c             |  21 ++--
 include/hw/usb.h              |  11 ++-
 trace-events                  |  56 +++++++++++
 22 files changed, 355 insertions(+), 277 deletions(-)

^ permalink raw reply	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2014-09-23 15:56 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-23 12:13 [Qemu-devel] [PULL 00/26] usb patch queue Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 01/26] usb-storage: Fix how legacy init handles option ID clash Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 02/26] usb-storage: fix possible memory leak and missing error message Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 03/26] ohci: Convert fprint/DPRINTF/print to traces Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 04/26] usb-bus: convert USBDeviceClass init to realize Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 05/26] usb-net: convert " Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 06/26] libusb: " Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 07/26] libusb: using error_report instead of fprintf Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 08/26] usb-hub: convert init to realize Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 09/26] dev-storage: " Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 10/26] dev-storage: usring error_report instead of fprintf/printf Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 11/26] dev-uas: convert init to realize Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 12/26] dev-uas: using error_report instead of fprintf Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 13/26] dev-bluetooth: convert init to realize Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 14/26] dev-serial: " Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 15/26] usb-ccid: " Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 16/26] dev-hid: " Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 17/26] dev-wacom: " Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 18/26] usb-audio: " Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 19/26] usb-redir: " Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 20/26] usb-mtp: " Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 21/26] usb-bus: remove "init" from USBDeviceClass struct Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 22/26] usb-bus: introduce a wrapper function to check speed Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 23/26] usb-serial: only check speed once at realize time Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 24/26] usb: tag xhci as hotpluggable Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 25/26] usb: tag standalone uhci " Gerd Hoffmann
2014-09-23 12:13 ` [Qemu-devel] [PULL 26/26] usb: tag standalone ehci " Gerd Hoffmann
2014-09-23 15:56 ` [Qemu-devel] [PULL 00/26] usb patch queue Peter Maydell

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).