From patchwork Tue Jul 19 10:15:03 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Wolf X-Patchwork-Id: 105426 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 96E3FB6F62 for ; Tue, 19 Jul 2011 20:16:29 +1000 (EST) Received: from localhost ([::1]:38940 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qj7Lk-0006qt-Bn for incoming@patchwork.ozlabs.org; Tue, 19 Jul 2011 06:16:24 -0400 Received: from eggs.gnu.org ([140.186.70.92]:48750) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qj7I6-0006p5-Sr for qemu-devel@nongnu.org; Tue, 19 Jul 2011 06:12:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qj7I2-0003MS-8B for qemu-devel@nongnu.org; Tue, 19 Jul 2011 06:12:38 -0400 Received: from mx1.redhat.com ([209.132.183.28]:61976) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qj7I1-0003MO-Oq for qemu-devel@nongnu.org; Tue, 19 Jul 2011 06:12:34 -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 p6JACVue022542 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 19 Jul 2011 06:12:31 -0400 Received: from dhcp-5-188.str.redhat.com (dhcp-5-175.str.redhat.com [10.32.5.175]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p6JACTtk027666; Tue, 19 Jul 2011 06:12:30 -0400 From: Kevin Wolf To: anthony@codemonkey.ws Date: Tue, 19 Jul 2011 12:15:03 +0200 Message-Id: <1311070524-13533-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: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: kwolf@redhat.com, qemu-devel@nongnu.org Subject: [Qemu-devel] [PULL 00/21] 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 89b9ba661bd2d6155308f895ec075d813f0e129b: Fix signal handling of SIG_IPI when io-thread is enabled (2011-07-16 19:43:00 +0000) are available in the git repository at: git://repo.or.cz/qemu/kevin.git for-anthony Devin Nakamura (2): qemu-io: Fix formatting qemu-io: Fix if scoping bug Fam Zheng (12): VMDK: introduce VmdkExtent VMDK: bugfix, align offset to cluster in get_whole_cluster VMDK: probe for monolithicFlat images VMDK: separate vmdk_open by format version VMDK: add field BDRVVmdkState.desc_offset VMDK: flush multiple extents VMDK: move 'static' cid_update flag to bs field VMDK: change get_cluster_offset return type VMDK: open/read/write for monolithicFlat image VMDK: create different subformats VMDK: fix coding style block: add bdrv_get_allocated_file_size() operation Hannes Reinecke (4): iov: Update parameter usage in iov_(to|from)_buf() scsi: Add 'hba_private' to SCSIRequest scsi-disk: Fixup debugging statement scsi-disk: Mask out serial number EVPD Luiz Capitulino (2): qemu-options.hx: Document missing -drive options qemu-config: Document -drive options MORITA Kazutaka (1): sheepdog: add full data preallocation support block.c | 19 + block.h | 1 + block/raw-posix.c | 21 + block/raw-win32.c | 29 + block/sheepdog.c | 71 ++- block/vmdk.c | 1297 ++++++++++++++++-------- block_int.h | 2 + hw/esp.c | 2 +- hw/lsi53c895a.c | 22 +- hw/scsi-bus.c | 9 +- hw/scsi-disk.c | 21 +- hw/scsi-generic.c | 5 +- hw/scsi.h | 10 +- hw/spapr_vscsi.c | 29 +- hw/usb-msd.c | 9 +- hw/virtio-net.c | 2 +- hw/virtio-serial-bus.c | 2 +- iov.c | 49 +- iov.h | 10 +- qemu-config.c | 6 + qemu-img.c | 31 +- qemu-io.c | 2653 ++++++++++++++++++++++++------------------------ qemu-options.hx | 8 + 23 files changed, 2462 insertions(+), 1846 deletions(-)