From patchwork Mon Apr 22 11:31: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: 238463 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 13B532C007C for ; Mon, 22 Apr 2013 21:32:24 +1000 (EST) Received: from localhost ([::1]:33754 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UUEyq-00044E-2A for incoming@patchwork.ozlabs.org; Mon, 22 Apr 2013 07:32:20 -0400 Received: from eggs.gnu.org ([208.118.235.92]:37003) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UUEyK-00043i-6G for qemu-devel@nongnu.org; Mon, 22 Apr 2013 07:31:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UUEyI-0001zb-Hz for qemu-devel@nongnu.org; Mon, 22 Apr 2013 07:31:48 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51582) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UUEyI-0001zR-90 for qemu-devel@nongnu.org; Mon, 22 Apr 2013 07:31:46 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3MBVhtx019548 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 22 Apr 2013 07:31:44 -0400 Received: from dhcp-200-207.str.redhat.com (ovpn-116-69.ams2.redhat.com [10.36.116.69]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r3MBVfDU031324; Mon, 22 Apr 2013 07:31:42 -0400 From: Kevin Wolf To: anthony@codemonkey.ws Date: Mon, 22 Apr 2013 13:31:14 +0200 Message-Id: <1366630294-18984-1-git-send-email-kwolf@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 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 00/20] 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 68c0aa6e02f79f8825c0c5dc4c7ed25d524aaa8b: ui/cocoa.m: Fix recent compile breakage (2013-04-21 16:44:26 +0000) are available in the git repository at: git://repo.or.cz/qemu/kevin.git for-anthony for you to fetch changes up to 7da94ca741e01a80afd65e107cc2cee160d1b2d2: qemu-iotests: add 053 unaligned compressed image size test (2013-04-22 11:37:12 +0200) ---------------------------------------------------------------- Kevin Wolf (16): qemu-iotests: Fix _filter_qemu block: Fail gracefully when using a format driver on protocol level block: Add driver-specific options for backing files block: Enable filename option raw-posix: Use bdrv_open options instead of filename raw-win32: Use bdrv_open options instead of filename blkdebug: Use bdrv_open options instead of filename blkverify: Use bdrv_open options instead of filename curl: Use bdrv_open options instead of filename gluster: Use bdrv_open options instead of filename iscsi: Use bdrv_open options instead of filename rbd: Use bdrv_open options instead of filename sheepdog: Use bdrv_open options instead of filename vvfat: Use bdrv_open options instead of filename block: Remove filename parameter from .bdrv_file_open() block: Allow overriding backing.file.filename Stefan Hajnoczi (4): qcow2: allow sub-cluster compressed write to last cluster qcow: allow sub-cluster compressed write to last cluster qemu-img: do not zero-pad the compressed write buffer qemu-iotests: add 053 unaligned compressed image size test block.c | 65 +++++++++-- block/blkdebug.c | 113 +++++++++++++------ block/blkverify.c | 113 ++++++++++++++----- block/curl.c | 152 +++++++++++++++++--------- block/gluster.c | 34 +++++- block/iscsi.c | 40 ++++++- block/mirror.c | 2 +- block/nbd.c | 3 +- block/qcow.c | 17 ++- block/qcow2.c | 17 ++- block/raw-posix.c | 70 ++++++++---- block/raw-win32.c | 59 ++++++++-- block/rbd.c | 32 +++++- block/sheepdog.c | 33 +++++- block/ssh.c | 3 +- block/vvfat.c | 229 ++++++++++++++++++++++++++++----------- include/block/block.h | 2 +- include/block/block_int.h | 3 +- qemu-img.c | 8 +- tests/qemu-iotests/051 | 7 ++ tests/qemu-iotests/051.out | 10 ++ tests/qemu-iotests/053 | 73 +++++++++++++ tests/qemu-iotests/053.out | 17 +++ tests/qemu-iotests/common.filter | 2 +- tests/qemu-iotests/group | 1 + 25 files changed, 862 insertions(+), 243 deletions(-) create mode 100755 tests/qemu-iotests/053 create mode 100644 tests/qemu-iotests/053.out