qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/4] usb patch queue
@ 2013-09-10  9:41 Gerd Hoffmann
  2013-09-10  9:41 ` [Qemu-devel] [PATCH 1/4] usb: sanity check setup_index+setup_len in post_load Gerd Hoffmann
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Gerd Hoffmann @ 2013-09-10  9:41 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Here comes the usb patch queue, bringing little fixes and making usb
bluetooth support a compile time option.

please pull,
  Gerd

The following changes since commit 94c2b6aff43cdfcfdfb552773a6b6b973a72ef0b:

  mips_malta: support up to 2GiB RAM (2013-09-09 18:42:22 +0200)

are available in the git repository at:

  git://git.kraxel.org/qemu usb.89

for you to fetch changes up to adbecc89731cf3e0ae656d50ea9fa58c589c4bdc:

  ehci: save device pointer in EHCIState (2013-09-10 11:14:42 +0200)

----------------------------------------------------------------
Gerd Hoffmann (2):
      usb: sanity check setup_index+setup_len in post_load
      ehci: save device pointer in EHCIState

Miroslav Rezanina (2):
      Preparation for usb-bt-dongle conditional build
      Remove dev-bluetooth.c dependency from vl.c

 hw/bt/core.c           | 23 ++++++++++++++
 hw/bt/hci.c            | 48 +++++++++++++++++++++++++++++
 hw/usb/Makefile.objs   |  3 --
 hw/usb/bus.c           |  4 +++
 hw/usb/dev-bluetooth.c | 10 +++++-
 hw/usb/hcd-ehci.c      |  7 ++---
 hw/usb/hcd-ehci.h      |  1 +
 include/hw/bt.h        |  3 ++
 include/hw/usb.h       |  3 --
 vl.c                   | 82 +++-----------------------------------------------
 10 files changed, 95 insertions(+), 89 deletions(-)

^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Qemu-devel] [PULL 0/4] usb patch queue
@ 2014-07-01 14:07 Gerd Hoffmann
  2014-07-01 16:02 ` Peter Maydell
  0 siblings, 1 reply; 8+ messages in thread
From: Gerd Hoffmann @ 2014-07-01 14:07 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Coming with a collection of usb bugfixes.

please pull,
  Gerd

The following changes since commit b3959efdbb2dc3d5959e3b0a8e188126930beca8:

  Merge remote-tracking branch 'remotes/afaerber/tags/qom-devices-for-2.1' into staging (2014-07-01 11:00:53 +0100)

are available in the git repository at:


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

for you to fetch changes up to c1129f6bffb6fc756f53c06bc554a7997b1f4be4:

  ccid-card-emulated: use EventNotifier (2014-07-01 15:49:51 +0200)

----------------------------------------------------------------
usb bugfixes.

----------------------------------------------------------------
Christian Burger (1):
      input: fix jumpy mouse cursor with USB mouse emulation

Hani Benhabiles (1):
      usb: Fix usb-bt-dongle initialization.

Jincheng Miao (1):
      usb: initialize libusb_device to avoid crash

Paolo Bonzini (1):
      ccid-card-emulated: use EventNotifier

 hw/input/hid.c              |  4 ++--
 hw/usb/ccid-card-emulated.c | 29 ++++++++++-------------------
 hw/usb/dev-bluetooth.c      | 24 ++++++++++++++++--------
 hw/usb/host-libusb.c        |  4 ++--
 4 files changed, 30 insertions(+), 31 deletions(-)

^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Qemu-devel] [PULL 0/4] usb patch queue
@ 2013-04-23  8:32 Gerd Hoffmann
  0 siblings, 0 replies; 8+ messages in thread
From: Gerd Hoffmann @ 2013-04-23  8:32 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Nothing major, just some small fixes.

please pull,
  Gerd

The following changes since commit 456736710df19c2275192269fe67a3f0b2583835:

  block: Fix build with tracing enabled (2013-04-22 11:31:41 -0500)

are available in the git repository at:

  git://git.kraxel.org/qemu usb.81

for you to fetch changes up to 3f5cc97e2ba00b34fd20a5553ed9d2fecf32f7e3:

  usb-host: raise libusbx minimum version to 1.0.13 (2013-04-23 08:43:10 +0200)

----------------------------------------------------------------
Gerd Hoffmann (3):
      xhci: remove XHCIRing->base (unused)
      usb: better speed mismatch error reporting
      usb-host: raise libusbx minimum version to 1.0.13

Hans de Goede (1):
      ehci_free_packet: Discard finished packets when the queue is halted

 configure            |    2 +-
 hw/usb/bus.c         |   36 ++++++++++++++++++++++++++++++++----
 hw/usb/desc.c        |    2 --
 hw/usb/hcd-ehci.c    |   16 +++++++++++-----
 hw/usb/hcd-xhci.c    |    4 +---
 hw/usb/host-libusb.c |    5 -----
 trace-events         |    2 +-
 7 files changed, 46 insertions(+), 21 deletions(-)

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

end of thread, other threads:[~2014-07-01 16:03 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-10  9:41 [Qemu-devel] [PULL 0/4] usb patch queue Gerd Hoffmann
2013-09-10  9:41 ` [Qemu-devel] [PATCH 1/4] usb: sanity check setup_index+setup_len in post_load Gerd Hoffmann
2013-09-10  9:41 ` [Qemu-devel] [PATCH 2/4] Preparation for usb-bt-dongle conditional build Gerd Hoffmann
2013-09-10  9:41 ` [Qemu-devel] [PATCH 3/4] Remove dev-bluetooth.c dependency from vl.c Gerd Hoffmann
2013-09-10  9:41 ` [Qemu-devel] [PATCH 4/4] ehci: save device pointer in EHCIState Gerd Hoffmann
  -- strict thread matches above, loose matches on Subject: below --
2014-07-01 14:07 [Qemu-devel] [PULL 0/4] usb patch queue Gerd Hoffmann
2014-07-01 16:02 ` Peter Maydell
2013-04-23  8:32 Gerd Hoffmann

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