]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm/amd/display: Stop leaking planes
authorHarry Wentland <harry.wentland@amd.com>
Sun, 7 Oct 2018 14:01:23 +0000 (10:01 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 6 Nov 2018 21:25:28 +0000 (16:25 -0500)
[Why]
drm_plane_cleanup does not free the plane.

[How]
Call drm_primary_helper_destroy which will also free the plane.

Signed-off-by: Harry Wentland <harry.wentland@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c

index e224f23e22155918a742bbd13e45131edc9463b0..289ddd52cac489d1ad243eba732b72ecc7442957 100644 (file)
@@ -3301,7 +3301,7 @@ void dm_drm_plane_destroy_state(struct drm_plane *plane,
 static const struct drm_plane_funcs dm_plane_funcs = {
        .update_plane   = drm_atomic_helper_update_plane,
        .disable_plane  = drm_atomic_helper_disable_plane,
-       .destroy        = drm_plane_cleanup,
+       .destroy        = drm_primary_helper_destroy,
        .reset = dm_drm_plane_reset,
        .atomic_duplicate_state = dm_drm_plane_duplicate_state,
        .atomic_destroy_state = dm_drm_plane_destroy_state,