aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2009-08-21 12:20:39 +0100
committerThomas White <taw@bitwiz.org.uk>2010-05-23 09:51:34 +0200
commit55e23762c458c99764ec3834e6900c73a90baf9c (patch)
treec0b13bb3254f4f403586b7aec0b2291d9331d4c3
parentaceb604fdf783c97d32021a4003afbaa52f88f6f (diff)
Remove log message when deleting with map_count > 0
This happens all the time with the latest DDX changes. No point filling the log up.
-rw-r--r--glamo/glamo_bo_gem.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/glamo/glamo_bo_gem.c b/glamo/glamo_bo_gem.c
index 5bda1c4c..2fe3f82f 100644
--- a/glamo/glamo_bo_gem.c
+++ b/glamo/glamo_bo_gem.c
@@ -175,10 +175,6 @@ static struct glamo_bo *bo_unref(struct glamo_bo *bo)
return bo;
}
if (bo_gem->map_count) {
- fprintf(stderr, "Map count for %p isn't zero (=%i),"
- " so I am unmapping it (%p, %i)\n",
- bo_gem, bo_gem->map_count, bo->virtual,
- bo->size);
munmap(bo->virtual, bo->size);
}