Skip to content

Commit

Permalink
drm/amd/display: Fix potential memory leak
Browse files Browse the repository at this point in the history
[Why]
vblank_workqueue is never released.

[How]
Free it upon dm finish.

Tested-by: Daniel Wheeler <[email protected]>
Signed-off-by: Qingqing Zhuo <[email protected]>
Reviewed-by: Nicholas Kazlauskas <[email protected]>
Acked-by: Solomon Chiu <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
  • Loading branch information
Qingqing Zhuo authored and alexdeucher committed Mar 24, 2021
1 parent 1c5ea40 commit 51ba691
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1226,6 +1226,15 @@ static void amdgpu_dm_fini(struct amdgpu_device *adev)
if (adev->dm.dc)
dc_deinit_callbacks(adev->dm.dc);
#endif

#if defined(CONFIG_DRM_AMD_DC_DCN)
if (adev->dm.vblank_workqueue) {
adev->dm.vblank_workqueue->dm = NULL;
kfree(adev->dm.vblank_workqueue);
adev->dm.vblank_workqueue = NULL;
}
#endif

if (adev->dm.dc->ctx->dmub_srv) {
dc_dmub_srv_destroy(&adev->dm.dc->ctx->dmub_srv);
adev->dm.dc->ctx->dmub_srv = NULL;
Expand Down

0 comments on commit 51ba691

Please sign in to comment.