diff options
author | Kenneth Graunke <[email protected]> | 2017-07-11 14:01:20 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2017-07-12 12:39:10 -0700 |
commit | 76acbd07fcc62ea3a6ecd499a553e7a99ec77f47 (patch) | |
tree | b0078bda125bc56ecd6bcafb9be6bd01cd1406c1 | |
parent | 0a56c5f3f1396bec0ebe5213388fc5c2657fcc4a (diff) |
i965: Drop bogus pthread_mutex_unlock in map_gtt error path.
The locking was supposed to go away in commit 314647c4c206917ec01b7
(i965: Drop global bufmgr lock from brw_bo_map_* functions.), but
this lone unlock remains.
I'm guessing I messed this up when splitting up Chris's patch.
Reviewed-by: Chris Wilson <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_bufmgr.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_bufmgr.c b/src/mesa/drivers/dri/i965/brw_bufmgr.c index 98a75dd4a68..64e503fb2be 100644 --- a/src/mesa/drivers/dri/i965/brw_bufmgr.c +++ b/src/mesa/drivers/dri/i965/brw_bufmgr.c @@ -759,7 +759,6 @@ brw_bo_map_gtt(struct brw_context *brw, struct brw_bo *bo, unsigned flags) if (ret != 0) { DBG("%s:%d: Error preparing buffer map %d (%s): %s .\n", __FILE__, __LINE__, bo->gem_handle, bo->name, strerror(errno)); - pthread_mutex_unlock(&bufmgr->lock); return NULL; } |