From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MGWwF-0006E6-5H for qemu-devel@nongnu.org; Tue, 16 Jun 2009 07:34:51 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MGWwA-0006Co-Sf for qemu-devel@nongnu.org; Tue, 16 Jun 2009 07:34:50 -0400 Received: from [199.232.76.173] (port=36180 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MGWwA-0006Cl-8o for qemu-devel@nongnu.org; Tue, 16 Jun 2009 07:34:46 -0400 Received: from mx2.redhat.com ([66.187.237.31]:50408) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MGWw9-0008Aj-HV for qemu-devel@nongnu.org; Tue, 16 Jun 2009 07:34:45 -0400 From: Kevin Wolf Date: Tue, 16 Jun 2009 13:33:38 +0200 Message-Id: <1245152018-30098-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] qcow2 patch queue List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: aliguori@us.ibm.com Cc: Kevin Wolf , qemu-devel@nongnu.org Hi Anthony, I have pushed my recent qcow2 patches to a public git now, so you can pull it from there. As they depend on the qcow2 split, it is also included, even though it's in your queue already. The following changes since commit 72716184aae06fe24a49f11abca384e1b0de5d69: Anthony Liguori (1): Incorporate changes from v2 of Gleb's RTC reset patch are available in the git repository at: git://repo.or.cz/qemu/kevin.git to-upstream Kevin Wolf (8): qcow2: Split out refcount handling qcow2: Split out guest cluster functions qcow2: Split out snapshot functions qcow2: Rename global functions qcow2: l2_allocate: Write complete sectors qcow2: alloc_cluster_link_l2: Write complete sectors qcow2: update_refcount: Write complete sectors qcow2: Change default cluster size to 64k Makefile | 4 +- block/qcow2-cluster.c | 800 +++++++++++++++++++ block/qcow2-refcount.c | 858 ++++++++++++++++++++ block/qcow2-snapshot.c | 405 ++++++++++ block/qcow2.c | 2083 +----------------------------------------------- block/qcow2.h | 203 +++++ 6 files changed, 2301 insertions(+), 2052 deletions(-) create mode 100644 block/qcow2-cluster.c create mode 100644 block/qcow2-refcount.c create mode 100644 block/qcow2-snapshot.c create mode 100644 block/qcow2.h