* [Qemu-devel] [PULL for-2.0 0/1] char: restore read callback on a reattached (hotplug) chardev
@ 2014-03-13 10:31 Gerd Hoffmann
2014-03-13 10:31 ` [Qemu-devel] [PULL 1/1] " Gerd Hoffmann
2014-03-13 18:39 ` [Qemu-devel] [PULL for-2.0 0/1] " Peter Maydell
0 siblings, 2 replies; 4+ messages in thread
From: Gerd Hoffmann @ 2014-03-13 10:31 UTC (permalink / raw)
To: qemu-devel; +Cc: Gerd Hoffmann
Hi,
Bugfix for chardev hotplug.
please pull,
Gerd
The following changes since commit 239618707637ec87eba8c452d2b2f75dc5ca20c7:
Merge remote-tracking branch 'remotes/kvm/uq/master' into staging (2014-03-11 19:39:17 +0000)
are available in the git repository at:
git://git.kraxel.org/qemu tags/pull-chardev-1
for you to fetch changes up to ac1b84dd1e020648db82a99260891aa982d1142c:
char: restore read callback on a reattached (hotplug) chardev (2014-03-13 10:33:45 +0100)
----------------------------------------------------------------
char: restore read callback on a reattached (hotplug) chardev
----------------------------------------------------------------
Gal Hammer (1):
char: restore read callback on a reattached (hotplug) chardev
qemu-char.c | 17 +++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Qemu-devel] [PULL 1/1] char: restore read callback on a reattached (hotplug) chardev
2014-03-13 10:31 [Qemu-devel] [PULL for-2.0 0/1] char: restore read callback on a reattached (hotplug) chardev Gerd Hoffmann
@ 2014-03-13 10:31 ` Gerd Hoffmann
2014-03-13 10:41 ` Paolo Bonzini
2014-03-13 18:39 ` [Qemu-devel] [PULL for-2.0 0/1] " Peter Maydell
1 sibling, 1 reply; 4+ messages in thread
From: Gerd Hoffmann @ 2014-03-13 10:31 UTC (permalink / raw)
To: qemu-devel; +Cc: Gal Hammer, Gerd Hoffmann, Anthony Liguori
From: Gal Hammer <ghammer@redhat.com>
Fix a bug that was introduced in commit 386a5a1e. A removal of a device
set the chr handlers to NULL. However when the device is plugged back,
its read callback is not restored so data can't be transferred from the
host to the guest (e.g. via the virtio-serial port).
https://bugzilla.redhat.com/show_bug.cgi?id=1027181
Signed-off-by: Gal Hammer <ghammer@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
qemu-char.c | 17 +++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index 4d50838..54ed244 100644
--- a/qemu-char.c
+++ b/qemu-char.c
@@ -213,7 +213,7 @@ void qemu_chr_add_handlers(CharDriverState *s,
s->chr_read = fd_read;
s->chr_event = fd_event;
s->handler_opaque = opaque;
- if (s->chr_update_read_handler)
+ if (fe_open && s->chr_update_read_handler)
s->chr_update_read_handler(s);
if (!s->explicit_fe_open) {
@@ -1136,13 +1136,14 @@ static void pty_chr_state(CharDriverState *chr, int connected)
if (!s->connected) {
s->connected = 1;
qemu_chr_be_generic_open(chr);
+ }
+ if (!chr->fd_in_tag) {
chr->fd_in_tag = io_add_watch_poll(s->fd, pty_chr_read_poll,
pty_chr_read, chr);
}
}
}
-
static void pty_chr_close(struct CharDriverState *chr)
{
PtyCharDriver *s = chr->opaque;
@@ -2509,6 +2510,17 @@ static void tcp_chr_connect(void *opaque)
qemu_chr_be_generic_open(chr);
}
+static void tcp_chr_update_read_handler(CharDriverState *chr)
+{
+ TCPCharDriver *s = chr->opaque;
+
+ remove_fd_in_watch(chr);
+ if (s->chan) {
+ chr->fd_in_tag = io_add_watch_poll(s->chan, tcp_chr_read_poll,
+ tcp_chr_read, chr);
+ }
+}
+
#define IACSET(x,a,b,c) x[0] = a; x[1] = b; x[2] = c;
static void tcp_chr_telnet_init(int fd)
{
@@ -2664,6 +2676,7 @@ static CharDriverState *qemu_chr_open_socket_fd(int fd, bool do_nodelay,
chr->get_msgfd = tcp_get_msgfd;
chr->chr_add_client = tcp_chr_add_client;
chr->chr_add_watch = tcp_chr_add_watch;
+ chr->chr_update_read_handler = tcp_chr_update_read_handler;
/* be isn't opened until we get a connection */
chr->explicit_be_open = true;
--
1.8.3.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PULL 1/1] char: restore read callback on a reattached (hotplug) chardev
2014-03-13 10:31 ` [Qemu-devel] [PULL 1/1] " Gerd Hoffmann
@ 2014-03-13 10:41 ` Paolo Bonzini
0 siblings, 0 replies; 4+ messages in thread
From: Paolo Bonzini @ 2014-03-13 10:41 UTC (permalink / raw)
To: Gerd Hoffmann, qemu-devel; +Cc: Gal Hammer, qemu-stable, Anthony Liguori
Il 13/03/2014 11:31, Gerd Hoffmann ha scritto:
> From: Gal Hammer <ghammer@redhat.com>
>
> Fix a bug that was introduced in commit 386a5a1e. A removal of a device
> set the chr handlers to NULL. However when the device is plugged back,
> its read callback is not restored so data can't be transferred from the
> host to the guest (e.g. via the virtio-serial port).
>
> https://bugzilla.redhat.com/show_bug.cgi?id=1027181
>
> Signed-off-by: Gal Hammer <ghammer@redhat.com>
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Adding qemu-stable.
> ---
> qemu-char.c | 17 +++++++++++++++--
> 1 file changed, 15 insertions(+), 2 deletions(-)
>
> diff --git a/qemu-char.c b/qemu-char.c
> index 4d50838..54ed244 100644
> --- a/qemu-char.c
> +++ b/qemu-char.c
> @@ -213,7 +213,7 @@ void qemu_chr_add_handlers(CharDriverState *s,
> s->chr_read = fd_read;
> s->chr_event = fd_event;
> s->handler_opaque = opaque;
> - if (s->chr_update_read_handler)
> + if (fe_open && s->chr_update_read_handler)
> s->chr_update_read_handler(s);
>
> if (!s->explicit_fe_open) {
> @@ -1136,13 +1136,14 @@ static void pty_chr_state(CharDriverState *chr, int connected)
> if (!s->connected) {
> s->connected = 1;
> qemu_chr_be_generic_open(chr);
> + }
> + if (!chr->fd_in_tag) {
> chr->fd_in_tag = io_add_watch_poll(s->fd, pty_chr_read_poll,
> pty_chr_read, chr);
> }
> }
> }
>
> -
> static void pty_chr_close(struct CharDriverState *chr)
> {
> PtyCharDriver *s = chr->opaque;
> @@ -2509,6 +2510,17 @@ static void tcp_chr_connect(void *opaque)
> qemu_chr_be_generic_open(chr);
> }
>
> +static void tcp_chr_update_read_handler(CharDriverState *chr)
> +{
> + TCPCharDriver *s = chr->opaque;
> +
> + remove_fd_in_watch(chr);
> + if (s->chan) {
> + chr->fd_in_tag = io_add_watch_poll(s->chan, tcp_chr_read_poll,
> + tcp_chr_read, chr);
> + }
> +}
> +
> #define IACSET(x,a,b,c) x[0] = a; x[1] = b; x[2] = c;
> static void tcp_chr_telnet_init(int fd)
> {
> @@ -2664,6 +2676,7 @@ static CharDriverState *qemu_chr_open_socket_fd(int fd, bool do_nodelay,
> chr->get_msgfd = tcp_get_msgfd;
> chr->chr_add_client = tcp_chr_add_client;
> chr->chr_add_watch = tcp_chr_add_watch;
> + chr->chr_update_read_handler = tcp_chr_update_read_handler;
> /* be isn't opened until we get a connection */
> chr->explicit_be_open = true;
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PULL for-2.0 0/1] char: restore read callback on a reattached (hotplug) chardev
2014-03-13 10:31 [Qemu-devel] [PULL for-2.0 0/1] char: restore read callback on a reattached (hotplug) chardev Gerd Hoffmann
2014-03-13 10:31 ` [Qemu-devel] [PULL 1/1] " Gerd Hoffmann
@ 2014-03-13 18:39 ` Peter Maydell
1 sibling, 0 replies; 4+ messages in thread
From: Peter Maydell @ 2014-03-13 18:39 UTC (permalink / raw)
To: Gerd Hoffmann; +Cc: QEMU Developers
On 13 March 2014 10:31, Gerd Hoffmann <kraxel@redhat.com> wrote:
> Hi,
>
> Bugfix for chardev hotplug.
>
> please pull,
> Gerd
>
> The following changes since commit 239618707637ec87eba8c452d2b2f75dc5ca20c7:
>
> Merge remote-tracking branch 'remotes/kvm/uq/master' into staging (2014-03-11 19:39:17 +0000)
>
> are available in the git repository at:
>
>
> git://git.kraxel.org/qemu tags/pull-chardev-1
>
> for you to fetch changes up to ac1b84dd1e020648db82a99260891aa982d1142c:
>
> char: restore read callback on a reattached (hotplug) chardev (2014-03-13 10:33:45 +0100)
>
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-03-13 18:39 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-13 10:31 [Qemu-devel] [PULL for-2.0 0/1] char: restore read callback on a reattached (hotplug) chardev Gerd Hoffmann
2014-03-13 10:31 ` [Qemu-devel] [PULL 1/1] " Gerd Hoffmann
2014-03-13 10:41 ` Paolo Bonzini
2014-03-13 18:39 ` [Qemu-devel] [PULL for-2.0 0/1] " Peter Maydell
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).