<model type='vga' vram='16384' heads='1'>
<acceleration accel3d='yes' accel2d='yes'/>
</model>
+ <driver name='qemu'/>
</video>
</devices>
...</pre>
<dd>
The subelement <code>driver</code> can be used to tune the device:
<dl>
- <dt>virtio options</dt>
+ <dt><code>name</code></dt>
+ <dd>
+ Specify the backend driver to use, either "qemu" or
+ "vhostuser" depending on the hypervisor features available
+ (<span class="since">since 5.8.0</span>). "qemu" is the
+ default QEMU backend. "vhostuser" will use a separate
+ vhost-user process backend (for <code>virtio</code>
+ device).
+ </dd>
+ <dt>virtio options</dt>
<dd>
<a href="#elementsVirtio">Virtio-specific options</a> can also be
set (<span class="since">Since 3.5.0</span>)
"s390",
);
+VIR_ENUM_IMPL(virDomainVideoBackend,
+ VIR_DOMAIN_VIDEO_BACKEND_TYPE_LAST,
+ "default",
+ "qemu",
+ "vhostuser",
+);
+
VIR_ENUM_IMPL(virDomainVideo,
VIR_DOMAIN_VIDEO_TYPE_LAST,
"default",
}
}
+ switch (video->backend) {
+ case VIR_DOMAIN_VIDEO_BACKEND_TYPE_VHOSTUSER:
+ if (video->type != VIR_DOMAIN_VIDEO_TYPE_VIRTIO) {
+ virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
+ _("'vhostuser' driver is only supported with 'virtio' device"));
+ return -1;
+ }
+ break;
+ case VIR_DOMAIN_VIDEO_BACKEND_TYPE_DEFAULT:
+ case VIR_DOMAIN_VIDEO_BACKEND_TYPE_QEMU:
+ break;
+ case VIR_DOMAIN_VIDEO_BACKEND_TYPE_LAST:
+ default:
+ virReportEnumRangeError(virDomainInputType, video->backend);
+ return -1;
+ }
+
return 0;
}
xmlNodePtr cur;
VIR_XPATH_NODE_AUTORESTORE(ctxt);
VIR_AUTOFREE(char *) type = NULL;
+ VIR_AUTOFREE(char *) driver_name = NULL;
VIR_AUTOFREE(char *) heads = NULL;
VIR_AUTOFREE(char *) vram = NULL;
VIR_AUTOFREE(char *) vram64 = NULL;
if (virXMLNodeNameEqual(cur, "driver")) {
if (virDomainVirtioOptionsParseXML(cur, &def->virtio) < 0)
goto error;
+ driver_name = virXMLPropString(cur, "name");
}
}
cur = cur->next;
def->type = virDomainVideoDefaultType(dom);
}
+ if (driver_name) {
+ if ((def->backend = virDomainVideoBackendTypeFromString(driver_name)) < 0) {
+ virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
+ _("unknown video driver '%s'"), driver_name);
+ goto error;
+ }
+ } else {
+ def->backend = VIR_DOMAIN_VIDEO_BACKEND_TYPE_DEFAULT;
+ }
+
if (ram) {
if (def->type != VIR_DOMAIN_VIDEO_TYPE_QXL) {
virReportError(VIR_ERR_XML_ERROR, "%s",
virDomainVirtioOptionsFormat(&driverBuf, def->virtio);
if (virBufferCheckError(&driverBuf) < 0)
goto cleanup;
- if (virBufferUse(&driverBuf) || (def->driver && def->driver->vgaconf)) {
+ if (virBufferUse(&driverBuf) || (def->driver && def->driver->vgaconf) ||
+ def->backend != VIR_DOMAIN_VIDEO_BACKEND_TYPE_DEFAULT) {
virBufferAddLit(buf, "<driver");
if (virBufferUse(&driverBuf))
virBufferAddBuffer(buf, &driverBuf);
if (def->driver && def->driver->vgaconf)
virBufferAsprintf(buf, " vgaconf='%s'",
virDomainVideoVGAConfTypeToString(def->driver->vgaconf));
+ if (def->backend != VIR_DOMAIN_VIDEO_BACKEND_TYPE_DEFAULT)
+ virBufferAsprintf(buf, " name='%s'",
+ virDomainVideoBackendTypeToString(def->backend));
virBufferAddLit(buf, "/>\n");
}
virBufferAsprintf(buf, "<model type='%s'",
};
+/* the backend driver used for virtio interfaces */
+typedef enum {
+ VIR_DOMAIN_VIDEO_BACKEND_TYPE_DEFAULT,
+ VIR_DOMAIN_VIDEO_BACKEND_TYPE_QEMU,
+ VIR_DOMAIN_VIDEO_BACKEND_TYPE_VHOSTUSER,
+
+ VIR_DOMAIN_VIDEO_BACKEND_TYPE_LAST
+} virDomainVideoBackendType;
+
+
typedef enum {
VIR_DOMAIN_VIDEO_TYPE_DEFAULT,
VIR_DOMAIN_VIDEO_TYPE_VGA,
virDomainVideoDriverDefPtr driver;
virDomainDeviceInfo info;
virDomainVirtioOptionsPtr virtio;
+ virDomainVideoBackendType backend;
};
/* graphics console modes */
VIR_ENUM_DECL(virDomainWatchdogAction);
VIR_ENUM_DECL(virDomainPanicModel);
VIR_ENUM_DECL(virDomainVideo);
+VIR_ENUM_DECL(virDomainVideoBackend);
VIR_ENUM_DECL(virDomainHostdevMode);
VIR_ENUM_DECL(virDomainHostdevSubsys);
VIR_ENUM_DECL(virDomainHostdevCaps);