[libvirt] qemu aio option

2010-03-14 Thread Ruben Kerkhof
Hi all, Qemu has the command line parameter aio=(native|threads). I don't see a way to pass this option from libvirt. Would it be possible to add support for this option? Ruben -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] [libvirt-users] Regarding SPICE

2010-03-14 Thread Dan Kenigsberg
On Thu, Mar 04, 2010 at 04:21:39PM +0530, anuj rampal wrote: Hi, Thanks a lot for the reply. Is it going to be there in the future? When spice is ready upstream, I have no doubt that libvirt will support it. And i wanted to confirm one more thing... KVM on RHEL 5.4 supports SPICE

[libvirt] emulation failed (pagetable) rip

2010-03-14 Thread Adam Mooz
Good morning list, I run a few VM's using libvirt on a C2Q 6600, have been steadily and happily since November, most of the VM's have been happily chugging away since then as well. I woke on Thursday to find one of the VM's had crashed, couldn't login and wasn't responding to the virsh

Re: [libvirt] [PATCH 1/2] Addition of XenAPI support to libvirt

2010-03-14 Thread Matthias Bolte
2010/3/9 Sharadha Prabhakar (3P) sharadha.prabha...@citrix.com: Patch 1 is sent as attachment. It contains changes suggested in this mail. Some comments inline. Sharadha Okay, I applied and pushed the patches. Thanks! I tried to setup a Citric XenServer in order to test the driver, but I

[libvirt] [PATCH] xenapi: Request a username if there is non in the URI

2010-03-14 Thread Matthias Bolte
Use virRequestUsername and virRequestPassword. --- src/xenapi/xenapi_driver.c | 119 +++- 1 files changed, 84 insertions(+), 35 deletions(-) diff --git a/src/xenapi/xenapi_driver.c b/src/xenapi/xenapi_driver.c index 8d5c8bb..00b62b3 100644 ---

[libvirt] [PATCH] esx: Move username and password helper functions to util.c

2010-03-14 Thread Matthias Bolte
--- src/esx/esx_driver.c |8 ++-- src/esx/esx_util.c | 83 -- src/esx/esx_util.h |7 src/util/util.c | 89 ++ src/util/util.h |5 +++ 5 files changed, 98 insertions(+),

[libvirt] [PATCH] xenapi: Check for valid private data in xenapiSessionErrorHandle

2010-03-14 Thread Matthias Bolte
--- src/xenapi/xenapi_utils.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/xenapi/xenapi_utils.c b/src/xenapi/xenapi_utils.c index 4b9a6d8..bfd53ed 100644 --- a/src/xenapi/xenapi_utils.c +++ b/src/xenapi/xenapi_utils.c @@ -374,12 +374,12 @@

[libvirt] [PATCH] xenapi: Check for NULL before accessing the scheme

2010-03-14 Thread Matthias Bolte
--- src/xenapi/xenapi_driver.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/xenapi/xenapi_driver.c b/src/xenapi/xenapi_driver.c index 00b62b3..9a38e3f 100644 --- a/src/xenapi/xenapi_driver.c +++ b/src/xenapi/xenapi_driver.c @@ -87,7 +87,8 @@ xenapiOpen

[libvirt] [PATCH] xenapi: Don't leak url and caps in case of error

2010-03-14 Thread Matthias Bolte
--- src/xenapi/xenapi_driver.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/xenapi/xenapi_driver.c b/src/xenapi/xenapi_driver.c index 9a38e3f..7d0b748 100644 --- a/src/xenapi/xenapi_driver.c +++ b/src/xenapi/xenapi_driver.c @@ -172,9 +172,12 @@ xenapiOpen

[libvirt] [PATCH] phyp: Use virRequestUsername and virRequestPassword

2010-03-14 Thread Matthias Bolte
--- src/phyp/phyp_driver.c | 73 --- src/phyp/phyp_driver.h |1 - 2 files changed, 31 insertions(+), 43 deletions(-) diff --git a/src/phyp/phyp_driver.c b/src/phyp/phyp_driver.c index 32c0a7a..9598162 100644 --- a/src/phyp/phyp_driver.c +++