[libvirt] Entering 0.9.0 freeze week, RC1 version to test

Okay, I pushed new localization updates around and generated a first release candidate build for 0.9.0 at: ftp://libvirt.org/libvirt/libvirt-0.9.0-rc1.tar.gz I will regenerate a rc2 as soon as Eric pending patch queue and outgoing fd patches are in as I think they should really make 0.9.0 There may be more infrastrcucture patches from Dan too, I'm unsure and as usual pushing bug fixes are okay too, thanks for giving it a try, it seems to work fine here at least for basic tasks, Daniel -- Daniel Veillard | libxml Gnome XML XSLT toolkit http://xmlsoft.org/ daniel@veillard.com | Rpmfind RPM search engine http://rpmfind.net/ http://veillard.com/ | virtualization library http://libvirt.org/

2011/3/28 Daniel Veillard <veillard@redhat.com>:
Okay, I pushed new localization updates around and generated a first release candidate build for 0.9.0 at:
ftp://libvirt.org/libvirt/libvirt-0.9.0-rc1.tar.gz
I will regenerate a rc2 as soon as Eric pending patch queue and outgoing fd patches are in as I think they should really make 0.9.0 There may be more infrastrcucture patches from Dan too, I'm unsure and as usual pushing bug fixes are okay too,
thanks for giving it a try, it seems to work fine here at least for basic tasks,
Daniel
Tested on mingw, and found some problems: virCommandAbort uses WNOHANG for waitpid and kill. Those are not available resulting in compile errors. A simple workaround would be to conditionally compile virCommandAbort as it is currently not used in actual code. The problem with virsh and the poll-based event loop reported before [1] is still there. A simple workaround would be to disable the event loop initialization on mingw. [1] https://www.redhat.com/archives/libvir-list/2011-March/msg00649.html Matthias

Il giorno lun, 28/03/2011 alle 14.25 +0800, Daniel Veillard ha scritto:
thanks for giving it a try, it seems to work fine here at least for basic tasks,
All looks fine in Gentoo, now it's in testing, will report if I hit any issue. -- Diego Elio Pettenò — Flameeyes http://blog.flameeyes.eu/

On Mon, Mar 28, 2011 at 11:25:51AM +0200, Diego Elio Pettenò wrote:
Il giorno lun, 28/03/2011 alle 14.25 +0800, Daniel Veillard ha scritto:
thanks for giving it a try, it seems to work fine here at least for basic tasks,
All looks fine in Gentoo, now it's in testing, will report if I hit any issue.
Okay, thanks :-) Daniel -- Daniel Veillard | libxml Gnome XML XSLT toolkit http://xmlsoft.org/ daniel@veillard.com | Rpmfind RPM search engine http://rpmfind.net/ http://veillard.com/ | virtualization library http://libvirt.org/

于 2011年03月28日 14:25, Daniel Veillard 写道:
Okay, I pushed new localization updates around and generated a first release candidate build for 0.9.0 at:
ftp://libvirt.org/libvirt/libvirt-0.9.0-rc1.tar.gz
I will regenerate a rc2 as soon as Eric pending patch queue and outgoing fd patches are in as I think they should really make 0.9.0 There may be more infrastrcucture patches from Dan too, I'm unsure and as usual pushing bug fixes are okay too,
thanks for giving it a try, it seems to work fine here at least for basic tasks,
Daniel
Problem exists of "./configure --with-audit", patch attached. Regards Osier

