commit virt-utils for openSUSE:Factory
Hello community, here is the log from the commit of package virt-utils for openSUSE:Factory checked in at 2011-10-29 08:01:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/virt-utils (Old) and /work/SRC/openSUSE:Factory/.virt-utils.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "virt-utils", Maintainer is "BROGERS@suse.com" Changes: -------- --- /work/SRC/openSUSE:Factory/virt-utils/virt-utils.changes 2011-09-23 12:49:54.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.virt-utils.new/virt-utils.changes 2011-10-29 08:01:38.000000000 +0200 @@ -1,0 +2,6 @@ +Fri Oct 28 14:39:33 MDT 2011 - carnold@novell.com + +- 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.y6b2OA/_old 2011-10-29 08:01:39.000000000 +0200 +++ /var/tmp/diff_new_pack.y6b2OA/_new 2011-10-29 08:01:39.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: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de