Skip to content

Commit 17daf01

Browse files
ChristianKoenigAMDalexdeucher
authored andcommitted
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]
1 parent 12f7605 commit 17daf01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1414,7 +1414,7 @@ int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
14141414
if (r == -ENOMEM)
14151415
DRM_ERROR("Not enough memory for command submission!\n");
14161416
else if (r != -ERESTARTSYS && r != -EAGAIN)
1417-
DRM_ERROR("Failed to process the buffer list %d!\n", r);
1417+
DRM_DEBUG("Failed to process the buffer list %d!\n", r);
14181418
goto error_fini;
14191419
}
14201420

0 commit comments

Comments
 (0)