From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:56661) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1STwnp-0000YR-HY for qemu-devel@nongnu.org; Mon, 14 May 2012 11:03:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1STwni-0008VP-W9 for qemu-devel@nongnu.org; Mon, 14 May 2012 11:03:13 -0400 Received: from mail-ob0-f173.google.com ([209.85.214.173]:56961) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1STwni-0008Jg-Qz for qemu-devel@nongnu.org; Mon, 14 May 2012 11:03:06 -0400 Received: by mail-ob0-f173.google.com with SMTP id wd20so9290624obb.4 for ; Mon, 14 May 2012 08:03:06 -0700 (PDT) Message-ID: <4FB11EA7.50705@codemonkey.ws> Date: Mon, 14 May 2012 10:03:03 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1336650574-12835-1-git-send-email-kwolf@redhat.com> In-Reply-To: <1336650574-12835-1-git-send-email-kwolf@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL 00/30] Block patches for 1.1 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kevin Wolf Cc: qemu-devel@nongnu.org On 05/10/2012 06:49 AM, Kevin Wolf wrote: > The following changes since commit 1b3e76ebd1e270eae27e502ea8b836c31d95f801: > > tcg/ppc: Fix CONFIG_TCG_PASS_AREG0 mode (2012-05-09 13:59:19 -0500) > > are available in the git repository at: > git://repo.or.cz/qemu/kevin.git for-anthony > Pulled. With the addition of a small fixup that we discussed on IRC. Regards, Anthony Liguori > Kevin Wolf (3): > qtest: Add function to send QMP commands > qtest: Add floppy test > tests/Makefile: Add missing $(EXESUF) > > Paolo Bonzini (26): > block: add mode argument to blockdev-snapshot-sync > block: fail live snapshot if disk has no medium > block: push bdrv_change_backing_file error checking up from drivers > block: update in-memory backing file and format > block: open backing file as read-only when probing for size > block: fix allocation size for dirty bitmap > qemu-iotests: strip spaces from qemu-img/qemu-io/qemu command lines > block: fix snapshot on QED > block: another bdrv_append fix > block: do not reuse the backing file across bdrv_close/bdrv_open > block: fully delete bs->file when closing > block: add block_job_sleep_ns > block: wait for job callback in block_job_cancel_sync > block: simplify path_is_absolute > block: protect path_has_protocol from filenames with colons > block: move field reset from bdrv_open_common to bdrv_close > qemu-img: make "info" backing file output correct and easier to use > qemu-io: correctly print non-integer values as decimals > qemu-io: fix the alloc command > stream: fix sectors not allocated test > stream: add testcase for partial streaming > stream: pass new base image format to bdrv_change_backing_file > stream: fix HMP block_job_set_speed > stream: fix ratelimiting corner case > stream: do not copy unallocated sectors from the base > declare ECANCELED on all machines > > Zhi Yong Wu (1): > block: add the support to drain throttled requests > > block.c | 176 ++- > block.h | 2 + > block/qcow2.c | 5 - > block/qed.c | 7 + > block/stream.c | 76 +- > block/vvfat.c | 7 + > block_int.h | 34 +- > blockdev.c | 9 +- > cmd.c | 40 +- > hmp.c | 2 +- > qemu-common.h | 3 + > qemu-img.c | 12 +- > qemu-io.c | 10 +- > qmp-commands.hx | 2 +- > tests/Makefile | 4 +- > tests/fdc-test.c | 195 +++ > tests/libqtest.c | 123 ++- > tests/libqtest.h | 17 + > tests/qemu-iotests/002.out | 4 +- > tests/qemu-iotests/012.out | 2 +- > tests/qemu-iotests/016.out | 12 +- > tests/qemu-iotests/017.out | 1024 ++++++++-------- > tests/qemu-iotests/018.out | 1024 ++++++++-------- > tests/qemu-iotests/019.out | 1536 +++++++++++----------- > tests/qemu-iotests/020.out | 1024 ++++++++-------- > tests/qemu-iotests/023.out | 2880 ++++++++++++++++++++-------------------- > tests/qemu-iotests/027.out | 2 +- > tests/qemu-iotests/028.out | 448 ++++---- > tests/qemu-iotests/030 | 34 +- > tests/qemu-iotests/030.out | 4 +- > tests/qemu-iotests/033.out | 6 +- > tests/qemu-iotests/035.out | 384 +++--- > tests/qemu-iotests/iotests.py | 16 +- > 33 files changed, 4777 insertions(+), 4347 deletions(-) > create mode 100644 tests/fdc-test.c > >