]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
drm/amd/display: Memory leak fix during disable
authorLeon Elazar <leon.elazar@amd.com>
Fri, 3 Mar 2017 19:37:08 +0000 (14:37 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 26 Sep 2017 21:18:15 +0000 (17:18 -0400)
1.current_context memory wasn't released at
dc_post_update_surfaces_to_stream during context swap.

Signed-off-by: Leon Elazar <leon.elazar@amd.com>
Acked-by: Harry Wentland <Harry.Wentland@amd.com>
Reviewed-by: Tony Cheng <Tony.Cheng@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/core/dc.c

index 302a10c86afb7525909df62360966f6d3ec95021..4fed2f25cd96341ec5a07f1951ed41df9f51e860 100644 (file)
@@ -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;