]> xenbits.xensource.com Git - libvirt.git/commitdiff
remote: Don't lose track of events when callbacks are slow
authorCole Robinson <crobinso@redhat.com>
Wed, 5 Jan 2011 21:35:07 +0000 (16:35 -0500)
committerCole Robinson <crobinso@redhat.com>
Mon, 10 Jan 2011 19:44:03 +0000 (14:44 -0500)
After the remote driver runs an event callback, it unconditionally disables the
loop timer, thinking it just flushed every queued event. This doesn't work
correctly though if an event is queued while a callback is running.

The events actually aren't being lost, it's just that the event loop didn't
think there was anything that needed to be dispatched. So all those 'lost
events' should actually get re-triggered if you manually kick the loop by
generating a new event (like creating a new guest).

The solution is to disable the dispatch timer _before_ we invoke any event
callbacks. Events queued while a callback is running will properly reenable the
timer.

More info at https://bugzilla.redhat.com/show_bug.cgi?id=624252

src/remote/remote_driver.c

index ee2de4a31441d9447762180ef413a5d98f7a747b..ea119c67af9cae38ba4a211307ba8297b38a30b0 100644 (file)
@@ -10557,9 +10557,9 @@ remoteDomainEventQueueFlush(int timer ATTRIBUTE_UNUSED, void *opaque)
     priv->domainEvents->count = 0;
     priv->domainEvents->events = NULL;
 
+    virEventUpdateTimeout(priv->eventFlushTimer, -1);
     virDomainEventQueueDispatch(&tempQueue, priv->callbackList,
                                 remoteDomainEventDispatchFunc, priv);
-    virEventUpdateTimeout(priv->eventFlushTimer, -1);
 
     /* Purge any deleted callbacks */
     virDomainEventCallbackListPurgeMarked(priv->callbackList);