Re: [libvirt] [PATCH REPOST 5/7] conf: Add support for virtio-scsi iothreads

2016-05-03 Thread John Ferlan
[...] +if (iothread) { +if (def->model != VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VIRTIO_SCSI) { +virReportError(VIR_ERR_XML_ERROR, + _("'iothread' attribute only supported for " + "controller model

Re: [libvirt] [PATCH REPOST 5/7] conf: Add support for virtio-scsi iothreads

2016-05-03 Thread Cole Robinson
On 05/03/2016 11:16 AM, John Ferlan wrote: > > > On 05/03/2016 09:50 AM, Cole Robinson wrote: >> On 05/02/2016 06:30 PM, John Ferlan wrote: >>> Add the ability to add an 'iothread' to the controller which will be how >>> virtio-scsi-pci and virtio-scsi-ccw iothreads have been implemented in

Re: [libvirt] [PATCH REPOST 5/7] conf: Add support for virtio-scsi iothreads

2016-05-03 Thread John Ferlan
On 05/03/2016 09:50 AM, Cole Robinson wrote: > On 05/02/2016 06:30 PM, John Ferlan wrote: >> Add the ability to add an 'iothread' to the controller which will be how >> virtio-scsi-pci and virtio-scsi-ccw iothreads have been implemented in qemu. >> >> Describe the new functionality and add tests

Re: [libvirt] [PATCH REPOST 5/7] conf: Add support for virtio-scsi iothreads

2016-05-03 Thread Cole Robinson
On 05/02/2016 06:30 PM, John Ferlan wrote: > Add the ability to add an 'iothread' to the controller which will be how > virtio-scsi-pci and virtio-scsi-ccw iothreads have been implemented in qemu. > > Describe the new functionality and add tests to parse/validate that the > new attribute can be

[libvirt] [PATCH REPOST 5/7] conf: Add support for virtio-scsi iothreads

2016-05-02 Thread John Ferlan
Add the ability to add an 'iothread' to the controller which will be how virtio-scsi-pci and virtio-scsi-ccw iothreads have been implemented in qemu. Describe the new functionality and add tests to parse/validate that the new attribute can be added. Signed-off-by: John Ferlan