Re: [libvirt] Candidate release 2 for libvirt-1.1.0

2013-06-28 Thread Jason Helfman
 On Thu, Jun 27, 2013 at 11:01 AM, Daniel Veillard veill...@redhat.comwrote:

I have just tagged the release candidate 2 in git and sent a tarball
 to the usual place (rpms are coming):
ftp://libvirt.org/libvirt/

 This includes the end of the patch set from Laine, and hopefully
 it won't require too many other patches. I tried it and it doesn't
 look obviously broken to me, please give it a try too, especially
 for portability :-)
 If all goes well the final release should be next Monday !

   thanks !

 Daniel


So far, I am getting linker errors for FreeBSD here:
 https://redports.org/buildarchive/20130628070800-42595/

-jgh

--
Jason Helfman  | FreeBSD Committer
j...@freebsd.org | http://people.freebsd.org/~jgh  | The Power to Serve
--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] Candidate release 2 for libvirt-1.1.0

2013-06-28 Thread Laine Stump
On 06/28/2013 03:24 AM, Jason Helfman wrote:

 On Thu, Jun 27, 2013 at 11:01 AM, Daniel Veillard
 veill...@redhat.com mailto:veill...@redhat.com wrote:

I have just tagged the release candidate 2 in git and sent
 a tarball
 to the usual place (rpms are coming):
ftp://libvirt.org/libvirt/

 This includes the end of the patch set from Laine, and hopefully
 it won't require too many other patches. I tried it and it doesn't
 look obviously broken to me, please give it a try too, especially
 for portability :-)
 If all goes well the final release should be next Monday !

   thanks !

 Daniel


 So far, I am getting linker errors for FreeBSD here:
  https://redports.org/buildarchive/20130628070800-42595/


Sigh. I see the problem. Patch coming up...
--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] Candidate release 2 for libvirt-1.1.0

2013-06-28 Thread Laine Stump
On 06/28/2013 03:44 AM, Laine Stump wrote:
 On 06/28/2013 03:24 AM, Jason Helfman wrote:

 On Thu, Jun 27, 2013 at 11:01 AM, Daniel Veillard
 veill...@redhat.com mailto:veill...@redhat.com wrote:

I have just tagged the release candidate 2 in git and sent
 a tarball
 to the usual place (rpms are coming):
ftp://libvirt.org/libvirt/

 This includes the end of the patch set from Laine, and hopefully
 it won't require too many other patches. I tried it and it
 doesn't
 look obviously broken to me, please give it a try too, especially
 for portability :-)
 If all goes well the final release should be next Monday !

   thanks !

 Daniel


 So far, I am getting linker errors for FreeBSD here:
  https://redports.org/buildarchive/20130628070800-42595/


 Sigh. I see the problem. Patch coming up...


Okay, I pushed the following patch:

https://www.redhat.com/archives/libvir-list/2013-June/msg01171.html

Can you apply this patch locally to the source tar and re-run your test
build to make sure nothing else is broken (since there won't be another
rc before release)? If there are still problems, you can find us in
#virt on irc.oftc.net.



commit a757822233f707c4ed75986f5903e26e40f3cdfa
Author: Laine Stump la...@laine.org
Date:   Fri Jun 28 04:00:54 2013 -0400

util: fix build error on non-Linux systems
   
Building on FreeBSD had this linker error:
   
