The following changes since commit 30eaca3acdf17d7bcbd1213eb149c02037edfb0b:
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Ă (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 test 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 -- 1.9.3