Patch "drm/amdgpu: fix a potential memory leak in amdgpu_device_fini_sw()" has been added to the 5.14-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/amdgpu: fix a potential memory leak in amdgpu_device_fini_sw()

to the 5.14-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-amdgpu-fix-a-potential-memory-leak-in-amdgpu_dev.patch
and it can be found in the queue-5.14 subdirectory.

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



commit d2fce08fdcccdd696b739fc792c3dd8f5d2d9790
Author: Lang Yu <lang.yu@xxxxxxx>
Date:   Thu Oct 21 14:36:36 2021 +0800

    drm/amdgpu: fix a potential memory leak in amdgpu_device_fini_sw()
    
    [ Upstream commit a5c5d8d50ecf5874be90a76e1557279ff8a30c9e ]
    
    amdgpu_fence_driver_sw_fini() should be executed before
    amdgpu_device_ip_fini(), otherwise fence driver resource
    won't be properly freed as adev->rings have been tore down.
    
    Fixes: 72c8c97b1522 ("drm/amdgpu: Split amdgpu_device_fini into early and late")
    
    Signed-off-by: Lang Yu <lang.yu@xxxxxxx>
    Reviewed-by: Andrey Grodzovsky <andrey.grodzovsky@xxxxxxx>
    Signed-off-by: Alex Deucher <alexander.deucher@xxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
index eddf03450f1ce..f03247e2af78f 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
@@ -3818,8 +3818,8 @@ void amdgpu_device_fini_hw(struct amdgpu_device *adev)
 
 void amdgpu_device_fini_sw(struct amdgpu_device *adev)
 {
-	amdgpu_device_ip_fini(adev);
 	amdgpu_fence_driver_sw_fini(adev);
+	amdgpu_device_ip_fini(adev);
 	release_firmware(adev->firmware.gpu_info_fw);
 	adev->firmware.gpu_info_fw = NULL;
 	adev->accel_working = false;



[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