From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:40882) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RQQBQ-0003JH-Dv for qemu-devel@nongnu.org; Tue, 15 Nov 2011 16:04:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RQQBM-0000pZ-EF for qemu-devel@nongnu.org; Tue, 15 Nov 2011 16:04:44 -0500 Received: from mx1.redhat.com ([209.132.183.28]:10539) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RQQBM-0000pV-2O for qemu-devel@nongnu.org; Tue, 15 Nov 2011 16:04:40 -0500 Date: Tue, 15 Nov 2011 22:33:35 +0200 From: "Michael S. Tsirkin" Message-ID: <20111115203334.GA22427@redhat.com> References: <1321376405-22776-1-git-send-email-pbonzini@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1321376405-22776-1-git-send-email-pbonzini@redhat.com> Subject: Re: [Qemu-devel] [RFC PATCH 0/4] virtio-scsi device model List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: qemu-devel@nongnu.org, stefanha@linux.vnet.ibm.com On Tue, Nov 15, 2011 at 06:00:01PM +0100, Paolo Bonzini wrote: > Here is the first sneak peek of virtio-scsi. It's on top of my scsi-sg > branch at http://github.com/bonzini/qemu. I'm more interested > in getting early reviews in the virtio side, so I'm omitting the > scsi-specific patches that introduce support for scatter/gather I/O > in the SCSI layer. > > What's missing is 1) support for writable config space, 2) testing TMF, > 3) events; 4) migration. The last two do not need to be in at the > first commit, they can come later. > > Tested lightly with a seabios driver (see the seabios ML). The Linux > driver will come next... spec patches? > Paolo Bonzini (2): > virtio-scsi: add basic SCSI bus operation > virtio-scsi: process control queue requests > > Stefan Hajnoczi (2): > virtio-scsi: Add virtio-scsi stub device > virtio-scsi: Add basic request processing infrastructure > > Makefile.target | 1 + > default-configs/pci.mak | 1 + > hw/pci.h | 1 + > hw/virtio-pci.c | 42 ++++ > hw/virtio-pci.h | 2 + > hw/virtio-scsi.c | 502 +++++++++++++++++++++++++++++++++++++++++++++++ > hw/virtio-scsi.h | 28 +++ > hw/virtio.h | 3 + > 8 files changed, 580 insertions(+), 0 deletions(-) > create mode 100644 hw/virtio-scsi.c > create mode 100644 hw/virtio-scsi.h > > -- > 1.7.7.1