From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51659) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YVFsV-0007bk-JJ for qemu-devel@nongnu.org; Tue, 10 Mar 2015 04:51:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YVFsN-0007lz-Sv for qemu-devel@nongnu.org; Tue, 10 Mar 2015 04:51:02 -0400 Received: from mailhub.sw.ru ([195.214.232.25]:42374 helo=relay.sw.ru) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YVFsM-0007ia-O6 for qemu-devel@nongnu.org; Tue, 10 Mar 2015 04:50:55 -0400 From: "Denis V. Lunev" Date: Tue, 10 Mar 2015 11:50:54 +0300 Message-Id: <1425977481-13317-1-git-send-email-den@openvz.org> Subject: [Qemu-devel] [PATCH v3 0/27] write/create for Parallels images with reasonable performance List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Kevin Wolf , Roman Kagan , Jeff Cody , qemu-devel@nongnu.org, Stefan Hajnoczi , "Denis V. Lunev" This patchset provides an ability to create of/write to Parallels images and some testing of the new code. Reading and writings are optimized out and I expect the same or slightly better performance as qcow2. This patchset consists of not problematic part of the previous patchset aka [PATCH v4 0/16] parallels format support improvements and new write/create code but it does not contradict questionable code with XML handling there. Changes from v2: - read performance is almost doubled (up to 360 Mb/sec), write performance is improved by 15-20% - bat caching approach changed completely. bat_bitmap now contains the data in on-disk format, which allows to use this data for metadata cache - incorrect close detection code is added (inuse field in the header) - very basic check consistency code added Changes from v1: - patches 13-19 added, which boosts performance from 800 KiB/sec to near native performance Signed-off-by: Denis V. Lunev CC: Roman Kagan CC: Jeff Cody CC: Kevin Wolf CC: Stefan Hajnoczi P.S. This is definitely not for 2.3...