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: Wed, 29 Feb 2012 15:07:28 -0600 [thread overview]
Message-ID: <4F4E9390.1030209@codemonkey.ws> (raw)
In-Reply-To: <1330424430-23015-1-git-send-email-kraxel@redhat.com>
On 02/28/2012 04:20 AM, Gerd Hoffmann wrote:
> Hi,
>
> Next batch of usb updates. This one brings packet queuing for uhci and
> xhci, so we have per-endpoint queues at usb-bus level now. Need to
> bring those to the usb drivers as next step, so they (especially
> usb-host) can pipeline requests.
>
> Also a bunch of bugfixes in ehci, smartcard emulation and usb redirect.
Regards,
Anthony Liguori
>
> cheers,
> Gerd
>
> The following changes since commit b4bd0b168e9f4898b98308f4a8a089f647a86d16:
>
> audio: Add some fall through comments (2012-02-25 18:16:11 +0400)
>
> are available in the git repository at:
> git://git.kraxel.org/qemu usb.39
>
> Alon Levy (4):
> usb-desc: fix user trigerrable segfaults (!config)
> libcacard: link with glib for g_strndup
> usb-ccid: advertise SELF_POWERED
> libcacard: fix reported ATR length
>
> Gerd Hoffmann (10):
> usb-hid: fix tablet activation
> usb-ehci: fix reset
> usb-uhci: cleanup UHCIAsync allocation& initialization.
> usb-uhci: add UHCIQueue
> usb-uhci: process uhci_handle_td return code via switch.
> usb-uhci: implement packet queuing
> usb-xhci: enable packet queuing
> usb: add tracepoint for usb packet state changes.
> usb-ehci: sanity-check iso xfers
> ehci: drop old stuff
>
> Hans de Goede (6):
> usb-ehci: Handle ISO packets failing with an error other then NAK
> usb-redir: Fix printing of device version
> usb-redir: Always clear device state on filter reject
> usb-redir: Let the usb-host know about our device filtering
> usb-redir: Limit return values returned by iso packets
> usb-redir: Return USB_RET_NAK when we've no data for an interrupt endpoint
>
> Jan Kiszka (1):
> usb: Resolve warnings about unassigned bus on usb device creation
>
> configure | 6 +-
> hw/usb-bt.c | 4 +-
> hw/usb-bus.c | 18 +---
> hw/usb-ccid.c | 2 +-
> hw/usb-desc.c | 20 +++-
> hw/usb-ehci.c | 71 ++++++-------
> hw/usb-hid.c | 3 +
> hw/usb-msd.c | 4 +-
> hw/usb-net.c | 4 +-
> hw/usb-serial.c | 8 +-
> hw/usb-uhci.c | 314 +++++++++++++++++++++++++++++++---------------------
> hw/usb-xhci.c | 6 -
> hw/usb.c | 27 +----
> hw/usb.h | 7 +-
> libcacard/vcardt.h | 4 +-
> trace-events | 3 +
> usb-bsd.c | 4 +-
> usb-linux.c | 4 +-
> usb-redir.c | 46 ++++++--
> vl.c | 7 +-
> 20 files changed, 317 insertions(+), 245 deletions(-)
>
>
next prev parent reply other threads:[~2012-02-29 21:07 UTC|newest]
Thread overview: 47+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-28 10:20 [Qemu-devel] [PULL] usb patch queue Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 01/21] usb-hid: fix tablet activation Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 02/21] usb-ehci: fix reset Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 03/21] usb-uhci: cleanup UHCIAsync allocation & initialization Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 04/21] usb-uhci: add UHCIQueue Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 05/21] usb-uhci: process uhci_handle_td return code via switch Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 06/21] usb-uhci: implement packet queuing Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 07/21] usb-xhci: enable " Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 08/21] usb: add tracepoint for usb packet state changes Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 09/21] usb-ehci: sanity-check iso xfers Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 10/21] usb-desc: fix user trigerrable segfaults (!config) Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 11/21] libcacard: link with glib for g_strndup Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 12/21] usb-ccid: advertise SELF_POWERED Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 13/21] libcacard: fix reported ATR length Gerd Hoffmann
2012-03-08 7:12 ` Wen Congyang
2012-03-08 8:15 ` Alon Levy
2012-02-28 10:20 ` [Qemu-devel] [PATCH 14/21] usb-ehci: Handle ISO packets failing with an error other then NAK Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 15/21] ehci: drop old stuff Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 16/21] usb-redir: Fix printing of device version Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 17/21] usb-redir: Always clear device state on filter reject Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 18/21] usb-redir: Let the usb-host know about our device filtering Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 19/21] usb-redir: Limit return values returned by iso packets Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 20/21] usb-redir: Return USB_RET_NAK when we've no data for an interrupt endpoint Gerd Hoffmann
2012-02-28 10:20 ` [Qemu-devel] [PATCH 21/21] usb: Resolve warnings about unassigned bus on usb device creation Gerd Hoffmann
2012-02-29 21:07 ` Anthony Liguori [this message]
-- strict thread matches above, loose matches on Subject: below --
2011-11-01 14:56 [Qemu-devel] [PULL] usb patch queue Gerd Hoffmann
2011-11-01 18:13 ` Anthony Liguori
2011-10-13 11:08 Gerd Hoffmann
2011-10-14 16:25 ` Anthony Liguori
2011-09-02 9:56 Gerd Hoffmann
2011-09-07 8:41 ` Gerd Hoffmann
2011-09-08 14:23 ` 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=4F4E9390.1030209@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 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).