Hello community,

here is the log from the commit of package virt-utils for openSUSE:12.1 checked 
in at 2011-10-29 08:01:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:12.1/virt-utils (Old)
 and      /work/SRC/openSUSE:12.1/.virt-utils.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "virt-utils", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:12.1/virt-utils/virt-utils.changes       2011-10-24 
13:32:06.000000000 +0200
+++ /work/SRC/openSUSE:12.1/.virt-utils.new/virt-utils.changes  2011-10-29 
08:01:43.000000000 +0200
@@ -1,0 +2,6 @@
+Fri Oct 28 14:39:33 MDT 2011 - [email protected]
+
+- Fix vpc file format.  The data offset field in the Dynamic Disk
+  Header was not correctly initialized.
+
+-------------------------------------------------------------------

New:
----
  qemu-img-vpc.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ virt-utils.spec ++++++
--- /var/tmp/diff_new_pack.Fqyu54/_old  2011-10-29 08:01:44.000000000 +0200
+++ /var/tmp/diff_new_pack.Fqyu54/_new  2011-10-29 08:01:44.000000000 +0200
@@ -33,6 +33,7 @@
 Source0:        qemu-0.15.0.tar.bz2
 Source1:        vm-snapshot-disk
 Patch1:         qemu-img-vmdk-scsi.patch
+Patch2:         qemu-img-vpc.patch
 Url:            http://www.qemu.org/
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
@@ -57,6 +58,7 @@
 %if %{?qemu_utils}0
 %setup -q -n qemu-0.15.0
 %patch1 -p1
+%patch2 -p1
 %endif
 
 %build

++++++ qemu-img-vpc.patch ++++++
Index: qemu-0.15.0/block/vpc.c
===================================================================
--- qemu-0.15.0.orig/block/vpc.c
+++ qemu-0.15.0/block/vpc.c
@@ -587,7 +587,7 @@ static int vpc_create(const char *filena
 
     memcpy(dyndisk_header->magic, "cxsparse", 8);
 
-    dyndisk_header->data_offset = be64_to_cpu(0xFFFFFFFF);
+    dyndisk_header->data_offset = be64_to_cpu(0xFFFFFFFFFFFFFFFF);
     dyndisk_header->table_offset = be64_to_cpu(3 * 512);
     dyndisk_header->version = be32_to_cpu(0x00010000);
     dyndisk_header->block_size = be32_to_cpu(block_size);
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to