]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm/amdgpu: Use correct severity for BP threshold exceed event
authorXiang Liu <xiang.liu@amd.com>
Fri, 27 Jun 2025 15:14:08 +0000 (23:14 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 30 Jun 2025 16:08:00 +0000 (12:08 -0400)
The severity of CPER for BP threshold exceed event should be set as
CPER_SEV_FATAL to match the OOB implementation.

Signed-off-by: Xiang Liu <xiang.liu@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c

index 5a234eadae8b3a26a940784044fd30c7e7efc109..15dde1f5032842420c7cbcfc30fed212fc20b022 100644 (file)
@@ -212,7 +212,7 @@ int amdgpu_cper_entry_fill_bad_page_threshold_section(struct amdgpu_device *adev
                   NONSTD_SEC_OFFSET(hdr->sec_cnt, idx));
 
        amdgpu_cper_entry_fill_section_desc(adev, section_desc, true, false,
-                                           CPER_SEV_NUM, RUNTIME, NONSTD_SEC_LEN,
+                                           CPER_SEV_FATAL, RUNTIME, NONSTD_SEC_LEN,
                                            NONSTD_SEC_OFFSET(hdr->sec_cnt, idx));
 
        section->hdr.valid_bits.err_info_cnt = 1;
@@ -326,7 +326,9 @@ int amdgpu_cper_generate_bp_threshold_record(struct amdgpu_device *adev)
                return -ENOMEM;
        }
 
-       amdgpu_cper_entry_fill_hdr(adev, bp_threshold, AMDGPU_CPER_TYPE_BP_THRESHOLD, CPER_SEV_NUM);
+       amdgpu_cper_entry_fill_hdr(adev, bp_threshold,
+                                  AMDGPU_CPER_TYPE_BP_THRESHOLD,
+                                  CPER_SEV_FATAL);
        ret = amdgpu_cper_entry_fill_bad_page_threshold_section(adev, bp_threshold, 0);
        if (ret)
                return ret;