qemu-devel
[Top][All Lists]
Advanced

[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: Anthony Liguori
Subject: Re: [Qemu-devel] [PATCH 10/19] char: add gio watch fn for tcp backends
Date: Tue, 19 Feb 2013 07:55:36 -0600
User-agent: Notmuch/0.13.2+93~ged93d79 (http://notmuchmail.org) Emacs/23.3.1 (x86_64-pc-linux-gnu)

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 :-)

Regards,

Anthony Liguori

>
>               Amit




reply via email to

[Prev in Thread] Current Thread [Next in Thread]