From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:36595) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2qja-0000vy-9K for qemu-devel@nongnu.org; Wed, 29 Feb 2012 16:06:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S2qjU-0007Ff-S0 for qemu-devel@nongnu.org; Wed, 29 Feb 2012 16:06:49 -0500 Received: from mail-pz0-f46.google.com ([209.85.210.46]:47582) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2qjU-0007FE-LD for qemu-devel@nongnu.org; Wed, 29 Feb 2012 16:06:44 -0500 Received: by dajr28 with SMTP id r28so1023204daj.33 for ; Wed, 29 Feb 2012 13:06:42 -0800 (PST) Message-ID: <4F4E935B.2070705@codemonkey.ws> Date: Wed, 29 Feb 2012 15:06:35 -0600 From: Anthony Liguori MIME-Version: 1.0 References: <1330528688-21996-1-git-send-email-kwolf@redhat.com> In-Reply-To: <1330528688-21996-1-git-send-email-kwolf@redhat.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PULL 00/27] Block patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kevin Wolf Cc: qemu-devel@nongnu.org On 02/29/2012 09:17 AM, Kevin Wolf wrote: > The following changes since commit b55c952aea6de024bf1a06357b49367fba045443: > > Merge remote-tracking branch 'aneesh/for-upstream' into staging (2012-02-27 11:19:27 -0600) > > are available in the git repository at: > > git://repo.or.cz/qemu/kevin.git for-anthony Pulled. Thanks. Regards, Anthony Liguori > > Hervé Poussineau (10): > fdc: take side count into account > fdc: set busy bit when starting a command > fdc: most control commands do not generate interrupts > fdc: handle read-only floppies (abort early on write commands) > fdc: add CCR (Configuration Control Register) write register > block: add a transfer rate for floppy types > fdc: add a 'check media rate' property. Not used yet > fdc: check if media rate is correct before doing any transfer > fdc: fix seek command, which shouldn't check tracks > fdc: DIR (Digital Input Register) should return status of current drive... > > Jeff Cody (2): > qapi: Introduce blockdev-group-snapshot-sync command > QMP: Add qmp command for blockdev-group-snapshot-sync > > Kevin Wolf (6): > qcow2: Fix build with DEBUG_EXT enabled > qcow2: Fix offset in qcow2_read_extensions > qcow2: Reject too large header extensions > qemu-iotests: Filter out DOS line endings > qemu-iotests: 026: Reduce output changes for cache=none qcow2 > qemu-iotests: Test rebase with short backing file > > Paolo Bonzini (3): > ide: fail I/O to empty disk > block: remove unused fields in BlockDriverState > block: drop aio_multiwrite in BlockDriver > > Stefan Hajnoczi (4): > qemu-iotests: export TEST_DIR for non-bash tests > qemu-iotests: add iotests Python module > test: add image streaming tests > qemu-tool: revert cpu_get_clock() abort(3) > > Zhi Yong Wu (2): > qemu-io: fix segment fault when the image format is qed > qemu-img: fix segment fault when the image format is qed > > block.c | 178 ++++++++++++++++++++++++++------------ > block.h | 11 ++- > block/qcow2.c | 11 ++- > block_int.h | 17 ++--- > blockdev.c | 131 ++++++++++++++++++++++++++++ > hw/fdc.c | 142 ++++++++++++++++++++++++------ > hw/ide/core.c | 24 ++++- > hw/pc.c | 3 +- > hw/pc_piix.c | 28 ++++++ > qapi-schema.json | 38 ++++++++ > qemu-img.c | 2 + > qemu-io.c | 2 + > qemu-tool.c | 2 +- > qmp-commands.hx | 39 ++++++++ > tests/qemu-iotests/026 | 6 ++ > tests/qemu-iotests/028 | 5 + > tests/qemu-iotests/028.out | 1 + > tests/qemu-iotests/030 | 151 ++++++++++++++++++++++++++++++++ > tests/qemu-iotests/030.out | 5 + > tests/qemu-iotests/check | 4 +- > tests/qemu-iotests/common.config | 2 + > tests/qemu-iotests/common.filter | 8 ++- > tests/qemu-iotests/group | 1 + > tests/qemu-iotests/iotests.py | 164 +++++++++++++++++++++++++++++++++++ > 24 files changed, 868 insertions(+), 107 deletions(-) > create mode 100755 tests/qemu-iotests/030 > create mode 100644 tests/qemu-iotests/030.out > create mode 100644 tests/qemu-iotests/iotests.py > >