On Mon, Mar 28, 2011 at 06:12:29PM +0800, Osier Yang wrote:
于 2011年03月28日 14:25, Daniel Veillard 写道:
Okay, I pushed new localization updates around and generated a first release candidate build for 0.9.0 at:
ftp://libvirt.org/libvirt/libvirt-0.9.0-rc1.tar.gz
I will regenerate a rc2 as soon as Eric pending patch queue and outgoing fd patches are in as I think they should really make 0.9.0 There may be more infrastrcucture patches from Dan too, I'm unsure and as usual pushing bug fixes are okay too,
thanks for giving it a try, it seems to work fine here at least for basic tasks,
Daniel
Problem exists of "./configure --with-audit", patch attached.
Regards Osier
Oops, right, ACK, please push :-) Daniel
From ab8984e482283ae9b53210822b857380da69c912 Mon Sep 17 00:00:00 2001 From: Osier Yang <jyang@redhat.com> Date: Mon, 28 Mar 2011 18:05:32 +0800 Subject: [PATCH] Fix syntax error in configure.ac MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit
Which will lead "./configure --with-audit=yes" breaks. --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac index 9c0221c..1a3d3b6 100644 --- a/configure.ac +++ b/configure.ac @@ -1051,7 +1051,7 @@ AUDIT_LIBS= if test "$with_audit" != "no" ; then old_cflags="$CFLAGS" old_libs="$LIBS" - if test "$with_audit" != "check" && "$with_audit" != "yes" ; then + if test "$with_audit" != "check" && test "$with_audit" != "yes" ; then AUDIT_CFLAGS="-I$with_audit/include" AUDIT_LIBS="-L$with_audit/lib" fi -- 1.7.4
-- Daniel Veillard | libxml Gnome XML XSLT toolkit http://xmlsoft.org/ daniel@veillard.com | Rpmfind RPM search engine http://rpmfind.net/ http://veillard.com/ | virtualization library http://libvirt.org/

于 2011年03月28日 18:41, Daniel Veillard 写道:
On Mon, Mar 28, 2011 at 06:12:29PM +0800, Osier Yang wrote:
于 2011年03月28日 14:25, Daniel Veillard 写道:
Okay, I pushed new localization updates around and generated a first release candidate build for 0.9.0 at:
ftp://libvirt.org/libvirt/libvirt-0.9.0-rc1.tar.gz
I will regenerate a rc2 as soon as Eric pending patch queue and outgoing fd patches are in as I think they should really make 0.9.0 There may be more infrastrcucture patches from Dan too, I'm unsure and as usual pushing bug fixes are okay too,
thanks for giving it a try, it seems to work fine here at least for basic tasks,
Daniel
Problem exists of "./configure --with-audit", patch attached.
Regards Osier
Oops, right, ACK, please push :-)
Daniel
Thanks, pushed Regards Osier
From ab8984e482283ae9b53210822b857380da69c912 Mon Sep 17 00:00:00 2001 From: Osier Yang<jyang@redhat.com> Date: Mon, 28 Mar 2011 18:05:32 +0800 Subject: [PATCH] Fix syntax error in configure.ac MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit
Which will lead "./configure --with-audit=yes" breaks. --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac index 9c0221c..1a3d3b6 100644 --- a/configure.ac +++ b/configure.ac @@ -1051,7 +1051,7 @@ AUDIT_LIBS= if test "$with_audit" != "no" ; then old_cflags="$CFLAGS" old_libs="$LIBS" - if test "$with_audit" != "check"&& "$with_audit" != "yes" ; then + if test "$with_audit" != "check"&& test "$with_audit" != "yes" ; then AUDIT_CFLAGS="-I$with_audit/include" AUDIT_LIBS="-L$with_audit/lib" fi -- 1.7.4

On Mon, Mar 28, 2011 at 02:25:38PM +0800, Daniel Veillard wrote: [...]
I will regenerate a rc2 as soon as Eric pending patch queue and outgoing fd patches are in as I think they should really make 0.9.0 There may be more infrastrcucture patches from Dan too, I'm unsure and as usual pushing bug fixes are okay too,
Okay, patches from Eric, Dan, Markus and Osier are in, so it was time for RC2 , and I guess we are really starting the freeze now :-) ftp://libvirt.org/libvirt/libvirt-0.9.0-rc2.tar.gz Please give it some testing, thanks Daniel -- Daniel Veillard | libxml Gnome XML XSLT toolkit http://xmlsoft.org/ daniel@veillard.com | Rpmfind RPM search engine http://rpmfind.net/ http://veillard.com/ | virtualization library http://libvirt.org/

