From: Alex Deucher <alexander.deucher@xxxxxxx> This reverts commit a518c746510e03d8a78db432a659770182546b9e. Reduce the time we wait since we are waiting for the fence with the spinlock held. Signed-off-by: Alex Deucher <alexander.deucher@xxxxxxx> --- drivers/gpu/drm/amd/amdgpu/mes_v11_0.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/amdgpu/mes_v11_0.c b/drivers/gpu/drm/amd/amdgpu/mes_v11_0.c index 784343fb7470..e40d00afd4f5 100644 --- a/drivers/gpu/drm/amd/amdgpu/mes_v11_0.c +++ b/drivers/gpu/drm/amd/amdgpu/mes_v11_0.c @@ -161,7 +161,7 @@ static int mes_v11_0_submit_pkt_and_poll_completion(struct amdgpu_mes *mes, struct amdgpu_device *adev = mes->adev; struct amdgpu_ring *ring = &mes->ring; unsigned long flags; - signed long timeout = 3000000; /* 3000 ms */ + signed long timeout = adev->usec_timeout; const char *op_str, *misc_op_str; if (x_pkt->header.opcode >= MES_SCH_API_MAX) -- 2.34.1