[libvirt] [PATCH]: Fix non-live migration failure

2009-02-27 Thread Chris Lalancette
There is a logic error in the Qemu driver when doing a non-live migrate. During a non-live migrate, on the source host during the Perform step, we pause the domain; however, if there was ever a failure, we were forgetting to unpause the domain, meaning that the domain was paused forever. Add a

Re: [libvirt] [PATCH]: Fix non-live migration failure

2009-02-27 Thread Daniel Veillard
On Fri, Feb 27, 2009 at 01:12:40PM +0100, Chris Lalancette wrote: There is a logic error in the Qemu driver when doing a non-live migrate. During a non-live migrate, on the source host during the Perform step, we pause the domain; however, if there was ever a failure, we were forgetting to

Re: [libvirt] [PATCH]: Fix non-live migration failure

2009-02-27 Thread Chris Lalancette
Daniel Veillard wrote: On Fri, Feb 27, 2009 at 01:12:40PM +0100, Chris Lalancette wrote: There is a logic error in the Qemu driver when doing a non-live migrate. During a non-live migrate, on the source host during the Perform step, we pause the domain; however, if there was ever a failure, we

Re: [libvirt] [PATCH]: Fix non-live migration failure case

2009-02-26 Thread Daniel Veillard
On Wed, Feb 25, 2009 at 02:30:35PM +0100, Chris Lalancette wrote: All, There was a logic error in the Qemu driver when doing a non-live migrate. During a non-live migrate, on the source host during the Perform step, we pause the domain; however, if there was ever a failure, we were forgetting

Re: [libvirt] [PATCH]: Fix non-live migration failure case

2009-02-26 Thread Chris Lalancette
Daniel Veillard wrote: On Wed, Feb 25, 2009 at 02:30:35PM +0100, Chris Lalancette wrote: All, There was a logic error in the Qemu driver when doing a non-live migrate. During a non-live migrate, on the source host during the Perform step, we pause the domain; however, if there was ever a

[libvirt] [PATCH]: Fix non-live migration failure case

2009-02-25 Thread Chris Lalancette
All, There was a logic error in the Qemu driver when doing a non-live migrate. During a non-live migrate, on the source host during the Perform step, we pause the domain; however, if there was ever a failure, we were forgetting to unpause the domain, meaning that the domain was paused forever.