Re: [Spice-devel] VM pools and libgovirt

2013-11-29 Thread i iordanov
Hi Christophe, Good news! I have added the functionality we discussed to libgovirt 0.30 and it works. The only thing I don't have is ovirt_vmpool_invoke_action_async() and related functions. I use the synchronous call. Can you please tell me: 0) Do you require the asynchronous functions before I

Re: [Spice-devel] [[linux vdagent PATCH]] clipboard target_to_type: fix inner loop variable name

2013-11-29 Thread Christophe Fergeau
ACK On Fri, Nov 29, 2013 at 04:18:08PM +0200, Uri Lublin wrote: > --- > src/vdagent-x11.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/src/vdagent-x11.c b/src/vdagent-x11.c > index 5ce6000..c5d54ac 100644 > --- a/src/vdagent-x11.c > +++ b/src/vdagent-x11.c > @@

[Spice-devel] [[linux vdagent PATCH]] clipboard target_to_type: fix inner loop variable name

2013-11-29 Thread Uri Lublin
--- src/vdagent-x11.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/vdagent-x11.c b/src/vdagent-x11.c index 5ce6000..c5d54ac 100644 --- a/src/vdagent-x11.c +++ b/src/vdagent-x11.c @@ -753,7 +753,7 @@ static uint32_t vdagent_x11_target_to_type(struct vdagent_x11 *x1

Re: [Spice-devel] [PATCH 19/21] sysemu: add vm_start_hold/release

2013-11-29 Thread Paolo Bonzini
Il 18/11/2013 13:25, Marc-André Lureau ha scritto: > +static int start_hold; > + > +void vm_start_hold(void) > +{ > +start_hold++; > +} > + > +void vm_start_release(void) > +{ > +start_hold--; > +vm_start(); > +} > + > void vm_start(void) > { > +if (start_hold != 0) { > +r