summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2011-03-07 20:46:58 +0200
committerAlon Levy <alevy@redhat.com>2011-03-08 20:17:37 +0200
commit44e22ca6b6688caef89b28aa4620af5539bc1da4 (patch)
treedc4aab1c3806d0fc2d938cc63bcfc95e51d5cf22
parent52d4094f31881c12276a30860c02048847d96453 (diff)
qxl_dev: introduce defines for rings sizes
-rw-r--r--spice/qxl_dev.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/spice/qxl_dev.h b/spice/qxl_dev.h
index 7219bfc..e3e0696 100644
--- a/spice/qxl_dev.h
+++ b/spice/qxl_dev.h
@@ -200,10 +200,14 @@ typedef struct SPICE_ATTR_PACKED QXLSurfaceCreate {
QXLPHYSICAL mem;
} QXLSurfaceCreate;
-SPICE_RING_DECLARE(QXLCommandRing, QXLCommand, 32);
-SPICE_RING_DECLARE(QXLCursorRing, QXLCommand, 32);
+#define QXL_COMMAND_RING_SIZE 32
+#define QXL_CURSOR_RING_SIZE 32
+#define QXL_RELEASE_RING_SIZE 8
-SPICE_RING_DECLARE(QXLReleaseRing, uint64_t, 8);
+SPICE_RING_DECLARE(QXLCommandRing, QXLCommand, QXL_COMMAND_RING_SIZE);
+SPICE_RING_DECLARE(QXLCursorRing, QXLCommand, QXL_CURSOR_RING_SIZE);
+
+SPICE_RING_DECLARE(QXLReleaseRing, uint64_t, QXL_RELEASE_RING_SIZE);
#define QXL_LOG_BUF_SIZE 4096