Re: [libvirt] Call to virDomainIsActive hangs forever

2018-06-14 Thread Mathieu Tarral
it wait for specific conditions/event to return ? Any idea what might go wrong ? Thank you. -- Mathieu Tarral -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] Cannot find suitable emulator for x86_64

2018-06-14 Thread Mathieu Tarral
2018-06-14 13:33 GMT+03:00 Daniel P. Berrangé : > On Thu, Jun 14, 2018 at 01:23:56PM +0300, Mathieu Tarral wrote: >> 2018-06-13 18:23 GMT+03:00 Daniel P. Berrangé : >> > On Wed, Jun 13, 2018 at 06:13:04PM +0300, Mathieu Tarral wrote: >> >> 2018-06-13 18:0

Re: [libvirt] Cannot find suitable emulator for x86_64

2018-06-14 Thread Mathieu Tarral
2018-06-13 18:23 GMT+03:00 Daniel P. Berrangé : > On Wed, Jun 13, 2018 at 06:13:04PM +0300, Mathieu Tarral wrote: >> 2018-06-13 18:07 GMT+03:00 Daniel P. Berrangé : >> > On Wed, Jun 13, 2018 at 05:59:37PM +0300, Mathieu Tarral wrote: >> >> >> > >> >&

Re: [libvirt] Cannot find suitable emulator for x86_64

2018-06-13 Thread Mathieu Tarral
2018-06-13 18:07 GMT+03:00 Daniel P. Berrangé : > On Wed, Jun 13, 2018 at 05:59:37PM +0300, Mathieu Tarral wrote: >> >> > >> >> > What version of QEMU do you have installed ? Libvirt has recently >> >> > become more aggressive at requiring modern QE

Re: [libvirt] Cannot find suitable emulator for x86_64

2018-06-13 Thread Mathieu Tarral
o QEMU: warning : virQEMUCapsInit:942 : Failed to get host CPU cache info warning : virQEMUCapsInit:949 : Failed to get host power management capabilities Could this be the reason, or the beginning of an explanation ? How can I dig and find what is the root cause ? -- Mathieu Tarral -- l

Re: [libvirt] Cannot find suitable emulator for x86_64

2018-06-13 Thread Mathieu Tarral
N_PRIVATE_4.0.0' not found (required by ./libvirtd) ./libvirtd: /var/ansible/usr/lib/libvirt.so.0: version `LIBVIRT_PRIVATE_4.0.0' not found (required by ./libvirtd) What is it complaining about ? I used the same configuration as above: ./configure --prefix=$HOME/usr --localstatedir=/var Thanks. --

[libvirt] Cannot find suitable emulator for x86_64

2018-06-13 Thread Mathieu Tarral
for x86_64 My environment has not changed, QEMU is still installed. Can you help me understand what is wrong here ? Thank you in advance ! -- Mathieu Tarral -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] unix_sock_dir for virtlogd

2018-05-03 Thread Mathieu Tarral
Hi, thanks for your reply Martin, 2018-05-04 1:44 GMT+03:00 Martin Kletzander <mklet...@redhat.com>: > On Thu, May 03, 2018 at 11:03:48PM +0300, Mathieu Tarral wrote: >> >> Hi ! >> >> I'm trying to run libvirtd from git, and the daemon is starting now, >> b

[libvirt] unix_sock_dir for virtlogd

2018-05-03 Thread Mathieu Tarral
figured my installation ? Thanks a lot. -- Mathieu Tarral -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] Call to virDomainIsActive hangs forever

2018-04-26 Thread Mathieu Tarral
. Thank you ! 2018-03-27 16:12 GMT+03:00 Daniel P. Berrangé <berra...@redhat.com>: > On Tue, Mar 27, 2018 at 04:04:33PM +0300, Mathieu Tarral wrote: >> > Are you sure this isa different thread ? It looks identical to the first >> > stack trace you give above. >>

Re: [libvirt] Run libvirtd from git: virsh hangs

2018-04-05 Thread Mathieu Tarral
ool.c:124 #3 0x7f8b207eb488 in virThreadHelper (data=) at util/virthread.c:206 #4 0x7f8b1f89c494 in start_thread (arg=0x7f8b18e7c700) at pthread_create.c:333 #5 0x7f8b1f5deacf in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:97 Just one thread, waiting. Thanks. -- Ma