/work/a/ports/devel/libvirt/work/libvirt-1.1.0/src/.libs/libvirt.so:
   undefined reference to `virPCIDeviceAddressParse'
   
This was caused by the new use of virPCIDeviceAddressParse in a
portion of virpci.c that wasn't linux-only (in commit 72c029d8). The
problem was that virPCIDeviceAddressParse had originally been defined
inside #ifdef _linux (because it was only used by another function
that was inside the same ifdef).
   
The solution is to move it out to the part of virpci.c that is
compiled on all platforms.
   
(Because the portion that was moved was 40-50 lines, but only moved
up by 15 lines, the diff for the patch is less than non-informative -
rather than showing that part that I moved, it shows the bit that was
previously before the moved part, and now sits *after* it.)


--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] Candidate release 2 for libvirt-1.1.0

2013-06-28 Thread Doug Goldstein
On Thu, Jun 27, 2013 at 9:46 PM, Doug Goldstein car...@gentoo.org wrote:



 On Thu, Jun 27, 2013 at 11:01 AM, Daniel Veillard veill...@redhat.comwrote:

I have just tagged the release candidate 2 in git and sent a tarball
 to the usual place (rpms are coming):
ftp://libvirt.org/libvirt/

 This includes the end of the patch set from Laine, and hopefully
 it won't require too many other patches. I tried it and it doesn't
 look obviously broken to me, please give it a try too, especially
 for portability :-)
 If all goes well the final release should be next Monday !

   thanks !

 Daniel

 --
 Daniel Veillard  | Open Source and Standards, Red Hat
 veill...@redhat.com  | libxml Gnome XML XSLT toolkit  http://xmlsoft.org/
 http://veillard.com/ | virtualization library  http://libvirt.org/

 --
 libvir-list mailing list
 libvir-list@redhat.com
 https://www.redhat.com/mailman/listinfo/libvir-list


 Not sure if this is a regression yet, but migrations are failing for me on
 git (currently running both machines at the v1.1.0_rc2 tag)

 virsh migrate --live --p2p --persistent --copy-storage-all expo
 qemu+tcp://cocacola/system
 error: Failed to open file '/var/lib/libvirt/images/expo.img': No such
 file or directory

 The error message is from the remote that the file isn't there. I was
 under the impression that a NBD starts up and streams the data over. It
 gives me an error to hint that if I can include --tunnelled in the options.

 Using qemu 1.4.2 for reference (its Cole's patchset for 1.4.2 from
 Fedora's qemu.git)

 --
 Doug Goldstein


Sorry for the noise. I apparently have an instance still running Michal's
patchset that provided that functionality on one of my machines without
realizing it.

-- 
Doug Goldstein
--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list

[libvirt] Candidate release 2 for libvirt-1.1.0

2013-06-27 Thread Daniel Veillard
   I have just tagged the release candidate 2 in git and sent a tarball
to the usual place (rpms are coming):
   ftp://libvirt.org/libvirt/

This includes the end of the patch set from Laine, and hopefully
it won't require too many other patches. I tried it and it doesn't
look obviously broken to me, please give it a try too, especially
for portability :-)
If all goes well the final release should be next Monday !

  thanks !

Daniel

-- 
Daniel Veillard  | Open Source and Standards, Red Hat
veill...@redhat.com  | libxml Gnome XML XSLT toolkit  http://xmlsoft.org/
http://veillard.com/ | virtualization library  http://libvirt.org/

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list


Re: [libvirt] Candidate release 2 for libvirt-1.1.0

2013-06-27 Thread Doug Goldstein
On Thu, Jun 27, 2013 at 11:01 AM, Daniel Veillard veill...@redhat.comwrote:

I have just tagged the release candidate 2 in git and sent a tarball
 to the usual place (rpms are coming):
ftp://libvirt.org/libvirt/

 This includes the end of the patch set from Laine, and hopefully
 it won't require too many other patches. I tried it and it doesn't
 look obviously broken to me, please give it a try too, especially
 for portability :-)
 If all goes well the final release should be next Monday !

   thanks !

 Daniel

 --
 Daniel Veillard  | Open Source and Standards, Red Hat
 veill...@redhat.com  | libxml Gnome XML XSLT toolkit  http://xmlsoft.org/
 http://veillard.com/ | virtualization library  http://libvirt.org/

 --
 libvir-list mailing list
 libvir-list@redhat.com
 https://www.redhat.com/mailman/listinfo/libvir-list


Not sure if this is a regression yet, but migrations are failing for me on
git (currently running both machines at the v1.1.0_rc2 tag)

virsh migrate --live --p2p --persistent --copy-storage-all expo
qemu+tcp://cocacola/system
error: Failed to open file '/var/lib/libvirt/images/expo.img': No such file
or directory

The error message is from the remote that the file isn't there. I was under
the impression that a NBD starts up and streams the data over. It gives me
an error to hint that if I can include --tunnelled in the options.

Using qemu 1.4.2 for reference (its Cole's patchset for 1.4.2 from Fedora's
qemu.git)

-- 
Doug Goldstein
--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list