summaryrefslogtreecommitdiff
path: root/drivers/gpu
diff options
context:
space:
mode:
authorLijo Lazar <lijo.lazar@amd.com>2026-01-16 10:17:59 +0530
committerAlex Deucher <alexander.deucher@amd.com>2026-01-21 14:25:31 -0500
commit9d03d404f4bf6f02cf690ef8c9608d8f0e4ce630 (patch)
treef07a67751d2945d0badcf068680db584ba543666 /drivers/gpu
parente3a6eff92bbd960b471966d9afccb4d584546d17 (diff)
drm/amdgpu: Avoid excessive dmesg log
KIQ access is not guaranteed to work reliably under all reset situations. Avoid flooding dmesg with HDP flush failure messages. Signed-off-by: Lijo Lazar <lijo.lazar@amd.com> Acked-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c
index cf7a07855dae..8b5801d7109c 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c
@@ -1298,7 +1298,8 @@ failed_undo:
failed_unlock:
spin_unlock_irqrestore(&kiq->ring_lock, flags);
failed_kiq_hdp_flush:
- dev_err(adev->dev, "failed to flush HDP via KIQ\n");
+ if (!amdgpu_in_reset(adev))
+ dev_err(adev->dev, "failed to flush HDP via KIQ\n");
return r < 0 ? r : -EIO;
}