mirror of https://github.com/xqemu/xqemu.git
Merge remote-tracking branch 'spice/spice.v42' into staging
This commit is contained in:
commit
573da34a41
|
@ -224,7 +224,7 @@ void qxl_log_command(PCIQXLDevice *qxl, const char *ring, QXLCommandExt *ext)
|
||||||
if (!qxl->cmdlog) {
|
if (!qxl->cmdlog) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
fprintf(stderr, "%ld qxl-%d/%s:", qemu_get_clock_ns(vm_clock),
|
fprintf(stderr, "%" PRId64 " qxl-%d/%s:", qemu_get_clock_ns(vm_clock),
|
||||||
qxl->id, ring);
|
qxl->id, ring);
|
||||||
fprintf(stderr, " cmd @ 0x%" PRIx64 " %s%s", ext->cmd.data,
|
fprintf(stderr, " cmd @ 0x%" PRIx64 " %s%s", ext->cmd.data,
|
||||||
qxl_name(qxl_type, ext->cmd.type),
|
qxl_name(qxl_type, ext->cmd.type),
|
||||||
|
|
26
hw/qxl.c
26
hw/qxl.c
|
@ -808,7 +808,7 @@ static void qxl_exit_vga_mode(PCIQXLDevice *d)
|
||||||
qxl_destroy_primary(d, QXL_SYNC);
|
qxl_destroy_primary(d, QXL_SYNC);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void qxl_set_irq(PCIQXLDevice *d)
|
static void qxl_update_irq(PCIQXLDevice *d)
|
||||||
{
|
{
|
||||||
uint32_t pending = le32_to_cpu(d->ram->int_pending);
|
uint32_t pending = le32_to_cpu(d->ram->int_pending);
|
||||||
uint32_t mask = le32_to_cpu(d->ram->int_mask);
|
uint32_t mask = le32_to_cpu(d->ram->int_mask);
|
||||||
|
@ -959,7 +959,7 @@ static void qxl_add_memslot(PCIQXLDevice *d, uint32_t slot_id, uint64_t delta,
|
||||||
memslot.generation = d->rom->slot_generation = 0;
|
memslot.generation = d->rom->slot_generation = 0;
|
||||||
qxl_rom_set_dirty(d);
|
qxl_rom_set_dirty(d);
|
||||||
|
|
||||||
dprint(d, 1, "%s: slot %d: host virt 0x%" PRIx64 " - 0x%" PRIx64 "\n",
|
dprint(d, 1, "%s: slot %d: host virt 0x%lx - 0x%lx\n",
|
||||||
__FUNCTION__, memslot.slot_id,
|
__FUNCTION__, memslot.slot_id,
|
||||||
memslot.virt_start, memslot.virt_end);
|
memslot.virt_start, memslot.virt_end);
|
||||||
|
|
||||||
|
@ -1090,8 +1090,8 @@ static void qxl_set_mode(PCIQXLDevice *d, int modenr, int loadvm)
|
||||||
.mem = devmem + d->shadow_rom.draw_area_offset,
|
.mem = devmem + d->shadow_rom.draw_area_offset,
|
||||||
};
|
};
|
||||||
|
|
||||||
dprint(d, 1, "%s: mode %d [ %d x %d @ %d bpp devmem 0x%lx ]\n", __FUNCTION__,
|
dprint(d, 1, "%s: mode %d [ %d x %d @ %d bpp devmem 0x%" PRIx64 " ]\n",
|
||||||
modenr, mode->x_res, mode->y_res, mode->bits, devmem);
|
__func__, modenr, mode->x_res, mode->y_res, mode->bits, devmem);
|
||||||
if (!loadvm) {
|
if (!loadvm) {
|
||||||
qxl_hard_reset(d, 0);
|
qxl_hard_reset(d, 0);
|
||||||
}
|
}
|
||||||
|
@ -1209,7 +1209,7 @@ async_common:
|
||||||
qemu_spice_wakeup(&d->ssd);
|
qemu_spice_wakeup(&d->ssd);
|
||||||
break;
|
break;
|
||||||
case QXL_IO_UPDATE_IRQ:
|
case QXL_IO_UPDATE_IRQ:
|
||||||
qxl_set_irq(d);
|
qxl_update_irq(d);
|
||||||
break;
|
break;
|
||||||
case QXL_IO_NOTIFY_OOM:
|
case QXL_IO_NOTIFY_OOM:
|
||||||
if (!SPICE_RING_IS_EMPTY(&d->ram->release_ring)) {
|
if (!SPICE_RING_IS_EMPTY(&d->ram->release_ring)) {
|
||||||
|
@ -1229,7 +1229,7 @@ async_common:
|
||||||
break;
|
break;
|
||||||
case QXL_IO_LOG:
|
case QXL_IO_LOG:
|
||||||
if (d->guestdebug) {
|
if (d->guestdebug) {
|
||||||
fprintf(stderr, "qxl/guest-%d: %ld: %s", d->id,
|
fprintf(stderr, "qxl/guest-%d: %" PRId64 ": %s", d->id,
|
||||||
qemu_get_clock_ns(vm_clock), d->ram->log_buf);
|
qemu_get_clock_ns(vm_clock), d->ram->log_buf);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -1359,10 +1359,9 @@ static void pipe_read(void *opaque)
|
||||||
do {
|
do {
|
||||||
len = read(d->pipe[0], &dummy, sizeof(dummy));
|
len = read(d->pipe[0], &dummy, sizeof(dummy));
|
||||||
} while (len == sizeof(dummy));
|
} while (len == sizeof(dummy));
|
||||||
qxl_set_irq(d);
|
qxl_update_irq(d);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* called from spice server thread context only */
|
|
||||||
static void qxl_send_events(PCIQXLDevice *d, uint32_t events)
|
static void qxl_send_events(PCIQXLDevice *d, uint32_t events)
|
||||||
{
|
{
|
||||||
uint32_t old_pending;
|
uint32_t old_pending;
|
||||||
|
@ -1374,7 +1373,7 @@ static void qxl_send_events(PCIQXLDevice *d, uint32_t events)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (pthread_self() == d->main) {
|
if (pthread_self() == d->main) {
|
||||||
qxl_set_irq(d);
|
qxl_update_irq(d);
|
||||||
} else {
|
} else {
|
||||||
if (write(d->pipe[1], d, 1) != 1) {
|
if (write(d->pipe[1], d, 1) != 1) {
|
||||||
dprint(d, 1, "%s: write to pipe failed\n", __FUNCTION__);
|
dprint(d, 1, "%s: write to pipe failed\n", __FUNCTION__);
|
||||||
|
@ -1459,7 +1458,14 @@ static void qxl_vm_change_state_handler(void *opaque, int running, int reason)
|
||||||
PCIQXLDevice *qxl = opaque;
|
PCIQXLDevice *qxl = opaque;
|
||||||
qemu_spice_vm_change_state_handler(&qxl->ssd, running, reason);
|
qemu_spice_vm_change_state_handler(&qxl->ssd, running, reason);
|
||||||
|
|
||||||
if (!running && qxl->mode == QXL_MODE_NATIVE) {
|
if (running) {
|
||||||
|
/*
|
||||||
|
* if qxl_send_events was called from spice server context before
|
||||||
|
* migration ended, qxl_update_irq for these events might not have been
|
||||||
|
* called
|
||||||
|
*/
|
||||||
|
qxl_update_irq(qxl);
|
||||||
|
} else if (qxl->mode == QXL_MODE_NATIVE) {
|
||||||
/* dirty all vram (which holds surfaces) and devram (primary surface)
|
/* dirty all vram (which holds surfaces) and devram (primary surface)
|
||||||
* to make sure they are saved */
|
* to make sure they are saved */
|
||||||
/* FIXME #1: should go out during "live" stage */
|
/* FIXME #1: should go out during "live" stage */
|
||||||
|
|
|
@ -45,7 +45,7 @@ static int vmc_write(SpiceCharDeviceInstance *sin, const uint8_t *buf, int len)
|
||||||
p += last_out;
|
p += last_out;
|
||||||
}
|
}
|
||||||
|
|
||||||
dprintf(scd, 3, "%s: %lu/%zd\n", __func__, out, len + out);
|
dprintf(scd, 3, "%s: %zu/%zd\n", __func__, out, len + out);
|
||||||
trace_spice_vmc_write(out, len + out);
|
trace_spice_vmc_write(out, len + out);
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
#include <spice-experimental.h>
|
#include <spice-experimental.h>
|
||||||
|
|
||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
|
#include <pthread.h>
|
||||||
|
|
||||||
#include "qemu-common.h"
|
#include "qemu-common.h"
|
||||||
#include "qemu-spice.h"
|
#include "qemu-spice.h"
|
||||||
|
@ -44,6 +45,8 @@ static char *auth_passwd;
|
||||||
static time_t auth_expires = TIME_MAX;
|
static time_t auth_expires = TIME_MAX;
|
||||||
int using_spice = 0;
|
int using_spice = 0;
|
||||||
|
|
||||||
|
static pthread_t me;
|
||||||
|
|
||||||
struct SpiceTimer {
|
struct SpiceTimer {
|
||||||
QEMUTimer *timer;
|
QEMUTimer *timer;
|
||||||
QTAILQ_ENTRY(SpiceTimer) next;
|
QTAILQ_ENTRY(SpiceTimer) next;
|
||||||
|
@ -217,6 +220,20 @@ static void channel_event(int event, SpiceChannelEventInfo *info)
|
||||||
QDict *server, *client;
|
QDict *server, *client;
|
||||||
QObject *data;
|
QObject *data;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Spice server might have called us from spice worker thread
|
||||||
|
* context (happens on display channel disconnects). Spice should
|
||||||
|
* not do that. It isn't that easy to fix it in spice and even
|
||||||
|
* when it is fixed we still should cover the already released
|
||||||
|
* spice versions. So detect that we've been called from another
|
||||||
|
* thread and grab the iothread lock if so before calling qemu
|
||||||
|
* functions.
|
||||||
|
*/
|
||||||
|
bool need_lock = !pthread_equal(me, pthread_self());
|
||||||
|
if (need_lock) {
|
||||||
|
qemu_mutex_lock_iothread();
|
||||||
|
}
|
||||||
|
|
||||||
client = qdict_new();
|
client = qdict_new();
|
||||||
add_addr_info(client, &info->paddr, info->plen);
|
add_addr_info(client, &info->paddr, info->plen);
|
||||||
|
|
||||||
|
@ -236,6 +253,10 @@ static void channel_event(int event, SpiceChannelEventInfo *info)
|
||||||
QOBJECT(client), QOBJECT(server));
|
QOBJECT(client), QOBJECT(server));
|
||||||
monitor_protocol_event(qevent[event], data);
|
monitor_protocol_event(qevent[event], data);
|
||||||
qobject_decref(data);
|
qobject_decref(data);
|
||||||
|
|
||||||
|
if (need_lock) {
|
||||||
|
qemu_mutex_unlock_iothread();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#else /* SPICE_INTERFACE_CORE_MINOR >= 3 */
|
#else /* SPICE_INTERFACE_CORE_MINOR >= 3 */
|
||||||
|
@ -482,7 +503,9 @@ void qemu_spice_init(void)
|
||||||
spice_image_compression_t compression;
|
spice_image_compression_t compression;
|
||||||
spice_wan_compression_t wan_compr;
|
spice_wan_compression_t wan_compr;
|
||||||
|
|
||||||
if (!opts) {
|
me = pthread_self();
|
||||||
|
|
||||||
|
if (!opts) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
port = qemu_opt_get_number(opts, "port", 0);
|
port = qemu_opt_get_number(opts, "port", 0);
|
||||||
|
|
|
@ -260,11 +260,12 @@ void qemu_spice_vm_change_state_handler(void *opaque, int running, int reason)
|
||||||
SimpleSpiceDisplay *ssd = opaque;
|
SimpleSpiceDisplay *ssd = opaque;
|
||||||
|
|
||||||
if (running) {
|
if (running) {
|
||||||
|
ssd->running = true;
|
||||||
qemu_spice_start(ssd);
|
qemu_spice_start(ssd);
|
||||||
} else {
|
} else {
|
||||||
qemu_spice_stop(ssd);
|
qemu_spice_stop(ssd);
|
||||||
|
ssd->running = false;
|
||||||
}
|
}
|
||||||
ssd->running = running;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void qemu_spice_display_init_common(SimpleSpiceDisplay *ssd, DisplayState *ds)
|
void qemu_spice_display_init_common(SimpleSpiceDisplay *ssd, DisplayState *ds)
|
||||||
|
|
Loading…
Reference in New Issue