mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 05:50:12 +01:00
amdgpu: fix double mutex_unlock in amdgpu_bo_import
The handles array is used below, which is followed by another unlock, so remove the first one. Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
7d7f25c938
commit
201b09a443
1 changed files with 1 additions and 1 deletions
|
|
@ -452,10 +452,10 @@ int amdgpu_bo_import(amdgpu_device_handle dev,
|
|||
atomic_set(&bo->refcount, 1);
|
||||
bo->dev = dev;
|
||||
pthread_mutex_init(&bo->cpu_access_mutex, NULL);
|
||||
pthread_mutex_unlock(&dev->bo_table_mutex);
|
||||
|
||||
r = amdgpu_bo_map(bo, 1 << 20);
|
||||
if (r) {
|
||||
pthread_mutex_unlock(&dev->bo_table_mutex);
|
||||
amdgpu_bo_reference(&bo, NULL);
|
||||
return r;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue