From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:57393) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qy7Ig-000160-J4 for qemu-devel@nongnu.org; Mon, 29 Aug 2011 15:15:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qy7If-00052p-Ay for qemu-devel@nongnu.org; Mon, 29 Aug 2011 15:15:14 -0400 Received: from mail-gw0-f45.google.com ([74.125.83.45]:58337) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qy7If-00052h-2s for qemu-devel@nongnu.org; Mon, 29 Aug 2011 15:15:13 -0400 Received: by gwb19 with SMTP id 19so5768855gwb.4 for ; Mon, 29 Aug 2011 12:15:12 -0700 (PDT) Message-ID: <4E5BE53C.60108@codemonkey.ws> Date: Mon, 29 Aug 2011 14:15:08 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1314629618-8308-1-git-send-email-kwolf@redhat.com> In-Reply-To: <1314629618-8308-1-git-send-email-kwolf@redhat.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL 00/30] Block patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kevin Wolf Cc: qemu-devel@nongnu.org On 08/29/2011 09:53 AM, Kevin Wolf wrote: > 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 Applied. Thanks. Regards, Anthony Liguori > > 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(-) > >