From: Leon Elazar Date: Fri, 3 Mar 2017 19:37:08 +0000 (-0500) Subject: drm/amd/display: Memory leak fix during disable X-Git-Tag: v4.15~362^2~23^2~660 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=68339af3cb7fa32634170fe5cf5cba1335bb8cc9;p=mirror_ubuntu-bionic-kernel.git drm/amd/display: Memory leak fix during disable 1.current_context memory wasn't released at dc_post_update_surfaces_to_stream during context swap. Signed-off-by: Leon Elazar Acked-by: Harry Wentland Reviewed-by: Tony Cheng Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c index 302a10c86afb..4fed2f25cd96 100644 --- a/drivers/gpu/drm/amd/display/dc/core/dc.c +++ b/drivers/gpu/drm/amd/display/dc/core/dc.c @@ -1046,6 +1046,9 @@ bool dc_post_update_surfaces_to_stream(struct dc *dc) core_dc->hwss.set_bandwidth(core_dc, context, true); resource_validate_ctx_destruct(core_dc->current_context); + if (core_dc->current_context) + dm_free(core_dc->current_context); + core_dc->current_context = context; return true;