summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2012-06-25 16:13:29 +0300
committerMarc-André Lureau <marcandre.lureau@gmail.com>2012-07-15 19:21:34 +0200
commitde547245e75ea88f780205da072967bff119a636 (patch)
tree5e1eb23549c65569515bef11c53b09c88b502ba7
parentb4e3f07474c919af0e484a71fb86c788a703ad8c (diff)
(for later) qxl_ring: add helpers (debugging/unused)
-rw-r--r--src/qxl.h4
-rw-r--r--src/qxl_ring.c20
2 files changed, 24 insertions, 0 deletions
diff --git a/src/qxl.h b/src/qxl.h
index 44c9b47..c221a06 100644
--- a/src/qxl.h
+++ b/src/qxl.h
@@ -327,6 +327,10 @@ Bool qxl_ring_pop (struct qxl_ring *ring,
void *element);
void qxl_ring_wait_idle (struct qxl_ring *ring);
+void qxl_ring_request_notify (struct qxl_ring *ring);
+
+int qxl_ring_prod (struct qxl_ring *ring);
+int qxl_ring_cons (struct qxl_ring *ring);
/*
* Surface
diff --git a/src/qxl_ring.c b/src/qxl_ring.c
index fcbaaa7..2156113 100644
--- a/src/qxl_ring.c
+++ b/src/qxl_ring.c
@@ -132,3 +132,23 @@ qxl_ring_wait_idle (struct qxl_ring *ring)
mem_barrier();
}
}
+
+void
+qxl_ring_request_notify (struct qxl_ring *ring)
+{
+ ring->ring->header.notify_on_prod = ring->ring->header.prod + 1;
+ ErrorF("%s: requesting notify on prod %d\n", __func__,
+ ring->ring->header.notify_on_prod);
+}
+
+int
+qxl_ring_cons (struct qxl_ring *ring)
+{
+ return ring->ring->header.cons;
+}
+
+int
+qxl_ring_prod (struct qxl_ring *ring)
+{
+ return ring->ring->header.prod;
+}