Re: [Qemu-devel] [PATCH 00/11] virtio-scsi device model

2012-01-12 Thread Hu Tao
On Thu, Jan 12, 2012 at 10:47:48AM +0100, Paolo Bonzini wrote: > On 01/12/2012 06:17 AM, Hu Tao wrote: > >Hi Paolo, > > > >How to add a virtio-scsi device? What parameters should I specify > >in qemu command line? > > Same as with other SCSI devices: > > -device virtio-scsi-pci > > then for ev

Re: [Qemu-devel] [PATCH 00/11] virtio-scsi device model

2012-01-12 Thread Hu Tao
Hi Paolo, How to add a virtio-scsi device? What parameters should I specify in qemu command line? -- Thanks, Hu Tao

Re: [Qemu-devel] [PATCH 00/11] virtio-scsi device model

2012-01-12 Thread Paolo Bonzini
On 01/12/2012 06:17 AM, Hu Tao wrote: Hi Paolo, How to add a virtio-scsi device? What parameters should I specify in qemu command line? Same as with other SCSI devices: -device virtio-scsi-pci then for every disk -drive if=none,file=PATH,id=NAME -device scsi-hd,drive=NAME (or scsi-cd

[Qemu-devel] [PATCH 00/11] virtio-scsi device model

2011-12-06 Thread Paolo Bonzini
Given that the discussion on the spec has converged, here is finally the virtio-scsi device model. The first patch is an (already posted) bug fix. The next 6 patches add scatter/gather support to the SCSI layer; the final 4 add the device---first a stub, and then progressively more features. Pao