|
@@ -517,13 +517,20 @@ static int qxl_track_command(PCIQXLDevice *qxl, struct QXLCommandExt *ext)
|
|
|
|
|
|
/* spice display interface callbacks */
|
|
|
|
|
|
-static void interface_attach_worker(QXLInstance *sin, QXLWorker *qxl_worker)
|
|
|
+static void interface_attached_worker(QXLInstance *sin)
|
|
|
{
|
|
|
PCIQXLDevice *qxl = container_of(sin, PCIQXLDevice, ssd.qxl);
|
|
|
|
|
|
trace_qxl_interface_attach_worker(qxl->id);
|
|
|
}
|
|
|
|
|
|
+#if !(SPICE_HAS_ATTACHED_WORKER)
|
|
|
+static void interface_attach_worker(QXLInstance *sin, QXLWorker *qxl_worker)
|
|
|
+{
|
|
|
+ interface_attached_worker(sin);
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
static void interface_set_compression_level(QXLInstance *sin, int level)
|
|
|
{
|
|
|
PCIQXLDevice *qxl = container_of(sin, PCIQXLDevice, ssd.qxl);
|
|
@@ -1131,7 +1138,12 @@ static const QXLInterface qxl_interface = {
|
|
|
.base.major_version = SPICE_INTERFACE_QXL_MAJOR,
|
|
|
.base.minor_version = SPICE_INTERFACE_QXL_MINOR,
|
|
|
|
|
|
+#if SPICE_HAS_ATTACHED_WORKER
|
|
|
+ .attached_worker = interface_attached_worker,
|
|
|
+#else
|
|
|
.attache_worker = interface_attach_worker,
|
|
|
+#endif
|
|
|
+
|
|
|
.set_compression_level = interface_set_compression_level,
|
|
|
#if SPICE_NEEDS_SET_MM_TIME
|
|
|
.set_mm_time = interface_set_mm_time,
|