From: Anthony Liguori <anthony@codemonkey.ws>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PULL] usb patch queue
Date: Thu, 08 Sep 2011 09:23:32 -0500 [thread overview]
Message-ID: <4E68CFE4.60507@codemonkey.ws> (raw)
In-Reply-To: <1314957407-29508-1-git-send-email-kraxel@redhat.com>
On 09/02/2011 04:56 AM, Gerd Hoffmann wrote:
> 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
Pulled. Thanks.
Regards,
Anthony Liguori
>
> 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(-)
>
>
next prev parent reply other threads:[~2011-09-08 14:23 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-02 9:56 [Qemu-devel] [PULL] usb patch queue Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 01/18] usb-host: start tracing support Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 02/18] usb-host: reapurb error report fix Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 03/18] usb-host: fix halted endpoints Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 04/18] usb-host: limit open retries Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 05/18] usb-host: fix configuration tracking Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 06/18] usb-host: claim port Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 07/18] usb-host: endpoint table fixup Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 08/18] usb-ehci: handle siTDs Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 09/18] usb-host: constify port Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 10/18] usb-host: parse port in /proc/bus/usb/devices scan Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 11/18] usb: fix use after free Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 12/18] usb-ccid: switch to USBDesc* Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 13/18] usb-ccid: remote wakeup support Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 14/18] usb: claim port at device initialization time Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 15/18] usb-host: tag as unmigratable Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 16/18] usb: Remove leading underscores from __musb_irq_max Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 17/18] usb-musb: Take a DeviceState* in init function Gerd Hoffmann
2011-09-02 9:56 ` [Qemu-devel] [PATCH 18/18] usb-musb: Add reset function Gerd Hoffmann
2011-09-07 8:41 ` [Qemu-devel] [PULL] usb patch queue Gerd Hoffmann
2011-09-08 14:23 ` Anthony Liguori [this message]
-- strict thread matches above, loose matches on Subject: below --
2012-02-28 10:20 Gerd Hoffmann
2012-02-29 21:07 ` Anthony Liguori
2011-11-01 14:56 Gerd Hoffmann
2011-11-01 18:13 ` Anthony Liguori
2011-10-13 11:08 Gerd Hoffmann
2011-10-14 16:25 ` Anthony Liguori
2011-08-11 7:03 Gerd Hoffmann
2011-08-12 7:02 ` Michael Tokarev
2011-08-12 7:57 ` Gerd Hoffmann
2011-08-12 13:04 ` Anthony Liguori
2011-07-20 10:23 Gerd Hoffmann
2011-07-08 9:50 Gerd Hoffmann
2011-07-12 14:52 ` Gerd Hoffmann
2011-07-19 15:59 ` Anthony Liguori
2011-06-24 10:59 Gerd Hoffmann
2011-06-24 13:30 ` Hans de Goede
2011-06-27 20:19 ` Anthony Liguori
2011-06-14 11:05 Gerd Hoffmann
2011-06-15 14:17 ` Anthony Liguori
2011-05-04 15:41 Gerd Hoffmann
2011-05-05 18:28 ` Anthony Liguori
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4E68CFE4.60507@codemonkey.ws \
--to=anthony@codemonkey.ws \
--cc=kraxel@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.