From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60685) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XjTRM-0006xN-79 for qemu-devel@nongnu.org; Wed, 29 Oct 2014 09:37:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XjTRH-0004b9-9F for qemu-devel@nongnu.org; Wed, 29 Oct 2014 09:37:32 -0400 Received: from mailhub.sw.ru ([195.214.232.25]:43850 helo=relay.sw.ru) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XjTRG-0004Ac-Rn for qemu-devel@nongnu.org; Wed, 29 Oct 2014 09:37:27 -0400 From: "Denis V. Lunev" Date: Wed, 29 Oct 2014 16:38:05 +0300 Message-Id: <1414589891-32736-1-git-send-email-den@openvz.org> Subject: [Qemu-devel] [PATCH v2 0/6] parallels format support improvements List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Kevin Wolf , Jeff Cody , qemu-devel@nongnu.org, Stefan Hajnoczi , Roman Kagan The patchset implements additional compatibility bits for Parallels format: - initial support of parsing of Parallels DiskDeskriptor.xml Typically Parallels disk bundle consists of several images which are glued by XML disk descriptor. Also XML hides inside several important parameters which are not available in the image header. - support for padded Parallels images. For the time being Parallels was created an optimization for such OSes in its desktop product. Desktop users are not qualified enough to create properly aligned installations. Thus Parallels makes a blind guess on a customer behalf and creates so-called "padded" images if guest OS type is specified as WinXP, Win2k and Win2k3. The code uses approach from VMDK support, either image or XML descriptor could be used. Though there is temporary hack in the opening code: BlockDriverState->file is being reopened inside parallels_open. I prefer to keep this code in this state till proper Parallels snapshots support in order to minimize current changes. Changes from v1: - dropped already merged part (original patches 1-3) CC: Jeff Cody CC: Kevin Wolf CC: Stefan Hajnoczi CC: Roman Kagan