[AMD Official Use Only - AMD Internal Distribution Only] Reviewed-by: Kent Russell <[email protected]>
> -----Original Message----- > From: amd-gfx <[email protected]> On Behalf Of Gangliang > Xie > Sent: Monday, February 9, 2026 4:36 AM > To: [email protected] > Cc: Zhou1, Tao <[email protected]>; Xie, Patrick <[email protected]> > Subject: [PATCH] drm/amdgpu: return when ras table checksum is error > > end the function flow when ras table checksum is error > > Signed-off-by: Gangliang Xie <[email protected]> > --- > 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 2c5d7f87e593..6fba9d5b29ea 100644 > --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c > +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c > @@ -1701,10 +1701,12 @@ int amdgpu_ras_eeprom_check(struct > amdgpu_ras_eeprom_control *control) > } > > res = __verify_ras_table_checksum(control); > - if (res) > + if (res) { > dev_err(adev->dev, > "RAS table incorrect checksum or error:%d\n", > res); > + return -EINVAL; > + } > > /* Warn if we are at 90% of the threshold or above > */ > -- > 2.34.1
