[PATCH] drm/amdgpu: return error when eeprom checksum failed

Zhang, Hawking Hawking.Zhang at amd.com
Mon Dec 2 03:40:39 UTC 2024


[AMD Official Use Only - AMD Internal Distribution Only]

Please replace DRM_ERROR with dev_err. Other than that, the patch looks good to me.

Regards,
Hawking

-----Original Message-----
From: Su, Joe <Jinzhou.Su at amd.com>
Sent: Monday, December 2, 2024 11:30 AM
To: amd-gfx at lists.freedesktop.org
Cc: Zhang, Hawking <Hawking.Zhang at amd.com>; Yang, Stanley <Stanley.Yang at amd.com>; Su, Joe <Jinzhou.Su at amd.com>
Subject: [PATCH] drm/amdgpu: return error when eeprom checksum failed

Return eeprom table checksum error result, otherwise it might be overwritten by next call.

Signed-off-by: Jinzhou Su <jinzhou.su at amd.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
index f4a9e15389ae..19fe2a4cba46 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
@@ -1412,9 +1412,11 @@ int amdgpu_ras_eeprom_init(struct amdgpu_ras_eeprom_control *control)
                }

                res = __verify_ras_table_checksum(control);
-               if (res)
+               if (res) {
                        DRM_ERROR("RAS Table incorrect checksum or error:%d\n",
                                  res);
+                       return -EINVAL;
+               }
                if (ras->bad_page_cnt_threshold > control->ras_num_recs) {
                        /* This means that, the threshold was increased since
                         * the last time the system was booted, and now,
--
2.43.0



More information about the amd-gfx mailing list