From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:39799) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R1fWh-000603-TB for qemu-devel@nongnu.org; Thu, 08 Sep 2011 10:24:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R1fWc-0007TO-N7 for qemu-devel@nongnu.org; Thu, 08 Sep 2011 10:24:23 -0400 Received: from mail-yi0-f45.google.com ([209.85.218.45]:56344) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R1fWc-0007TC-GT for qemu-devel@nongnu.org; Thu, 08 Sep 2011 10:24:18 -0400 Received: by yib2 with SMTP id 2so1615yib.4 for ; Thu, 08 Sep 2011 07:24:17 -0700 (PDT) Message-ID: <4E68D009.1060809@codemonkey.ws> Date: Thu, 08 Sep 2011 09:24:09 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1315323586-23840-1-git-send-email-kwolf@redhat.com> In-Reply-To: <1315323586-23840-1-git-send-email-kwolf@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL 00/31] Block patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kevin Wolf Cc: qemu-devel@nongnu.org On 09/06/2011 10:39 AM, Kevin Wolf wrote: > The following changes since commit f69539b14bdba7a5cd22e1f4bed439b476b17286: > > apb_pci: convert PCI space to memory API (2011-09-04 09:28:04 +0000) > > are available in the git repository at: > git://repo.or.cz/qemu/kevin.git for-anthony Pulled. Thanks. Regards, Anthony Liguori > > Fam Zheng (8): > VMDK: enable twoGbMaxExtentFlat > VMDK: add twoGbMaxExtentSparse support > VMDK: separate vmdk_read_extent/vmdk_write_extent > VMDK: Opening compressed extent. > VMDK: read/write compressed extent > VMDK: creating streamOptimized subformat > VMDK: bugfix, open Haiku vmdk image > VMDK: bugfix, opening vSphere 4 exported image > > Frediano Ziglio (1): > linux aio: some comments > > Kevin Wolf (3): > qcow2: Properly initialise QcowL2Meta > qcow2: Fix error cases to run depedent requests > async: Allow nested qemu_bh_poll calls > > Markus Armbruster (14): > block: Attach non-qdev devices as well > block: Generalize change_cb() to BlockDevOps > block: Split change_cb() into change_media_cb(), resize_cb() > ide: Update command code definitions as per ACS-2 Table B.2 > ide: Clean up case label indentation in ide_exec_cmd() > ide: Give vmstate structs internal linkage where possible > block/raw: Fix to forward method bdrv_media_changed() > block: Leave tracking media change to device models > fdc: Make media change detection more robust > block: Clean up bdrv_flush_all() > savevm: Include writable devices with removable media > xen: Clean up pci_piix3_xen_ide_unplug()'s test for "not a CD" > spitz tosa: Simplify "drive is suitable for microdrive" test > block: Declare qemu_blockalign() in block.h, not block_int.h > > Paolo Bonzini (5): > scsi: execute SYNCHRONIZE_CACHE asynchronously > scsi: fix accounting of writes > scsi: refine constants for READ CAPACITY 16 > scsi: fill in additional sense length correctly > scsi: improve MODE SENSE emulation > > async.c | 24 +++- > block.c | 104 ++++++++------- > block.h | 28 +++- > block/qcow2.c | 12 +- > block/raw-posix.c | 4 + > block/raw.c | 7 + > block/vmdk.c | 346 +++++++++++++++++++++++++++++++++++++++----------- > block_int.h | 14 +-- > blockdev.c | 5 +- > hw/fdc.c | 46 ++++---- > hw/ide/core.c | 35 +++--- > hw/ide/internal.h | 171 +++++++++++++------------ > hw/ide/piix.c | 7 +- > hw/pflash_cfi01.c | 1 + > hw/pflash_cfi02.c | 1 + > hw/qdev-properties.c | 6 +- > hw/scsi-bus.c | 6 +- > hw/scsi-defs.h | 8 +- > hw/scsi-disk.c | 157 +++++++++++++---------- > hw/sd.c | 14 +- > hw/spitz.c | 10 +- > hw/tosa.c | 10 +- > hw/usb-msd.c | 2 +- > hw/virtio-blk.c | 12 +- > hw/xen_disk.c | 1 + > linux-aio.c | 1 + > savevm.c | 4 +- > 27 files changed, 652 insertions(+), 384 deletions(-) > >