From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44283) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V93Ia-0005CQ-1b for qemu-devel@nongnu.org; Mon, 12 Aug 2013 21:21:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V93IU-0008K6-24 for qemu-devel@nongnu.org; Mon, 12 Aug 2013 21:21:23 -0400 Received: from mx1.redhat.com ([209.132.183.28]:2646) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V93IT-0008Jw-R7 for qemu-devel@nongnu.org; Mon, 12 Aug 2013 21:21:17 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r7D1LG3X003900 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 12 Aug 2013 21:21:16 -0400 From: Fam Zheng Date: Tue, 13 Aug 2013 09:21:05 +0800 Message-Id: <1376356869-19417-1-git-send-email-famz@redhat.com> Subject: [Qemu-devel] [PATCH v2 0/4] vmdk: Support ESX files List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, pbonzini@redhat.com, jcody@redhat.com, famz@redhat.com, stefanha@redhat.com This series add support for VMFS and VMFSSPARSE extents, these types are found in description file from ESX hosts. - VMFS is in monolithiFlat format (raw), but hosted in ESX. - VMFSSPARSE is the format we call "vmdk3" with magic bytes "COWD". There's no reason to open a image of the same type (same magic bytes and same header) in two different ways, my judgement is the (old) code need to be fixed, as it doesn't follow the latest spec any more, and AFAIK this ESX server sparse is its only use case. This series fixes the opening of vmdk3 and rename it to vmdk_open_vmfs_sparse which is better representing its main usage nowadays. Fam Zheng (3): vmdk: fix L1 and L2 table size in vmdk3 open vmdk: support vmfsSparse files vmdk: Move l1_size check into vmdk_add_extent() Paolo Bonzini (1): vmdk: support vmfs files block/vmdk.c | 52 +++++++++++++++++++++++++++------------------------- 1 file changed, 27 insertions(+), 25 deletions(-) -- 1.8.3.1