summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Russell <kent.russell@amd.com>2026-04-22 09:34:04 -0400
committerAlex Deucher <alexander.deucher@amd.com>2026-04-24 10:54:21 -0400
commit8bc09a7d0e90ec45a0b4865661cf45cbbce1c3d7 (patch)
treebe853418120302f60472f021c25cb3539757fbd8
parent437cbca5ea50af4d1b37dd05aa33b4e791fd6d0f (diff)
downloadlinux-8bc09a7d0e90ec45a0b4865661cf45cbbce1c3d7.tar.gz
linux-8bc09a7d0e90ec45a0b4865661cf45cbbce1c3d7.zip
drm/amdgpu: Only send RMA CPER when threshold is exceeded
According to our documentation, the RMA should only occur when the threshold has been exceeded, not met. Fixes: 5028a24aa89a ("drm/amdgpu: Send applicable RMA CPERs at end of RAS init") Signed-off-by: Kent Russell <kent.russell@amd.com> Reviewed-by: Tao Zhou <tao.zhou1@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
index cdf4909592d2..0c57fe259894 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
@@ -1950,7 +1950,7 @@ void amdgpu_ras_check_bad_page_status(struct amdgpu_device *adev)
if (!control || amdgpu_bad_page_threshold == 0)
return;
- if (control->ras_num_bad_pages >= ras->bad_page_cnt_threshold) {
+ if (control->ras_num_bad_pages > ras->bad_page_cnt_threshold) {
if (amdgpu_dpm_send_rma_reason(adev))
dev_warn(adev->dev, "Unable to send out-of-band RMA CPER");
else