The following changes since commit e2da502c003b9a91b4aea7684959192bd07c1f1d:
Merge remote-tracking branch 'remotes/otubo/seccomp' into staging (2014-04-28 14:14:35 +0100) are available in the git repository at: git://repo.or.cz/qemu/kevin.git tags/for-upstream for you to fetch changes up to b7079df4100069959f4e9d90d5cb5ba7d4ebbf1a: curl: Fix hang reading from slow connections (2014-04-30 16:34:21 +0200) ---------------------------------------------------------------- Block patches ---------------------------------------------------------------- Fam Zheng (3): mirror: Use DIV_ROUND_UP mirror: Fix resource leak when bdrv_getlength fails mirror: Check for bdrv_get_info result Jeff Cody (5): block: fix qemu-img --help invocation block: Add '--version' option to qemu-img block: Ignore duplicate or NULL format_name in bdrv_iterate_format block: qemu-iotests - fix image cleanup when using spaced pathnames block: qemu-iotests: make test 019 and 086 work with spaced pathnames Kevin Wolf (6): block: Create bdrv_inherited_flags() block: Create bdrv_backing_flags() block: Remove BDRV_O_COPY_ON_READ for bs->file block: Unlink temporary files in raw-posix/win32 Revert "block: another bdrv_append fix" block: Fix open_flags in bdrv_reopen() Matthew Booth (8): curl: Fix long line curl: Remove unnecessary use of goto curl: Fix return from curl_read_cb with invalid state curl: Remove erroneous sleep waiting for curl completion curl: Remove unnecessary explicit calls to internal event handler curl: Eliminate unnecessary use of curl_multi_socket_all curl: Ensure all informationals are checked for completion curl: Fix hang reading from slow connections Max Reitz (9): qcow2: Fix discard iotests: Discarding compressed clusters on qcow2 block: Use error_abort in bdrv_image_info_specific_dump() qcow2: Avoid overflow in alloc_clusters_noref() block: Use correct width in format strings qcow2: Catch bdrv_getlength() error qcow2: Check min_size in qcow2_grow_l1_table() block/bochs: Fix error handling for seek_to_sector() block/vdi: Error out immediately in vdi_create() block.c | 108 ++++++++++++++++++++---------- block/bochs.c | 23 ++++--- block/cow.c | 2 +- block/curl.c | 153 ++++++++++++++++++++++--------------------- block/dmg.c | 8 +-- block/mirror.c | 11 ++-- block/qapi.c | 3 +- block/qcow.c | 3 +- block/qcow2-cluster.c | 33 +++++++--- block/qcow2-refcount.c | 12 ++++ block/qcow2.c | 12 ++-- block/raw-posix.c | 5 +- block/raw-win32.c | 3 + block/sheepdog.c | 6 +- block/vdi.c | 28 ++++---- include/block/block.h | 1 + include/block/block_int.h | 1 - qemu-img.c | 26 ++++++-- tests/qemu-iotests/019 | 2 +- tests/qemu-iotests/086 | 8 +-- tests/qemu-iotests/090 | 61 +++++++++++++++++ tests/qemu-iotests/090.out | 12 ++++ tests/qemu-iotests/common.rc | 4 +- tests/qemu-iotests/group | 1 + 24 files changed, 355 insertions(+), 171 deletions(-) create mode 100755 tests/qemu-iotests/090 create mode 100644 tests/qemu-iotests/090.out