From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:60040) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SyUAb-0008BM-TO for qemu-devel@nongnu.org; Mon, 06 Aug 2012 16:44:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SyUAa-0004Mz-QA for qemu-devel@nongnu.org; Mon, 06 Aug 2012 16:44:57 -0400 Received: from mx1.redhat.com ([209.132.183.28]:1785) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SyUAa-0004Mu-Ga for qemu-devel@nongnu.org; Mon, 06 Aug 2012 16:44:56 -0400 From: Kevin Wolf Date: Mon, 6 Aug 2012 22:44:39 +0200 Message-Id: <1344285891-6578-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PULL 00/12] Block patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org The following changes since commit 26b9b5fe17cc1b6be2e8bf8b9d16094f420bb8ad: virtio: fix vhost handling (2012-08-06 14:01:44 -0500) are available in the git repository at: http://repo.or.cz/r/qemu/kevin.git for-anthony Dong Xu Wang (1): qemu-img: use QemuOpts instead of QEMUOptionParameter in resize function Kevin Wolf (1): qemu-iotests: Be more flexible with image creation options Markus Armbruster (1): ide scsi: Mess with geometry only for hard disk devices Paolo Bonzini (1): qapi: generalize documentation of streaming commands Stefan Hajnoczi (8): qemu-iotests: add qed.py image manipulation utility docs: add dirty bit to qcow2 specification qcow2: introduce dirty bit docs: add lazy refcounts bit to qcow2 specification qemu-iotests: ignore qemu-img create lazy_refcounts output qcow2: implement lazy refcounts qemu-io: add "abort" command to simulate program crash qemu-iotests: add 039 qcow2 lazy refcounts test block/qcow2-cluster.c | 5 +- block/qcow2.c | 123 +++++++++++++++++++++-- block/qcow2.h | 21 ++++ block_int.h | 26 +++-- docs/specs/qcow2.txt | 14 ++- hmp-commands.hx | 2 +- hw/ide/qdev.c | 3 +- hw/scsi-disk.c | 3 +- qapi-schema.json | 17 ++-- qemu-img.c | 28 +++-- qemu-io.c | 12 ++ tests/qemu-iotests/031.out | 20 ++-- tests/qemu-iotests/036.out | 4 +- tests/qemu-iotests/039 | 136 ++++++++++++++++++++++++ tests/qemu-iotests/039.out | 53 ++++++++++ tests/qemu-iotests/common.rc | 7 +- tests/qemu-iotests/group | 1 + tests/qemu-iotests/qed.py | 235 ++++++++++++++++++++++++++++++++++++++++++ 18 files changed, 650 insertions(+), 60 deletions(-) create mode 100755 tests/qemu-iotests/039 create mode 100644 tests/qemu-iotests/039.out create mode 100755 tests/qemu-iotests/qed.py