From 54253a6d545e07d9f16d871aa254d0aa4f779a7f Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Thu, 30 Jun 2011 15:03:31 +0200 Subject: [PATCH] qxl_dev: add QXL_INTERRUPT_ERROR The interrupt is used to notify the guest driver it did an error in the last io operation. It can be left unhandled. --- spice/qxl_dev.h | 1 + 1 file changed, 1 insertion(+) diff --git a/spice/qxl_dev.h b/spice/qxl_dev.h index 82eb1c8..5ac2f46 100644 --- a/spice/qxl_dev.h +++ b/spice/qxl_dev.h @@ -223,6 +223,7 @@ SPICE_RING_DECLARE(QXLReleaseRing, uint64_t, QXL_RELEASE_RING_SIZE); #define QXL_INTERRUPT_DISPLAY (1 << 0) #define QXL_INTERRUPT_CURSOR (1 << 1) #define QXL_INTERRUPT_IO_CMD (1 << 2) +#define QXL_INTERRUPT_ERROR (1 << 3) /* qxl-1 compat: append only */ typedef struct SPICE_ATTR_PACKED QXLRam {