All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: "Marc-André Lureau" <marcandre.lureau@redhat.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v2 00/21] chardev clean-ups & tests
Date: Wed, 3 May 2017 14:36:00 +0200	[thread overview]
Message-ID: <d10fe946-b664-48cf-2a0f-cffd902b0d25@redhat.com> (raw)
In-Reply-To: <20170227134202.2991-1-marcandre.lureau@redhat.com>



On 27/02/2017 14:41, Marc-André Lureau wrote:
> Hi,
> 
> The following series contains various patches:
> - replace "chardevs" list for a /chardevs container object
> - add a few read-only socket properties mainly useful for testing
> - some chardev related clean-ups
> - add various chardev tests
> 
> This series is part of a larger refactoring series that I try to keep
> up to date here: https://github.com/elmarco/qemu/commits/chrfe
> 
> v2:
> - replaced root container unref with a TODO
> - call object_unparent() directly instead of qemu_chr_delete()
> - remove bad qcow2 NULL check removal
> - rebased

Nice, thanks!

> Marc-André Lureau (21):
>   char: remove qemu_chr_be_generic_open
>   mux: simplfy muxes_realize_done
>   xen: use a better chardev type check
>   container: don't leak container reference
>   char: add a /chardevs container
>   vl: add todo note about root container cleanup
>   char: use /chardevs container instead of chardevs list
>   char: remove qemu_chardev_add
>   char: remove chardevs list
>   char: useless NULL check
>   char-socket: introduce update_disconnected_filename()
>   char-socket: update local address after listen
>   char-socket: add 'addr' property
>   char-socket: add 'connected' property
>   char-udp: flush as much buffer as possible
>   tests: add alias check in /char/ringbuf
>   tests: add /char/pipe test
>   tests: add /char/file test
>   tests: add /char/socket test
>   tests: add /char/udp test
>   tests: add /char/console test
> 
>  chardev/char-mux.h          |   2 +-
>  include/sysemu/char.h       |  10 --
>  chardev/char-mux.c          |  11 +-
>  chardev/char-pty.c          |   2 +-
>  chardev/char-socket.c       |  46 +++++-
>  chardev/char-udp.c          |  26 ++--
>  chardev/char.c              | 155 +++++++++----------
>  gdbstub.c                   |   4 +-
>  hw/usb/ccid-card-passthru.c |   2 +-
>  hw/usb/redirect.c           |   2 +-
>  net/vhost-user.c            |   2 +-
>  qom/container.c             |   1 +
>  tests/test-char.c           | 366 +++++++++++++++++++++++++++++++++++++++++++-
>  tests/vhost-user-test.c     |   2 +-
>  ui/console.c                |   2 +-
>  ui/gtk.c                    |   2 +-
>  vl.c                        |   1 +
>  xen-common.c                |   2 +-
>  18 files changed, 511 insertions(+), 127 deletions(-)
> 

      parent reply	other threads:[~2017-05-03 12:36 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-27 13:41 [Qemu-devel] [PATCH v2 00/21] chardev clean-ups & tests Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 01/21] char: remove qemu_chr_be_generic_open Marc-André Lureau
2017-03-01  1:57   ` Eric Blake
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 02/21] mux: simplfy muxes_realize_done Marc-André Lureau
2017-03-01 19:51   ` Eric Blake
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 03/21] xen: use a better chardev type check Marc-André Lureau
2017-03-01 20:06   ` Eric Blake
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 04/21] container: don't leak container reference Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 05/21] char: add a /chardevs container Marc-André Lureau
2017-02-27 15:39   ` Paolo Bonzini
2017-02-28 10:34     ` Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 06/21] vl: add todo note about root container cleanup Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 07/21] char: use /chardevs container instead of chardevs list Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 08/21] char: remove qemu_chardev_add Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 09/21] char: remove chardevs list Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 10/21] char: useless NULL check Marc-André Lureau
2017-03-01  4:32   ` Philippe Mathieu-Daudé
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 11/21] char-socket: introduce update_disconnected_filename() Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 12/21] char-socket: update local address after listen Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 13/21] char-socket: add 'addr' property Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 14/21] char-socket: add 'connected' property Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 15/21] char-udp: flush as much buffer as possible Marc-André Lureau
2017-03-01  4:34   ` Philippe Mathieu-Daudé
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 16/21] tests: add alias check in /char/ringbuf Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 17/21] tests: add /char/pipe test Marc-André Lureau
2017-02-27 13:41 ` [Qemu-devel] [PATCH v2 18/21] tests: add /char/file test Marc-André Lureau
2017-02-27 13:42 ` [Qemu-devel] [PATCH v2 19/21] tests: add /char/socket test Marc-André Lureau
2017-02-27 13:42 ` [Qemu-devel] [PATCH v2 20/21] tests: add /char/udp test Marc-André Lureau
2017-02-27 13:42 ` [Qemu-devel] [PATCH v2 21/21] tests: add /char/console test Marc-André Lureau
2017-05-03 12:36 ` Paolo Bonzini [this message]

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=d10fe946-b664-48cf-2a0f-cffd902b0d25@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=marcandre.lureau@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.