diff options
author | Dave Airlie <[email protected]> | 2018-10-05 09:56:19 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2018-10-11 09:50:27 +1000 |
commit | 29a7631986b10c99d5daad1a571716086a325bd5 (patch) | |
tree | 8e19bc37fc0a12588c84c9431c730691fc252caf /src/intel/vulkan | |
parent | 4ba445e0117b29c31b030feb6e0f421a5ceb03e5 (diff) |
anv: add missing unlock in error path.
Not going to matter, but be consistent.
Found by coverity
Reviewed-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Fixes: caf41c78c (anv/allocator: Support softpin in the BO cache)
Diffstat (limited to 'src/intel/vulkan')
-rw-r--r-- | src/intel/vulkan/anv_allocator.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_allocator.c b/src/intel/vulkan/anv_allocator.c index f62d48ae3fe..67f2f73aa11 100644 --- a/src/intel/vulkan/anv_allocator.c +++ b/src/intel/vulkan/anv_allocator.c @@ -1358,6 +1358,7 @@ anv_bo_cache_import(struct anv_device *device, if ((new_flags & EXEC_OBJECT_PINNED) && (bo->bo.flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS) != (bo_flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS)) { + pthread_mutex_unlock(&cache->mutex); return vk_errorf(device->instance, NULL, VK_ERROR_INVALID_EXTERNAL_HANDLE, "The same BO was imported on two different heaps"); |