Re: [libvirt] doc: write separate module for hostdev passthrough and in-use tracking

2013-03-24 Thread Chunyan Liu
2013/3/22 Osier Yang : > On 2013年03月22日 17:36, Chunyan Liu wrote: >> >> Hi, List, >> >> As the mail I've sent a week before: >> https://www.redhat.com/archives/libvir-list/2013-March/msg00730.html >> I'm willing to push this work forward so that the passthrough APIs >> could be reused by qemu drive

[libvirt] [libvirt-sandbox][PATCH v2] Avoid segfault in gvir_sandbox_config_add_host_include_file

2013-03-24 Thread Alex Jia
RHBZ: https://bugzilla.redhat.com/show_bug.cgi?id=924574 Valgrind defects memory error: ==19297== Invalid free() / delete / delete[] / realloc() ==19297==at 0x4A077A6: free (vg_replace_malloc.c:446) ==19297==by 0x350F24D79E: g_free (in /usr/lib64/libglib-2.0.so.0.3400.2) ==19297==by 0

Re: [libvirt] [libvirt-sandbox][PATCH] Avoid segfault in gvir_sandbox_config_add_host_include_file

2013-03-24 Thread Alex Jia
On 03/22/2013 06:45 PM, Daniel P. Berrange wrote: On Fri, Mar 22, 2013 at 05:38:23PM +0800, Alex Jia wrote: RHBZ: https://bugzilla.redhat.com/show_bug.cgi?id=924574 Valgrind defects memory error: ==19297== Invalid free() / delete / delete[] / realloc() ==19297==at 0x4A077A6: free (vg_repla

Re: [libvirt] [PATCH] Move FUSE mount to /var/lib/libvirt/lxc/$NAME.fuse

2013-03-24 Thread Gao feng
On 2013/03/22/ 22:24, Daniel P. Berrange wrote: > From: "Daniel P. Berrange" > > Instead of using /var/lib/libvirt/lxc/$NAME for the FUSE > filesystem, use /var/lib/libvirt/lxc/$NAME.fuse. This allows > room for other temporary mounts in the same directory > --- > src/lxc/lxc_container.c | 2 +-

[libvirt] [PATCH] make: obey WITH_TESTS; do not run test suite when --enable-test-suite=no

2013-03-24 Thread TJ
make: obey WITH_TESTS; do not run test suite when --enable-test-suite=no Even when --enable-test-suite=no a build would run the test suite. Fix the Makefile so that tests are conditional on WITH_TESTS. Signed-off-by: TJ --- Makefile.am | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-)

[libvirt] [PATCH] configure: fix incorrect AC_ENABLE_ARG([test-suite], ...)

2013-03-24 Thread TJ
configure: fix incorrect AC_ENABLE_ARG([test-suite], ...) Configure incorrectly required --with-test-suite instead of --enable-test-suite and it was therefore impossible to disable/enable the test-suite option manually as it would always adopt the 'check' value. Signed-off-by: TJ --- configur