[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 10/19] char: add gio watch fn for tcp backends
From: |
Amit Shah |
Subject: |
Re: [Qemu-devel] [PATCH 10/19] char: add gio watch fn for tcp backends |
Date: |
Tue, 19 Feb 2013 19:42:44 +0530 |
On (Tue) 19 Feb 2013 [07:55:36], Anthony Liguori wrote:
> Amit Shah <address@hidden> writes:
>
> > On (Mon) 18 Feb 2013 [15:48:07], Anthony Liguori wrote:
> >> From: Amit Shah <address@hidden>
> >>
> >> Signed-off-by: Amit Shah <address@hidden>
> >> ---
> >> qemu-char.c | 7 +++++++
> >> 1 file changed, 7 insertions(+)
> >>
> >> diff --git a/qemu-char.c b/qemu-char.c
> >> index e59e580..160bcea 100644
> >> --- a/qemu-char.c
> >> +++ b/qemu-char.c
> >> @@ -2462,6 +2462,12 @@ static ssize_t tcp_chr_recv(CharDriverState *chr,
> >> char *buf, size_t len)
> >> }
> >> #endif
> >>
> >> +static GSource *tcp_chr_add_watch(CharDriverState *chr, GIOCondition cond)
> >> +{
> >> + TCPCharDriver *s = chr->opaque;
> >> + return g_io_create_watch(s->chan, cond);
> >
> > Thanks for noticing and fixing this up!
>
> It an amazing amount of luck that the previous code worked but the
> struct layouts just happened to match :-)
Heh, yeah. Had it not been for that luck, I'd have noticed it
easily :-)
Amit
- [Qemu-devel] [PATCH 00/19] chardev flow control, Anthony Liguori, 2013/02/19
- [Qemu-devel] [PATCH 07/19] qemu-char: tcp: make use GIOChannel, Anthony Liguori, 2013/02/18
- [Qemu-devel] [PATCH 08/19] qemu-char: add watch support, Anthony Liguori, 2013/02/18
- [Qemu-devel] [PATCH 06/19] qemu-char: convert UDP to GIOChannel, Anthony Liguori, 2013/02/18
- [Qemu-devel] [PATCH 09/19] qemu-char: add pty watch, Anthony Liguori, 2013/02/18
- [Qemu-devel] [PATCH 10/19] char: add gio watch fn for tcp backends, Anthony Liguori, 2013/02/18
- [Qemu-devel] [PATCH 11/19] qemu-char: use a glib timeout instead of qemu-timer, Anthony Liguori, 2013/02/18
- [Qemu-devel] [PATCH 12/19] qemu-char: remove use of QEMUTimer in favor of glib idle function, Anthony Liguori, 2013/02/18
- [Qemu-devel] [PATCH 13/19] qemu-char: make char drivers dynamically registerable, Anthony Liguori, 2013/02/18
- [Qemu-devel] [PATCH 14/19] qemu-char: move spice registration to spice-qemu-char.c, Anthony Liguori, 2013/02/18
- [Qemu-devel] [PATCH 19/19] virtio: console: add flow control, Anthony Liguori, 2013/02/18
- [Qemu-devel] [PATCH 18/19] serial: add flow control to transmit, Anthony Liguori, 2013/02/18
- [Qemu-devel] [PATCH 15/19] qemu-char: move baum registration to baum.c, Anthony Liguori, 2013/02/18
- [Qemu-devel] [PATCH 16/19] qemu-char: move msmouse registeration to msmouse.c, Anthony Liguori, 2013/02/18
- [Qemu-devel] [PATCH 17/19] qemu-char: move text console init to console.c, Anthony Liguori, 2013/02/18
- [Qemu-devel] [PATCH 02/19] qemu-char: remove dead/confusing logic with nb_stdio_clients, Anthony Liguori, 2013/02/18