On 30/03/2011, at 1:46 AM, Daniel Veillard wrote:
On Mon, Mar 28, 2011 at 02:25:38PM +0800, Daniel Veillard wrote: [...]
I will regenerate a rc2 as soon as Eric pending patch queue and outgoing fd patches are in as I think they should really make 0.9.0 There may be more infrastrcucture patches from Dan too, I'm unsure and as usual pushing bug fixes are okay too,
Okay, patches from Eric, Dan, Markus and Osier are in, so it was time for RC2 , and I guess we are really starting the freeze now :-)
ftp://libvirt.org/libvirt/libvirt-0.9.0-rc2.tar.gz
Please give it some testing,
Same problem with virsh on OSX. Straight out hangs and never gets to the prompt. I'll try to figure out which commit(s) causes that, tomorrow. Regards and best wishes, Justin Clift

On 30/03/2011, at 2:16 AM, Justin Clift wrote:
On 30/03/2011, at 1:46 AM, Daniel Veillard wrote:
On Mon, Mar 28, 2011 at 02:25:38PM +0800, Daniel Veillard wrote: [...]
I will regenerate a rc2 as soon as Eric pending patch queue and outgoing fd patches are in as I think they should really make 0.9.0 There may be more infrastrcucture patches from Dan too, I'm unsure and as usual pushing bug fixes are okay too,
Okay, patches from Eric, Dan, Markus and Osier are in, so it was time for RC2 , and I guess we are really starting the freeze now :-)
ftp://libvirt.org/libvirt/libvirt-0.9.0-rc2.tar.gz
Please give it some testing,
Same problem with virsh on OSX. Straight out hangs and never gets to the prompt.
The commit that seems to be causing the problem on OSX is this one: commit 2ed6cc7bec41dd344d41ea1531f6760c93099128 Author: Daniel P. Berrange <berrange@redhat.com> Date: Wed Mar 2 16:59:54 2011 +0000 Expose event loop implementation as a public API Not all applications have an existing event loop they need to integrate with. Forcing them to implement the libvirt event loop integration APIs is an undue burden. This just exposes our simple poll() based implementation for apps to use. So instead of calling virEventRegister(....callbacks...) The app would call virEventRegisterDefaultImpl() And then have a thread somewhere calling static bool quit = false; .... while (!quit) virEventRunDefaultImpl() * daemon/libvirtd.c, tools/console.c, tools/virsh.c: Convert to public event loop APIs * include/libvirt/libvirt.h.in, src/libvirt_private.syms: Add virEventRegisterDefaultImpl and virEventRunDefaultImpl * src/util/event.c: Implement virEventRegisterDefaultImpl and virEventRunDefaultImpl using poll() event loop * src/util/event_poll.c: Add full error reporting * src/util/virterror.c, include/libvirt/virterror.h: Add VIR_FROM_EVENTS Moving to the commit right before it, and virsh works starts up fine. With the above commit though, virsh just hangs on OSX. The options compiled in for the above testing were: Compiled with support for: Hypervisors: OpenVZ VirtualBox ESX Test Networking: Remote Storage: Miscellaneous: Debug Readline Anyone have ideas for a workaround or other useful things to test? Regards and best wishes, Justin Clift

