• A
    events: Return the correct number of registered events · c972237e
    Adam Litke 提交于
    Commit d09f6ba5 introduced a regression in event
    registration.  virDomainEventCallbackListAddID() will only return a positive
    integer if the type of event being registered is VIR_DOMAIN_EVENT_ID_LIFECYCLE.
    For other event types, 0 is always returned on success.  This has the
    unfortunate side effect of not enabling remote event callbacks because
    remoteDomainEventRegisterAny() uses the return value from the local call to
    determine if an event callback needs to be registered on the remote end.
    
    Make sure virDomainEventCallbackListAddID() returns the callback count for the
    eventID being registered.
    Signed-off-by: NAdam Litke <agl@us.ibm.com>
    c972237e
domain_event.c 47.5 KB