From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=49425 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Oy4fB-0008IV-Bz for qemu-devel@nongnu.org; Tue, 21 Sep 2010 11:21:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Oy4f7-0005nk-3o for qemu-devel@nongnu.org; Tue, 21 Sep 2010 11:21:42 -0400 Received: from mx1.redhat.com ([209.132.183.28]:37771) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Oy4f6-0005nY-Rz for qemu-devel@nongnu.org; Tue, 21 Sep 2010 11:21:41 -0400 From: Kevin Wolf Date: Tue, 21 Sep 2010 17:21:42 +0200 Message-Id: <1285082522-24407-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PULL 00/20] Block patches List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org 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 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