From patchwork Mon Jan 31 15:28:48 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Wolf X-Patchwork-Id: 81143 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 8D483B70E9 for ; Tue, 1 Feb 2011 02:34:10 +1100 (EST) Received: from localhost ([127.0.0.1]:54486 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PjvlX-0005wE-70 for incoming@patchwork.ozlabs.org; Mon, 31 Jan 2011 10:34:07 -0500 Received: from [140.186.70.92] (port=42742 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PjvfK-0002RL-Po for qemu-devel@nongnu.org; Mon, 31 Jan 2011 10:27:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PjvfH-0003M1-Ep for qemu-devel@nongnu.org; Mon, 31 Jan 2011 10:27:40 -0500 Received: from mx1.redhat.com ([209.132.183.28]:2133) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PjvfH-0003Ln-6f for qemu-devel@nongnu.org; Mon, 31 Jan 2011 10:27:39 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id p0VFRbWb000926 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 31 Jan 2011 10:27:37 -0500 Received: from dhcp-5-188.str.redhat.com (dhcp-5-175.str.redhat.com [10.32.5.175]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p0VFRZ1w012144; Mon, 31 Jan 2011 10:27:36 -0500 From: Kevin Wolf To: anthony@codemonkey.ws Date: Mon, 31 Jan 2011 16:28:48 +0100 Message-Id: <1296487756-12553-1-git-send-email-kwolf@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 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/28] Block patches X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The following changes since commit 45d1aa828f8c94b082a0aa2dbf76535594ee45df: Update OpenBIOS images to r1018 (2011-01-30 13:10:10 +0000) are available in the git repository at: git://repo.or.cz/qemu/kevin.git block Blue Swirl (1): qcow2-refcount: remove write-only variables Christoph Hellwig (3): block: add block_resize monitor command block: tell drivers about an image resize virtio-blk: tell the guest about size changes Jes Sorensen (6): strtosz(): use unsigned char and switch to qemu_isspace() strtosz() use qemu_toupper() to simplify switch statement strtosz(): Fix name confusion in use of modf() strtosz(): Use suffix macros in switch() statement Add documentation for STRTOSZ_DEFSUFFIX_ macros Reorganize struct Qcow2Cache for better struct packing Kevin Wolf (3): qemu-io: Fix discard command qcow2: Add bdrv_discard support raw-win32: Fix bdrv_flush return value MORITA Kazutaka (1): sheepdog: support creating images on remote hosts Markus Armbruster (11): scsi hotplug: Set DriveInfo member bus correctly blockdev: New drive_get_next(), replacing qdev_init_bdrv() blockdev: Move BlockInterfaceType from qemu-common.h to blockdev.h blockdev: Put BlockInterfaceType names and max_devs in tables blockdev: Fix regression in -drive if=scsi,index=N blockdev: Make drive_add() take explicit type, index parameters blockdev: Factor drive_index_to_{bus,unit}_id out of drive_init() blockdev: New drive_get_by_index() blockdev: Reject multiple definitions for the same drive blockdev: Replace drive_add()'s fmt, ... by optstr parameter blockdev: Fix drive_add for drives without media Stefan Hajnoczi (3): virtio-pci: Disable virtio-ioeventfd when !CONFIG_IOTHREAD ahci: Fix cpu_physical_memory_unmap() argument ordering qed: Images with backing file do not require QED_F_NEED_CHECK block.c | 12 ++- block.h | 3 +- block/qcow2-cache.c | 2 +- block/qcow2-cluster.c | 82 +++++++++++++++++++++++ block/qcow2-refcount.c | 5 +- block/qcow2.c | 8 ++ block/qcow2.h | 2 + block/qed.c | 24 +++++-- block/raw-win32.c | 2 +- block/sheepdog.c | 17 ++++- block_int.h | 5 +- blockdev.c | 173 ++++++++++++++++++++++++++++++++--------------- blockdev.h | 19 ++++-- cutils.c | 28 ++++----- hmp-commands.hx | 19 +++++ hw/device-hotplug.c | 5 +- hw/ide.h | 2 + hw/ide/ahci.c | 11 ++-- hw/ide/core.c | 6 ++- hw/pci-hotplug.c | 1 + hw/pl181.c | 7 +- hw/qdev.c | 15 ---- hw/qdev.h | 2 - hw/scsi.h | 3 +- hw/sd.c | 7 ++- hw/ssi-sd.c | 7 +- hw/usb-msd.c | 3 +- hw/virtio-blk.c | 10 +++ kvm-all.c | 8 ++- qemu-common.h | 13 ++-- qemu-io.c | 2 +- qmp-commands.hx | 28 ++++++++ savevm.c | 1 - vl.c | 104 +++++++++++++++++------------ 34 files changed, 447 insertions(+), 189 deletions(-)