]> git.baikalelectronics.ru Git - kernel.git/commit
drm/amdgpu: Fix double free of dmabuf
authorxinhui pan <xinhui.pan@amd.com>
Fri, 19 Nov 2021 10:08:31 +0000 (18:08 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 24 Nov 2021 20:04:05 +0000 (15:04 -0500)
commitfe9c2fc22ba8be48c75872bce1d34d1273ecf3c0
treec7d01216d5250c49492c28d4159a00c39f082321
parent67ccc286d283a9621f8dab02f57a0746ac5e0e34
drm/amdgpu: Fix double free of dmabuf

amdgpu_amdkfd_gpuvm_free_memory_of_gpu drop dmabuf reference increased in
amdgpu_gem_prime_export.
amdgpu_bo_destroy drop dmabuf reference increased in
amdgpu_gem_prime_import.

So remove this extra dma_buf_put to avoid double free.

Signed-off-by: xinhui pan <xinhui.pan@amd.com>
Tested-by: Felix Kuehling <Felix.Kuehling@amd.com>
Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com>
Acked-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c