mirror of
https://github.com/torvalds/linux.git
synced 2026-05-25 15:41:52 +02:00
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: 2745bdda20 ("drm/i915: Stop clobbering old crtc state during state check")
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20231010053208.691260-1-suraj.kandpal@intel.com
This commit is contained in:
parent
2bc823c920
commit
85c477011d
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user