From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59842) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYhzs-0007ms-5L for qemu-devel@nongnu.org; Wed, 14 Nov 2012 13:47:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TYhzp-0000Pv-3H for qemu-devel@nongnu.org; Wed, 14 Nov 2012 13:47:36 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55362) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYhzo-0000Pj-S4 for qemu-devel@nongnu.org; Wed, 14 Nov 2012 13:47:33 -0500 From: Kevin Wolf Date: Wed, 14 Nov 2012 19:47:01 +0100 Message-Id: <1352918847-3696-1-git-send-email-kwolf@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 00/26] Block patches List-Id: 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 ce34cf72fe508b27a78f83c184142e8d1e6a04= 8a: Merge remote-tracking branch 'awilliam/tags/vfio-pci-for-qemu-1.3.0-rc0= ' into staging (2012-11-14 08:53:40 -0600) are available in the git repository at: git://repo.or.cz/qemu/kevin.git for-anthony Bharata B Rao (1): qemu: Document GlusterFS block driver usage Gerhard Wiesinger (1): vmdk: Fix data corruption bug in WRITE and READ handling Herv=C3=A9 Poussineau (12): fdc-test: split test_media_change() test, so insert part can be reu= sed fdc-test: insert media before fuzzing registers fdc-test: add tests for non-DMA READ command fdc: use status0 field instead of a local variable fdc: fix FD_SR0_SEEK for non-DMA transfers and multi sectors transf= ers fdc: fix FD_SR0_SEEK for initial seek on DMA transfers fdc: fix false FD_SR0_SEEK fdc: implement VERIFY command fdc-tests: add tests for VERIFY command fdc: remove double affectation of FD_MSR_CMDBUSY flag fdc: fix typo in zero constant fdc: remove last usage of FD_STATE_SEEK Kevin Wolf (6): qcow2: Fix refcount table size calculation qemu-iotests: qcow2: Test growing large refcount table fdc: Remove status0 parameter from fdctrl_set_fifo() fdc-test: Check READ ID megasas: Use bdrv_drain_all instead of qemu_aio_flush qemu-io: Use bdrv_drain_all instead of qemu_aio_flush Nick Thomas (1): tests: allow qemu-iotests to be run against nbd backend Stefan Hajnoczi (4): MAINTAINERS: add Stefan Hajnoczi as block and virtio-blk co-maintai= ner aio: switch aiocb_size type int -> size_t aio: use g_slice_alloc() for AIOCB pooling aio: rename AIOPool to AIOCBInfo Stefan Weil (1): block: Workaround for older versions of MinGW gcc MAINTAINERS | 2 + block.c | 31 +++---- block/blkdebug.c | 4 +- block/blkverify.c | 4 +- block/curl.c | 4 +- block/gluster.c | 6 +- block/iscsi.c | 12 +- block/linux-aio.c | 4 +- block/qcow2-refcount.c | 3 +- block/qed.c | 4 +- block/rbd.c | 4 +- block/sheepdog.c | 4 +- block/vmdk.c | 10 ++- block/win32-aio.c | 14 ++-- dma-helpers.c | 4 +- hw/fdc.c | 121 +++++++++++++----------- hw/ide/core.c | 4 +- hw/megasas.c | 2 +- qemu-aio.h | 12 +-- qemu-doc.texi | 49 ++++++++++ qemu-io.c | 2 +- qemu-options.hx | 17 ++++ tests/fdc-test.c | 192 ++++++++++++++++++++++++++++++++= +++++- tests/qemu-iotests/044 | 117 +++++++++++++++++++++++ tests/qemu-iotests/044.out | 6 + tests/qemu-iotests/common | 13 ++- tests/qemu-iotests/common.config | 10 +- tests/qemu-iotests/common.rc | 23 +++++- tests/qemu-iotests/group | 1 + tests/qemu-iotests/iotests.py | 6 +- tests/qemu-iotests/qcow2.py | 9 +- thread-pool.c | 4 +- 32 files changed, 556 insertions(+), 142 deletions(-) create mode 100755 tests/qemu-iotests/044 create mode 100644 tests/qemu-iotests/044.out