mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 13:45:38 +00:00
conf: Add support for virtio-scsi iothreads
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.
This commit is contained in:
parent
fcc78eaaf0
commit
e0d0e53086
@ -3005,6 +3005,10 @@
|
||||
<controller type='virtio-serial' index='1'>
|
||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x0a' function='0x0'/>
|
||||
</controller>
|
||||
<controller type='scsi' index='0' model='virtio-scsi'>
|
||||
<driver iothread='4'>
|
||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x0b' function='0x0'/>
|
||||
</controller>
|
||||
...
|
||||
</devices>
|
||||
...</pre>
|
||||
@ -3092,6 +3096,23 @@
|
||||
I/O asynchronous handling</a> or not. Accepted values are
|
||||
"on" and "off". <span class="since">Since 1.2.18</span>
|
||||
</dd>
|
||||
<dt><code>iothread</code></dt>
|
||||
<dd>
|
||||
Supported for controller type <code>scsi</code> using model
|
||||
<code>virtio-scsi</code> for <code>address</code> types
|
||||
<code>pci</code> and <code>ccw</code>
|
||||
<span class="since">since 1.3.5 (QEMU 2.4)</span>.
|
||||
|
||||
The optional <code>iothread</code> attribute assigns the controller
|
||||
to an IOThread as defined by the range for the domain
|
||||
<a href="#elementsIOThreadsAllocation"><code>iothreads</code></a>
|
||||
value. Each SCSI <code>disk</code> assigned to use the specified
|
||||
<code>controller</code> will utilize the same IOThread. If a specific
|
||||
IOThread is desired for a specific SCSI <code>disk</code>, then
|
||||
multiple controllers must be defined each having a specific
|
||||
<code>iothread</code> value. The <code>iothread</code> value
|
||||
must be within the range 1 to the domain iothreads value.
|
||||
</dd>
|
||||
</dl>
|
||||
<p>
|
||||
USB companion controllers have an optional
|
||||
|
@ -1899,6 +1899,9 @@
|
||||
<optional>
|
||||
<ref name="ioeventfd"/>
|
||||
</optional>
|
||||
<optional>
|
||||
<ref name="driverIOThread"/>
|
||||
</optional>
|
||||
</element>
|
||||
</optional>
|
||||
</interleave>
|
||||
|
@ -4250,6 +4250,20 @@ virDomainDeviceDefPostParseInternal(virDomainDeviceDefPtr dev,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (dev->type == VIR_DOMAIN_DEVICE_CONTROLLER) {
|
||||
virDomainControllerDefPtr cdev = dev->data.controller;
|
||||
|
||||
if (cdev->iothread &&
|
||||
cdev->model != VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VIRTIO_SCSI) {
|
||||
virReportError(VIR_ERR_XML_ERROR,
|
||||
_("'iothread' attribute only supported for "
|
||||
"controller model '%s'"),
|
||||
virDomainControllerModelSCSITypeToString(VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VIRTIO_SCSI));
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -7857,6 +7871,7 @@ virDomainControllerDefParseXML(xmlNodePtr node,
|
||||
char *ioeventfd = NULL;
|
||||
char *portsStr = NULL;
|
||||
int ports = -1;
|
||||
char *iothread = NULL;
|
||||
xmlNodePtr saved = ctxt->node;
|
||||
int rc;
|
||||
|
||||
@ -7901,6 +7916,7 @@ virDomainControllerDefParseXML(xmlNodePtr node,
|
||||
cmd_per_lun = virXMLPropString(cur, "cmd_per_lun");
|
||||
max_sectors = virXMLPropString(cur, "max_sectors");
|
||||
ioeventfd = virXMLPropString(cur, "ioeventfd");
|
||||
iothread = virXMLPropString(cur, "iothread");
|
||||
} else if (xmlStrEqual(cur->name, BAD_CAST "model")) {
|
||||
if (processedModel) {
|
||||
virReportError(VIR_ERR_XML_ERROR, "%s",
|
||||
@ -7962,6 +7978,14 @@ virDomainControllerDefParseXML(xmlNodePtr node,
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (iothread) {
|
||||
if (virStrToLong_uip(iothread, NULL, 10, &def->iothread) < 0) {
|
||||
virReportError(VIR_ERR_XML_ERROR,
|
||||
_("Invalid 'iothread' value '%s'"), iothread);
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
|
||||
if (def->type == VIR_DOMAIN_CONTROLLER_TYPE_USB &&
|
||||
def->model == VIR_DOMAIN_CONTROLLER_MODEL_USB_NONE) {
|
||||
VIR_DEBUG("Ignoring device address for none model usb controller");
|
||||
@ -8147,6 +8171,7 @@ virDomainControllerDefParseXML(xmlNodePtr node,
|
||||
VIR_FREE(busNr);
|
||||
VIR_FREE(ioeventfd);
|
||||
VIR_FREE(portsStr);
|
||||
VIR_FREE(iothread);
|
||||
|
||||
return def;
|
||||
|
||||
@ -19490,6 +19515,7 @@ virDomainControllerDefFormat(virBufferPtr buf,
|
||||
|
||||
if (pciModel || pciTarget ||
|
||||
def->queues || def->cmd_per_lun || def->max_sectors || def->ioeventfd ||
|
||||
def->iothread ||
|
||||
virDomainDeviceInfoNeedsFormat(&def->info, flags) || pcihole64) {
|
||||
virBufferAddLit(buf, ">\n");
|
||||
virBufferAdjustIndent(buf, 2);
|
||||
@ -19532,7 +19558,7 @@ virDomainControllerDefFormat(virBufferPtr buf,
|
||||
}
|
||||
|
||||
if (def->queues || def->cmd_per_lun ||
|
||||
def->max_sectors || def->ioeventfd) {
|
||||
def->max_sectors || def->ioeventfd || def->iothread) {
|
||||
virBufferAddLit(buf, "<driver");
|
||||
if (def->queues)
|
||||
virBufferAsprintf(buf, " queues='%u'", def->queues);
|
||||
@ -19547,6 +19573,10 @@ virDomainControllerDefFormat(virBufferPtr buf,
|
||||
virBufferAsprintf(buf, " ioeventfd='%s'",
|
||||
virTristateSwitchTypeToString(def->ioeventfd));
|
||||
}
|
||||
|
||||
if (def->iothread)
|
||||
virBufferAsprintf(buf, " iothread='%u'", def->iothread);
|
||||
|
||||
virBufferAddLit(buf, "/>\n");
|
||||
}
|
||||
|
||||
|
@ -861,6 +861,7 @@ struct _virDomainControllerDef {
|
||||
unsigned int cmd_per_lun;
|
||||
unsigned int max_sectors;
|
||||
int ioeventfd; /* enum virTristateSwitch */
|
||||
unsigned int iothread; /* unused = 0, > 0 specific thread # */
|
||||
union {
|
||||
virDomainVirtioSerialOpts vioserial;
|
||||
virDomainPCIControllerOpts pciopts;
|
||||
|
@ -0,0 +1,39 @@
|
||||
<domain type='qemu'>
|
||||
<name>QEMUGuest1</name>
|
||||
<uuid>c7a5fdbd-edaf-9455-926a-d65c16db1809</uuid>
|
||||
<memory unit='KiB'>219136</memory>
|
||||
<currentMemory unit='KiB'>219136</currentMemory>
|
||||
<vcpu placement='static'>1</vcpu>
|
||||
<iothreads>2</iothreads>
|
||||
<os>
|
||||
<type arch='s390x' machine='s390-ccw'>hvm</type>
|
||||
<boot dev='hd'/>
|
||||
</os>
|
||||
<clock offset='utc'/>
|
||||
<on_poweroff>destroy</on_poweroff>
|
||||
<on_reboot>restart</on_reboot>
|
||||
<on_crash>destroy</on_crash>
|
||||
<devices>
|
||||
<emulator>/usr/bin/qemu</emulator>
|
||||
<disk type='block' device='disk'>
|
||||
<driver name='qemu' type='raw' iothread='1'/>
|
||||
<source dev='/dev/HostVG/QEMUGuest1'/>
|
||||
<target dev='hda' bus='virtio'/>
|
||||
<address type='ccw' cssid='0xfe' ssid='0x0' devno='0x0000'/>
|
||||
</disk>
|
||||
<disk type='block' device='disk'>
|
||||
<driver name='qemu' type='raw'/>
|
||||
<source dev='/dev/HostVG/QEMUGuest2'/>
|
||||
<target dev='sdb' bus='scsi'/>
|
||||
<address type='drive' controller='0' bus='0' target='2' unit='0'/>
|
||||
</disk>
|
||||
<controller type='usb' index='0' model='none'/>
|
||||
<controller type='scsi' index='0' model='virtio-scsi'>
|
||||
<driver iothread='2'/>
|
||||
<address type='ccw' cssid='0xfe' ssid='0x0' devno='0x0001'/>
|
||||
</controller>
|
||||
<memballoon model='virtio'>
|
||||
<address type='ccw' cssid='0xfe' ssid='0x0' devno='0x000a'/>
|
||||
</memballoon>
|
||||
</devices>
|
||||
</domain>
|
@ -0,0 +1,47 @@
|
||||
<domain type='qemu'>
|
||||
<name>QEMUGuest1</name>
|
||||
<uuid>c7a5fdbd-edaf-9455-926a-d65c16db1809</uuid>
|
||||
<memory unit='KiB'>219136</memory>
|
||||
<currentMemory unit='KiB'>219136</currentMemory>
|
||||
<vcpu placement='static'>2</vcpu>
|
||||
<iothreads>2</iothreads>
|
||||
<os>
|
||||
<type arch='i686' machine='pc'>hvm</type>
|
||||
<boot dev='hd'/>
|
||||
</os>
|
||||
<clock offset='utc'/>
|
||||
<on_poweroff>destroy</on_poweroff>
|
||||
<on_reboot>restart</on_reboot>
|
||||
<on_crash>destroy</on_crash>
|
||||
<devices>
|
||||
<emulator>/usr/bin/qemu</emulator>
|
||||
<disk type='block' device='disk'>
|
||||
<driver name='qemu' type='raw'/>
|
||||
<source dev='/dev/HostVG/QEMUGuest1'/>
|
||||
<target dev='hda' bus='ide'/>
|
||||
<address type='drive' controller='0' bus='0' target='0' unit='0'/>
|
||||
</disk>
|
||||
<disk type='file' device='disk'>
|
||||
<driver name='qemu' type='raw' iothread='1'/>
|
||||
<source file='/var/lib/libvirt/images/iothrtest1.img'/>
|
||||
<target dev='vdb' bus='virtio'/>
|
||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/>
|
||||
</disk>
|
||||
<disk type='file' device='disk'>
|
||||
<driver name='qemu' type='raw'/>
|
||||
<source file='/var/lib/libvirt/images/iothrtest2.img'/>
|
||||
<target dev='sdc' bus='scsi'/>
|
||||
<address type='drive' controller='0' bus='0' target='0' unit='3'/>
|
||||
</disk>
|
||||
<controller type='usb' index='0'/>
|
||||
<controller type='ide' index='0'/>
|
||||
<controller type='pci' index='0' model='pci-root'/>
|
||||
<controller type='scsi' index='0' model='virtio-scsi'>
|
||||
<driver iothread='2'/>
|
||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x0b' function='0x0'/>
|
||||
</controller>
|
||||
<input type='mouse' bus='ps2'/>
|
||||
<input type='keyboard' bus='ps2'/>
|
||||
<memballoon model='none'/>
|
||||
</devices>
|
||||
</domain>
|
@ -0,0 +1,40 @@
|
||||
<domain type='qemu'>
|
||||
<name>QEMUGuest1</name>
|
||||
<uuid>c7a5fdbd-edaf-9455-926a-d65c16db1809</uuid>
|
||||
<memory unit='KiB'>219136</memory>
|
||||
<currentMemory unit='KiB'>219136</currentMemory>
|
||||
<vcpu placement='static'>1</vcpu>
|
||||
<iothreads>2</iothreads>
|
||||
<os>
|
||||
<type arch='s390x' machine='s390-ccw'>hvm</type>
|
||||
<boot dev='hd'/>
|
||||
</os>
|
||||
<clock offset='utc'/>
|
||||
<on_poweroff>destroy</on_poweroff>
|
||||
<on_reboot>restart</on_reboot>
|
||||
<on_crash>destroy</on_crash>
|
||||
<devices>
|
||||
<emulator>/usr/bin/qemu</emulator>
|
||||
<disk type='block' device='disk'>
|
||||
<driver name='qemu' type='raw' iothread='1'/>
|
||||
<source dev='/dev/HostVG/QEMUGuest1'/>
|
||||
<target dev='hda' bus='virtio'/>
|
||||
<address type='ccw' cssid='0xfe' ssid='0x0' devno='0x0000'/>
|
||||
</disk>
|
||||
<disk type='block' device='disk'>
|
||||
<driver name='qemu' type='raw'/>
|
||||
<source dev='/dev/HostVG/QEMUGuest2'/>
|
||||
<target dev='sdb' bus='scsi'/>
|
||||
<address type='drive' controller='0' bus='0' target='2' unit='0'/>
|
||||
</disk>
|
||||
<controller type='usb' index='0' model='none'/>
|
||||
<controller type='scsi' index='0' model='virtio-scsi'>
|
||||
<driver iothread='2'/>
|
||||
<address type='ccw' cssid='0xfe' ssid='0x0' devno='0x0001'/>
|
||||
</controller>
|
||||
<memballoon model='virtio'>
|
||||
<address type='ccw' cssid='0xfe' ssid='0x0' devno='0x000a'/>
|
||||
</memballoon>
|
||||
<panic model='s390'/>
|
||||
</devices>
|
||||
</domain>
|
@ -0,0 +1,51 @@
|
||||
<domain type='qemu'>
|
||||
<name>QEMUGuest1</name>
|
||||
<uuid>c7a5fdbd-edaf-9455-926a-d65c16db1809</uuid>
|
||||
<memory unit='KiB'>219136</memory>
|
||||
<currentMemory unit='KiB'>219136</currentMemory>
|
||||
<vcpu placement='static'>2</vcpu>
|
||||
<iothreads>2</iothreads>
|
||||
<os>
|
||||
<type arch='i686' machine='pc'>hvm</type>
|
||||
<boot dev='hd'/>
|
||||
</os>
|
||||
<clock offset='utc'/>
|
||||
<on_poweroff>destroy</on_poweroff>
|
||||
<on_reboot>restart</on_reboot>
|
||||
<on_crash>destroy</on_crash>
|
||||
<devices>
|
||||
<emulator>/usr/bin/qemu</emulator>
|
||||
<disk type='block' device='disk'>
|
||||
<driver name='qemu' type='raw'/>
|
||||
<source dev='/dev/HostVG/QEMUGuest1'/>
|
||||
<target dev='hda' bus='ide'/>
|
||||
<address type='drive' controller='0' bus='0' target='0' unit='0'/>
|
||||
</disk>
|
||||
<disk type='file' device='disk'>
|
||||
<driver name='qemu' type='raw' iothread='1'/>
|
||||
<source file='/var/lib/libvirt/images/iothrtest1.img'/>
|
||||
<target dev='vdb' bus='virtio'/>
|
||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/>
|
||||
</disk>
|
||||
<disk type='file' device='disk'>
|
||||
<driver name='qemu' type='raw'/>
|
||||
<source file='/var/lib/libvirt/images/iothrtest2.img'/>
|
||||
<target dev='sdc' bus='scsi'/>
|
||||
<address type='drive' controller='0' bus='0' target='0' unit='3'/>
|
||||
</disk>
|
||||
<controller type='usb' index='0'>
|
||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x2'/>
|
||||
</controller>
|
||||
<controller type='ide' index='0'>
|
||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
|
||||
</controller>
|
||||
<controller type='pci' index='0' model='pci-root'/>
|
||||
<controller type='scsi' index='0' model='virtio-scsi'>
|
||||
<driver iothread='2'/>
|
||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x0b' function='0x0'/>
|
||||
</controller>
|
||||
<input type='mouse' bus='ps2'/>
|
||||
<input type='keyboard' bus='ps2'/>
|
||||
<memballoon model='none'/>
|
||||
</devices>
|
||||
</domain>
|
@ -512,6 +512,13 @@ mymain(void)
|
||||
DO_TEST("iothreads-disk");
|
||||
DO_TEST_FULL("iothreads-disk-virtio-ccw", WHEN_ACTIVE,
|
||||
QEMU_CAPS_VIRTIO_CCW, QEMU_CAPS_VIRTIO_S390);
|
||||
DO_TEST_FULL("iothreads-virtio-scsi-pci", WHEN_ACTIVE,
|
||||
QEMU_CAPS_NODEFCONFIG,
|
||||
QEMU_CAPS_VIRTIO_SCSI);
|
||||
DO_TEST_FULL("iothreads-virtio-scsi-ccw", WHEN_ACTIVE,
|
||||
QEMU_CAPS_VIRTIO_SCSI,
|
||||
QEMU_CAPS_VIRTIO_CCW,
|
||||
QEMU_CAPS_VIRTIO_S390);
|
||||
DO_TEST("lease");
|
||||
DO_TEST("event_idx");
|
||||
DO_TEST("vhost_queues");
|
||||
|
Loading…
Reference in New Issue
Block a user