[Public]
Reviewed-by: Alex Deucher <alexander.deucher@xxxxxxx>
From: Ma, Jun <Jun.Ma2@xxxxxxx>
Sent: Friday, June 9, 2023 1:52 AM To: amd-gfx@xxxxxxxxxxxxxxxxxxxxx <amd-gfx@xxxxxxxxxxxxxxxxxxxxx>; Koenig, Christian <Christian.Koenig@xxxxxxx>; Deucher, Alexander <Alexander.Deucher@xxxxxxx> Cc: Ma, Jun <Jun.Ma2@xxxxxxx>; Ma, Jun <Jun.Ma2@xxxxxxx> Subject: [PATCH] drm/amdgpu: Print client id for the unregistered interrupt resource Modify the debug information and print the clien id for these
interrupts as well. Signed-off-by: Ma Jun <Jun.Ma2@xxxxxxx> --- drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c index b0808c1be013..e6edc67ef010 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c @@ -486,7 +486,8 @@ void amdgpu_irq_dispatch(struct amdgpu_device *adev, handled = true; } else { - DRM_DEBUG("Unhandled interrupt src_id: %d\n", src_id); + DRM_DEBUG("Unregistered interrupt src_id: %d of client_id:%d\n", + src_id, client_id); } /* Send it to amdkfd as well if it isn't already handled */ -- 2.34.1 |