Commit ee10e06e authored by Guchun Chen's avatar Guchun Chen Committed by Alex Deucher

drm/amdgpu: add printing after executing page reservation to eeprom

This will tell users if the faulty page has been written to
external eeprom device in dmesg log.
Signed-off-by: default avatarGuchun Chen <guchun.chen@amd.com>
Reviewed-by: default avatarTao Zhou <tao.zhou1@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent ebfbd1c2
...@@ -1618,7 +1618,7 @@ static int amdgpu_ras_save_bad_pages(struct amdgpu_device *adev) ...@@ -1618,7 +1618,7 @@ static int amdgpu_ras_save_bad_pages(struct amdgpu_device *adev)
data = con->eh_data; data = con->eh_data;
save_count = data->count - control->num_recs; save_count = data->count - control->num_recs;
/* only new entries are saved */ /* only new entries are saved */
if (save_count > 0) if (save_count > 0) {
if (amdgpu_ras_eeprom_process_recods(control, if (amdgpu_ras_eeprom_process_recods(control,
&data->bps[control->num_recs], &data->bps[control->num_recs],
true, true,
...@@ -1627,6 +1627,9 @@ static int amdgpu_ras_save_bad_pages(struct amdgpu_device *adev) ...@@ -1627,6 +1627,9 @@ static int amdgpu_ras_save_bad_pages(struct amdgpu_device *adev)
return -EIO; return -EIO;
} }
dev_info(adev->dev, "Saved %d pages to EEPROM table.\n", save_count);
}
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment