From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:42117) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S7HOc-0008HT-E7 for qemu-devel@nongnu.org; Mon, 12 Mar 2012 22:23:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S7HOa-00065e-Iz for qemu-devel@nongnu.org; Mon, 12 Mar 2012 22:23:29 -0400 Received: from mail-gy0-f173.google.com ([209.85.160.173]:51916) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S7HOa-00065R-Em for qemu-devel@nongnu.org; Mon, 12 Mar 2012 22:23:28 -0400 Received: by ghrr14 with SMTP id r14so67190ghr.4 for ; Mon, 12 Mar 2012 19:23:27 -0700 (PDT) Message-ID: <4F5EAF9B.8010200@codemonkey.ws> Date: Mon, 12 Mar 2012 21:23:23 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1331565591-8414-1-git-send-email-kwolf@redhat.com> In-Reply-To: <1331565591-8414-1-git-send-email-kwolf@redhat.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL 00/20] Block patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kevin Wolf Cc: qemu-devel@nongnu.org On 03/12/2012 10:19 AM, Kevin Wolf wrote: > The following changes since commit a348f108842fb928563865c9918642900cd0d477: > > Add missing const attributes for MemoryRegionOps (2012-03-11 11:40:15 +0000) > > are available in the git repository at: > git://repo.or.cz/qemu/kevin.git for-anthony > > Alex Barcelo (4): > coroutine: adding sigaltstack method (.c source) > coroutine: adding configure choose mechanism for coroutine backend > coroutine: adding configure option for sigaltstack coroutine backend > test-coroutine: add performance test for nesting > > Kevin Wolf (8): > qcow2: Add some tracing > qcow2: Add error messages in qcow2_truncate > qemu-iotests: Mark some tests as quick > make check: Add qemu-iotests subset > Add 'make check-block' > qcow2: Factor out count_cow_clusters > qcow2: Add qcow2_alloc_clusters_at() > qcow2: Reduce number of I/O requests > > Paolo Bonzini (6): > Group snapshot: Fix format name for backing file > use QSIMPLEQ_FOREACH_SAFE when freeing list elements > qapi: complete implementation of unions > rename blockdev-group-snapshot-sync > add mode field to blockdev-snapshot-sync transaction item > qmp: convert blockdev-snapshot-sync to a wrapper around transactions > > Stefan Hajnoczi (2): > qed: do not evict in-use L2 table cache entries > block: handle -EBUSY in bdrv_commit_all() Pulled. Thanks. And the make check integration with qemu-iotest is sweet! Regards, Anthony Liguori > > Makefile.objs | 4 + > block.c | 8 +- > block.h | 2 +- > block/qcow2-cache.c | 18 +++ > block/qcow2-cluster.c | 279 +++++++++++++++++++++++++---------- > block/qcow2-refcount.c | 28 ++++ > block/qcow2.c | 12 ++ > block/qcow2.h | 3 + > block/qed-l2-cache.c | 22 +++- > blockdev.c | 192 +++++++++++-------------- > configure | 41 +++++- > coroutine-sigaltstack.c | 334 +++++++++++++++++++++++++++++++++++++++++++ > hmp-commands.hx | 9 +- > hmp.c | 6 +- > qapi-schema-test.json | 10 ++ > qapi-schema.json | 74 +++++++--- > qemu-img.c | 2 +- > qmp-commands.hx | 62 +++++--- > scripts/qapi-types.py | 6 + > scripts/qapi-visit.py | 31 ++++- > test-coroutine.c | 27 ++++ > test-qmp-input-visitor.c | 18 +++ > test-qmp-output-visitor.c | 34 +++++ > tests/Makefile | 12 ++- > tests/check-block.sh | 21 +++ > tests/qemu-iotests-quick.sh | 17 +++ > tests/qemu-iotests/group | 24 ++-- > trace-events | 25 ++++ > 28 files changed, 1054 insertions(+), 267 deletions(-) > create mode 100644 coroutine-sigaltstack.c > create mode 100755 tests/check-block.sh > create mode 100755 tests/qemu-iotests-quick.sh > >