r300g: avoid mapping the same buffer twice
authorMarek Olšák <maraeo@gmail.com>
Sun, 3 Apr 2011 17:17:19 +0000 (19:17 +0200)
committerMarek Olšák <maraeo@gmail.com>
Sun, 3 Apr 2011 17:32:27 +0000 (19:32 +0200)
Shouldn't happen, but you never know.

src/gallium/winsys/radeon/drm/radeon_drm_bo.c

index eb7225b..4fd8220 100644 (file)
@@ -191,6 +191,11 @@ static void *radeon_bo_map_internal(struct pb_buffer *_buf,
 
     /* Map the buffer. */
     pipe_mutex_lock(bo->map_mutex);
+    /* Return the pointer if it's already mapped (in case of a race). */
+    if (bo->ptr) {
+        pipe_mutex_unlock(bo->map_mutex);
+        return bo->ptr;
+    }
     args.handle = bo->handle;
     args.offset = 0;
     args.size = (uint64_t)bo->size;