diff options
| author | Alon Levy <alevy@redhat.com> | 2012-04-25 12:13:23 +0300 |
|---|---|---|
| committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-05-03 10:45:04 +0200 |
| commit | baeae407e6fe38af92eb412f111d5b0c27b54547 (patch) | |
| tree | 16fbc3a6c0a09bec2bbe3a5a616a28c45d5ef769 /hw/qxl.c | |
| parent | 75fe0d7bf88cc5682de0b4d23e9d7b4ee5951fec (diff) | |
| download | focaccia-qemu-baeae407e6fe38af92eb412f111d5b0c27b54547.tar.gz focaccia-qemu-baeae407e6fe38af92eb412f111d5b0c27b54547.zip | |
qxl: interface_notify_update: remove guest trigerrable abort
Signed-off-by: Alon Levy <alevy@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/qxl.c')
| -rw-r--r-- | hw/qxl.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/hw/qxl.c b/hw/qxl.c index 6e7232cee1..44ee49583f 100644 --- a/hw/qxl.c +++ b/hw/qxl.c @@ -768,8 +768,13 @@ static int interface_req_cursor_notification(QXLInstance *sin) /* called from spice server thread context */ static void interface_notify_update(QXLInstance *sin, uint32_t update_id) { - fprintf(stderr, "%s: abort()\n", __FUNCTION__); - abort(); + /* + * Called by spice-server as a result of a QXL_CMD_UPDATE which is not in + * use by xf86-video-qxl and is defined out in the qxl windows driver. + * Probably was at some earlier version that is prior to git start (2009), + * and is still guest trigerrable. + */ + fprintf(stderr, "%s: deprecated\n", __func__); } /* called from spice server thread context only */ |