From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=53212 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OyBhO-0008Ea-Cv for qemu-devel@nongnu.org; Tue, 21 Sep 2010 18:52:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OyBhM-0003hc-VH for qemu-devel@nongnu.org; Tue, 21 Sep 2010 18:52:30 -0400 Received: from mail-iw0-f173.google.com ([209.85.214.173]:44724) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OyBhM-0003hY-Ps for qemu-devel@nongnu.org; Tue, 21 Sep 2010 18:52:28 -0400 Received: by iwn38 with SMTP id 38so5937544iwn.4 for ; Tue, 21 Sep 2010 15:52:27 -0700 (PDT) Message-ID: <4C99370F.6060909@codemonkey.ws> Date: Tue, 21 Sep 2010 17:51:59 -0500 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PULL 00/20] Block patches References: <1285082522-24407-1-git-send-email-kwolf@redhat.com> In-Reply-To: <1285082522-24407-1-git-send-email-kwolf@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kevin Wolf Cc: qemu-devel@nongnu.org On 09/21/2010 10:21 AM, Kevin Wolf wrote: > The following changes since commit a287916c712b0c57a97cd35c663c5e7ba061bc7e: > > Merge remote branch 'mst/for_anthony' into staging (2010-09-20 13:22:20 -0500) > > are available in the git repository at: > > git://repo.or.cz/qemu/kevin.git for-anthony > Pulled. Thanks. Regards, Anthony Liguori > Bernhard Kohl (2): > scsi-generic: add missing reset handler > scsi_bus: fix length and xfer_mode for RESERVE and RELEASE commands > > Christoph Hellwig (5): > use qemu_blockalign consistently > raw-posix: handle> 512 byte alignment correctly > virtio-blk: propagate the required alignment > scsi-disk: propagate the required alignment > ide: propagate the required alignment > > Kevin Wolf (10): > vvfat: Fix segfault on write to read-only disk > vvfat: Fix double free for opening the image rw > vvfat: Use cache=unsafe > qcow2: Move sync out of write_refcount_block_entries > qcow2: Move sync out of update_refcount > qcow2: Move sync out of qcow2_alloc_clusters > qcow2: Get rid of additional sync on COW > cutils: qemu_iovec_copy and qemu_iovec_memset > qcow2: Avoid bounce buffers for AIO read requests > qcow2: Avoid bounce buffers for AIO write requests > > Laurent Vivier (2): > Improve qemu-nbd performance by 4400 % > nbd: correctly manage default port > > Stefan Hajnoczi (1): > blkverify: Add block driver for verifying I/O > > Makefile.objs | 2 +- > block/blkverify.c | 382 ++++++++++++++++++++++++++++++++++++++++++++++++ > block/nbd.c | 2 - > block/qcow2-cluster.c | 19 ++- > block/qcow2-refcount.c | 13 ++- > block/qcow2-snapshot.c | 2 + > block/qcow2.c | 115 +++++++++------ > block/qcow2.h | 4 +- > block/raw-posix.c | 79 ++++++---- > block/vvfat.c | 26 +++- > cutils.c | 50 +++++- > docs/blkverify.txt | 69 +++++++++ > hw/ide/core.c | 4 +- > hw/scsi-bus.c | 3 +- > hw/scsi-disk.c | 10 +- > hw/scsi-generic.c | 21 +++- > hw/sd.c | 2 +- > hw/virtio-blk.c | 1 + > nbd.c | 25 +++- > posix-aio-compat.c | 2 +- > qemu-common.h | 3 + > qemu-io.c | 2 +- > qemu-nbd.c | 8 +- > 23 files changed, 721 insertions(+), 123 deletions(-) > create mode 100644 block/blkverify.c > create mode 100644 docs/blkverify.txt > > >