Patch "drm/i915: fix a possible refcount leak in intel_dp_add_mst_connector()" has been added to the 5.18-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    drm/i915: fix a possible refcount leak in intel_dp_add_mst_connector()

to the 5.18-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     drm-i915-fix-a-possible-refcount-leak-in-intel_dp_ad.patch
and it can be found in the queue-5.18 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 8ed52dc7f7a264ab4960e2d173a5b4fee8d896fe
Author: Hangyu Hua <hbh25y@xxxxxxxxx>
Date:   Fri Jun 24 06:04:06 2022 -0700

    drm/i915: fix a possible refcount leak in intel_dp_add_mst_connector()
    
    [ Upstream commit 85144df9ff4652816448369de76897c57cbb1b93 ]
    
    If drm_connector_init fails, intel_connector_free will be called to take
    care of proper free. So it is necessary to drop the refcount of port
    before intel_connector_free.
    
    Fixes: 091a4f91942a ("drm/i915: Handle drm-layer errors in intel_dp_add_mst_connector")
    Signed-off-by: Hangyu Hua <hbh25y@xxxxxxxxx>
    Reviewed-by: José Roberto de Souza <jose.souza@xxxxxxxxx>
    Link: https://patchwork.freedesktop.org/patch/msgid/20220624130406.17996-1-jose.souza@xxxxxxxxx
    Signed-off-by: José Roberto de Souza <jose.souza@xxxxxxxxx>
    (cherry picked from commit cea9ed611e85d36a05db52b6457bf584b7d969e2)
    Signed-off-by: Rodrigo Vivi <rodrigo.vivi@xxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
index e30e698aa684..f7d46ea3afb9 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
@@ -841,6 +841,7 @@ static struct drm_connector *intel_dp_add_mst_connector(struct drm_dp_mst_topolo
 	ret = drm_connector_init(dev, connector, &intel_dp_mst_connector_funcs,
 				 DRM_MODE_CONNECTOR_DisplayPort);
 	if (ret) {
+		drm_dp_mst_put_port_malloc(port);
 		intel_connector_free(intel_connector);
 		return NULL;
 	}



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux