Patch "drm/amdgpu: move amdgpu_virt_release_full_gpu to fini_early stage" 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: move amdgpu_virt_release_full_gpu to fini_early stage

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-move-amdgpu_virt_release_full_gpu-to-fini.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 5618cc61069e625f23db077669279d37a89a0eb5
Author: Guchun Chen <guchun.chen@xxxxxxx>
Date:   Sat Sep 18 13:43:41 2021 +0800

    drm/amdgpu: move amdgpu_virt_release_full_gpu to fini_early stage
    
    [ Upstream commit 6effad8abe0ba4db3d9c58ed585127858a990f35 ]
    
    adev->rmmio is set to be NULL in amdgpu_device_unmap_mmio to prevent
    access after pci_remove, however, in SRIOV case, amdgpu_virt_release_full_gpu
    will still use adev->rmmio for access after amdgpu_device_unmap_mmio.
    The patch is to move such SRIOV calling earlier to fini_early stage.
    
    Fixes: 07775fc13878 ("drm/amdgpu: Unmap all MMIO mappings")
    Cc: Andrey Grodzovsky <andrey.grodzovsky@xxxxxxx>
    Signed-off-by: Leslie Shi <Yuliang.Shi@xxxxxxx>
    Signed-off-by: Guchun Chen <guchun.chen@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 08e53ff747282..eddf03450f1ce 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
@@ -2689,6 +2689,11 @@ static int amdgpu_device_ip_fini_early(struct amdgpu_device *adev)
 		adev->ip_blocks[i].status.hw = false;
 	}
 
+	if (amdgpu_sriov_vf(adev)) {
+		if (amdgpu_virt_release_full_gpu(adev, false))
+			DRM_ERROR("failed to release exclusive mode on fini\n");
+	}
+
 	return 0;
 }
 
@@ -2749,10 +2754,6 @@ static int amdgpu_device_ip_fini(struct amdgpu_device *adev)
 
 	amdgpu_ras_fini(adev);
 
-	if (amdgpu_sriov_vf(adev))
-		if (amdgpu_virt_release_full_gpu(adev, false))
-			DRM_ERROR("failed to release exclusive mode on fini\n");
-
 	return 0;
 }
 



[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