On Wed, Mar 30, 2011 at 02:16:28AM +1100, Justin Clift wrote:
On 30/03/2011, at 1:46 AM, Daniel Veillard wrote:
On Mon, Mar 28, 2011 at 02:25:38PM +0800, Daniel Veillard wrote: [...]
I will regenerate a rc2 as soon as Eric pending patch queue and outgoing fd patches are in as I think they should really make 0.9.0 There may be more infrastrcucture patches from Dan too, I'm unsure and as usual pushing bug fixes are okay too,
Okay, patches from Eric, Dan, Markus and Osier are in, so it was time for RC2 , and I guess we are really starting the freeze now :-)
ftp://libvirt.org/libvirt/libvirt-0.9.0-rc2.tar.gz
Please give it some testing,
Same problem with virsh on OSX. Straight out hangs and never gets to the prompt.
Please run virsh with LIBVIRT_DEBUG=1 set and capture the logs. Also when it hangs please capture a full stack trace showing where it has got stuck Daniel -- |: http://berrange.com -o- http://www.flickr.com/photos/dberrange/ :| |: http://libvirt.org -o- http://virt-manager.org :| |: http://autobuild.org -o- http://search.cpan.org/~danberr/ :| |: http://entangle-photo.org -o- http://live.gnome.org/gtk-vnc :|

On 01/04/2011, at 12:44 AM, Daniel P. Berrange wrote:
On Wed, Mar 30, 2011 at 02:16:28AM +1100, Justin Clift wrote: <snip>
Same problem with virsh on OSX. Straight out hangs and never gets to the prompt.
Please run virsh with LIBVIRT_DEBUG=1 set and capture the logs.
Also when it hangs please capture a full stack trace showing where it has got stuck
Thanks. It's looking like some kind of problem interacting with VirtualBox (v4.0.4): <snip> 01:26:36.870: -1: debug : virConnectOpenAuth:1288 : name=(null), auth=0x100237e20, flags=0 01:26:36.870: -1: debug : do_open:1025 : no name, allowing driver auto-select 01:26:36.870: -1: debug : do_open:1062 : trying driver 0 (Test) ... 01:26:36.870: -1: debug : do_open:1068 : driver 0 Test returned DECLINED 01:26:36.870: -1: debug : do_open:1062 : trying driver 1 (OPENVZ) ... 01:26:36.870: -1: debug : do_open:1068 : driver 1 OPENVZ returned DECLINED 01:26:36.870: -1: debug : do_open:1062 : trying driver 2 (VMWARE) ... 01:26:36.870: -1: debug : do_open:1068 : driver 2 VMWARE returned DECLINED 01:26:36.870: -1: debug : do_open:1062 : trying driver 3 (VBOX) ... <this is where the hang is, and I hit ^C to break out of virsh> (full log file attached) This is the full gdb backtrace from the process: (gdb) thread apply all bt Thread 1 (process 85784): #0 0x00007fff8549b3a6 in swtch_pri () #1 0x00007fff854d5b51 in _pthread_find_thread () #2 0x00007fff8551cb3e in pthread_getschedparam () #3 0x00000001013c8752 in PR_SetThreadPriority () #4 0x00000001013c88f1 in _PR_InitThreads () #5 0x00000001013bbc26 in _PR_ImplicitInitialization () #6 0x00000001013c8916 in PR_GetCurrentThread () #7 0x00000001013a048f in nsIThread::GetCurrent () #8 0x00000001013a04c1 in nsIThread::SetMainThread () #9 0x00000001013524ee in NS_InitXPCOM2 () #10 0x00000001004c022a in com::Initialize () #11 0x00000001004bef8f in VBoxComInitialize () #12 0x000000010015fa7f in vboxInitialize () #13 0x0000000100160039 in vboxOpen () #14 0x00000001000abbcb in do_open () #15 0x00000001000ac712 in virConnectOpenAuth () #16 0x000000010001a7ef in vshInit () #17 0x000000010001bef1 in main () (gdb) Any of that helpful? Regards and best wishes, Justin Clift

