mirror of https://gitee.com/openkylin/libvirt.git
* src/xs_internal.c: fix xen events handling problem (Dan Berrange)
Daniel
This commit is contained in:
parent
27a63a76af
commit
bdd6894713
|
@ -1,6 +1,10 @@
|
|||
Wed Mar 11 14:42:24 CET 2009 Daniel Veillard <veilard@redhat.com>
|
||||
|
||||
* src/xs_internal.c: fix xen events handling problem (Dan Berrange)
|
||||
|
||||
Tue Mar 10 12:03:37 CET 2009 Daniel Veillard <veilard@redhat.com>
|
||||
|
||||
* src/xend_internal.c: fix an allocation problem in
|
||||
* src/xend_internal.c: fix an allocation problem in
|
||||
xenDaemonDomainLookupByName_ids
|
||||
|
||||
Tue Mar 10 10:29:46 GMT 2009 Daniel P. Berrange <berrange@redhat.com>
|
||||
|
|
|
@ -1215,7 +1215,7 @@ xenStoreFindWatch(xenStoreWatchListPtr list,
|
|||
static void
|
||||
xenStoreWatchEvent(int watch ATTRIBUTE_UNUSED,
|
||||
int fd ATTRIBUTE_UNUSED,
|
||||
int events ATTRIBUTE_UNUSED,
|
||||
int events,
|
||||
void *data)
|
||||
{
|
||||
char **event;
|
||||
|
@ -1226,8 +1226,12 @@ xenStoreWatchEvent(int watch ATTRIBUTE_UNUSED,
|
|||
|
||||
virConnectPtr conn = data;
|
||||
xenUnifiedPrivatePtr priv = (xenUnifiedPrivatePtr) conn->privateData;
|
||||
|
||||
if(!priv) return;
|
||||
|
||||
/* only set a watch on read and write events */
|
||||
if (events & (VIR_EVENT_HANDLE_ERROR | VIR_EVENT_HANDLE_HANGUP)) return;
|
||||
|
||||
xenUnifiedLock(priv);
|
||||
|
||||
if(!priv->xshandle)
|
||||
|
|
Loading…
Reference in New Issue