[libvirt] [PATCH] docs: fix simple typo in TPM paragraph

2014-11-28 Thread Martin Kletzander
Signed-off-by: Martin Kletzander mklet...@redhat.com --- Pushed under the 'super-trivial' rule. docs/formatdomain.html.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/formatdomain.html.in b/docs/formatdomain.html.in index 9c1d0f4..46b5b19 100644 ---

[libvirt] [PATCH] Fix usage of virReportSystemError

2014-11-28 Thread Jiri Denemark
virReportSystemError is reserved for reporting system errors, calling it with VIR_ERR_* error codes produces error messages that do not make any sense, such as internal error: guest failed to start: Kernel doesn't support user namespace: Link has been severed We should prohibit wrong

[libvirt] [libvirt-python PATCH] fix examples

2014-11-28 Thread Pavel Hrdina
The dhcpleases example had an old usage of print function. The formating of leases record was also wrong. The event-test example had an old usage of exceptions. Signed-off-by: Pavel Hrdina phrd...@redhat.com --- examples/dhcpleases.py | 30 -- examples/event-test.py

Re: [libvirt] [PATCH] Fix usage of virReportSystemError

2014-11-28 Thread Martin Kletzander
On Fri, Nov 28, 2014 at 09:42:45AM +0100, Jiri Denemark wrote: virReportSystemError is reserved for reporting system errors, calling it with VIR_ERR_* error codes produces error messages that do not make any sense, such as internal error: guest failed to start: Kernel doesn't support user

Re: [libvirt] [PATCH v3 04/12] parallels: handle events from parallels server

2014-11-28 Thread Maxim Nestratov
27.11.2014 17:51, Dmitry Guryanov пишет: On Tuesday 25 November 2014 15:31:19 Maxim Nestratov wrote: 18.11.2014 16:16, Dmitry Guryanov пишет: From: Alexander Burluka aburl...@parallels.com Subscribe to events from parallels server. It's needed for 2 things: to update cached domains list and

[libvirt] [PATCH v2] automatic create tap device with network type ethernet

2014-11-28 Thread Vasiliy Tolstov
If user not specify script in network type ethernet, assume that user needs simple tap device created with libvirt. This patch does not need to run external script to create tap device or add root to qemu process. Signed-off-by: Vasiliy Tolstov v.tols...@selfip.ru --- src/qemu/qemu_command.c |

Re: [libvirt] [PATCH v2] automatic create tap device with network type ethernet

2014-11-28 Thread Vasiliy Tolstov
2014-11-28 16:40 GMT+03:00 Vasiliy Tolstov v.tols...@selfip.ru: If user not specify script in network type ethernet, assume that user needs simple tap device created with libvirt. This patch does not need to run external script to create tap device or add root to qemu process. Patch v2 does

[libvirt] [PATCH] docs: Create html documentation even if XHTML1 DTD is not available to validate

2014-11-28 Thread Ian Campbell
On a Debian system lacking the w3c-dtd-xhtml package the build fails with: $ make -C docs/ formatcaps.html make: Entering directory '/local/scratch/ianc/devel/libvirt.git/docs' Generating formatcaps.html.tmp I/O error : Attempt to load network entity

Re: [libvirt] [PATCH 0/2] Add more duplicate scsi_host/fc_host adapter checks

2014-11-28 Thread Michal Privoznik
On 18.11.2014 22:26, John Ferlan wrote: https://bugzilla.redhat.com/show_bug.cgi?id=1159180 Currently libvirt only detects duplicate fc_host scsi_host adapter sources when the incoming source type definition is the same as the pool type. This misses the even more oddball cases where a

Re: [libvirt] [systemd-devel] systemd-cgroups-agent not working in containers

2014-11-28 Thread Richard Weinberger
Am 28.11.2014 um 06:33 schrieb Martin Pitt: Hello all, Cameron Norman [2014-11-27 12:26 -0800]: On Wed, Nov 26, 2014 at 1:29 PM, Richard Weinberger rich...@nod.at wrote: Hi! I run a Linux container setup with openSUSE 13.1/2 as guest distro. After some time containers slow down. An

Re: [libvirt] [PATCH 1/2] storage: Move and rename getVhbaSCSIHostParent

2014-11-28 Thread Michal Privoznik
On 18.11.2014 22:26, John Ferlan wrote: https://bugzilla.redhat.com/show_bug.cgi?id=1159180 Move the API from the backend to storage_conf and rename it to virStoragePoolGetVhbaSCSIHostParent. A future patch will need to use this functionality from storage_conf Signed-off-by: John Ferlan

Re: [libvirt] [PATCH] docs: Create html documentation even if XHTML1 DTD is not available to validate

2014-11-28 Thread Ian Campbell
On Fri, 2014-11-28 at 14:36 +, Ian Campbell wrote: On a Debian system lacking the w3c-dtd-xhtml package the build fails On a somewhat related note on a system without xsltproc configure succeeds but the build does not: $ make -C docs csharp.html make: Entering directory

Re: [libvirt] [PATCH] docs: fix simple typo in TPM paragraph

2014-11-28 Thread Stefan Berger
On 11/28/2014 03:38 AM, Martin Kletzander wrote: Signed-off-by: Martin Kletzander mklet...@redhat.com ACK -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] [libvirt-python PATCH] fix examples

2014-11-28 Thread Nehal J Wani
On Fri, Nov 28, 2014 at 2:27 PM, Pavel Hrdina phrd...@redhat.com wrote: The dhcpleases example had an old usage of print function. The formating of leases record was also wrong. The event-test example had an old usage of exceptions. Signed-off-by: Pavel Hrdina phrd...@redhat.com ---