From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45754) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPw9H-0003dd-9X for qemu-devel@nongnu.org; Fri, 05 Sep 2014 12:14:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XPw9C-0005lf-CU for qemu-devel@nongnu.org; Fri, 05 Sep 2014 12:14:07 -0400 Received: from mx1.redhat.com ([209.132.183.28]:20986) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPw9C-0005lJ-5T for qemu-devel@nongnu.org; Fri, 05 Sep 2014 12:14:02 -0400 From: Stefan Hajnoczi Date: Fri, 5 Sep 2014 17:13:28 +0100 Message-Id: <1409933634-11331-1-git-send-email-stefanha@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: qemu-devel@nongnu.org Cc: Peter Maydell , Stefan Hajnoczi The following changes since commit 30eaca3acdf17d7bcbd1213eb149c02037edfb= 0b: Merge remote-tracking branch 'remotes/spice/tags/pull-spice-20140902-1'= into staging (2014-09-02 10:26:10 +0100) are available in the git repository at: git://github.com/stefanha/qemu.git tags/block-pull-request for you to fetch changes up to 804b985da5f781a2ff0a723c1aae520b9ea95f27: ide: Add resize callback to ide/core (2014-09-05 10:38:56 +0100) ---------------------------------------------------------------- Block pull request ---------------------------------------------------------------- Chrysostomos Nanakos (1): block/archipelago: Use QEMU atomic builtins Fam Zheng (2): virtio: Import virtio_vring.h block: Always compile virtio-blk dataplane John Snow (5): libqos: add a simple first-fit memory allocator qtest/ide: Uninitialize PC allocator ide: Add wwn support to IDE-ATAPI drive IDE: Fill the IDENTIFY request consistently ide: Add resize callback to ide/core Laszlo Ersek (2): pflash_cfi01: fixup stale DPRINTF() calls pflash_cfi01: write flash contents to bdrv on incoming migration Liu Yuan (1): block: kill tail whitespace in block.c MORITA Kazutaka (1): MAINTAINERS: update sheepdog maintainer Marc Mar=C3=AD (7): tests: Functions bus_foreach and device_find from libqos virtio API tests: Add virtio device initialization libqos: Added basic virtqueue support to virtio implementation libqos: Added indirect descriptor support to virtio implementation libqos: Added test case for configuration changes in virtio-blk tes= t libqos: Added MSI-X support libqos: Added EVENT_IDX support Peter Lieven (3): rename parse_enum_option to qapi_enum_parse and make it public qemu-nbd: add option to set detect-zeroes mode qemu-nbd: fix indentation and coding style Stefan Hajnoczi (4): qemu-img: clarify src_cache option documentation qemu-img: fix rebase src_cache option documentation vmdk: fix vmdk_parse_extents() extent_file leaks vmdk: fix buf leak in vmdk_parse_extents() MAINTAINERS | 2 +- block.c | 2 +- block/archipelago.c | 76 ++--- block/vmdk.c | 4 +- blockdev.c | 30 +- configure | 21 +- hw/block/Makefile.objs | 2 +- hw/block/pflash_cfi01.c | 18 +- hw/block/virtio-blk.c | 20 +- hw/ide/core.c | 111 +++++-- hw/net/vhost_net.c | 2 +- hw/virtio/Makefile.objs | 2 +- include/hw/virtio/dataplane/vring.h | 2 +- include/hw/virtio/virtio-blk.h | 2 - include/hw/virtio/virtio_ring.h | 167 ++++++++++ include/qapi/util.h | 17 + linux-headers/linux/vhost.h | 2 +- qapi/Makefile.objs | 2 +- qapi/qapi-util.c | 34 ++ qemu-img.c | 3 +- qemu-img.texi | 7 +- qemu-nbd.c | 100 ++++-- tests/Makefile | 3 +- tests/ide-test.c | 2 + tests/libqos/malloc-pc.c | 280 +++++++++++++++- tests/libqos/malloc-pc.h | 9 + tests/libqos/pci.c | 111 ++++++- tests/libqos/pci.h | 10 + tests/libqos/virtio-pci.c | 343 +++++++++++++++++++ tests/libqos/virtio-pci.h | 61 ++++ tests/libqos/virtio.c | 257 +++++++++++++++ tests/libqos/virtio.h | 182 ++++++++++ tests/libqtest.c | 48 +++ tests/libqtest.h | 7 + tests/virtio-blk-test.c | 640 ++++++++++++++++++++++++++++++= +++++- 35 files changed, 2368 insertions(+), 211 deletions(-) create mode 100644 include/hw/virtio/virtio_ring.h create mode 100644 include/qapi/util.h create mode 100644 qapi/qapi-util.c create mode 100644 tests/libqos/virtio-pci.c create mode 100644 tests/libqos/virtio-pci.h create mode 100644 tests/libqos/virtio.c create mode 100644 tests/libqos/virtio.h --=20 1.9.3