Mesa (master): rbug: remove contexts from the list properly

Marek Olšák mareko at kemper.freedesktop.org
Tue Aug 19 10:57:07 UTC 2014


Module: Mesa
Branch: master
Commit: 4a3f156dd1eda367407464d0123bd18bc140f655
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=4a3f156dd1eda367407464d0123bd18bc140f655

Author: Marek Olšák <marek.olsak at amd.com>
Date:   Sun Aug 17 01:32:43 2014 +0200

rbug: remove contexts from the list properly

Reviewed-by: Roland Scheidegger <sroland at vmware.com>

---

 src/gallium/drivers/rbug/rbug_context.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/gallium/drivers/rbug/rbug_context.c b/src/gallium/drivers/rbug/rbug_context.c
index 62fe543..ca94590 100644
--- a/src/gallium/drivers/rbug/rbug_context.c
+++ b/src/gallium/drivers/rbug/rbug_context.c
@@ -40,10 +40,12 @@
 static void
 rbug_destroy(struct pipe_context *_pipe)
 {
+   struct rbug_screen *rb_screen = rbug_screen(_pipe->screen);
    struct rbug_context *rb_pipe = rbug_context(_pipe);
    struct pipe_context *pipe = rb_pipe->pipe;
 
-   remove_from_list(&rb_pipe->list);
+   rbug_screen_remove_from_list(rb_screen, contexts, rb_pipe);
+
    pipe_mutex_lock(rb_pipe->call_mutex);
    pipe->destroy(pipe);
    rb_pipe->pipe = NULL;




More information about the mesa-commit mailing list