From: Hans de Goede <hdegoede@redhat.com>
To: Anthony Liguori <anthony@codemonkey.ws>
Cc: Gerd Hoffmann <kraxel@redhat.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 1/3] spice-qemu-char: Generate chardev open/close events
Date: Sun, 07 Aug 2011 19:39:08 +0200 [thread overview]
Message-ID: <4E3ECDBC.5090106@redhat.com> (raw)
In-Reply-To: <4E3EB4B4.403@codemonkey.ws>
Hi,
On 08/07/2011 05:52 PM, Anthony Liguori wrote:
> On 08/07/2011 08:21 AM, Hans de Goede wrote:
>> Define a state callback and make that generate chardev open/close events when
>> called by the spice-server.
>>
>> Note that for all but the newest spice-server versions (which have a fix for
>> this) the code ignores these events for a spicevmc with a subtype of vdagent,
>> this subtype specific knowledge is undesirable, but unavoidable for now, see:
>> http://lists.freedesktop.org/archives/spice-devel/2011-July/004837.html
>>
>> Signed-off-by: Hans de Goede<hdegoede@redhat.com>
>> ---
>> spice-qemu-char.c | 46 +++++++++++++++++++++++++++++++++++++++++++++-
>> 1 files changed, 45 insertions(+), 1 deletions(-)
>>
>> diff --git a/spice-qemu-char.c b/spice-qemu-char.c
>> index 95bf6b6..0a5059d 100644
>> --- a/spice-qemu-char.c
>> +++ b/spice-qemu-char.c
>> @@ -69,11 +69,50 @@ static int vmc_read(SpiceCharDeviceInstance *sin, uint8_t *buf, int len)
>> return bytes;
>> }
>>
>> +static void vmc_state(SpiceCharDeviceInstance *sin, int connected)
>> +{
>> + SpiceCharDriver *scd = container_of(sin, SpiceCharDriver, sin);
>> + int event;
>> +
>> +#if SPICE_SERVER_VERSION< 0x000901
>> + /*
>> + * spice-server calls the state callback for the agent channel when the
>> + * spice client connects / disconnects. Given that not the client but
>> + * the server is doing the parsing of the messages this is wrong as the
>> + * server is still listening. Worse, this causes the parser in the server
>> + * to go out of sync, so we ignore state calls for subtype vdagent
>> + * spicevmc chardevs. For the full story see:
>> + * http://lists.freedesktop.org/archives/spice-devel/2011-July/004837.html
>> + */
>> + if (strcmp(sin->subtype, "vdagent") == 0) {
>> + return;
>> + }
>> +#endif
>> +
>> + if ((scd->chr->opened&& connected) ||
>> + (!scd->chr->opened&& !connected)) {
>> + return;
>> + }
>> +
>> + if (connected) {
>> + scd->chr->opened = 1;
>> + event = CHR_EVENT_OPENED;
>> + } else {
>> + scd->chr->opened = 0;
>> + event = CHR_EVENT_CLOSED;
>> + }
>> +
>> + if (scd->chr->chr_event) {
>> + scd->chr->chr_event(scd->chr->handler_opaque, event);
>> + }
>
> You should use qemu_chr_event and then this whole block of code disappears since it already manages the opened flag.
Right, good one,
Regards,
Hans
prev parent reply other threads:[~2011-08-07 17:37 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-07 13:21 [Qemu-devel] [PATCH 1/3] spice-qemu-char: Generate chardev open/close events Hans de Goede
2011-08-07 13:21 ` [Qemu-devel] [PATCH 2/3] usb-redir: Call qemu_chr_guest_open/close Hans de Goede
2011-08-07 15:52 ` Anthony Liguori
2011-08-07 17:41 ` Hans de Goede
2011-08-07 21:30 ` Anthony Liguori
2011-08-08 8:01 ` Hans de Goede
2011-08-08 12:52 ` Anthony Liguori
2011-08-08 13:03 ` Hans de Goede
2011-08-08 13:08 ` Anthony Liguori
2011-08-07 13:21 ` [Qemu-devel] [PATCH 3/3] usb-redir: Device disconnect + re-connect robustness fixes Hans de Goede
2011-08-07 15:52 ` [Qemu-devel] [PATCH 1/3] spice-qemu-char: Generate chardev open/close events Anthony Liguori
2011-08-07 17:39 ` Hans de Goede [this message]
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=4E3ECDBC.5090106@redhat.com \
--to=hdegoede@redhat.com \
--cc=anthony@codemonkey.ws \
--cc=kraxel@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.