To allow the flexibilty for user to disable gpu recovery
in RAS recovery path by module parameter amdgpu_gpu_recovery
Signed-off-by: Hawking Zhang <Hawking.Zhang@amd.com>
Reviewed-by: Guchun Chen <guchun.chen@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
        struct amdgpu_ras *ras =
                container_of(work, struct amdgpu_ras, recovery_work);
 
-       amdgpu_device_gpu_recover(ras->adev, 0);
+       if (amdgpu_device_should_recover_gpu(ras->adev))
+               amdgpu_device_gpu_recover(ras->adev, 0);
        atomic_set(&ras->in_recovery, 0);
 }