From patchwork Mon Aug 29 14:53:08 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Wolf X-Patchwork-Id: 112071 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 9922EB6F8E for ; Tue, 30 Aug 2011 00:51:03 +1000 (EST) Received: from localhost ([::1]:53116 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qy3As-0007Zl-C4 for incoming@patchwork.ozlabs.org; Mon, 29 Aug 2011 10:50:54 -0400 Received: from eggs.gnu.org ([140.186.70.92]:50168) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qy3Ak-0007ZZ-8Z for qemu-devel@nongnu.org; Mon, 29 Aug 2011 10:50:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qy3Ai-0000V0-Uw for qemu-devel@nongnu.org; Mon, 29 Aug 2011 10:50:46 -0400 Received: from mx1.redhat.com ([209.132.183.28]:21600) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qy3Ai-0000Uo-Nh for qemu-devel@nongnu.org; Mon, 29 Aug 2011 10:50:44 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p7TEogKP025193 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 29 Aug 2011 10:50:42 -0400 Received: from dhcp-5-188.str.redhat.com (dhcp-5-175.str.redhat.com [10.32.5.175]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p7TEoecc021975; Mon, 29 Aug 2011 10:50:40 -0400 From: Kevin Wolf To: anthony@codemonkey.ws Date: Mon, 29 Aug 2011 16:53:08 +0200 Message-Id: <1314629618-8308-1-git-send-email-kwolf@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: kwolf@redhat.com, qemu-devel@nongnu.org Subject: [Qemu-devel] [PULL 00/30] Block patches X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The following changes since commit b861b7419c49ad53e786062b4fbf6da53468f130: xilinx: removed microbalze_pic_init from xilinx.h (2011-08-22 23:29:37 +0200) are available in the git repository at: git://repo.or.cz/qemu/kevin.git for-anthony Aneesh Kumar K.V (1): coroutine: Add CoRwlock support Avi Kivity (1): posix-aio-compat: fix latency issues Christoph Hellwig (3): block: include flush requests in info blockstats block: explicit I/O accounting block: latency accounting Devin Nakamura (1): qcow2: fix typo in documentation for qcow2_get_cluster_offset() Frediano Ziglio (15): qcow/qcow2: Allocate QCowAIOCB structure using stack qcow: QCowAIOCB field cleanup qcow: move some blocks of code to avoid useless variable initialization qcow: Remove QCowAIOCB qcow: remove old #undefined code qcow2: Removed unused AIOCB fields qcow2: removed cur_nr_sectors field in QCowAIOCB qcow2: remove l2meta from QCowAIOCB qcow2: remove cluster_offset from QCowAIOCB qcow2: remove common from QCowAIOCB qcow2: reindent and use while before the big jump qcow2: Removed QCowAIOCB entirely qcow2: remove memory leak qcow2: use always stderr for debugging qcow2: remove unused qcow2_create_refcount_update function Kevin Wolf (2): qemu-img: Use qemu_blockalign qemu-img: Require larger zero areas for sparse handling MORITA Kazutaka (1): sheepdog: use coroutines Nicholas Thomas (1): block/curl: Handle failed reads gracefully. Philipp Hahn (1): qcow2: Fix DEBUG_* compilation Scott Wood (1): qcow: initialize coroutine mutex Stefan Hajnoczi (3): block: parse cache mode flags in a single place block: add cache=directsync parameter to -drive qemu-img: print error codes when convert fails block.c | 97 +++++++++--- block.h | 19 +++ block/curl.c | 20 +++- block/qcow.c | 380 ++++++++++++++----------------------------- block/qcow2-cluster.c | 6 +- block/qcow2-refcount.c | 22 +--- block/qcow2-snapshot.c | 15 ++- block/qcow2.c | 418 ++++++++++++++++++++---------------------------- block/qcow2.h | 2 - block/sheepdog.c | 150 +++++++++++------- block_int.h | 8 +- blockdev.c | 15 +-- hw/ide/ahci.c | 9 + hw/ide/ahci.h | 1 + hw/ide/atapi.c | 29 +++- hw/ide/core.c | 27 +++- hw/ide/internal.h | 1 + hw/ide/macio.c | 40 ++++-- hw/scsi-disk.c | 17 ++ hw/virtio-blk.c | 20 ++- hw/xen_disk.c | 5 + posix-aio-compat.c | 44 +++++- qemu-config.c | 3 +- qemu-coroutine-lock.c | 44 +++++ qemu-coroutine.h | 32 ++++ qemu-img-cmds.hx | 4 +- qemu-img.c | 116 +++++++++----- qemu-img.texi | 7 +- qemu-options.hx | 8 +- qmp-commands.hx | 24 +++ 30 files changed, 887 insertions(+), 696 deletions(-)