From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Gerd Hoffmann <kraxel@redhat.com>
Subject: [Qemu-devel] [PULL v3 00/19] chardev: qapi conversion continued
Date: Tue, 12 Mar 2013 09:56:10 +0100 [thread overview]
Message-ID: <1363078589-15233-1-git-send-email-kraxel@redhat.com> (raw)
Hi,
v3 of this series. Rebased to latest master, picked up a fix from Igor,
fixed a tyops in the udp commit message. No changes in the actual code
and in the qapi interface.
The plumbing has changed quite a bit though as the chardev backend table
has been replaced by a backend driver registration mechanism.
cheers,
Gerd
The following changes since commit fe3cc14fd83e0c8f376d849ccd0fc3433388442d:
Merge remote-tracking branch 'quintela/migration.next' into staging (2013-03-11 08:30:34 -0500)
are available in the git repository at:
git://git.kraxel.org/qemu chardev.3
for you to fetch changes up to 4f341ecd65a181e204bd9e083945e8c46781957a:
qemu-char.c: fix waiting for telnet connection message (2013-03-12 09:49:09 +0100)
----------------------------------------------------------------
Gerd Hoffmann (18):
chardev: add support for qapi-based chardev initialization
chardev: add mux chardev support to qapi
chardev: switch null init to qapi
chardev: add msmouse support to qapi
chardev: add braille support to qapi
chardev: switch file init to qapi
chardev: add stdio support to qapi
chardev: switch serial/tty init to qapi
chardev: switch parallel init to qapi
chardev: switch pty init to qapi
chardev: add console support to qapi
chardev: add pipe support to qapi
chardev: add spice support to qapi
chardev: add vc support to qapi
[fixup] vc
chardev: add memory (ringbuf) support to qapi
chardev: add udp support to qapi
Revert "hmp: Disable chardev-add and chardev-remove"
Igor Mitsyanko (1):
qemu-char.c: fix waiting for telnet connection message
backends/baum.c | 4 +-
backends/msmouse.c | 4 +-
hmp-commands.hx | 63 ++++----
include/char/char.h | 8 +
include/qemu/sockets.h | 1 +
include/ui/console.h | 4 +-
include/ui/qemu-spice.h | 7 +-
qapi-schema.json | 104 ++++++++++++-
qemu-char.c | 381 ++++++++++++++++++++++++++++++-----------------
spice-qemu-char.c | 62 +++++---
ui/console.c | 61 ++++++--
ui/gtk.c | 2 +-
util/qemu-sockets.c | 25 ++++
13 files changed, 515 insertions(+), 211 deletions(-)
next reply other threads:[~2013-03-12 8:56 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-12 8:56 Gerd Hoffmann [this message]
2013-03-12 8:56 ` [Qemu-devel] [PATCH 01/19] chardev: add support for qapi-based chardev initialization Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 02/19] chardev: add mux chardev support to qapi Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 03/19] chardev: switch null init " Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 04/19] chardev: add msmouse support " Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 05/19] chardev: add braille " Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 06/19] chardev: switch file init " Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 07/19] chardev: add stdio support " Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 08/19] chardev: switch serial/tty init " Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 09/19] chardev: switch parallel " Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 10/19] chardev: switch pty " Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 11/19] chardev: add console support " Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 12/19] chardev: add pipe " Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 13/19] chardev: add spice " Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 14/19] chardev: add vc " Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 15/19] [fixup] vc Gerd Hoffmann
2013-03-12 17:42 ` Eric Blake
2013-03-13 6:46 ` Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 16/19] chardev: add memory (ringbuf) support to qapi Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 17/19] chardev: add udp " Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 18/19] Revert "hmp: Disable chardev-add and chardev-remove" Gerd Hoffmann
2013-03-12 8:56 ` [Qemu-devel] [PATCH 19/19] qemu-char.c: fix waiting for telnet connection message Gerd Hoffmann
2013-03-12 9:08 ` [Qemu-devel] [PULL v3 00/19] chardev: qapi conversion continued Gerd Hoffmann
2013-03-13 12:39 ` 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=1363078589-15233-1-git-send-email-kraxel@redhat.com \
--to=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).