2011/3/31 Justin Clift <jclift@redhat.com>:
On 01/04/2011, at 12:44 AM, Daniel P. Berrange wrote:
On Wed, Mar 30, 2011 at 02:16:28AM +1100, Justin Clift wrote: <snip>
Same problem with virsh on OSX. Straight out hangs and never gets to the prompt.
Please run virsh with LIBVIRT_DEBUG=1 set and capture the logs.
Also when it hangs please capture a full stack trace showing where it has got stuck
Thanks. It's looking like some kind of problem interacting with VirtualBox (v4.0.4):
This is the full gdb backtrace from the process:
(gdb) thread apply all bt
Thread 1 (process 85784): #0 0x00007fff8549b3a6 in swtch_pri () #1 0x00007fff854d5b51 in _pthread_find_thread () #2 0x00007fff8551cb3e in pthread_getschedparam () #3 0x00000001013c8752 in PR_SetThreadPriority () #4 0x00000001013c88f1 in _PR_InitThreads () #5 0x00000001013bbc26 in _PR_ImplicitInitialization () #6 0x00000001013c8916 in PR_GetCurrentThread () #7 0x00000001013a048f in nsIThread::GetCurrent () #8 0x00000001013a04c1 in nsIThread::SetMainThread () #9 0x00000001013524ee in NS_InitXPCOM2 () #10 0x00000001004c022a in com::Initialize () #11 0x00000001004bef8f in VBoxComInitialize () #12 0x000000010015fa7f in vboxInitialize () #13 0x0000000100160039 in vboxOpen () #14 0x00000001000abbcb in do_open () #15 0x00000001000ac712 in virConnectOpenAuth () #16 0x000000010001a7ef in vshInit () #17 0x000000010001bef1 in main () (gdb)
Any of that helpful?
Strange point to get stuck. I assume VirtualBox for OSX comes with it's own GUI tool. Is it also affected or only virsh? Does this happen with VirtualBox 4.0.4 only, or is 4.x or even 3.x affected too? Matthias

