Commit 190211ab authored by xinhui pan's avatar xinhui pan Committed by Alex Deucher

drm/amdgpu: remove per obj debugfs write

there is ras_control node which can do its job.
Signed-off-by: default avatarxinhui pan <xinhui.pan@amd.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 828cfa29
...@@ -157,50 +157,10 @@ static ssize_t amdgpu_ras_debugfs_read(struct file *f, char __user *buf, ...@@ -157,50 +157,10 @@ static ssize_t amdgpu_ras_debugfs_read(struct file *f, char __user *buf,
return s; return s;
} }
static ssize_t amdgpu_ras_debugfs_write(struct file *f, const char __user *buf,
size_t size, loff_t *pos)
{
struct ras_manager *obj = (struct ras_manager *)file_inode(f)->i_private;
struct ras_inject_if info = {
.head = obj->head,
};
ssize_t s = min_t(u64, 64, size);
char val[64];
char *str = val;
memset(val, 0, sizeof(val));
if (*pos)
return -EINVAL;
if (copy_from_user(str, buf, s))
return -EINVAL;
/* only care ue/ce for now. */
if (memcmp(str, "ue", 2) == 0) {
info.head.type = AMDGPU_RAS_ERROR__MULTI_UNCORRECTABLE;
str += 2;
} else if (memcmp(str, "ce", 2) == 0) {
info.head.type = AMDGPU_RAS_ERROR__SINGLE_CORRECTABLE;
str += 2;
}
if (sscanf(str, "0x%llx 0x%llx", &info.address, &info.value) != 2) {
if (sscanf(str, "%llu %llu", &info.address, &info.value) != 2)
return -EINVAL;
}
*pos = s;
if (amdgpu_ras_error_inject(obj->adev, &info))
return -EINVAL;
return size;
}
static const struct file_operations amdgpu_ras_debugfs_ops = { static const struct file_operations amdgpu_ras_debugfs_ops = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.read = amdgpu_ras_debugfs_read, .read = amdgpu_ras_debugfs_read,
.write = amdgpu_ras_debugfs_write, .write = NULL,
.llseek = default_llseek .llseek = default_llseek
}; };
......
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