drm/amdgpu: add check for ras error type
only ue and ce errors are supported Signed-off-by: Tao Zhou <tao.zhou1@amd.com> Reviewed-by: Dennis Li <dennis.li@amd.com> Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
81e02619e9
commit
e10634938b
@ -155,9 +155,14 @@ static int amdgpu_ras_debugfs_ctrl_parse_data(struct file *f,
|
|||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
data->head.block = block_id;
|
data->head.block = block_id;
|
||||||
data->head.type = memcmp("ue", err, 2) == 0 ?
|
/* only ue and ce errors are supported */
|
||||||
AMDGPU_RAS_ERROR__MULTI_UNCORRECTABLE :
|
if (!memcmp("ue", err, 2))
|
||||||
AMDGPU_RAS_ERROR__SINGLE_CORRECTABLE;
|
data->head.type = AMDGPU_RAS_ERROR__MULTI_UNCORRECTABLE;
|
||||||
|
else if (!memcmp("ce", err, 2))
|
||||||
|
data->head.type = AMDGPU_RAS_ERROR__SINGLE_CORRECTABLE;
|
||||||
|
else
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
data->op = op;
|
data->op = op;
|
||||||
|
|
||||||
if (op == 2) {
|
if (op == 2) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user