Commit de37e273 authored by Dmytro Laktyushkin's avatar Dmytro Laktyushkin Committed by Alex Deucher

drm/amd/display: fix memory leak

Signed-off-by: default avatarDmytro Laktyushkin <Dmytro.Laktyushkin@amd.com>
Reviewed-by: default avatarHarry Wentland <Harry.Wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent d4e745e3
...@@ -918,7 +918,6 @@ bool dc_post_update_surfaces_to_stream(struct dc *dc) ...@@ -918,7 +918,6 @@ bool dc_post_update_surfaces_to_stream(struct dc *dc)
int i; int i;
struct core_dc *core_dc = DC_TO_CORE(dc); struct core_dc *core_dc = DC_TO_CORE(dc);
struct validate_context *context = dm_alloc(sizeof(struct validate_context)); struct validate_context *context = dm_alloc(sizeof(struct validate_context));
bool result = true;
if (!context) { if (!context) {
dm_error("%s: failed to create validate ctx\n", __func__); dm_error("%s: failed to create validate ctx\n", __func__);
...@@ -927,28 +926,29 @@ bool dc_post_update_surfaces_to_stream(struct dc *dc) ...@@ -927,28 +926,29 @@ bool dc_post_update_surfaces_to_stream(struct dc *dc)
dc_resource_validate_ctx_copy_construct(core_dc->current_context, context); dc_resource_validate_ctx_copy_construct(core_dc->current_context, context);
post_surface_trace(dc); post_surface_trace(dc);
for (i = 0; i < context->res_ctx.pool->pipe_count; i++) for (i = 0; i < context->res_ctx.pool->pipe_count; i++)
if (context->res_ctx.pipe_ctx[i].stream == NULL) { if (context->res_ctx.pipe_ctx[i].stream == NULL) {
context->res_ctx.pipe_ctx[i].pipe_idx = i; context->res_ctx.pipe_ctx[i].pipe_idx = i;
core_dc->hwss.power_down_front_end( core_dc->hwss.power_down_front_end(
core_dc, &context->res_ctx.pipe_ctx[i]); core_dc, &context->res_ctx.pipe_ctx[i]);
} }
if (!core_dc->res_pool->funcs->validate_bandwidth(core_dc, context)) { if (!core_dc->res_pool->funcs->validate_bandwidth(core_dc, context)) {
BREAK_TO_DEBUGGER(); BREAK_TO_DEBUGGER();
result = false; dc_resource_validate_ctx_destruct(context);
goto cleanup; dm_free(context);
return false;
} }
core_dc->hwss.set_bandwidth(core_dc, context, true); core_dc->hwss.set_bandwidth(core_dc, context, true);
dc_resource_validate_ctx_copy_construct(context, core_dc->current_context); if (core_dc->current_context) {
dc_resource_validate_ctx_destruct(core_dc->current_context);
cleanup: dm_free(core_dc->current_context);
dc_resource_validate_ctx_destruct(context); }
dm_free(context); core_dc->current_context = context;
return result; return true;
} }
bool dc_commit_surfaces_to_stream( bool dc_commit_surfaces_to_stream(
...@@ -1440,10 +1440,8 @@ void dc_update_surfaces_and_stream(struct dc *dc, ...@@ -1440,10 +1440,8 @@ void dc_update_surfaces_and_stream(struct dc *dc,
return; return;
fail: fail:
if (core_dc->current_context != context) { dc_resource_validate_ctx_destruct(context);
dc_resource_validate_ctx_destruct(context); dm_free(context);
dm_free(context);
}
} }
uint8_t dc_get_current_stream_count(const struct dc *dc) uint8_t dc_get_current_stream_count(const struct dc *dc)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment