qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Eric Blake <eblake@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: Anthony Liguori <aliguori@us.ibm.com>,
	Peter Krempa <pkrempa@redhat.com>,
	qemu-devel@nongnu.org, stefano.stabellini@eu.citrix.com
Subject: Re: [Qemu-devel] [PATCH 2/2] chardev: fix "info chardev" output
Date: Fri, 31 May 2013 06:36:25 -0600	[thread overview]
Message-ID: <51A89949.6040002@redhat.com> (raw)
In-Reply-To: <1369722844-24345-3-git-send-email-kraxel@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 1256 bytes --]

On 05/28/2013 12:34 AM, Gerd Hoffmann wrote:
> Fill unset CharDriverState->filename with the backend name, so
> 'info chardev' will return at least the chardev type.  Don't
> touch it in case the chardev init function filled it already,
> like the socket+pty chardevs do for example.
> 
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> ---
>  qemu-char.c |    3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/qemu-char.c b/qemu-char.c
> index f825294..d04b429 100644
> --- a/qemu-char.c
> +++ b/qemu-char.c
> @@ -3801,6 +3801,9 @@ ChardevReturn *qmp_chardev_add(const char *id, ChardevBackend *backend,
>          chr->label = g_strdup(id);
>          chr->avail_connections =
>              (backend->kind == CHARDEV_BACKEND_KIND_MUX) ? MAX_MUX : 1;
> +        if (!chr->filename) {
> +            chr->filename = g_strdup(ChardevBackendKind_lookup[backend->kind]);
> +        }
>          QTAILQ_INSERT_TAIL(&chardevs, chr, next);
>          return ret;
>      } else {
> 

Peter was telling me on IRC that this patch is still broken with regards
to libvirt; I've cc'd him to provide more details...

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 621 bytes --]

  parent reply	other threads:[~2013-05-31 12:36 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-28  6:34 [Qemu-devel] [PULL 0/2] chardev: fix "info chardev" output Gerd Hoffmann
2013-05-28  6:34 ` [Qemu-devel] [PATCH 1/2] Revert "chardev: Get filename for new qapi backend" Gerd Hoffmann
2013-05-28  6:34 ` [Qemu-devel] [PATCH 2/2] chardev: fix "info chardev" output Gerd Hoffmann
2013-05-28  9:57   ` Gerd Hoffmann
2013-05-31 12:36   ` Eric Blake [this message]
2013-05-31 12:45     ` Peter Krempa
2013-05-31 13:21       ` Gerd Hoffmann
2013-05-31 13:30         ` Peter Krempa
2013-05-28 15:00 ` [Qemu-devel] [PULL 0/2] " Eric Blake
2013-06-17 21:18 ` Anthony Liguori
  -- strict thread matches above, loose matches on Subject: below --
2013-05-28 10:27 Gerd Hoffmann
2013-05-28 10:27 ` [Qemu-devel] [PATCH 2/2] " Gerd Hoffmann

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=51A89949.6040002@redhat.com \
    --to=eblake@redhat.com \
    --cc=aliguori@us.ibm.com \
    --cc=kraxel@redhat.com \
    --cc=pkrempa@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefano.stabellini@eu.citrix.com \
    /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).