From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:41220) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RKv6Y-0001gG-07 for qemu-devel@nongnu.org; Mon, 31 Oct 2011 12:52:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RKv6W-0005U4-LQ for qemu-devel@nongnu.org; Mon, 31 Oct 2011 12:52:57 -0400 Received: from mail-gy0-f173.google.com ([209.85.160.173]:38786) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RKv6W-0005Ty-EM for qemu-devel@nongnu.org; Mon, 31 Oct 2011 12:52:56 -0400 Received: by gya6 with SMTP id 6so2437118gya.4 for ; Mon, 31 Oct 2011 09:52:55 -0700 (PDT) Message-ID: <4EAED262.9040205@codemonkey.ws> Date: Mon, 31 Oct 2011 11:52:50 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1320067830-12093-1-git-send-email-kwolf@redhat.com> In-Reply-To: <1320067830-12093-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/55] Block patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kevin Wolf Cc: qemu-devel@nongnu.org On 10/31/2011 08:29 AM, Kevin Wolf wrote: > The following changes since commit b5a12aa204f842c8010ac9d2e4b115114dbf09f0: > > Merge branch 'rth/vis2' of git://repo.or.cz/qemu/rth (2011-10-27 20:27:07 +0000) > > are available in the git repository at: > > git://repo.or.cz/qemu/kevin.git for-anthony Pulled. Thanks. Regards, Anthony Liguori > > Dong Xu Wang (1): > block: fix qcow2_co_flush deadlock > > Eric Sunshine (1): > Teach block/vdi about "discarded" (no longer allocated) blocks > > Kevin Wolf (7): > block: Remove dead code > block: Fix bdrv_open use after free > qcow: Fix bdrv_write_compressed error handling > ide: Fix off-by-one error in array index check > vmdk: Fix use of uninitialised value > vmdk: Improve error handling > vmdk: Fix possible segfaults > > Paolo Bonzini (38): > scsi: pass correct sense code for ENOMEDIUM > atapi/scsi: unify definitions for MMC > atapi: move GESN definitions to scsi-defs.h > atapi: cleanup/fix mode sense results > scsi: notify the device when unit attention is reported > scsi-disk: report media changed via unit attention sense codes > scsi-disk: fix coding style issues (braces) > scsi-disk: add stubs for more MMC commands > scsi-disk: store valid mode pages in a table > atapi/scsi-disk: make mode page values coherent between the two > scsi-disk: support DVD profile in GET CONFIGURATION > scsi-disk: support READ DVD STRUCTURE > scsi-disk: report media changed via GET EVENT STATUS NOTIFICATION > scsi: move tcq/ndev to SCSIBusOps (now SCSIBusInfo) > qdev: switch children device list to QTAILQ > scsi: remove devs array from SCSIBus > scsi: implement REPORT LUNS for arbitrary LUNs > scsi: allow arbitrary LUNs > scsi: add channel to addressing > scsi-disk: fail READ CAPACITY if LBA != 0 but PMI == 0 > scsi-disk: fix retrying a flush > scsi-generic: drop SCSIGenericState > scsi-generic: remove scsi_req_fixup > scsi-generic: check ioctl statuses when SG_IO succeeds > scsi-generic: look at host status > scsi-generic: snoop READ CAPACITY commands to get block size > scsi-disk: do not duplicate BlockDriverState member > scsi-disk: remove cluster_size > scsi-disk: small clean up to INQUIRY > scsi: move max_lba to SCSIDevice > scsi: make reqops const > scsi: export scsi_generic_reqops > scsi: pass cdb to alloc_req > scsi: do not call transfer_data after canceling a request > scsi-disk: bump SCSIRequest reference count until aio completion runs > scsi-generic: bump SCSIRequest reference count until aio completion runs > scsi: push request restart to SCSIDevice > scsi-disk: add scsi-block for device passthrough > > Ronnie Sahlberg (4): > iSCSI block driver > Documentation: Add iSCSI section > Documentation: Describe NBD URL syntax > Documentation: Add syntax for using sheepdog devices > > Stefan Hajnoczi (3): > qemu-io: delete bs instead of leaking it > block: set bs->read_only before .bdrv_open() > block: reinitialize across bdrv_close()/bdrv_open() > > Zhi Yong Wu (1): > qcow2: fix some errors and typo in qcow2.txt > > Makefile.objs | 1 + > block.c | 18 +- > block/iscsi.c | 591 ++++++++++++++++++++++++++++++++++++ > block/qcow.c | 30 ++- > block/qcow2.c | 2 + > block/vdi.c | 23 +- > block/vmdk.c | 30 ++- > configure | 31 ++ > docs/specs/qcow2.txt | 6 +- > hw/acpi_piix4.c | 4 +- > hw/esp.c | 16 +- > hw/i2c.c | 2 +- > hw/ide/atapi.c | 119 +++----- > hw/ide/core.c | 6 +- > hw/ide/internal.h | 71 +----- > hw/ide/macio.c | 2 +- > hw/intel-hda.c | 6 +- > hw/lsi53c895a.c | 30 +- > hw/qdev.c | 24 +- > hw/qdev.h | 4 +- > hw/s390-virtio-bus.c | 4 +- > hw/scsi-bus.c | 279 +++++++++++++---- > hw/scsi-defs.h | 90 ++++++ > hw/scsi-disk.c | 824 +++++++++++++++++++++++++++++++++++++------------- > hw/scsi-generic.c | 201 ++++++------- > hw/scsi.h | 39 ++- > hw/spapr_vio.c | 6 +- > hw/spapr_vscsi.c | 54 +++- > hw/ssi.c | 6 +- > hw/usb-msd.c | 8 +- > qemu-io.c | 5 +- > qemu-options.hx | 90 ++++++ > trace-events | 7 + > 33 files changed, 1979 insertions(+), 650 deletions(-) > create mode 100644 block/iscsi.c > >