summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2009-08-21 12:20:39 +0100
committerChristoph Brill <christoph.brill@chamaeleon.de>2011-12-13 22:15:49 +0100
commit9483e0aa774c2cd21a260440e8d404e396f1b152 (patch)
tree6a686ec805e6698cb523f96604b79cd45bbf1932
parente1850d82425958178eb1d452d76d29d126ed2cad (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);
}