Reviewed-By: Xiangliang Yu <[email protected]>
-----Original Message----- From: amd-gfx [mailto:[email protected]] On Behalf Of Pixel Ding Sent: Tuesday, October 31, 2017 4:17 PM To: [email protected]; Yu, Xiangliang <[email protected]> Cc: Ding, Pixel <[email protected]> Subject: [PATCH 1/2] drm/amdgpu: return error when sriov access requests get timeout (v2) From: pding <[email protected]> v2: - readable Reported-by: Sun Gary <[email protected]> Signed-off-by: pding <[email protected]> --- drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c b/drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c index 818ec0f..2b435c0 100644 --- a/drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c +++ b/drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c @@ -446,8 +446,10 @@ static int xgpu_vi_send_access_requests(struct amdgpu_device *adev, request == IDH_REQ_GPU_FINI_ACCESS || request == IDH_REQ_GPU_RESET_ACCESS) { r = xgpu_vi_poll_msg(adev, IDH_READY_TO_ACCESS_GPU); - if (r) - pr_err("Doesn't get ack from pf, continue\n"); + if (r) { + pr_err("Doesn't get ack from pf, give up\n"); + return r; + } } return 0; -- 2.9.5 _______________________________________________ amd-gfx mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/amd-gfx _______________________________________________ amd-gfx mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/amd-gfx
