From: "Marc-André Lureau" <marcandre.lureau@redhat.com>
To: Anton Nefedov <anton.nefedov@virtuozzo.com>
Cc: qemu-devel@nongnu.org, den@virtuozzo.com, pbonzini@redhat.com,
Amit Shah <amit@kernel.org>
Subject: Re: [Qemu-devel] [PATCH v4 11/13] virtio-console: chardev hotswap support
Date: Thu, 29 Jun 2017 06:02:08 -0400 (EDT) [thread overview]
Message-ID: <416200823.44425042.1498730528050.JavaMail.zimbra@redhat.com> (raw)
In-Reply-To: <1498495550-72357-12-git-send-email-anton.nefedov@virtuozzo.com>
Hi
Looks good, but please write something in the commit message about what needs to be done for be-change (what this patch does).
thanks
----- Original Message -----
> Signed-off-by: Anton Nefedov <anton.nefedov@virtuozzo.com>
> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
> CC: Amit Shah <amit@kernel.org>
> ---
> hw/char/virtio-console.c | 35 ++++++++++++++++++++++++++++++-----
> 1 file changed, 30 insertions(+), 5 deletions(-)
>
> diff --git a/hw/char/virtio-console.c b/hw/char/virtio-console.c
> index afb4949..198b2a8 100644
> --- a/hw/char/virtio-console.c
> +++ b/hw/char/virtio-console.c
> @@ -49,7 +49,7 @@ static ssize_t flush_buf(VirtIOSerialPort *port,
> VirtConsole *vcon = VIRTIO_CONSOLE(port);
> ssize_t ret;
>
> - if (!qemu_chr_fe_get_driver(&vcon->chr)) {
> + if (!qemu_chr_fe_backend_connected(&vcon->chr)) {
> /* If there's no backend, we can just say we consumed all data. */
> return len;
> }
> @@ -163,12 +163,35 @@ static void chr_event(void *opaque, int event)
> }
> }
>
> +static int chr_be_change(void *opaque)
> +{
> + VirtConsole *vcon = opaque;
> + VirtIOSerialPort *port = VIRTIO_SERIAL_PORT(vcon);
> + VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_GET_CLASS(port);
> +
> + if (k->is_console) {
> + qemu_chr_fe_set_handlers(&vcon->chr, chr_can_read, chr_read,
> + NULL, chr_be_change, vcon, NULL, true);
> + } else {
> + qemu_chr_fe_set_handlers(&vcon->chr, chr_can_read, chr_read,
> + chr_event, chr_be_change, vcon, NULL,
> false);
> + }
> +
> + if (vcon->watch) {
> + g_source_remove(vcon->watch);
> + vcon->watch = qemu_chr_fe_add_watch(&vcon->chr,
> + G_IO_OUT | G_IO_HUP,
> + chr_write_unblocked, vcon);
> + }
> +
> + return 0;
> +}
> +
> static void virtconsole_realize(DeviceState *dev, Error **errp)
> {
> VirtIOSerialPort *port = VIRTIO_SERIAL_PORT(dev);
> VirtConsole *vcon = VIRTIO_CONSOLE(dev);
> VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_GET_CLASS(dev);
> - Chardev *chr = qemu_chr_fe_get_driver(&vcon->chr);
>
> if (port->id == 0 && !k->is_console) {
> error_setg(errp, "Port number 0 on virtio-serial devices reserved "
> @@ -176,7 +199,7 @@ static void virtconsole_realize(DeviceState *dev, Error
> **errp)
> return;
> }
>
> - if (chr) {
> + if (qemu_chr_fe_backend_connected(&vcon->chr)) {
> /*
> * For consoles we don't block guest data transfer just
> * because nothing is connected - we'll just let it go
> @@ -188,11 +211,13 @@ static void virtconsole_realize(DeviceState *dev, Error
> **errp)
> */
> if (k->is_console) {
> qemu_chr_fe_set_handlers(&vcon->chr, chr_can_read, chr_read,
> - NULL, NULL, vcon, NULL, true);
> + NULL, chr_be_change,
> + vcon, NULL, true);
> virtio_serial_open(port);
> } else {
> qemu_chr_fe_set_handlers(&vcon->chr, chr_can_read, chr_read,
> - chr_event, NULL, vcon, NULL, false);
> + chr_event, chr_be_change,
> + vcon, NULL, false);
> }
> }
> }
> --
> 2.7.4
>
>
next prev parent reply other threads:[~2017-06-29 10:02 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-26 16:45 [Qemu-devel] [PATCH v4 00/13] chardevice hotswap Anton Nefedov
2017-06-26 16:45 ` [Qemu-devel] [PATCH v4 01/13] char: move QemuOpts->ChardevBackend translation to a separate func Anton Nefedov
2017-06-26 16:45 ` [Qemu-devel] [PATCH v4 02/13] char: add backend hotswap handler Anton Nefedov
2017-06-26 16:45 ` [Qemu-devel] [PATCH v4 03/13] char: chardevice hotswap Anton Nefedov
2017-06-26 16:45 ` [Qemu-devel] [PATCH v4 04/13] char: forbid direct chardevice access for hotswap devices Anton Nefedov
2017-06-26 16:45 ` [Qemu-devel] [PATCH v4 05/13] char: avoid chardevice direct access Anton Nefedov
2017-06-26 16:45 ` [Qemu-devel] [PATCH v4 06/13] test-char: unref chardev-udp after test Anton Nefedov
2017-06-26 16:45 ` [Qemu-devel] [PATCH v4 07/13] test-char: split char_udp_test Anton Nefedov
2017-06-26 16:45 ` [Qemu-devel] [PATCH v4 08/13] test-char: split char_file_test Anton Nefedov
2017-06-26 16:45 ` [Qemu-devel] [PATCH v4 09/13] test-char: add hotswap test Anton Nefedov
2017-06-26 16:45 ` [Qemu-devel] [PATCH v4 10/13] hmp: add hmp analogue for qmp-chardev-change Anton Nefedov
2017-06-30 10:48 ` Dr. David Alan Gilbert
2017-06-26 16:45 ` [Qemu-devel] [PATCH v4 11/13] virtio-console: chardev hotswap support Anton Nefedov
2017-06-29 10:02 ` Marc-André Lureau [this message]
2017-07-03 11:50 ` Anton Nefedov
2017-07-04 6:25 ` Amit Shah
2017-06-26 16:45 ` [Qemu-devel] [PATCH v4 12/13] serial: move TIOCM update to a separate function Anton Nefedov
2017-06-26 16:45 ` [Qemu-devel] [PATCH v4 13/13] serial: chardev hotswap support Anton Nefedov
2017-07-03 11:52 ` Anton Nefedov
2017-06-29 10:04 ` [Qemu-devel] [PATCH v4 00/13] chardevice hotswap Marc-André Lureau
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=416200823.44425042.1498730528050.JavaMail.zimbra@redhat.com \
--to=marcandre.lureau@redhat.com \
--cc=amit@kernel.org \
--cc=anton.nefedov@virtuozzo.com \
--cc=den@virtuozzo.com \
--cc=pbonzini@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.