mirror of
https://github.com/torvalds/linux.git
synced 2026-06-01 11:03:43 +02:00
drm/amdgpu: The interrupt source was not released
When the driver is unloaded, the interrupt source of the rma device is not released, resulting in the failure of hw_init when loading again using bad_page_threshold. Signed-off-by: Ce Sun <cesun102@amd.com> Reviewed-by: Tao Zhou <tao.zhou1@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
fa301127ba
commit
48cb9c3b21
|
|
@ -624,7 +624,7 @@ int amdgpu_irq_put(struct amdgpu_device *adev, struct amdgpu_irq_src *src,
|
|||
unsigned int type)
|
||||
{
|
||||
/* When the threshold is reached,the interrupt source may not be enabled.return -EINVAL */
|
||||
if (amdgpu_ras_is_rma(adev))
|
||||
if (amdgpu_ras_is_rma(adev) && !amdgpu_irq_enabled(adev, src, type))
|
||||
return -EINVAL;
|
||||
|
||||
if (!adev->irq.installed)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user