Commit 5ea81b91 authored by Dmytro Laktyushkin's avatar Dmytro Laktyushkin Committed by Alex Deucher

drm/amd/display: fix up construction of scratch_val_ctx

Signed-off-by: default avatarDmytro Laktyushkin <Dmytro.Laktyushkin@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 922aa1e1
...@@ -450,11 +450,6 @@ static void destruct(struct core_dc *dc) ...@@ -450,11 +450,6 @@ static void destruct(struct core_dc *dc)
{ {
resource_validate_ctx_destruct(dc->current_context); resource_validate_ctx_destruct(dc->current_context);
dm_free(dc->temp_flip_context);
dc->temp_flip_context = NULL;
dm_free(dc->scratch_val_ctx);
dc->scratch_val_ctx = NULL;
destroy_links(dc); destroy_links(dc);
dc_destroy_resource_pool(dc); dc_destroy_resource_pool(dc);
...@@ -473,6 +468,10 @@ static void destruct(struct core_dc *dc) ...@@ -473,6 +468,10 @@ static void destruct(struct core_dc *dc)
dm_free(dc->current_context); dm_free(dc->current_context);
dc->current_context = NULL; dc->current_context = NULL;
dm_free(dc->temp_flip_context);
dc->temp_flip_context = NULL;
dm_free(dc->scratch_val_ctx);
dc->scratch_val_ctx = NULL;
dm_free(dc->ctx); dm_free(dc->ctx);
dc->ctx = NULL; dc->ctx = NULL;
...@@ -492,7 +491,7 @@ static bool construct(struct core_dc *dc, ...@@ -492,7 +491,7 @@ static bool construct(struct core_dc *dc,
dc->current_context = dm_alloc(sizeof(*dc->current_context)); dc->current_context = dm_alloc(sizeof(*dc->current_context));
dc->temp_flip_context = dm_alloc(sizeof(*dc->temp_flip_context)); dc->temp_flip_context = dm_alloc(sizeof(*dc->temp_flip_context));
dc->scratch_val_ctx = dm_alloc(sizeof(*dc->temp_flip_context)); dc->scratch_val_ctx = dm_alloc(sizeof(*dc->scratch_val_ctx));
if (!dc->current_context || !dc->temp_flip_context) { if (!dc->current_context || !dc->temp_flip_context) {
dm_error("%s: failed to create validate ctx\n", __func__); dm_error("%s: failed to create validate ctx\n", __func__);
...@@ -1220,6 +1219,7 @@ bool dc_pre_update_surfaces_to_target( ...@@ -1220,6 +1219,7 @@ bool dc_pre_update_surfaces_to_target(
goto unexpected_fail; goto unexpected_fail;
} }
resource_validate_ctx_destruct(context); resource_validate_ctx_destruct(context);
ASSERT(core_dc->scratch_val_ctx == temp_context);
core_dc->scratch_val_ctx = context; core_dc->scratch_val_ctx = context;
context = temp_context; context = temp_context;
} }
......
...@@ -312,7 +312,7 @@ struct validate_context { ...@@ -312,7 +312,7 @@ struct validate_context {
/* The output from BW and WM calculations. */ /* The output from BW and WM calculations. */
struct bw_calcs_output bw_results; struct bw_calcs_output bw_results;
/* Note: this is a big structure, do *not* put on stack! */ /* Note: these are big structures, do *not* put on stack! */
struct dm_pp_display_configuration pp_display_cfg; struct dm_pp_display_configuration pp_display_cfg;
}; };
......
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