On 02/04/2011, at 6:34 PM, Matthias Bolte wrote: <snip>
Thanks. It's looking like some kind of problem interacting with VirtualBox (v4.0.4):
This is the full gdb backtrace from the process:
(gdb) thread apply all bt
Thread 1 (process 85784): #0 0x00007fff8549b3a6 in swtch_pri () #1 0x00007fff854d5b51 in _pthread_find_thread () <snip> Strange point to get stuck.
I assume VirtualBox for OSX comes with it's own GUI tool. Is it also affected or only virsh?
Does this happen with VirtualBox 4.0.4 only, or is 4.x or even 3.x affected too?
Just tried with the earlier versions of 4.0.2 and 3.2.12, with full libvirt autogen.sh and recompile after each installation. Exact same behaviour, hang point, everything. :( The VirtualBox GUI seems completely unaffected. While virsh is stuck, the GUI can be started, VM's started/stopped, GUI shut down, all as per normal. I guess this is going to take a bunch more debugging, which I personally don't have the time for atm. (ugh) :( Are there any other OSX users around that could take a look? Regards and best wishes, Justin Clift

On 04/04/2011, at 8:51 PM, Justin Clift wrote:
On 02/04/2011, at 6:34 PM, Matthias Bolte wrote: <snip>
Thanks. It's looking like some kind of problem interacting with VirtualBox (v4.0.4):
This is the full gdb backtrace from the process:
(gdb) thread apply all bt
Thread 1 (process 85784): #0 0x00007fff8549b3a6 in swtch_pri () #1 0x00007fff854d5b51 in _pthread_find_thread () <snip> Strange point to get stuck.
I assume VirtualBox for OSX comes with it's own GUI tool. Is it also affected or only virsh?
Does this happen with VirtualBox 4.0.4 only, or is 4.x or even 3.x affected too?
Just tried with the earlier versions of 4.0.2 and 3.2.12, with full libvirt autogen.sh and recompile after each installation. Exact same behaviour, hang point, everything. :(
The VirtualBox GUI seems completely unaffected. While virsh is stuck, the GUI can be started, VM's started/stopped, GUI shut down, all as per normal.
I guess this is going to take a bunch more debugging, which I personally don't have the time for atm. (ugh) :(
Are there any other OSX users around that could take a look?
As additional info, connecting to a remote RHEL 6.0 libvirtd using ssh works: $ tools/virsh -c qemu+ssh://root@servername/system?socket=/var/run/libvirt/libvirt-sock root@servername's password: Welcome to virsh, the virtualization interactive terminal. Type: 'help' for help with commands 'quit' to quit virsh # ^D $ Which is nice, as from memory it didn't used to (for ssh specifically). + Justin

On Tue, Mar 29, 2011 at 10:46:59PM +0800, Daniel Veillard wrote:
On Mon, Mar 28, 2011 at 02:25:38PM +0800, Daniel Veillard wrote: [...]
I will regenerate a rc2 as soon as Eric pending patch queue and outgoing fd patches are in as I think they should really make 0.9.0 There may be more infrastrcucture patches from Dan too, I'm unsure and as usual pushing bug fixes are okay too,
Okay, patches from Eric, Dan, Markus and Osier are in, so it was time for RC2 , and I guess we are really starting the freeze now :-)
ftp://libvirt.org/libvirt/libvirt-0.9.0-rc2.tar.gz
Please give it some testing,
Heh I forgot to make an rpm before pushing and this broke, the following is needed to package the iohelper introduced in commit e886237af5df963a07cb7c03119b4eaea540f0e9 Since that doesn't seems comiled conditionally that looks safe: diff --git a/libvirt.spec.in b/libvirt.spec.in index b6b96aa..7dcbe8f 100644 --- a/libvirt.spec.in +++ b/libvirt.spec.in @@ -984,6 +984,7 @@ fi %endif %attr(0755, root, root) %{_libexecdir}/libvirt_parthelper +%attr(0755, root, root) %{_libexecdir}/libvirt_iohelper %attr(0755, root, root) %{_sbindir}/libvirtd %{_mandir}/man8/libvirtd.8* Daniel -- Daniel Veillard | libxml Gnome XML XSLT toolkit http://xmlsoft.org/ daniel@veillard.com | Rpmfind RPM search engine http://rpmfind.net/ http://veillard.com/ | virtualization library http://libvirt.org/

On Tue, Mar 29, 2011 at 11:17:17PM +0800, Daniel Veillard wrote:
On Tue, Mar 29, 2011 at 10:46:59PM +0800, Daniel Veillard wrote:
On Mon, Mar 28, 2011 at 02:25:38PM +0800, Daniel Veillard wrote: [...]
I will regenerate a rc2 as soon as Eric pending patch queue and outgoing fd patches are in as I think they should really make 0.9.0 There may be more infrastrcucture patches from Dan too, I'm unsure and as usual pushing bug fixes are okay too,
Okay, patches from Eric, Dan, Markus and Osier are in, so it was time for RC2 , and I guess we are really starting the freeze now :-)
ftp://libvirt.org/libvirt/libvirt-0.9.0-rc2.tar.gz
Please give it some testing,
Heh I forgot to make an rpm before pushing and this broke, the following is needed to package the iohelper introduced in commit e886237af5df963a07cb7c03119b4eaea540f0e9 Since that doesn't seems comiled conditionally that looks safe:
diff --git a/libvirt.spec.in b/libvirt.spec.in index b6b96aa..7dcbe8f 100644 --- a/libvirt.spec.in +++ b/libvirt.spec.in @@ -984,6 +984,7 @@ fi %endif
%attr(0755, root, root) %{_libexecdir}/libvirt_parthelper +%attr(0755, root, root) %{_libexecdir}/libvirt_iohelper %attr(0755, root, root) %{_sbindir}/libvirtd
%{_mandir}/man8/libvirtd.8*
Pushed as a trivial breaker fix, Daniel -- Daniel Veillard | libxml Gnome XML XSLT toolkit http://xmlsoft.org/ daniel@veillard.com | Rpmfind RPM search engine http://rpmfind.net/ http://veillard.com/ | virtualization library http://libvirt.org/

于 2011年03月29日 22:46, Daniel Veillard 写道:
On Mon, Mar 28, 2011 at 02:25:38PM +0800, Daniel Veillard wrote: [...]
I will regenerate a rc2 as soon as Eric pending patch queue and outgoing fd patches are in as I think they should really make 0.9.0 There may be more infrastrcucture patches from Dan too, I'm unsure and as usual pushing bug fixes are okay too,
Okay, patches from Eric, Dan, Markus and Osier are in, so it was time for RC2 , and I guess we are really starting the freeze now :-)
ftp://libvirt.org/libvirt/libvirt-0.9.0-rc2.tar.gz
Please give it some testing,
thanks
Daniel
# ./daemon/libvirtd I/O warning : failed to load external entity "/usr/local/share/libvirt/cpu_map.xml" 10:32:41.850: 13872: info : libvirt version: 0.9.0 10:32:41.850: 13872: error : cpuMapLoad:103 : internal error cannot parse CPU map file: /usr/local/share/libvirt/cpu_map.xml 10:32:41.851: 13872: warning : qemuCapsInit:731 : Failed to get host CPU ^C10:33:43.653: 13900: warning : qemudDispatchSignalEvent:427 : Shutting down on signal 2 We missed installation of "src/cpu/cpu_map.xml"? libvirt is compiled with "--with-numactl". Regards Osier

