[libvirt] [PATCH] libxl: Use cooperative resume for migration

2014-06-20 Thread Jason Andryuk
Migration code specifies the problematic non-cooperative resume mode which is a known issue with Xen's libxl [1]. Instead, use the better supported cooperative mode. Without this, guests BUG() in xen_irq_resume after failing to bind still-bound event channels. [1]

Re: [libvirt] [PATCH python] Correct virDomainMigrateToURI3 definition

2014-06-18 Thread Jason Andryuk
Ping? (Adding Daniel Veillard, listed as owner for libvirt-python.git, as this was previously just sent to the list.) On 6/5/2014 11:43 AM, Jason Andryuk wrote: dconnuri is a string, so update the definition to match. Without this, the generated python would fail when passed a string

[libvirt] [PATCH python] Correct virDomainMigrateToURI3 definition

2014-06-05 Thread Jason Andryuk
dconnuri is a string, so update the definition to match. Without this, the generated python would fail when passed a string. --- libvirt-override-api.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvirt-override-api.xml b/libvirt-override-api.xml index d5b25b5..935e04d

[libvirt] [PATCH] libxl: Fix Xen 4.4 libxlVmStart logic

2013-11-12 Thread Jason Andryuk
ifdef LIBXL_HAVE_DOMAIN_CREATE_RESTORE_PARAMS hides a multi-line body for a brace-less else. Add braces to ensure proper logic is applied. Without this fix, new domains cannot be started. Both libxl_domain_create_new and libxl_domain_create_restore are called when starting a new domain leading