Skip to content
Snippets Groups Projects
Commit ab7e9c13 authored by Christian König's avatar Christian König Committed by Alex Deucher
Browse files

drm/amdgpu: fix leaking fence in the pageflip code


This fixes a memory leak when we can't register the callback on a fence.

Signed-off-by: default avatarChristian König <christian.koenig@amd.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 1f8628c7
Branches
Tags
No related merge requests found
......@@ -57,7 +57,7 @@ static bool amdgpu_flip_handle_fence(struct amdgpu_flip_work *work,
if (!fence_add_callback(fence, &work->cb, amdgpu_flip_callback))
return true;
fence_put(*f);
fence_put(fence);
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment