Re: [libvirt] bug: try to take disk snapshot for LVM2 Volume

2011-11-06 Thread MATSUDA, Daiki
Hi, Eric. > On 09/29/2011 11:26 PM, MATSUDA, Daiki wrote: >> I tried the new snapshot function implemented by Eric Blake. >> >> It works very well for QCOW2 disk image system. >> But I often use LVM2 volume for QEMU virtual machines and tried to take >> disk snapshot by virsh command ( snapshot-cr

Re: [libvirt] [PATCHv6 5/5] blkiotune: add qemu support for blkiotune.device_weight

2011-11-06 Thread Xu He Jie
于 2011年11月04日 02:06, Eric Blake 写道: From: Hu Tao Implement setting/getting per-device blkio weights in qemu, using the cgroups blkio.weight_device tunable. --- v5: did not include this patch v6: split v4 2/2 into two parts; this part covers just the qemu. Rebase to accomodate 'device_weight' na

[libvirt] Virtual serial logging server?

2011-11-06 Thread Reeted
Dear all, please excuse the almost-OT question, I see various possibilities in quemu-kvm and libvirt for sending virtual serial port data to files, sockets, pipes, etc on the host. In particular, the TCP socket seems interesting. Can you suggest a server application to receive all such TCP con

[libvirt] [PATCH] libvirt-tck: Skip Test when no security model is in use

2011-11-06 Thread Guido Günther
Hi, if I'm reading this test correctly it's supposed to fail without a security model at work. The file images are always readable/writeable to the libvirt user and group without one. Cheers, -- Guido --- scripts/qemu/205-qcow2-double-backing-file.t |9 +++-- 1 files changed, 7 inserti

[libvirt] [PATCH 3/3] qemu: Generate -numa command line option

2011-11-06 Thread Bharata B Rao
qemu: Generate -numa option From: Bharata B Rao Add routines to generate -numa QEMU command line option based on ... XML specifications. Signed-off-by: Bharata B Rao --- src/qemu/qemu_command.c| 71 tests/qemuxml2argvdata/qemuxml2argv-cpu-

[libvirt] [PATCH 1/3] XML definitions for guest NUMA

2011-11-06 Thread Bharata B Rao
XML definitions for guest NUMA and parsing routines. From: Bharata B Rao This patch adds XML definitions for guest NUMA specification and contains routines to parse the same. The guest NUMA specification looks like this: ...

[libvirt] [PATCH 0/3] Guest NUMA topology support - v1

2011-11-06 Thread Bharata B Rao
Hi, This patch series adds support for specifying NUMA topology for guests. ... ... This change allows libvirt to generate -numa options for QEMU/KVM. Changes since v0 - Patch re-organization as per

[libvirt] [PATCH 2/3] Routine to truncate virBuffer

2011-11-06 Thread Bharata B Rao
Routine to truncate virBuffer From: Bharata B Rao Add a helper to truncate virBuffer. /** * virBufferTruncate: * @buf: the buffer * @len: number of bytes by which the buffer is truncated * * Truncate the buffer by @len bytes. * * Returns zero on success or -1 on error */ int virBuffer