From patchwork Thu Oct 31 15:48:14 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Wolf X-Patchwork-Id: 287517 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 9AFD82C0390 for ; Fri, 1 Nov 2013 02:49:38 +1100 (EST) Received: from localhost ([::1]:57632 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VbuV5-0003l8-IH for incoming@patchwork.ozlabs.org; Thu, 31 Oct 2013 11:49:35 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43198) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VbuUU-0003ki-CM for qemu-devel@nongnu.org; Thu, 31 Oct 2013 11:49:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VbuUP-0004Cz-Dt for qemu-devel@nongnu.org; Thu, 31 Oct 2013 11:48:58 -0400 Received: from mx1.redhat.com ([209.132.183.28]:18981) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VbuUP-0004CE-4s for qemu-devel@nongnu.org; Thu, 31 Oct 2013 11:48:53 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r9VFmoQv032629 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 31 Oct 2013 11:48:50 -0400 Received: from dhcp-200-207.str.redhat.com (ovpn-116-74.ams2.redhat.com [10.36.116.74]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r9VFmmE0016610; Thu, 31 Oct 2013 11:48:48 -0400 From: Kevin Wolf To: anthony@codemonkey.ws Date: Thu, 31 Oct 2013 16:48:14 +0100 Message-Id: <1383234524-372-1-git-send-email-kwolf@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: kwolf@redhat.com, qemu-devel@nongnu.org Subject: [Qemu-devel] [PULL v2 00/30] Block patches X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The following changes since commit fc8ead74674b7129e8f31c2595c76658e5622197: Merge remote-tracking branch 'qemu-kvm/uq/master' into staging (2013-10-18 10:03:24 -0700) are available in the git repository at: git://repo.or.cz/qemu/kevin.git tags/for-anthony for you to fetch changes up to f4c129a38a5430b7342a7a23f53a22831154612f: vmdk: Implment bdrv_get_specific_info (2013-10-31 14:44:43 +0100) ---------------------------------------------------------------- Block patches for 1.7.0-rc0 (v2) ---------------------------------------------------------------- Alexander Graf (1): ahci: fix win7 hang on boot Eric Blake (1): qapi: fix documentation example Fam Zheng (4): qemu-iotests: drop duplicated "create_image" qemu-iotests: prefill some data to test image qapi: Add optional field 'compressed' to ImageInfo vmdk: Implment bdrv_get_specific_info Kevin Wolf (5): exec: Fix bounce buffer allocation in address_space_map() ide-test: Check what happens with bus mastering disabled tests: Multiboot mmap test case block: Avoid unecessary drv->bdrv_getlength() calls qemu-iotests: Fix 051 reference output Liu Yuan (2): sheepdog: explicitly set copies as type uint8_t sheepdog: pass copy_policy in the request MORITA Kazutaka (8): sheepdog: check return values of qemu_co_recv/send correctly sheepdog: handle vdi objects in resend_aio_req sheepdog: reload inode outside of resend_aioreq coroutine: add co_aio_sleep_ns() to allow sleep in block drivers sheepdog: try to reconnect to sheepdog after network error sheepdog: make add_aio_request and send_aioreq void functions sheepdog: cancel aio requests if possible sheepdog: check simultaneous create in resend_aioreq Max Reitz (6): qcow2: Restore total_sectors value in save_vmstate qcow2: Unset zero_beyond_eof in save_vmstate qemu-iotests: Test for loading VM state from qcow2 qcow2: Flush image after creation block: Don't copy backing file name on error qemu-iotests: Test case for backing file deletion Peter Lieven (2): qemu-img: add special exit code if bdrv_check is not supported block/vpc: check that the image has not been truncated Thibaut LAURENT (1): block: Disable BDRV_O_COPY_ON_READ for the backing file block.c | 14 +- block/qcow2.c | 19 +++ block/raw-posix.c | 9 +- block/raw-win32.c | 4 +- block/raw_bsd.c | 1 + block/sheepdog.c | 352 ++++++++++++++++++++++++++++---------------- block/vmdk.c | 68 ++++++++- block/vpc.c | 7 + docs/qapi-code-gen.txt | 2 +- exec.c | 4 +- hw/ide/ahci.c | 3 +- include/block/block_int.h | 3 + include/block/coroutine.h | 9 ++ qapi-schema.json | 28 +++- qemu-coroutine-sleep.c | 14 ++ qemu-img.c | 2 +- tests/ide-test.c | 26 ++++ tests/multiboot/Makefile | 18 +++ tests/multiboot/libc.c | 139 +++++++++++++++++ tests/multiboot/libc.h | 61 ++++++++ tests/multiboot/link.ld | 19 +++ tests/multiboot/mmap.c | 56 +++++++ tests/multiboot/mmap.out | 93 ++++++++++++ tests/multiboot/multiboot.h | 66 +++++++++ tests/multiboot/run_test.sh | 81 ++++++++++ tests/multiboot/start.S | 51 +++++++ tests/qemu-iotests/030 | 4 + tests/qemu-iotests/040 | 14 +- tests/qemu-iotests/051.out | 2 +- tests/qemu-iotests/059 | 2 +- tests/qemu-iotests/059.out | 5 +- tests/qemu-iotests/068 | 65 ++++++++ tests/qemu-iotests/068.out | 11 ++ tests/qemu-iotests/069 | 59 ++++++++ tests/qemu-iotests/069.out | 8 + tests/qemu-iotests/group | 2 + 36 files changed, 1157 insertions(+), 164 deletions(-) create mode 100644 tests/multiboot/Makefile create mode 100644 tests/multiboot/libc.c create mode 100644 tests/multiboot/libc.h create mode 100644 tests/multiboot/link.ld create mode 100644 tests/multiboot/mmap.c create mode 100644 tests/multiboot/mmap.out create mode 100644 tests/multiboot/multiboot.h create mode 100755 tests/multiboot/run_test.sh create mode 100644 tests/multiboot/start.S create mode 100755 tests/qemu-iotests/068 create mode 100644 tests/qemu-iotests/068.out create mode 100755 tests/qemu-iotests/069 create mode 100644 tests/qemu-iotests/069.out