diff options
author | Kent Russell <[email protected]> | 2022-02-18 16:59:23 -0500 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2022-02-22 14:40:26 -0500 |
commit | 757f9e4dd51644729d27c9b5e56f75681e8f17d0 (patch) | |
tree | bdc8d9751c52a1546c7b61c0e5dcf04401fed1a6 | |
parent | 181ebed7dcfce21dc152c3b473e3d44e7e94bf27 (diff) |
drm/amdkfd: Drop IH ring overflow message to dbg
When this was first implemented, overflows weren't expected in regular
operations, and tests weren't in place to cause said overflow. Now there
are cases where overflows occur with real workloads, but we know that
the kernel can handle this robustly, so move the message to a debug
message.
Signed-off-by: Kent Russell <[email protected]>
Reviewed-by: Felix Kuehling <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r-- | drivers/gpu/drm/amd/amdkfd/kfd_interrupt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_interrupt.c b/drivers/gpu/drm/amd/amdkfd/kfd_interrupt.c index 9defdbbb4ff8..7041a6714baa 100644 --- a/drivers/gpu/drm/amd/amdkfd/kfd_interrupt.c +++ b/drivers/gpu/drm/amd/amdkfd/kfd_interrupt.c @@ -117,7 +117,7 @@ bool enqueue_ih_ring_entry(struct kfd_dev *kfd, const void *ih_ring_entry) count = kfifo_in(&kfd->ih_fifo, ih_ring_entry, kfd->device_info.ih_ring_entry_size); if (count != kfd->device_info.ih_ring_entry_size) { - dev_err_ratelimited(kfd_chardev(), + dev_dbg_ratelimited(kfd_chardev(), "Interrupt ring overflow, dropping interrupt %d\n", count); return false; |