Re: [libvirt] Run libvirtd from git: virsh hangs

2018-04-05 Thread Mathieu Tarral
32768], 4) = 0 setsockopt(12<NETLINK:[KOBJECT_UEVENT:1514144058]>, SOL_SOCKET, SO_RCVBUF, [131702], 4) = 0 setsockopt(12<NETLINK:[KOBJECT_UEVENT:1514144058]>, SOL_NETLINK, 1, [1], 4) = 0 fcntl(12<NETLINK:[KOBJECT_UEVENT:1514144058]>, F_SETFL, O_RDONLY|O_NONBLOCK) = 0 poll([{fd=4<pipe:[16652234]>, events=POLLIN}, {fd=6<pipe:[16652235]>, events=POLLIN}, {fd=11<NETLINK:[ROUTE:931135802]>, events=POLLIN}, {fd=12<NETLINK:[KOBJECT_UEVENT:1514144058]>, events=POLLIN}], 4, -1 And it is polling on a pipe ??? Any ideas how to debug this ? I just want to run my custom libvirtd here, and test an app against it, nothing special. How do you guys do this ? -- Mathieu Tarral -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list

[libvirt] Run libvirtd from git: virsh hangs

2018-04-05 Thread Mathieu Tarral
with virsh (using the system binary) sudo virsh virsh # list --all And this call hangs forever. There is no more output in libvirtd stdout/stderr, even if i set log_level to 1. Did i miss anything in the configuration ? Thanks guys ! -- Mathieu Tarral -- libvir-list mailing list libvir-list

Re: [libvirt] Libvirt master compilation failed

2018-04-05 Thread Mathieu Tarral
> Forgot to install 'gettext', maybe. I was missing gettext indeed. I ran the autogen.sh again, then make, and the build was successful. I wonder why this wasn't spotted by the configure.sh script from autotools ? There is an issue to be fixed here. Thank you Pino ! -- Mathieu Tar

[libvirt] Libvirt master compilation failed

2018-04-05 Thread Mathieu Tarral
efile:2014: recipe for target 'all' failed make: *** [all] Error 2 I'm on Debian stretch, i installed every dependency required by the configure script. Any ideas what's wrong here ? Thanks. -- Mathieu Tarral -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] Compiling Libvirt 3.0.0 failed: cannot stat t...@kkcor.gmo

2018-03-27 Thread Mathieu Tarral
arget 'all' failed make: *** [all] Error 2 Any ideas ? :/ Best regards, -- Mathieu Tarral -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] Call to virDomainIsActive hangs forever

2018-03-27 Thread Mathieu Tarral
result=result@entry=0x7f4ffe7fb290, flags=1) at ../../../src/libvirt-qemu.c:86 #10 0x7f506e0b50cc in libvirt_qemu_virDomainQemuMonitorCommand (self=, args=) at libvirt-qemu-override.c:146 #11 0x55a1fb4cb6df in PyCFunction_Call () at ../Objects/methodobject.c:109 Thank you. -- Mathieu Tarral -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] Call to virDomainIsActive hangs forever

2018-03-27 Thread Mathieu Tarral
virt will be hanging forever. Best regards, 2018-03-26 13:16 GMT+03:00 Daniel P. Berrangé <berra...@redhat.com>: > On Fri, Mar 23, 2018 at 01:24:46PM +0100, Erik Skultety wrote: >> On Thu, Mar 22, 2018 at 06:10:49PM +0200, Mathieu Tarral wrote: >> > Hi ! >> > >>

Re: [libvirt] Compiling Libvirt 3.0.0 failed: cannot stat t...@kkcor.gmo

2018-03-26 Thread Mathieu Tarral
ke[1]: Leaving directory '/var/ansible/libvirt' Makefile:1977: recipe for target 'all' failed make: *** [all] Error 2 Thank you. Best regards, -- Mathieu Tarral -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list

[libvirt] Compiling Libvirt 3.0.0 failed: cannot stat t...@kkcor.gmo

2018-03-26 Thread Mathieu Tarral
t want to add a check for that lib in the configure.ac Best regards. -- Mathieu Tarral -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list

[libvirt] Call to virDomainIsActive hangs forever

2018-03-22 Thread Mathieu Tarral
e package ? Best regards, -- Mathieu Tarral -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list