From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=35401 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PTBdN-00066e-S5 for qemu-devel@nongnu.org; Thu, 16 Dec 2010 06:04:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PTBdM-0007qz-Dq for qemu-devel@nongnu.org; Thu, 16 Dec 2010 06:04:29 -0500 Received: from mx1.redhat.com ([209.132.183.28]:28486) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PTBdM-0007qq-5m for qemu-devel@nongnu.org; Thu, 16 Dec 2010 06:04:28 -0500 From: Jes.Sorensen@redhat.com Date: Thu, 16 Dec 2010 12:04:11 +0100 Message-Id: <1292497454-32573-1-git-send-email-Jes.Sorensen@redhat.com> Subject: [Qemu-devel] [PATCH v2 0/3] Re-factor img_create() and add live snapshots List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: kwolf@redhat.com Cc: qemu-devel@nongnu.org, armbru@redhat.com, stefanha@linux.vnet.ibm.com From: Jes Sorensen Hi, This set of patches re-factors img_create() and moves the core part of it into block.c so it can be accessed from qemu as well as qemu-img. The second patch adds basic live snapshots support to the code, however only snapshots to external QCOW2 images is supported for now. QED support should be trivial once the QED patches go into upstream. The last patch fixes a small gotcha which is present in the old code as well. Try to catch cases where a user tries to create an image with itself as the backing file. QEMU does 'interesting' things when you do this..... Many thanks to Kevin for his help with block layer internals! New in v2: - Fix error return value in monitor command - Clarify help message for command - Fix patch conflict against block tree. It's all Stefan's fault :) f8feb11f4d76f390dddc5cc5345abf99f7659a78 Cheers, Jes Jes Sorensen (3): qemu-img.c: Re-factor img_create() Introduce do_snapshot_blkdev() and monitor command to handle it. Prevent creating an image with the same filename as backing file block.c | 151 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ block.h | 4 ++ blockdev.c | 61 ++++++++++++++++++++++ blockdev.h | 1 + hmp-commands.hx | 19 +++++++ qemu-img.c | 108 +-------------------------------------- 6 files changed, 238 insertions(+), 106 deletions(-) -- 1.7.3.3