Commit 85c47701 authored by Suraj Kandpal's avatar Suraj Kandpal Committed by Ville Syrjälä

drm/i915/display: Free crtc_state in verify_crtc_state

Free hw_crtc_state in verify_crtc_state after we are done using
this or else it's just a resource leak.

Fixes: 2745bdda ("drm/i915: Stop clobbering old crtc state during state check")
Signed-off-by: default avatarSuraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20231010053208.691260-1-suraj.kandpal@intel.com
parent 2bc823c9
......@@ -214,7 +214,7 @@ verify_crtc_state(struct intel_atomic_state *state,
}
if (!sw_crtc_state->hw.active)
return;
goto destroy_state;
intel_pipe_config_sanity_check(hw_crtc_state);
......@@ -224,6 +224,9 @@ verify_crtc_state(struct intel_atomic_state *state,
intel_crtc_state_dump(hw_crtc_state, NULL, "hw state");
intel_crtc_state_dump(sw_crtc_state, NULL, "sw state");
}
destroy_state:
intel_crtc_destroy_state(&crtc->base, &hw_crtc_state->uapi);
}
void intel_modeset_verify_crtc(struct intel_atomic_state *state,
......
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