diff options
| author | Christian König <[email protected]> | 2023-11-09 09:14:14 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2023-11-09 22:00:17 +0000 |
| commit | 17daf01ab4e3e5a5929747aa05cc15eb2bad5438 (patch) | |
| tree | 4cd36bf780e4d8b112e75c6aeeda207858f0f5b1 /drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | |
| parent | drm/amdgpu: fix error handling in amdgpu_bo_list_get() (diff) | |
| download | kernel-17daf01ab4e3e5a5929747aa05cc15eb2bad5438.tar.gz kernel-17daf01ab4e3e5a5929747aa05cc15eb2bad5438.zip | |
drm/amdgpu: lower CS errors to debug severity
Otherwise userspace can spam the logs by using incorrect input values.
Signed-off-by: Christian König <[email protected]>
Reviewed-by: Alex Deucher <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Cc: [email protected]
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c index 0245de81cabd..1e35e9c06b09 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c @@ -1414,7 +1414,7 @@ int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) if (r == -ENOMEM) DRM_ERROR("Not enough memory for command submission!\n"); else if (r != -ERESTARTSYS && r != -EAGAIN) - DRM_ERROR("Failed to process the buffer list %d!\n", r); + DRM_DEBUG("Failed to process the buffer list %d!\n", r); goto error_fini; } |
