Patch "amdgpu: fix GEM obj leak in amdgpu_display_user_framebuffer_create" has been added to the 5.12-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

    amdgpu: fix GEM obj leak in amdgpu_display_user_framebuffer_create

to the 5.12-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:
     amdgpu-fix-gem-obj-leak-in-amdgpu_display_user_frame.patch
and it can be found in the queue-5.12 subdirectory.

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



commit 0a8577cfd08c297071f689b888f4aaa99eb74a14
Author: Simon Ser <contact@xxxxxxxxxxx>
Date:   Wed Apr 21 11:16:35 2021 +0200

    amdgpu: fix GEM obj leak in amdgpu_display_user_framebuffer_create
    
    [ Upstream commit e0c16eb4b3610298a74ae5504c7f6939b12be991 ]
    
    This error code-path is missing a drm_gem_object_put call. Other
    error code-paths are fine.
    
    Signed-off-by: Simon Ser <contact@xxxxxxxxxxx>
    Fixes: 1769152ac64b ("drm/amdgpu: Fail fb creation from imported dma-bufs. (v2)")
    Cc: Alex Deucher <alexander.deucher@xxxxxxx>
    Cc: Harry Wentland <hwentlan@xxxxxxx>
    Cc: Nicholas Kazlauskas <nicholas.kazlauskas@xxxxxxx>
    Cc: Bas Nieuwenhuizen <bas@xxxxxxxxxxxxxxxxxxx>
    Reviewed-by: Christian König <christian.koenig@xxxxxxx>
    Signed-off-by: Alex Deucher <alexander.deucher@xxxxxxx>
    Cc: stable@xxxxxxxxxxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
index a2ac44cc2a6d..e80cc2928b58 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
@@ -944,6 +944,7 @@ amdgpu_display_user_framebuffer_create(struct drm_device *dev,
 	domains = amdgpu_display_supported_domains(drm_to_adev(dev), bo->flags);
 	if (obj->import_attach && !(domains & AMDGPU_GEM_DOMAIN_GTT)) {
 		drm_dbg_kms(dev, "Cannot create framebuffer from imported dma_buf\n");
+		drm_gem_object_put(obj);
 		return ERR_PTR(-EINVAL);
 	}
 



[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