于 2011年03月30日 10:36, Osier Yang 写道:
于 2011年03月29日 22:46, Daniel Veillard 写道:
On Mon, Mar 28, 2011 at 02:25:38PM +0800, Daniel Veillard wrote: [...]
I will regenerate a rc2 as soon as Eric pending patch queue and outgoing fd patches are in as I think they should really make 0.9.0 There may be more infrastrcucture patches from Dan too, I'm unsure and as usual pushing bug fixes are okay too,
Okay, patches from Eric, Dan, Markus and Osier are in, so it was time for RC2 , and I guess we are really starting the freeze now :-)
ftp://libvirt.org/libvirt/libvirt-0.9.0-rc2.tar.gz
Please give it some testing,
thanks
Daniel
# ./daemon/libvirtd I/O warning : failed to load external entity "/usr/local/share/libvirt/cpu_map.xml" 10:32:41.850: 13872: info : libvirt version: 0.9.0 10:32:41.850: 13872: error : cpuMapLoad:103 : internal error cannot parse CPU map file: /usr/local/share/libvirt/cpu_map.xml 10:32:41.851: 13872: warning : qemuCapsInit:731 : Failed to get host CPU ^C10:33:43.653: 13900: warning : qemudDispatchSignalEvent:427 : Shutting down on signal 2
We missed installation of "src/cpu/cpu_map.xml"? libvirt is compiled with "--with-numactl".
Ah, forget about it, /me is confused today.
Regards Osier
-- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list

On Tue, Mar 29, 2011 at 10:46:59PM +0800, Daniel Veillard wrote:
On Mon, Mar 28, 2011 at 02:25:38PM +0800, Daniel Veillard wrote: [...]
I will regenerate a rc2 as soon as Eric pending patch queue and outgoing fd patches are in as I think they should really make 0.9.0 There may be more infrastrcucture patches from Dan too, I'm unsure and as usual pushing bug fixes are okay too,
Okay, patches from Eric, Dan, Markus and Osier are in, so it was time for RC2 , and I guess we are really starting the freeze now :-)
ftp://libvirt.org/libvirt/libvirt-0.9.0-rc2.tar.gz
Please give it some testing,
I've just pushed 0.9.0~rc2 to Debian experimental: http://packages.debian.org/experimental/python-libvirt (the page still shows rc1 and will be updated once rc2 gets installed into the archive). Cheers, -- Guido
thanks
Daniel
-- Daniel Veillard | libxml Gnome XML XSLT toolkit http://xmlsoft.org/ daniel@veillard.com | Rpmfind RPM search engine http://rpmfind.net/ http://veillard.com/ | virtualization library http://libvirt.org/
-- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list
participants (7)
-
Daniel P. Berrange
-
Daniel Veillard
-
Diego Elio Pettenò
-
Guido Günther
-
Justin Clift
-
Matthias Bolte
-
Osier Yang